|
|
|
|
@ -20,7 +20,7 @@
|
|
|
|
|
</view>
|
|
|
|
|
<view v-if="speed > 0" class="link">
|
|
|
|
|
<block class="" v-for="(item, index) in jobArray" :key="index">
|
|
|
|
|
<view class="item g_position_rela g_mb_10 g_ml_12 g_mr_12 g_bg_f g_radius_8 g_border_e_b" :class="from == 'share' ? 'g_pl_32' : ''">
|
|
|
|
|
<view class="item g_position_rela g_mb_10 g_ml_12 g_mr_12 g_bg_f g_radius_8 g_border_e_b" :class="from == 'share' || from == 'chat' ? 'g_pl_32' : ''">
|
|
|
|
|
<view class="g_p_10 g_position_rela" style="" @click="handleCard(item, index)">
|
|
|
|
|
<i class="iconfont icon-yitingzhao" v-if="item.recruitment == 2 && from != 'mine'" style="position: absolute; left: 50%; top: 58%; transform: translate(-50%, -50%); color: #ff4d4f; font-size: 80px; z-index: 1"></i>
|
|
|
|
|
<view class="m-top g_flex_row_between">
|
|
|
|
|
@ -115,7 +115,7 @@
|
|
|
|
|
<!-- <div class="g_w_36 g_mr_4 g_fs_12 g_pl_4 g_pr_4" style="background-color: #e3f5ff">发单号</div> -->
|
|
|
|
|
<img class="g_w_36 g_h_20 g_mr_4" src="https://matripe-cms.oss-cn-beijing.aliyuncs.com/bocaigongyinglian/icon-fadanhao.svg" alt="" />
|
|
|
|
|
<view>
|
|
|
|
|
{{ item.fullName || item.agencyName || "-" }}
|
|
|
|
|
{{ item.fullName || item.agencyName || "-" }}
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="g_c_6 g_fs_12 g_pr_4 g_radius_4 g_flex_row_start flex_center" style="background: #f1faff" v-if="userinfo.agencyId == item.agencyId">
|
|
|
|
|
@ -130,6 +130,9 @@
|
|
|
|
|
<view class="checkBox" hover-class="none" v-if="from == 'share'" @click.stop="checkJob(item)">
|
|
|
|
|
<checkbox class="biggerSize" style="transform: scale(0.8, 0.8)" color="g_c_main" :checked="item.checked" :value="item.checked"></checkbox>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="checkBox" hover-class="none" v-if="from == 'chat'" @click.stop="sendJob(item)">
|
|
|
|
|
选择
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</block>
|
|
|
|
|
<view class="g_mt_32 g_pb_32 g_c_9 g_pl_12 g_text_c" v-if="isShowLoginBtn && jobArray.length > 0" hover-class="none">
|
|
|
|
|
@ -192,6 +195,7 @@ export default {
|
|
|
|
|
// 计算属性
|
|
|
|
|
computed: {
|
|
|
|
|
status() {
|
|
|
|
|
console.log("this.query", this.query);
|
|
|
|
|
if (this.query.isFinish >= 0 && this.query.isFinish < this.query.size) {
|
|
|
|
|
return "nomore";
|
|
|
|
|
} else {
|
|
|
|
|
@ -417,6 +421,10 @@ export default {
|
|
|
|
|
checkJob(_item) {
|
|
|
|
|
this.$emit("checkJob", _item);
|
|
|
|
|
},
|
|
|
|
|
sendJob(_item){
|
|
|
|
|
this.$emit("sendJob", _item);
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
submitApply(e) {
|
|
|
|
|
let that = this;
|
|
|
|
|
let params = {
|
|
|
|
|
|