|
|
|
@ -71,7 +71,7 @@
|
|
|
|
<div class="g_flex_1">
|
|
|
|
<div class="g_flex_1">
|
|
|
|
<g-button btnText="已关注发单号" size="auto" @clickBtn="handleCancel" type="noStyle" class></g-button>
|
|
|
|
<g-button btnText="已关注发单号" size="auto" @clickBtn="handleCancel" type="noStyle" class></g-button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="g_ml_16 g_flex_1 ">
|
|
|
|
<div class="g_ml_16 g_flex_1">
|
|
|
|
<g-button btnText="联系客服" class="" type="noStyle" size="auto" @clickBtn="goIm"></g-button>
|
|
|
|
<g-button btnText="联系客服" class="" type="noStyle" size="auto" @clickBtn="goIm"></g-button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!-- <div style="width:calc((100vw - 50px) / 2);">
|
|
|
|
<!-- <div style="width:calc((100vw - 50px) / 2);">
|
|
|
|
@ -83,7 +83,7 @@
|
|
|
|
<div class="g_flex_1">
|
|
|
|
<div class="g_flex_1">
|
|
|
|
<g-button btnText="互相关注" size="auto" type="noStyle" @clickBtn="handleCancel" class></g-button>
|
|
|
|
<g-button btnText="互相关注" size="auto" type="noStyle" @clickBtn="handleCancel" class></g-button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="g_ml_16 g_flex_1 ">
|
|
|
|
<div class="g_ml_16 g_flex_1">
|
|
|
|
<g-button btnText="联系客服" class="" type="noStyle" size="auto" @clickBtn="goIm"></g-button>
|
|
|
|
<g-button btnText="联系客服" class="" type="noStyle" size="auto" @clickBtn="goIm"></g-button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@ -101,7 +101,7 @@
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<div class="g_bg_f g_pt_8">
|
|
|
|
<div class="g_bg_f g_pt_8" v-if="info.recordStatus == 1 || info.recordStatus == 2">
|
|
|
|
<u-tabs bg-color="transparent" from="index" gutter="20" :list="tabInfo.list" :is-scroll="true" v-model="tabInfo.active" active-color="#000" bar-width="64" bar-height="6" @change="handleUpdateTab" font-size="32" duration="0.05" height="56"></u-tabs>
|
|
|
|
<u-tabs bg-color="transparent" from="index" gutter="20" :list="tabInfo.list" :is-scroll="true" v-model="tabInfo.active" active-color="#000" bar-width="64" bar-height="6" @change="handleUpdateTab" font-size="32" duration="0.05" height="56"></u-tabs>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
@ -569,15 +569,19 @@ export default {
|
|
|
|
let that = this;
|
|
|
|
let that = this;
|
|
|
|
console.log("$type", $type);
|
|
|
|
console.log("$type", $type);
|
|
|
|
this.G.isLogin();
|
|
|
|
this.G.isLogin();
|
|
|
|
if (this.G.isLogin()) {
|
|
|
|
let params = {
|
|
|
|
that.G.Post(
|
|
|
|
|
|
|
|
that.api.job_list,
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
pageNum: that.query.page,
|
|
|
|
pageNum: that.query.page,
|
|
|
|
pageSize: that.query.size,
|
|
|
|
pageSize: that.query.size,
|
|
|
|
agencyId: that.info.id,
|
|
|
|
agencyId: that.info.id,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
(res) => {
|
|
|
|
console.log("that.tabInfo.active", that.tabInfo.active);
|
|
|
|
|
|
|
|
if (that.tabInfo.active == 1) {
|
|
|
|
|
|
|
|
params.jobClassify = 1;
|
|
|
|
|
|
|
|
} else if (that.tabInfo.active == 2) {
|
|
|
|
|
|
|
|
params.recruitment = 1;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.G.isLogin()) {
|
|
|
|
|
|
|
|
that.G.Post(that.api.job_list, params, (res) => {
|
|
|
|
console.log("resresresresresres", res);
|
|
|
|
console.log("resresresresresres", res);
|
|
|
|
if (res.recordCount == 0) {
|
|
|
|
if (res.recordCount == 0) {
|
|
|
|
that.loading = false;
|
|
|
|
that.loading = false;
|
|
|
|
@ -587,8 +591,7 @@ export default {
|
|
|
|
that.speed = res.recordCount;
|
|
|
|
that.speed = res.recordCount;
|
|
|
|
that.setJobList(res.recordList, $type);
|
|
|
|
that.setJobList(res.recordList, $type);
|
|
|
|
console.log("query.list", that.query.list);
|
|
|
|
console.log("query.list", that.query.list);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
checkLength(e) {
|
|
|
|
checkLength(e) {
|
|
|
|
@ -756,7 +759,13 @@ export default {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
handleUpdateTab() {},
|
|
|
|
handleUpdateTab(e) {
|
|
|
|
|
|
|
|
let that = this;
|
|
|
|
|
|
|
|
console.log("eeeeeee", e);
|
|
|
|
|
|
|
|
that.tabInfo.active = e;
|
|
|
|
|
|
|
|
that.query.page = 1;
|
|
|
|
|
|
|
|
that.getDefault();
|
|
|
|
|
|
|
|
},
|
|
|
|
goIm() {
|
|
|
|
goIm() {
|
|
|
|
let that = this;
|
|
|
|
let that = this;
|
|
|
|
if (that.goImLoading) {
|
|
|
|
if (that.goImLoading) {
|
|
|
|
|