cyl/master-0819
wangxia 3 months ago
parent eec133cf22
commit 5e48cd9771

@ -8,7 +8,7 @@
<!-- 列表区 --> <!-- 列表区 -->
<!-- <div @click="showPop = true"> 1123 </div> --> <!-- <div @click="showPop = true"> 1123 </div> -->
<!-- `calc(${navInfo.windowHeight}px - ${navInfo.navigationBarHeight + navInfo.statusBarHeight}px)` --> <!-- `calc(${navInfo.windowHeight}px - ${navInfo.navigationBarHeight + navInfo.statusBarHeight}px)` -->
<scroll-view class="m-list" id="listBox" :scroll-into-view="scrollTo" :style="{ height: `calc(100vh - ${tabbarHeight}px)` }" :scroll-y="true" @scrolltolower="reachBottom" @scroll="checkScroll"> <scroll-view class="m-list" id="listBox" :scroll-into-view="scrollTo" :style="{ height: `calc(100vh - ${tabbarHeight}px)` }" :scroll-y="true" refresher-background="#ededed" :refresher-enabled="true" :refresher-triggered="isTrigger" @refresherrefresh="refreshJobList" @scrolltolower="reachBottom" @scroll="checkScroll">
<div class="g_h_all" hover-class="none" hover-stop-propagation="false"> <div class="g_h_all" hover-class="none" hover-stop-propagation="false">
<div class="g_position_rela g_flex_row_between flex_center g_ml_10 g_mr_10"> <div class="g_position_rela g_flex_row_between flex_center g_ml_10 g_mr_10">
<div class="the_city g_flex_column_center" style hover-class="thover" @click="goCity"> <div class="the_city g_flex_column_center" style hover-class="thover" @click="goCity">
@ -132,7 +132,7 @@
</div> </div>
</u-popup> </u-popup>
</div> </div>
<g-tabbar class="tabbar"></g-tabbar> <g-tabbar class="tabbar"></g-tabbar>
</div> </div>
</template> </template>
@ -343,6 +343,7 @@ export default {
], ],
active: 2, active: 2,
}, },
isTrigger: false,
}; };
}, },
watch: { watch: {
@ -435,6 +436,12 @@ export default {
} }
} }
}, },
refreshJobList() {
let that = this;
this.query.page = 1;
this.isTrigger = true;
this.getList();
},
getList($type = "init") { getList($type = "init") {
let that = this; let that = this;
this.loading = true; this.loading = true;
@ -453,6 +460,7 @@ export default {
cityName: that.selectedCity == "全国" ? "" : that.selectedCity, cityName: that.selectedCity == "全国" ? "" : that.selectedCity,
}, },
(res) => { (res) => {
that.isTrigger = false;
that.computeCode = 1; that.computeCode = 1;
console.log("job_list __________________________", (new Date().getTime() - time) / 1000); console.log("job_list __________________________", (new Date().getTime() - time) / 1000);
// res.recordCount = 0; // res.recordCount = 0;

@ -1,5 +1,5 @@
<template> <template>
<view class="p-bind-inedx g_w_all g_h_all g_bg_f_5 g_kuaishou"> <view class="p-bind-inedx g_w_all g_bg_page g_kuaishou">
<!-- 搜索栏 --> <!-- 搜索栏 -->
<view class="m-top"> <view class="m-top">
<view class="m-search g_p_10 g_pb_0 g_position_rela g_p_12 g_bg_f_5"> <view class="m-search g_p_10 g_pb_0 g_position_rela g_p_12 g_bg_f_5">

@ -12,7 +12,7 @@
<view class=""> <view class="">
<!-- #ifdef APP-PLUS || H5 || MP-KUAISHOU || MP-WEIXIN --> <!-- #ifdef APP-PLUS || H5 || MP-KUAISHOU || MP-WEIXIN -->
<view class="" style="height: calc(58px + 40px)"></view> <view class="" style="height: calc(58px + 48px)"></view>
<!-- #endif --> <!-- #endif -->
<view class=""> <view class="">
<view class="m-box-fixed" :style="{ top: 0 }" v-if="isLogin"> <view class="m-box-fixed" :style="{ top: 0 }" v-if="isLogin">

@ -88,7 +88,7 @@
<view class="g_flex_column_center g_text_r">{{ orderDetail.tel ? orderDetail.tel : "-" }}</view> <view class="g_flex_column_center g_text_r">{{ orderDetail.tel ? orderDetail.tel : "-" }}</view>
</view> </view>
</view> </view>
<view class="g_flex_row_start"> <view class="g_flex_row_start g_pb_6">
<div v-if="orderDetail.idCardImageUrl" style="margin-right: 8px"> <div v-if="orderDetail.idCardImageUrl" style="margin-right: 8px">
<g-panel-image :url="orderDetail.idCardImageUrl" radius="8" size="152" @clickItem="handleClickIDcard(orderDetail.idCardImageUrl)" /> <g-panel-image :url="orderDetail.idCardImageUrl" radius="8" size="152" @clickItem="handleClickIDcard(orderDetail.idCardImageUrl)" />
</div> </div>

Loading…
Cancel
Save