44 lines
2.5 KiB
Plaintext
44 lines
2.5 KiB
Plaintext
<!--jobInterview/pages/interviewNotice/interviewNotic.wxml-->
|
||
<l-loadmore show="{{true}}" type="end" loading-text="已经到底了~">
|
||
<view slot="content">
|
||
<view class="sticky-fixed-box">
|
||
<view>
|
||
<van-search value="{{ searchContent }}" placeholder="请输入企业/公司名称" bind:change="onChange" bind:search="onSearch" />
|
||
</view>
|
||
<view class="notice-row-box">
|
||
<view class="title1">企业</view>
|
||
<view class="title2">面试信息</view>
|
||
<view class="title3">结果</view>
|
||
</view>
|
||
</view>
|
||
<view class="notice-list-box" wx:for="{{interviewCompanyList}}" wx:key="index" bind:tap="switchToResDetail" data-index="{{index}}">
|
||
<l-card type="primary" plaintext="{{true}}" full="{{true}}" >
|
||
<view style="display: flex;">
|
||
<view class="image-name-middle-box">
|
||
<image src="{{item.companyLogoUrl}}" style="width: 100rpx;height: 100rpx;"></image>
|
||
<view style="font-size:30rpx;">
|
||
<text class="item-list">{{item.companyName}}</text>
|
||
</view>
|
||
</view>
|
||
<view class="main-content">
|
||
<text class="notice-word-box">感谢您于{{item.interviewTime}}参加本公司 <text style="font-weight: 600;">{{item.job}}</text> AI面试,点击获取面试详细信息!</text>
|
||
</view>
|
||
<view class="icon-position image-name-middle-box">
|
||
<view wx:if="{{item.result===1}}">
|
||
<l-icon name="success" size="40" color="#34BFA3"></l-icon>
|
||
<text style="font-size: 28rpx;color:#34BFA3;">已通过</text>
|
||
</view>
|
||
<view wx:elif="{{item.result===2}}">
|
||
<l-icon name="error" size="40" color="#F4516C"></l-icon>
|
||
<text style="font-size: 28rpx;color:#F4516C;white-space: nowrap;">未通过</text>
|
||
</view>
|
||
<view wx:else>
|
||
<l-icon name="help" size="40" color="#FFE57F"></l-icon>
|
||
<text style="font-size: 28rpx;color:#FFE57F;white-space: nowrap;">待通知</text>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</l-card>
|
||
</view>
|
||
</view>
|
||
</l-loadmore> |