伯才工作添加我的页面职位

cyl/develop
wangxia 1 year ago
parent 2ebca03d50
commit 7bce7ab052

@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1741599346258" class="icon" viewBox="0 0 2184 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="15491" xmlns:xlink="http://www.w3.org/1999/xlink" width="136.5" height="64"><path d="M341.333333 0h1843.2v682.666667c0 188.5184-152.814933 341.333333-341.333333 341.333333H0V341.333333C0 152.814933 152.814933 0 341.333333 0z" fill="#FF000D" p-id="15492"></path><path d="M342.698667 281.941333l4.096-34.816h-90.112l12.288-91.136h425.984L682.666667 247.125333h-107.52l-4.096 34.816h90.112l-36.864 262.144H493.226667l-7.168 50.176h129.024l-13.312 97.28H472.746667l-8.192 62.464h147.456l-13.312 98.304H170.666667l13.312-98.304h126.976l8.192-62.464h-104.448l13.312-97.28h104.448l7.168-50.176h-109.568l36.864-262.144h75.776z m523.264 589.824l65.536-464.896H826.026667l-17.408 87.04h95.232l-11.264 155.648h-99.328l7.168-113.664-45.056 226.304 108.544-9.216-14.336 100.352-245.76 17.408 114.688-614.4h-20.48l14.336-98.304h391.168l-14.336 98.304H855.722667l-11.264 60.416h228.352l-63.488 455.68h14.336L1042.090667 750.933333l-17.408 120.832h-158.72zM541.354667 378.197333l-10.24 70.656h35.84l10.24-70.656h-35.84z m-125.952 70.656h30.72l10.24-70.656h-30.72l-10.24 70.656z m-80.896 0l10.24-70.656h-29.696l-10.24 70.656h29.696z m105.472-166.912h30.72l4.096-34.816h-30.72l-4.096 34.816zM1674.922667 155.989333l-30.72 97.28h74.752l11.264-77.824L1696.426667 136.533333h194.56l-16.384 116.736h136.192l-12.288 87.04h-136.192l-13.312 98.304h155.648l-12.288 87.04h-97.28l-11.264 77.824h77.824l45.056-38.912-22.528 155.648H1711.786667l27.648-194.56h-59.392l-84.992 194.56h-155.648l84.992-194.56h-76.8l12.288-87.04h233.472l13.312-98.304h-89.088l-14.336 49.152h-136.192l61.44-199.68-28.672-33.792h175.104zM1148.586667 856.405333l52.224-97.28 49.152-350.208h-38.912l13.312-97.28h214.016l-56.32 405.504 140.288 41.984h476.16l-13.312 97.28H1440.426667l-100.352-29.696-16.384 29.696H1148.586667zM1402.538667 155.989333l41.984 116.736h-155.648l-41.984-116.736h155.648z" fill="#FFFFFF" p-id="15493"></path></svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

@ -35,8 +35,13 @@ Component({
loginUserInfo: {
type: Object,
value: {}
},
type: {
type: String,
value: ''
}
},
lifetimes: {
attached: function () {

@ -8,7 +8,7 @@
<view class="flex-1 vsb">
<view class="fsa">
<view class="fss">
<view class="markTag {{item.picked ? 'zhenxuan' : 'sanfang'}}">{{item.picked ? '甄选' : '三方'}}</view>
<image wx:if="{{item.picked}}" class="mr4" style="height:16px;width:32px" src="../../assets/images/zhen.svg"></image>
<view class="storeName fss">{{item.jobName || item.aliasName}}</view>
</view>
<view class="f14s c045">{{item.update}}</view>

@ -1,12 +1,16 @@
// pages/mine/mine.js
const app = getApp();
import { timeShowXXX } from "../../utils/dateUtil";
const commonUtil = require("../../utils/commonUtil.js");
import { customRequest } from '../../utils/request.js';
Page({
/**
* 页面的初始数据
*/
data: {
appId: app.globalData.appId,
isopen: 1, // 账户余额是否显示
iosDialog: false,
iosDialogTobe: false,
@ -27,7 +31,42 @@ Page({
recordBillType: "",
configInfo: {},
teamList: [],
drawerShow: false
drawerShow: false,
tabGroup: [
{
name: '全部',
key: '0',
picked: ''
},
{
name: '在招中',
key: '1',
picked: '1'
},
{
name: '已停招',
key: '2',
picked: '0'
},
],
choiceCollect: '0',
storeJobListSearchForm: {
pageNum: 1,
pageSize: 20,
classify: 1,
sex: -1,
workTypeStr: "",
lat: "",
lng: "",
jobClassify: "",
sortTag: 0,
jobRequestLabelIds: "",
cityName: "",
brandIds: "",
jobCategoryLabelIds: "",
ucj: 0,
},
recordList: []
// agencyStatus: 0, // 是否是代理判断
},
@ -48,6 +87,7 @@ Page({
});
if (app.globalData.isLogin) {
this.getTeamList()
this.getJobList()
}
}, 100);
@ -99,7 +139,7 @@ Page({
this.setData({
configInfo: { ...wx.getStorageSync("configInfo"), biao: false },
});
console.log('configInfo',this.data.configInfo);
console.log('configInfo', this.data.configInfo);
}
wx.setStorageSync('BILLFROM', 'mine')
@ -274,20 +314,11 @@ Page({
// }
},
/**
* 页面相关事件处理函数--监听用户下拉动作
*/
onPullDownRefresh: function () { },
/**
* 页面上拉触底事件的处理函数
*/
onReachBottom: function () { },
/**
* 用户点击右上角分享
*/
onShareAppMessage() {
onShareAppMessage () {
return app.sharePageImage()
},
showbalance (e) {
@ -400,7 +431,7 @@ Page({
that.setData({
map: res.data.data,
});
console.log('getDataNum',res.data.data);
console.log('getDataNum', res.data.data);
}
})
// wx.request({
@ -467,4 +498,163 @@ Page({
modalMove () {
return false;
},
collectChange (e) { // if (that.data.isLogin || (!that.data.isLogin && e.currentTarget.dataset.item.key == 0)) {
let that = this
if (e.currentTarget.dataset.item) {
let item = e.currentTarget.dataset.item
that.data.choiceCollect = item.key;
// that.data.storeJobListSearchForm.ucj = e.currentTarget.dataset.id;
that.data.storeJobListSearchForm.sortTag = item.key;
that.data.storeJobListSearchForm.picked = item.picked;
that.data.storeJobListSearchForm.pageNum = 1;
that.setData({
choiceCollect: that.data.choiceCollect,
storeJobListSearchForm: that.data.storeJobListSearchForm,
recordList: [],
hasMoreData: true,
});
that.getJobList();
}
},
getJobList ($type) {
let that = this
customRequest("/yishoudan/custom/job/listV2", {
method: 'post',
header: 'headers',
data: {
...that.data.storeJobListSearchForm,
// recruitment: 1
}
}).then((res) => {
console.log("职位列表↓↓↓↓");
console.log(res);
if ($type == 'search') {
that.setData({
// isSwiper: true,
// inputVal: ''
})
}
let data = res.data.data
that.setData({
totalPage: data.pageCount,
currPage: data.currentPage,
});
setTimeout(function () {
that.setData({
triggered: false,
});
}, 1000);
if (data.recordList) {
data.recordList.forEach((i) => {
i.minMonthlyPay = i.minMonthlyPay / 100
i.maxMonthlyPay = i.maxMonthlyPay / 100
if (i.jobSpecialLabelNames && i.jobSpecialLabelNames.length > 0) {
i.labelGroup = i.jobSpecialLabelNames.split(', ').filter((itm, inx) => {
return inx < 6
}).map(itm => {
return itm
})
} else {
i.labelGroup = [];
}
})
}
if (
data.recordList == null ||
data.recordList.length == 0 ||
data.recordList.length <
that.data.storeJobListSearchForm.pageSize
) {
console.log('from 搜索')
var jobListTemp = commonUtil.disposeJobListData(
data.recordList
);
that.data.recordList = that.data.recordList.concat(jobListTemp);
that.setData({
recordList: that.data.recordList,
hasMoreData: false,
isTrigger: false,
});
} else {
console.log('from 其他')
var jobListTemp = commonUtil.disposeJobListData(
data.recordList
);
that.data.recordList = that.data.recordList.concat(jobListTemp);
that.setData({
recordList: that.data.recordList,
hasMoreData: true,
isTrigger: false,
});
}
that.setData({
loading: false,
pageShow: true,
storeJobListSearchForm: that.data.storeJobListSearchForm,
});
that.data.recordList.forEach((item, index) => {
// console.log(item);
// item.logoStr = item.jobName.slice(0,2)
if (
app.isNotEmptyCheck(item.returnFeeType) ||
item.returnFeeType == "0" ||
item.returnFee == "0"
) {
item["fuWuFei"] = commonUtil.getReturnFeeTypeName1ById(
item.returnFeeType,
item.returnFee / 100
);
} else {
item["fuWuFei"] = "";
}
// 简版弹窗通告显示
if (item.id == that.data.currentJobDrawer.id) {
item["jobDesp"] = item.jobDesp
.replace(/\*\*\*\*\*/g, "")
.split("————————")[0];
// 展示用字段
item["jobDesp1"] = item.jobDesp.replace(
"⚠",
"<i class='t-icon t-icon-zhuyi' style='margin-bottom:-2px;width:17px;height:17px;background-repeat:no-repeat;background-size:100% 100%'></i>"
);
item["jobDesp1"] = item.jobDesp1.replace(
"[红包]",
"<i class='t-icon t-icon-hongbao' style='margin-bottom:-2px;width:17px;height:17px;background-repeat:no-repeat;background-size:100% 100%'></i>"
);
that.data.currentJobDrawer = {
...item,
index: that.data.currentJobDrawer.index ?
that.data.currentJobDrawer.index : null,
};
}
});
console.log(' that.data.recordList', that.data.recordList);
that.setData({
recordList: that.data.recordList,
currentJobDrawer: that.data.currentJobDrawer,
});
wx.hideLoading({
success: (res) => { },
});
resolve();
that.getTag();
// if (that.data.recordList.length < data.recordCount) {
// that.setData({
// hasMoreData: true,
// });
// } else {
// that.setData({
// hasMoreData: false,
// });
// }
})
}
});

@ -1,6 +1,8 @@
{
"usingComponents": {
"bottom-drawer": "../../components/bottom-drawer/index"
"bottom-drawer": "../../components/bottom-drawer/index",
"job-sub": "../../components/job-sub/index"
},
"navigationBarTitleText": "我的",
"navigationBarBackgroundColor": "#fff",

@ -1,339 +1,341 @@
<!-- pages/mine/mine.wxml -->
<view class="container">
<navigator class target url="/pages/userDetail/index" hover-class="none" open-type="navigate" wx:if="{{isLogin}}">
<view class="userinfobox">
<view class="userinfo">
<block wx:if="{{userInfo.user.imgSrc}}">
<view class="por mr12" style="height:56px" hover-class="none" hover-stop-propagation="false">
<image src="{{userInfo.user.imgSrc}}" class="show-image" mode="aspectFill"></image>
<view class="mark t-icon {{userInfo.user.agencyRole == 1 ? 't-icon-chuangjianren' : (userInfo.user.agencyRole == 2 ?'t-icon-guanliyuan' : (userInfo.user.agencyRole == 3 ? 't-icon-chengyuan' : ''))}}" style="width:46px;height:16px;background-repeat:no-repeat;background-size:100% 100%"></view>
<scroll-view bindscrolltolower="onScrollToLower" style="height:calc(100vh)" enable-passive scroll-x="{{false}}" scroll-y="{{true}}">
<view class="pl10 pr10" hover-class="none" hover-stop-propagation="false">
<navigator class target url="/pages/userDetail/index" hover-class="none" open-type="navigate" wx:if="{{isLogin}}">
<view class="userinfobox">
<view class="userinfo">
<block wx:if="{{userInfo.user.imgSrc}}">
<view class="por mr12" style="height:56px" hover-class="none" hover-stop-propagation="false">
<image src="{{userInfo.user.imgSrc}}" class="show-image" mode="aspectFill"></image>
<view class="mark t-icon {{userInfo.user.agencyRole == 1 ? 't-icon-chuangjianren' : (userInfo.user.agencyRole == 2 ?'t-icon-guanliyuan' : (userInfo.user.agencyRole == 3 ? 't-icon-chengyuan' : ''))}}" style="width:46px;height:16px;background-repeat:no-repeat;background-size:100% 100%"></view>
</view>
</block>
<block wx:else>
<view class="mr12" hover-class="none" hover-stop-propagation="false">
<image src="https://matripe-cms.oss-cn-beijing.aliyuncs.com/1shoudan/defaultAva.svg" class="show-image" mode="aspectFill"></image>
</view>
</block>
<view class="usernamebox">
<view class="username">
<view class="theusername">{{userInfo.user.nickName || '伯才用户' }}</view>
<i class="iconfont icon-nv3 f12" style="color:#fb8585;line-height:20px" wx:if="{{userInfo.user.sex == 2}}"></i>
<i class="iconfont icon-nan3 f12" style="color:#10aeff;line-height:20px" wx:if="{{userInfo.user.sex == 1}}"></i>
</view>
<view>{{userInfo.user.tel}}</view>
</view>
</view>
<view hover-class="thover">
<view>
<i wx:if="{{userInfo.user.idauth}}" class="iconfont icon-yirenzheng ysd-base-color f20"></i>
<view wx:else class hover-class="none" hover-stop-propagation="false">去认证</view>
</view>
<text class="iconfont icon-gengduo11 c9"></text>
</view>
</block>
<block wx:else>
<view class="mr12" hover-class="none" hover-stop-propagation="false">
<image src="https://matripe-cms.oss-cn-beijing.aliyuncs.com/1shoudan/defaultAva.svg" class="show-image" mode="aspectFill"></image>
</view>
</navigator>
<navigator class target url="/pages/login/index" hover-class="none" open-type="navigate" wx:if="{{!isLogin}}">
<view class="userinfobox">
<view class="userinfo">
<view class="mr12" style="height:56px" hover-class="none" hover-stop-propagation="false">
<image class="show-image" src="https://matripe-cms.oss-cn-beijing.aliyuncs.com/1shoudan/defaultAva.svg" mode="aspectFill"></image>
</view>
<view class="usernamebox">
<view class="username">
<view class="theusername">微信用户</view>
</view>
<view>让天下没有难做的劳务</view>
</view>
</view>
</block>
<view class="usernamebox">
<view class="username">
<view class="theusername">{{userInfo.user.nickName || '伯才用户' }}</view>
<i class="iconfont icon-nv3 f12" style="color:#fb8585;line-height:20px" wx:if="{{userInfo.user.sex == 2}}"></i>
<i class="iconfont icon-nan3 f12" style="color:#10aeff;line-height:20px" wx:if="{{userInfo.user.sex == 1}}"></i>
<view hover-class="thover">
<text class="iconfont icon-gengduo11 c9"></text>
</view>
<view>{{userInfo.user.tel}}</view>
</view>
</view>
<view hover-class="thover">
</navigator>
<!-- <view class="balanceBox">
<view class="userbalance br_8" >
<view>
<i wx:if="{{userInfo.user.idauth}}" class="iconfont icon-yirenzheng ysd-base-color f20"></i>
<view wx:else class hover-class="none" hover-stop-propagation="false">去认证</view>
</view>
<text class="iconfont icon-gengduo11 c9"></text>
</view>
</view>
</navigator>
<navigator class target url="/pages/login/index" hover-class="none" open-type="navigate" wx:if="{{!isLogin}}">
<view class="userinfobox">
<view class="userinfo">
<view class="mr12" style="height:56px" hover-class="none" hover-stop-propagation="false">
<image class="show-image" src="https://matripe-cms.oss-cn-beijing.aliyuncs.com/1shoudan/defaultAva.svg" mode="aspectFill"></image>
</view>
<view class="usernamebox">
<view class="username">
<view class="theusername">微信用户</view>
<view class="balanceinfo f14">
<view style="line-height:1">账户余额(元)</view>
<view class="iconfont icon-zhengyan f14" style="color:#fff;margin-left:4px" wx:if='{{isopen === 1}}' mark:open="{{0}}" bindtap='showbalance'></view>
<view class="iconfont icon-biyan f14" style="color:#fff;margin-left:4px" wx:else mark:open="{{1}}" bindtap='showbalance'></view>
</view>
<view>让天下没有难做的劳务</view>
<view wx:if='{{isopen === 1}}' style="line-height:1">300.08</view>
<view wx:else style="line-height:1">****</view>
</view>
<navigator class="rightbox" target="" url="/pages/balanceDetail/index" hover-class="none" open-type="navigate">
<view class='f14'>提现</view>
<i class="iconfont icon-gengduo11 f12 ml4" style='line-height:12px;color:#fff'></i>
</navigator>
</view>
<view hover-class="thover">
<text class="iconfont icon-gengduo11 c9"></text>
</view>
</view>
</navigator>
<!-- <view class="balanceBox">
<view class="userbalance br_8" >
<view>
<view class="balanceinfo f14">
<view style="line-height:1">账户余额(元)</view>
<view class="iconfont icon-zhengyan f14" style="color:#fff;margin-left:4px" wx:if='{{isopen === 1}}' mark:open="{{0}}" bindtap='showbalance'></view>
<view class="iconfont icon-biyan f14" style="color:#fff;margin-left:4px" wx:else mark:open="{{1}}" bindtap='showbalance'></view>
<navigator url="../wodeBill/index?state=1" class="myaBill">
<view class="fw500">我的账单</view>
<view class='f14'>
待确认<span class='f12 ysd-basebg-color ml4 mr4' style='border-radius:10px;padding:0px 5px;color:#fff'>{{map.billStatus10Num }}</span>
<i class="iconfont icon-gengduo11"></i>
</view>
<view wx:if='{{isopen === 1}}' style="line-height:1">300.08</view>
<view wx:else style="line-height:1">****</view>
</view>
<navigator class="rightbox" target="" url="/pages/balanceDetail/index" hover-class="none" open-type="navigate">
<view class='f14'>提现</view>
<i class="iconfont icon-gengduo11 f12 ml4" style='line-height:12px;color:#fff'></i>
</navigator>
</view>
<navigator url="../wodeBill/index?state=1" class="myaBill">
<view class="fw500">我的账单</view>
<view class='f14'>
待确认<span class='f12 ysd-basebg-color ml4 mr4' style='border-radius:10px;padding:0px 5px;color:#fff'>{{map.billStatus10Num }}</span>
<i class="iconfont icon-gengduo11"></i>
</view>
</navigator>
</view>-->
</view>-->
<view class="mt10 myzhiwei dn" wx:if="{{isLogin}}">
<view class="wodezhiwei fsa bb1" bindtap="fabu" hover-class="none" hover-stop-propagation="false">
<view class hover-class="none" style hover-stop-propagation="false">
<i class="t-icon t-icon-zhiwei1" style="width:22px;height:22px;transform:translateY(4px)"></i>
我的职位
</view>
<view class="fsa c6" hover-class="none" hover-stop-propagation="false">
<view class wx:if="{{isLogin}}" hover-class="none" hover-stop-propagation="false">发布{{map.customJobStatus1Num}}条</view>
<view class="iconfont icon-gengduo11 c9 f12"></view>
</view>
</view>
<view class="addJob fw500" hover-class="none" catchtap="addJob" hover-stop-propagation="false">
<i class="iconfont icon-tianjia2 mr8"></i>新增职位
</view>
</view>
<view wx:if="{{userInfo.agencyStatus != 1}}" class bindtap="showTobe" hover-class target>
<view class="br_8" hover-class="none" style="background-color:#fff" hover-stop-propagation="false">
<view class="setting mt_10 br_8" hover-class="thover">
<view>
<view class="f18" style="color:#4DB54B;font-weight:600">申请加入</view>
</view>
<view class="iconfont icon-gengduo11 c9"></view>
</view>
</view>
</view>
<view class="balanceBox bgcf" wx:if="{{(userInfo.user.agencyRole == 1 || userInfo.user.agencyRole == 2 || userInfo.hasBill) && configInfo.bill && false}}">
<view class="userbalance br_8">
<navigator url="../wodeBill/index?state=20" hover-class="thover" class="br1">
<view class="balanceinfo f14">
<view class="c3 mb12" style="line-height:1">待结算(元)</view>
<view class hover-class="none" hover-stop-propagation="false"></view>
<view class="mt10 myzhiwei dn" wx:if="{{isLogin}}">
<view class="wodezhiwei fsa bb1" bindtap="fabu" hover-class="none" hover-stop-propagation="false">
<view class hover-class="none" style hover-stop-propagation="false">
<i class="t-icon t-icon-zhiwei1" style="width:22px;height:22px;transform:translateY(4px)"></i>
我的职位
</view>
<view class="fsa c6" hover-class="none" hover-stop-propagation="false">
<view class wx:if="{{isLogin}}" hover-class="none" hover-stop-propagation="false">发布{{map.customJobStatus1Num}}条</view>
<view class="iconfont icon-gengduo11 c9 f12"></view>
</view>
</view>
<view class="ysd-base-f40 fw500 f26" style="line-height:1">{{map.billStatus20Salary || '0'}}</view>
</navigator>
<navigator url="../wodeBill/index?state=30" hover-class="thover">
<view class="balanceinfo f14">
<view class="c3 mb12" style="line-height:1">累计结算(元)</view>
<view class hover-class="none" hover-stop-propagation="false"></view>
<view class="addJob fw500" hover-class="none" catchtap="addJob" hover-stop-propagation="false">
<i class="iconfont icon-tianjia2 mr8"></i>新增职位
</view>
<view class="c3 fw500 f26" style="line-height:1">{{map.billStatus30Salary}}</view>
</navigator>
</view>
<navigator url="../wodeBill/index?state=10" hover-class="thover" class="myaBill bt1">
<view class="fw500">待核对</view>
<view class="f14">
<span wx:if="{{map.billStatus10Num}}" class="f12 ysd-basebg-color ml4 mr4" style="border-radius:10px;padding:0px 4.5px;color:#fff;line-height:16px">{{ map.billStatus10Num }}</span>
<p wx:else class="f14 mr8 c9">暂无待核对账单</p>
<i class="iconfont icon-gengduo11"></i>
</view>
</navigator>
</view>
<view class="bgf br8 container bgcf mt10" style="padding: 0;overflow:hidden;" wx:if="{{configInfo.record && false}}">
<view hover-class="thover" class="pl16 pr10 fsa" style="line-height:44px;" bindtap="toTodayData">
<view class="f16 c3 fwb fl wdgd">今日数据</view>
<view class="iconfont icon-gengduo11 c9 f12"></view>
</view>
<view class="bt1 bgcfa">
<view class="weui-grid5 bgcf br1" hover-class="none" hover-stop-propagation="false">
<view class="fw500 f20" hover-class="none" hover-stop-propagation="false">{{map.agencyData.signUps || '0'}}</view>
<view class="f14 c6" hover-class="none" hover-stop-propagation="false">报名</view>
</view>
<view class="weui-grid5 bgcf br1" hover-class="none" hover-stop-propagation="false">
<view class="fw500 f20" hover-class="none" hover-stop-propagation="false">{{map.agencyData.arrived || '0'}}</view>
<view class="f14 c6" hover-class="none" hover-stop-propagation="false">到面</view>
</view>
<view class="weui-grid5 bgcf br1" hover-class="none" hover-stop-propagation="false">
<view class="fw500 f20" hover-class="none" hover-stop-propagation="false">{{map.agencyData.passed || '0'}}</view>
<view class="f14 c6" hover-class="none" hover-stop-propagation="false">通过</view>
</view>
<view class="weui-grid5 bgcf br1" hover-class="none" hover-stop-propagation="false">
<view class="fw500 f20" hover-class="none" hover-stop-propagation="false">{{map.agencyData.entry || '0'}}</view>
<view class="f14 c6" hover-class="none" hover-stop-propagation="false">入职</view>
<view wx:if="{{userInfo.agencyStatus != 1}}" class bindtap="showTobe" hover-class target>
<view class="br_8" hover-class="none" style="background-color:#fff" hover-stop-propagation="false">
<view class="setting mt_10 br_8" hover-class="thover">
<view>
<view class="f18" style="color:#4DB54B;font-weight:600">申请加入</view>
</view>
<view class="iconfont icon-gengduo11 c9"></view>
</view>
</view>
</view>
<view class="weui-grid5 bgcf" hover-class="none" hover-stop-propagation="false">
<view class="fw500 f20" hover-class="none" hover-stop-propagation="false">{{map.agencyData.obJob || '0'}}</view>
<view class="f14 c6" hover-class="none" hover-stop-propagation="false">在职</view>
<view class="balanceBox bgcf" wx:if="{{(userInfo.user.agencyRole == 1 || userInfo.user.agencyRole == 2 || userInfo.hasBill) && configInfo.bill && false}}">
<view class="userbalance br_8">
<navigator url="../wodeBill/index?state=20" hover-class="thover" class="br1">
<view class="balanceinfo f14">
<view class="c3 mb12" style="line-height:1">待结算(元)</view>
<view class hover-class="none" hover-stop-propagation="false"></view>
</view>
<view class="ysd-base-f40 fw500 f26" style="line-height:1">{{map.billStatus20Salary || '0'}}</view>
</navigator>
<navigator url="../wodeBill/index?state=30" hover-class="thover">
<view class="balanceinfo f14">
<view class="c3 mb12" style="line-height:1">累计结算(元)</view>
<view class hover-class="none" hover-stop-propagation="false"></view>
</view>
<view class="c3 fw500 f26" style="line-height:1">{{map.billStatus30Salary}}</view>
</navigator>
</view>
<navigator url="../wodeBill/index?state=10" hover-class="thover" class="myaBill bt1">
<view class="fw500">待核对</view>
<view class="f14">
<span wx:if="{{map.billStatus10Num}}" class="f12 ysd-basebg-color ml4 mr4" style="border-radius:10px;padding:0px 4.5px;color:#fff;line-height:16px">{{ map.billStatus10Num }}</span>
<p wx:else class="f14 mr8 c9">暂无待核对账单</p>
<i class="iconfont icon-gengduo11"></i>
</view>
</navigator>
</view>
</view>
</view>
<!-- 报名工单 -->
<view class="mt10 myBill" wx:if="{{false}}">
<view class="bgf br8 container bgcf" style="padding: 0;">
<view hover-class="thover" class="pl16 pr10" style="line-height:44px;" bindtap="goList">
<view class="f16 c3 fwb fl wdgd" style>报名工单</view>
<view class="fr f14 c3" style>
全部
<i class="iconfont icon-gengduo11 dib f12 pr c9" style="top:-1px"></i>
<view class="bgf br8 container bgcf mt10" style="padding: 0;overflow:hidden;" wx:if="{{configInfo.record && false}}">
<view hover-class="thover" class="pl16 pr10 fsa" style="line-height:44px;" bindtap="toTodayData">
<view class="f16 c3 fwb fl wdgd">今日数据</view>
<view class="iconfont icon-gengduo11 c9 f12"></view>
</view>
<view class="bt1 bgcfa">
<view class="weui-grid5 bgcf br1" hover-class="none" hover-stop-propagation="false">
<view class="fw500 f20" hover-class="none" hover-stop-propagation="false">{{map.agencyData.signUps || '0'}}</view>
<view class="f14 c6" hover-class="none" hover-stop-propagation="false">报名</view>
</view>
<view class="weui-grid5 bgcf br1" hover-class="none" hover-stop-propagation="false">
<view class="fw500 f20" hover-class="none" hover-stop-propagation="false">{{map.agencyData.arrived || '0'}}</view>
<view class="f14 c6" hover-class="none" hover-stop-propagation="false">到面</view>
</view>
<view class="weui-grid5 bgcf br1" hover-class="none" hover-stop-propagation="false">
<view class="fw500 f20" hover-class="none" hover-stop-propagation="false">{{map.agencyData.passed || '0'}}</view>
<view class="f14 c6" hover-class="none" hover-stop-propagation="false">通过</view>
</view>
<view class="weui-grid5 bgcf br1" hover-class="none" hover-stop-propagation="false">
<view class="fw500 f20" hover-class="none" hover-stop-propagation="false">{{map.agencyData.entry || '0'}}</view>
<view class="f14 c6" hover-class="none" hover-stop-propagation="false">入职</view>
</view>
<view class="weui-grid5 bgcf" hover-class="none" hover-stop-propagation="false">
<view class="fw500 f20" hover-class="none" hover-stop-propagation="false">{{map.agencyData.obJob || '0'}}</view>
<view class="f14 c6" hover-class="none" hover-stop-propagation="false">在职</view>
</view>
</view>
<view class="clb"></view>
</view>
<view class="bt1 br8" style="overflow:hidden">
<navigator url="{{isLogin? '../myBill/index?status=1': '/pages/login/index'}}" class="weui-grid5 br1 bgcf" hover-class="thover">
<view class="f20 c3 fwb">{{map.num10 || '0'}}</view>
<view class="weui-grid__label c6 f14">审核中</view>
</navigator>
<navigator url="../myBill/index?status=2" class="weui-grid5 br1" hover-class="thover" wx:if="{{isLogin}}">
<view class="f20 c3 fwb">{{map.num20 || '0'}}</view>
<view class="weui-grid__label c6 f14">待接待</view>
</navigator>
<navigator url="{{isLogin? '../myBill/index?status=3': '/pages/login/index'}}" class="weui-grid5 br1" hover-class="thover">
<view class="f20 c3 fwb">{{map.num25 || '0'}}</view>
<view class="weui-grid__label c6 f14">待面试</view>
</navigator>
<navigator url="{{isLogin? '../myBill/index?status=4': '/pages/login/index'}}" class="weui-grid5 br1" hover-class="thover">
<view class="f20 c3 fwb">{{map.num30 || '0'}}</view>
<view class="weui-grid__label c6 f14">待入职</view>
</navigator>
<!-- <view style="clear:both;height:1px;width:100%;background-color:var(--weui-FG-3);transform: scaleY(0.5);position: relative;"></view> -->
<navigator url="{{isLogin? '../myBill/index?status=5': '/pages/login/index'}}" class="weui-grid5 {{isLogin?'':'br1'}}" hover-class="thover">
<view class="f20 c3 fwb">{{map.num40 || '0'}}</view>
<view class="weui-grid__label c6 f14">在职中</view>
</navigator>
<!-- <navigator url="../myBill/index?status=6" class="weui-grid4" hover-class="none">
<!-- 报名工单 -->
<view class="mt10 myBill" wx:if="{{false}}">
<view class="bgf br8 container bgcf" style="padding: 0;">
<view hover-class="thover" class="pl16 pr10" style="line-height:44px;" bindtap="goList">
<view class="f16 c3 fwb fl wdgd" style>报名工单</view>
<view class="fr f14 c3" style>
全部
<i class="iconfont icon-gengduo11 dib f12 pr c9" style="top:-1px"></i>
</view>
<view class="clb"></view>
</view>
<view class="bt1 br8" style="overflow:hidden">
<navigator url="{{isLogin? '../myBill/index?status=1': '/pages/login/index'}}" class="weui-grid5 br1 bgcf" hover-class="thover">
<view class="f20 c3 fwb">{{map.num10 || '0'}}</view>
<view class="weui-grid__label c6 f14">审核中</view>
</navigator>
<navigator url="../myBill/index?status=2" class="weui-grid5 br1" hover-class="thover" wx:if="{{isLogin}}">
<view class="f20 c3 fwb">{{map.num20 || '0'}}</view>
<view class="weui-grid__label c6 f14">待接待</view>
</navigator>
<navigator url="{{isLogin? '../myBill/index?status=3': '/pages/login/index'}}" class="weui-grid5 br1" hover-class="thover">
<view class="f20 c3 fwb">{{map.num25 || '0'}}</view>
<view class="weui-grid__label c6 f14">待面试</view>
</navigator>
<navigator url="{{isLogin? '../myBill/index?status=4': '/pages/login/index'}}" class="weui-grid5 br1" hover-class="thover">
<view class="f20 c3 fwb">{{map.num30 || '0'}}</view>
<view class="weui-grid__label c6 f14">待入职</view>
</navigator>
<!-- <view style="clear:both;height:1px;width:100%;background-color:var(--weui-FG-3);transform: scaleY(0.5);position: relative;"></view> -->
<navigator url="{{isLogin? '../myBill/index?status=5': '/pages/login/index'}}" class="weui-grid5 {{isLogin?'':'br1'}}" hover-class="thover">
<view class="f20 c3 fwb">{{map.num40 || '0'}}</view>
<view class="weui-grid__label c6 f14">在职中</view>
</navigator>
<!-- <navigator url="../myBill/index?status=6" class="weui-grid4" hover-class="none">
<view class="f22 c3 fwb">{{map.num999 || '0'}}</view>
<view class="weui-grid__label">已完成</view>
</navigator>-->
</view>
</view>
</view>
<!-- 我的老乡 -->
<view class="mt10 mb10 myTownsman" wx:if='{{false}}'>
<view class="bgf br8 container" style="padding: 0;">
<navigator class="pl16 pr10 bb1" hover-class="thover" url="{{isLogin? '../townsMan/index?state=0': '/pages/login/index'}}">
<view class="f16 c3 fwb fl" style="line-height:44px;">我的老乡</view>
<view class="fr f14 c3" style="line-height:44px;">
全部
<i class="iconfont icon-gengduo11 f12 dib pr c9" style="top:-1px"></i>
</navigator>-->
</view>
</view>
<view class="clb"></view>
</navigator>
<view class="weui-grids">
<navigator url="{{isLogin ? '../townsMan/index?state=0': '/pages/login/index'}}" class="weui-grid4 br1" hover-class="thover">
<view class="f20 c3 fwb">{{map.user0 || '0'}}</view>
<view class="weui-grid__label c6 f14">全部</view>
</navigator>
<navigator url="{{isLogin ? '../townsMan/index?state=40': '/pages/login/index'}}" class="weui-grid4 br1" hover-class="thover">
<view class="f20 c3 fwb">{{map.user3 || '0'}}</view>
<view class="weui-grid__label c6 f14">在职中</view>
</navigator>
<!-- <navigator url="{{isLogin ? '../townsMan/index?state=0': '/pages/login/index'}}" class="weui-grid4 br1" wx:if="{{isLogin}}" hover-class="thover">
</view>
<!-- 我的老乡 -->
<view class="mt10 mb10 myTownsman" wx:if="{{false}}">
<view class="bgf br8 container" style="padding: 0;">
<navigator class="pl16 pr10 bb1" hover-class="thover" url="{{isLogin? '../townsMan/index?state=0': '/pages/login/index'}}">
<view class="f16 c3 fwb fl" style="line-height:44px;">我的老乡</view>
<view class="fr f14 c3" style="line-height:44px;">
全部
<i class="iconfont icon-gengduo11 f12 dib pr c9" style="top:-1px"></i>
</view>
<view class="clb"></view>
</navigator>
<view class="weui-grids">
<navigator url="{{isLogin ? '../townsMan/index?state=0': '/pages/login/index'}}" class="weui-grid4 br1" hover-class="thover">
<view class="f20 c3 fwb">{{map.user0 || '0'}}</view>
<view class="weui-grid__label c6 f14">全部</view>
</navigator>
<navigator url="{{isLogin ? '../townsMan/index?state=40': '/pages/login/index'}}" class="weui-grid4 br1" hover-class="thover">
<view class="f20 c3 fwb">{{map.user3 || '0'}}</view>
<view class="weui-grid__label c6 f14">在职中</view>
</navigator>
<!-- <navigator url="{{isLogin ? '../townsMan/index?state=0': '/pages/login/index'}}" class="weui-grid4 br1" wx:if="{{isLogin}}" hover-class="thover">
<view class="f20 c3 fwb">{{map.userBinded0 || '0'}}</view>
<view class="weui-grid__label c6 f14">准备离职</view>
</navigator>-->
<navigator url="{{isLogin ? '../townsMan/index?state=50': '/pages/login/index'}}" class="weui-grid4 br1" wx:if="{{isLogin}}" hover-class="thover">
<view class="f20 c3 fwb">{{map.user50 || '0'}}</view>
<view class="weui-grid__label c6 f14">已离职</view>
</navigator>
<!-- <navigator url="{{isLogin ? '../townsMan/index?state=1': '/pages/login/index'}}" class="weui-grid4 br1" hover-class="thover">
</navigator>-->
<navigator url="{{isLogin ? '../townsMan/index?state=50': '/pages/login/index'}}" class="weui-grid4 br1" wx:if="{{isLogin}}" hover-class="thover">
<view class="f20 c3 fwb">{{map.user50 || '0'}}</view>
<view class="weui-grid__label c6 f14">已离职</view>
</navigator>
<!-- <navigator url="{{isLogin ? '../townsMan/index?state=1': '/pages/login/index'}}" class="weui-grid4 br1" hover-class="thover">
<view class="f20 c3 fwb">{{map.userBinded1 || '0'}}</view>
<view class="weui-grid__label c6 f14">属于我</view>
</navigator>
<navigator url="{{isLogin ? '../townsMan/index?state=0': '/pages/login/index'}}" class="weui-grid4 br1" wx:if="{{isLogin}}" hover-class="thover">
<view class="f20 c3 fwb">{{map.userBinded0 || '0'}}</view>
<view class="weui-grid__label c6 f14">服务过</view>
</navigator>-->
<!-- <navigator url="{{isLogin? '../townsMan/index?state=50': '/pages/login/index'}}" class="weui-grid4 br1" hover-class="thover">
</navigator>-->
<!-- <navigator url="{{isLogin? '../townsMan/index?state=50': '/pages/login/index'}}" class="weui-grid4 br1" hover-class="thover">
<view class="f20 c3 fwb">{{map.user50 || '0'}}</view>
<view class="weui-grid__label c6 f14">最近离职</view>
</navigator>-->
<navigator class="weui-grid4" hover-class="none"></navigator>
</navigator>-->
<navigator class="weui-grid4" hover-class="none"></navigator>
</view>
</view>
</view>
</view>
</view>
<!-- 我的卡包 -->
<!-- 我的卡包 -->
<!-- <view class="mycard br_8">
<view class="title">我的卡包</view>
<view class="content">
<view>
<navigator class="" target="" url="/pages/addUserCard/index" hover-class="thover" open-type="navigate">
<image class="" src="/assets/images/zj.svg" mode="aspectFit|aspectFill|widthFix" lazy-load="false" binderror="" bindload=""></image>
<view>证件</view>
</navigator>
</view>
<view>
<navigator class="" target="" url="/pages/addCard/index" hover-class="thover" aria-role="navigate" open-type="navigate">
<image class="" src="/assets/images/yhk.svg" mode="aspectFit|aspectFill|widthFix" lazy-load="false" binderror="" bindload=""></image>
<view>银行卡</view>
</navigator>
</view>
</view>
</view>-->
<!-- 我的服务 -->
<view class="myserve mt_10 br_8">
<view class="title bb1" hover-class="none" hover-stop-propagation="false">
<view class="ml16 f16 c3 fw500">我的服务</view>
</view>
<view class="content">
<view>
<navigator class target url="{{isLogin? '/pages/addUserCard/index': '/pages/login/index'}}" hover-class="thover" open-type="navigate">
<image class src="https://matripe-cms.oss-cn-beijing.aliyuncs.com/1shoudan/zjb.svg" mode="aspectFit|aspectFill|widthFix" lazy-load="false" binderror bindload></image>
<view>证件</view>
</navigator>
<!-- <view class="mycard br_8">
<view class="title">我的卡包</view>
<view class="content">
<view>
<navigator class="" target="" url="/pages/addUserCard/index" hover-class="thover" open-type="navigate">
<image class="" src="/assets/images/zj.svg" mode="aspectFit|aspectFill|widthFix" lazy-load="false" binderror="" bindload=""></image>
<view>证件</view>
</navigator>
</view>
<view>
<navigator class="" target="" url="/pages/addCard/index" hover-class="thover" aria-role="navigate" open-type="navigate">
<image class="" src="/assets/images/yhk.svg" mode="aspectFit|aspectFill|widthFix" lazy-load="false" binderror="" bindload=""></image>
<view>银行卡</view>
</navigator>
</view>
</view>
<!-- <view>
</view>-->
<!-- 我的服务 -->
<view class="myserve mt_10 br_8">
<view class="title bb1" hover-class="none" hover-stop-propagation="false">
<view class="ml16 f16 c3 fw500">我的服务</view>
</view>
<view class="content">
<view>
<navigator class target url="{{isLogin? '/pages/addUserCard/index': '/pages/login/index'}}" hover-class="thover" open-type="navigate">
<image class src="https://matripe-cms.oss-cn-beijing.aliyuncs.com/1shoudan/zjb.svg" mode="aspectFit|aspectFill|widthFix" lazy-load="false" binderror bindload></image>
<view>证件</view>
</navigator>
</view>
<!-- <view>
<navigator class="" target="" url="/pages/collect/index" hover-class="thover" open-type="navigate">
<image class="" src="/assets/images/sc.svg" mode="aspectFit | aspectFill | widthFix" lazy-load="false" binderror="" bindload=""></image>
<view>我的收藏</view>
</navigator>
</view>-->
<view>
<navigator class target url="{{isLogin? '/pages/addCard/index': '/pages/login/index'}}" hover-class="thover" aria-role="navigate" open-type="navigate">
<image class src="https://matripe-cms.oss-cn-beijing.aliyuncs.com/1shoudan/yhkb.svg" mode="aspectFit|aspectFill|widthFix" lazy-load="false" binderror bindload></image>
<view>银行卡</view>
</navigator>
</view>
<!-- <view>
</view>-->
<view>
<navigator class target url="{{isLogin? '/pages/addCard/index': '/pages/login/index'}}" hover-class="thover" aria-role="navigate" open-type="navigate">
<image class src="https://matripe-cms.oss-cn-beijing.aliyuncs.com/1shoudan/yhkb.svg" mode="aspectFit|aspectFill|widthFix" lazy-load="false" binderror bindload></image>
<view>银行卡</view>
</navigator>
</view>
<!-- <view>
<navigator class="" target="" url="/pages/myEnroll/index" hover-class="none" open-type="navigate">
<image class="" src="/assets/images/wdbm.svg" mode="aspectFit|aspectFill|widthFix" lazy-load="false" binderror="" bindload=""></image>
<view>我的报名</view>
</navigator>
</view>-->
<!-- <view>
</view>-->
<!-- <view>
<image class="" src="/assets/images/wdlx.svg" mode="aspectFit|aspectFill|widthFix" lazy-load="false" binderror="" bindload=""></image>
<view>我的老乡</view>
</view>-->
<view>
<navigator class target url="{{isLogin? '/subPage/addressBook/index': '/pages/login/index'}}" hover-class="thover" open-type="navigate">
<image class src="https://matripe-cms.oss-cn-beijing.aliyuncs.com/1shoudan/dzbb.svg" mode="aspectFit|aspectFill|widthFix" lazy-load="false" binderror bindload></image>
<view>地址本</view>
</navigator>
</view>
<!-- <view>
</view>-->
<view>
<navigator class target url="{{isLogin? '/subPage/addressBook/index': '/pages/login/index'}}" hover-class="thover" open-type="navigate">
<image class src="https://matripe-cms.oss-cn-beijing.aliyuncs.com/1shoudan/dzbb.svg" mode="aspectFit|aspectFill|widthFix" lazy-load="false" binderror bindload></image>
<view>地址本</view>
</navigator>
</view>
<!-- <view>
<navigator class target url="{{isLogin? '/pages/configAnnunciate/index': '/pages/login/index'}}" hover-class="thover" aria-role="navigate" open-type="navigate">
<image class src="https://matripe-cms.oss-cn-beijing.aliyuncs.com/1shoudan/yhkb.svg" mode="aspectFit|aspectFill|widthFix" lazy-load="false" binderror bindload></image>
<view>配置通告</view>
</navigator>
</view> -->
<!-- <view wx:if="{{!isLogin}}">
</view>-->
<!-- <view wx:if="{{!isLogin}}">
<navigator class="" target="" url="" hover-class="thover" open-type="navigate">
<image class="" src="/assets/images/wdbm.svg" mode="aspectFit|aspectFill|widthFix" lazy-load="false" binderror="" bindload=""></image>
<view>我的团队</view>
</navigator>
</view>-->
</view>
</view>
<view class="servicebox mt_10 br8 fsa">
<view class="serviceinfo display-flex" style="flex:1" hover-class="none">
<view class="mr10">
<image wx:if="{{serviceInfo.avatar}}" style="display:block" class="br_8" src="{{serviceInfo.avatar}}" mode="aspectFit|aspectFill|widthFix" lazy-load="false" binderror bindload></image>
<image wx:else class="br_8" style="display:block" src="https://matripe-cms.oss-cn-beijing.aliyuncs.com/1shoudan/service.jpg" mode="aspectFit|aspectFill|widthFix" lazy-load="false" binderror bindload></image>
</view>-->
</view>
</view>
<view class="servicenamebox">
<view class="mb2 f18 fw500">客户经理</view>
<view class="c3 f16 fss">
<view class="oelps mr4 f14" style="max-width:30%">{{serviceInfo.userName }}</view>
<view class="servicebox mt_10 br8 fsa">
<view class="serviceinfo display-flex" style="flex:1" hover-class="none">
<view class="mr10">
<image wx:if="{{serviceInfo.avatar}}" style="display:block" class="br_8" src="{{serviceInfo.avatar}}" mode="aspectFit|aspectFill|widthFix" lazy-load="false" binderror bindload></image>
<image wx:else class="br_8" style="display:block" src="https://matripe-cms.oss-cn-beijing.aliyuncs.com/1shoudan/service.jpg" mode="aspectFit|aspectFill|widthFix" lazy-load="false" binderror bindload></image>
</view>
<view class="servicenamebox">
<view class="mb2 f18 fw500">客户经理</view>
<view class="c3 f16 fss">
<view class="oelps mr4 f14" style="max-width:30%">{{serviceInfo.userName }}</view>
<!-- {{serviceInfo.userName }} -->
<p class="f14" style="line-height:25px">{{serviceInfo.tel || '0371-6611 3723'}}</p>
<!-- {{serviceInfo.userName }} -->
<p class="f14" style="line-height:25px">{{serviceInfo.tel || '0371-6611 3723'}}</p>
</view>
<!-- <view wx:else class="c3 f16">{{serviceInfo.userName || '赵林'}}<i class='mr4'></i>{{serviceInfo.workPhone || '15238047934'}}</view> -->
</view>
</view>
<!-- <view wx:else class="c3 f16">{{serviceInfo.userName || '赵林'}}<i class='mr4'></i>{{serviceInfo.workPhone || '15238047934'}}</view> -->
</view>
</view>
<view class hover-class="none" hover-stop-propagation="false">
<i class="t-icon t-icon-dianhua mr8" bindtap="makePhoneCall" hover-class="thover" style="width:40px;height:40px "></i>
<i class="t-icon t-icon-qiyeweixin1" bindtap="showdialog" hover-class="thover" style="width:40px;height:40px "></i>
</view>
<!-- <view class="display-flex bt1 serviceBottom" hover-class="none" hover-stop-propagation="false">
<view class hover-class="none" hover-stop-propagation="false">
<i class="t-icon t-icon-dianhua mr8" bindtap="makePhoneCall" hover-class="thover" style="width:40px;height:40px "></i>
<i class="t-icon t-icon-qiyeweixin1" bindtap="showdialog" hover-class="thover" style="width:40px;height:40px "></i>
</view>
<!-- <view class="display-flex bt1 serviceBottom" hover-class="none" hover-stop-propagation="false">
<view class="display-flex br1 f14" bindtap="makePhoneCall" hover-class="thover">
<view class hover-stop-propagation="false">
<i class="iconfont icon-dianhua fw500 c6 mr4"></i>
@ -348,137 +350,148 @@
</view>
<i class="iconfont icon-gengduo11 c9 f12"></i>
</view>
</view>-->
</view>
<!-- 切换团队 -->
<view class hover-class="none" hover-stop-propagation="false">
<!-- <navigator wx:if="{{userInfo.agencyStatus == 1 && configInfo.team}}" class url="/pages/myMember/index" hover-class="none" hover-stop-propagation="false"></navigator> -->
<view class="br_8" catchtap="showToggle" hover-class="none" style="background-color:#fff" hover-stop-propagation="false" wx:if="{{isLogin && userInfo.agencyStatus == 1 && configInfo.team}}">
<view class="setting mt_10" hover-class="thover">
<view style="flex: none;">
<view class="t-icon t-icon-qiehuantuandui mr6" style="width:24px;height:24px" hover-class="none" hover-stop-propagation="false"></view>
<view class hover-class="none" style="line-height:16px" hover-stop-propagation="false">
<view class="f16 display-flex c3" style="line-height:16px" hover-class="none" hover-stop-propagation="false">当前团队</view>
</view>
</view>
<view style="flex: 1;" class="g_flex_column_center">
<view class="g_flex_row_end" style="width: 100%;position: relative;top: 3px;">
<view class="g_flex_column_center g_flex_1">
<view class="g_flex_1 g_ell_1" style="text-align: right;">
{{userInfo.agencyName || '-'}}
</view>-->
</view>
<!-- 切换团队 -->
<view class hover-class="none" hover-stop-propagation="false">
<!-- <navigator wx:if="{{userInfo.agencyStatus == 1 && configInfo.team}}" class url="/pages/myMember/index" hover-class="none" hover-stop-propagation="false"></navigator> -->
<view class="br_8" catchtap="showToggle" hover-class="none" style="background-color:#fff" hover-stop-propagation="false" wx:if="{{isLogin && userInfo.agencyStatus == 1 && configInfo.team}}">
<view class="setting mt_10" hover-class="thover">
<view style="flex: none;">
<view class="t-icon t-icon-qiehuantuandui mr6" style="width:24px;height:24px" hover-class="none" hover-stop-propagation="false"></view>
<view class hover-class="none" style="line-height:16px" hover-stop-propagation="false">
<view class="f16 display-flex c3" style="line-height:16px" hover-class="none" hover-stop-propagation="false">当前团队</view>
</view>
</view>
<view class="g_flex_column_center g_flex_none">
<view class="iconfont icon-gengduo11 f16 c9 ml4 mt2"></view>
<view style="flex: 1;" class="g_flex_column_center">
<view class="g_flex_row_end" style="width: 100%;position: relative;top: 3px;">
<view class="g_flex_column_center g_flex_1">
<view class="g_flex_1 g_ell_1" style="text-align: right;">{{userInfo.agencyName || '-'}}</view>
</view>
<view class="g_flex_column_center g_flex_none">
<view class="iconfont icon-gengduo11 f16 c9 ml4 mt2"></view>
</view>
</view>
</view>
</view>
</view>
</view>
</view>
</view>
<navigator class hover-class style target url="{{isLogin? '/pages/opinion/index': '/pages/login/index'}}">
<view class="br_8" hover-class="none" style="background-color:#fff" hover-stop-propagation="false">
<view class="setting mt_10" hover-class="thover">
<view>
<view class="t-icon t-icon-fankuiyujianyi mr6 ticon" style="width:22px;height:22px" hover-class="none" hover-stop-propagation="false"></view>
<view class>反馈与建议</view>
<navigator class hover-class style target url="{{isLogin? '/pages/opinion/index': '/pages/login/index'}}">
<view class="br_8" hover-class="none" style="background-color:#fff" hover-stop-propagation="false">
<view class="setting mt_10" hover-class="thover">
<view>
<view class="t-icon t-icon-fankuiyujianyi mr6 ticon" style="width:22px;height:22px" hover-class="none" hover-stop-propagation="false"></view>
<view class>反馈与建议</view>
</view>
<view class="iconfont icon-gengduo11"></view>
</view>
</view>
<view class="iconfont icon-gengduo11"></view>
</view>
</navigator>
<!-- style="margin-bottom: 200px;" -->
<navigator class="mb12" hover-class target url="{{isLogin? '/pages/setting/index': '/pages/login/index'}}">
<view class="br_8" hover-class="none" style="background-color:#fff" hover-stop-propagation="false">
<view class="setting mt_10" hover-class="thover">
<view>
<!-- <image class src="/assets/images/sz.svg" mode="aspectFit|aspectFill|widthFix" lazy-load="false" binderror bindload></image> -->
<view class="t-icon t-icon-shezhi1 mr6" style="width:22px;height:22px" hover-class="none" hover-stop-propagation="false"></view>
<view class>设置</view>
</view>
<view class="iconfont icon-gengduo11"></view>
</view>
</view>
</navigator>
</view>
</navigator>
<!-- style="margin-bottom: 200px;" -->
<navigator class="mb32" hover-class target url="{{isLogin? '/pages/setting/index': '/pages/login/index'}}">
<view class="br_8" hover-class="none" style="background-color:#fff" hover-stop-propagation="false">
<view class="setting mt_10" hover-class="thover">
<view>
<!-- <image class src="/assets/images/sz.svg" mode="aspectFit|aspectFill|widthFix" lazy-load="false" binderror bindload></image> -->
<view class="t-icon t-icon-shezhi1 mr6" style="width:22px;height:22px" hover-class="none" hover-stop-propagation="false"></view>
<view class>设置</view>
<view class wx:if="{{appId == 'wxe431e0b3abd9ae0b'}}" hover-class="none" hover-stop-propagation="false">
<view class="tab_container fsa sticky" hover-class="none" hover-stop-propagation="false">
<view wx:for="{{tabGroup}}" class="tarbar" style="margin-right: 24px;text-align:center" data-item="{{item}}" bindtap="collectChange">
<view class="tarbarText {{choiceCollect == item.key?'collectActive':''}}">{{item.name}}</view>
<!-- <image wx:if="{{toped == '1'}}" src="../../assets/images/border-circle.svg" class="tarbarImg"></image> -->
</view>
<view class="iconfont icon-gengduo11"></view>
</view>
<view class="mt12" hover-class="none" hover-stop-propagation="false">
<job-sub storeJobListSearchForm="{{storeJobListSearchForm}}" type="main" recordList="{{recordList}}" isLogin="{{isLogin}}" agencyStatus="{{userInfo.agencyStatus}}" hasUserInfo="{{hasUserInfo}}" loginUserInfo="{{userInfo}}"></job-sub>
</view>
</view>
</navigator>
<!-- <view class="login" wx:if="{{!isLogin}}">
<!-- <view class="login" wx:if="{{!isLogin}}">
<navigator class="" target="" url="../login/index" hover-class="none" open-type="navigate">
<button class="loginBtn" style="font-weight:400;margin-top:0px;" type="primary" role="button" bindtap=''>登录</button>
</navigator>
</view>-->
</view>
</view>-->
</scroll-view>
<view aria-role="dialog" aria-modal="true" catchtouchmove="modalMove" class="fadeIn" wx:if="{{iosDialog}}">
<view class="weui-mask"></view>
<view class="weui-dialog contact" style="box-sizing:border-box;">
<view class="weui-dialog__hd">
<!-- <strong class="weui-dialog__title">17639080029</strong></view> -->
<!-- <view class="weui-dialog__bd">
<view aria-role="dialog" aria-modal="true" catchtouchmove="modalMove" class="fadeIn" wx:if="{{iosDialog}}">
<view class="weui-mask"></view>
<view class="weui-dialog contact" style="box-sizing:border-box;">
<view class="weui-dialog__hd">
<!-- <strong class="weui-dialog__title">17639080029</strong></view> -->
<!-- <view class="weui-dialog__bd">
<view>现在登录吗?</view>
</view>-->
<!-- <image src="https://matripe-cms.oss-cn-beijing.aliyuncs.com/1shoudan/service.jpg" style="width:56px;height:56px;"></image> -->
<!-- <image src="../../assets/Snipaste_2023-06-13_09-25-14.png" show-menu-by-longpress='{{true}}' style="width:56px;height:56px;"></image> -->
<i class="iconfont icon-guanbi guanbi c6 biggerSize" bindtap="closeDialog"></i>
<view class="f16 c3 fw500 mb32">加客户经理微信</view>
<view wx:if="{{isLoading}}" class style="position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)" hover-class="none" hover-stop-propagation="false">
<view aria-role="img" aria-label="加载中" style class="weui-primary-loading">
<view class="weui-primary-loading__dot"></view>
</view>-->
<!-- <image src="https://matripe-cms.oss-cn-beijing.aliyuncs.com/1shoudan/service.jpg" style="width:56px;height:56px;"></image> -->
<!-- <image src="../../assets/Snipaste_2023-06-13_09-25-14.png" show-menu-by-longpress='{{true}}' style="width:56px;height:56px;"></image> -->
<i class="iconfont icon-guanbi guanbi c6 biggerSize" bindtap="closeDialog"></i>
<view class="f16 c3 fw500 mb32">加客户经理微信</view>
<view wx:if="{{isLoading}}" class style="position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)" hover-class="none" hover-stop-propagation="false">
<view aria-role="img" aria-label="加载中" style class="weui-primary-loading">
<view class="weui-primary-loading__dot"></view>
</view>
<view class hover-class="none" hover-stop-propagation="false">加载中...</view>
</view>
<view class hover-class="none" hover-stop-propagation="false">加载中...</view>
<image src="{{serviceInfo.qrCode}}" bindload="imageLoad" show-menu-by-longpress="{{true}}" style="width: 184px;height: 184px;"></image>
<!-- <view class="f14 c9">人才经纪人</view> -->
<!-- <view class="mt20 f22 c3">{{pmdUserInfo.tel}}</view> -->
<view class="f14 c3 mt6">长按识别二维码</view>
</view>
<image src="{{serviceInfo.qrCode}}" bindload="imageLoad" show-menu-by-longpress="{{true}}" style="width: 184px;height: 184px;"></image>
<!-- <view class="f14 c9">人才经纪人</view> -->
<!-- <view class="mt20 f22 c3">{{pmdUserInfo.tel}}</view> -->
<view class="f14 c3 mt6">长按识别二维码</view>
</view>
<!-- <view class="display-flex contact_bottomBtn pb20" style="padding-top:20px;">
<!-- <view class="display-flex contact_bottomBtn pb20" style="padding-top:20px;">
<view class="flex-1 lflex v-center" bindtap="closeDialog" hover-class="thover">取消</view>
<view class="rflex">
<button class="" type="primary" hover-class="thover" bindtap="makePhoneCall">呼叫</button>
</view>
</view>-->
</view>-->
</view>
</view>
</view>
<view aria-role="dialog" catchtouchmove="modalMove" aria-modal="true" class="fadeIn" wx:if="{{iosDialogTobe}}">
<view class="weui-mask"></view>
<view class="weui-dialog contact tobe" style="box-sizing:border-box;">
<i class="iconfont icon-guanbi guanbi c6 biggerSize" bindtap="closeDialog"></i>
<view class="weui-dialog__hd">
<view class="f20 bbd1 top" hover-class="none" hover-stop-propagation="false">
<view class="fw500" hover-class="none" hover-stop-propagation="false">申请加入伯才</view>
<view class="f16 c6" hover-class="none" hover-stop-propagation="false">请联系客户经理</view>
</view>
<view class="bottom" hover-class="none" hover-stop-propagation="false">
<view class hover-class="none" hover-stop-propagation="false">
<view class="fw500 f18" hover-class="none" hover-stop-propagation="false">客户经理</view>
<view class="c3 f14">
{{serviceInfo.userName }}
<i class="mr4"></i>
<p class>{{serviceInfo.tel || '0371-6611 3723'}}</p>
</view>
<view wx:if="{{isLoading}}" class style="position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)" hover-class="none" hover-stop-propagation="false">
<view aria-role="img" aria-label="加载中" style class="weui-primary-loading">
<view class="weui-primary-loading__dot"></view>
<view aria-role="dialog" catchtouchmove="modalMove" aria-modal="true" class="fadeIn" wx:if="{{iosDialogTobe}}">
<view class="weui-mask"></view>
<view class="weui-dialog contact tobe" style="box-sizing:border-box;">
<i class="iconfont icon-guanbi guanbi c6 biggerSize" bindtap="closeDialog"></i>
<view class="weui-dialog__hd">
<view class="f20 bbd1 top" hover-class="none" hover-stop-propagation="false">
<view class="fw500" hover-class="none" hover-stop-propagation="false">申请加入伯才</view>
<view class="f16 c6" hover-class="none" hover-stop-propagation="false">请联系客户经理</view>
</view>
<view class="bottom" hover-class="none" hover-stop-propagation="false">
<view class hover-class="none" hover-stop-propagation="false">
<view class="fw500 f18" hover-class="none" hover-stop-propagation="false">客户经理</view>
<view class="c3 f14">
{{serviceInfo.userName }}
<i class="mr4"></i>
<p class>{{serviceInfo.tel || '0371-6611 3723'}}</p>
</view>
<view wx:if="{{isLoading}}" class style="position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)" hover-class="none" hover-stop-propagation="false">
<view aria-role="img" aria-label="加载中" style class="weui-primary-loading">
<view class="weui-primary-loading__dot"></view>
</view>
<view class hover-class="none" hover-stop-propagation="false">加载中...</view>
</view>
<view class hover-class="none" hover-stop-propagation="false">加载中...</view>
<image src="{{serviceInfo.qrCode}}" bindload="imageLoad" show-menu-by-longpress="{{true}}" style="width: 161px;height: 161px;"></image>
<view class="f14 c9 mt6">长按识别二维码</view>
</view>
<image src="{{serviceInfo.qrCode}}" bindload="imageLoad" show-menu-by-longpress="{{true}}" style="width: 161px;height: 161px;"></image>
<view class="f14 c9 mt6">长按识别二维码</view>
</view>
</view>
</view>
</view>
</view>
<bottom-drawer show="{{drawerShow}}" touchClose="{{false}}" hideTabbar="{{true}}" drawerType="drawerShow" bindhidedrawer="hidedrawershow" height="60vh">
<view slot="title" class="tac fw500 f18 bb1" style="line-height:56px" hover-class="none" hover-stop-propagation="false">切换团队</view>
<scroll-view class="pb32" scroll-y="true" hover-class="none" hover-stop-propagation="{{false}}" style="height:calc(100% - 82px)">
<!-- <radio-group class="radio-group mb32" bindchange="radioChange" hover-class="none"> -->
<view class="weui-check__label fsa p16 bb1" hover-class="thover" hover-stop-propagation="true" wx:for="{{teamList}}" wx:key="name" wx:for-index="index" bindtap="toogleTeam" data-item="{{item}}">
<view class="weui-cell__bd">
<view class="f17">{{item.agencyName}}</view>
<bottom-drawer show="{{drawerShow}}" touchClose="{{false}}" hideTabbar="{{true}}" drawerType="drawerShow" bindhidedrawer="hidedrawershow" height="60vh">
<view slot="title" class="tac fw500 f18 bb1" style="line-height:56px" hover-class="none" hover-stop-propagation="false">切换团队</view>
<scroll-view class="pb32" scroll-y="true" hover-class="none" hover-stop-propagation="{{false}}" style="height:calc(100% - 82px)">
<!-- <radio-group class="radio-group mb32" bindchange="radioChange" hover-class="none"> -->
<view class="weui-check__label fsa p16 bb1" hover-class="thover" hover-stop-propagation="true" wx:for="{{teamList}}" wx:key="name" wx:for-index="index" bindtap="toogleTeam" data-item="{{item}}">
<view class="weui-cell__bd">
<view class="f17">{{item.agencyName}}</view>
</view>
<view class style="color:#1890ff" hover-class="none" hover-stop-propagation="false">{{item.checked ? '当前':''}}</view>
</view>
<view class style="color:#1890ff" hover-class="none" hover-stop-propagation="false">{{item.checked ? '当前':''}}</view>
</view>
<!-- </radio-group> -->
</scroll-view>
</bottom-drawer>
<!-- </radio-group> -->
</scroll-view>
</bottom-drawer>
</view>

@ -1,226 +1,228 @@
/* pages/mine/mine.wxss */
/* @import "../../appcommon.wxss"; */
page {
height: 90vh;
/* margin-top: 10px; */
}
.container {
padding: 10px;
/* height: 100vh; */
padding: 10px 0;
overflow: auto;
}
.container .no_login {
display: flex;
align-items: center;
display: flex;
align-items: center;
}
.container .no_login .t-icon-morentouxiang {
width: 56px;
height: 56px;
width: 56px;
height: 56px;
}
.container .no_login view:last-child {
font-size: 22px;
font-size: 22px;
}
.container .login {
margin-top: 30px;
margin-top: 30px;
}
.container .login .loginBtn {
width: 200px;
height: 42px;
background-color: var(--color-ysd);
border-radius: 999px;
width: 200px;
height: 42px;
background-color: var(--color-ysd);
border-radius: 999px;
}
.container .userinfobox,
.container .setting {
display: flex;
background-color: #fff;
justify-content: space-between;
align-items: center;
border-radius: 8px;
padding: 18px 10px !important;
padding-left: 16px !important;
/* padding-left: 20px !important; */
display: flex;
background-color: #fff;
justify-content: space-between;
align-items: center;
border-radius: 8px;
padding: 18px 10px !important;
padding-left: 16px !important;
/* padding-left: 20px !important; */
}
.container .userinfobox .userinfo,
.container .setting .userinfo {
display: flex;
justify-content: space-between;
align-items: center;
display: flex;
justify-content: space-between;
align-items: center;
}
.container .userinfobox .userinfo > view:last-child,
.container .setting .userinfo > view:last-child {
display: flex;
flex-direction: column;
justify-content: space-between;
height: 100%;
display: flex;
flex-direction: column;
justify-content: space-between;
height: 100%;
}
.container .userinfobox .userinfo > view:last-child view:last-child,
.container .setting .userinfo > view:last-child view:last-child {
color: #666;
line-height: 1;
color: #666;
line-height: 1;
}
.container .userinfobox .userinfo .usernamebox,
.container .setting .userinfo .usernamebox {
display: flex;
justify-content: space-between;
flex-direction: column;
/* margin-left: 4px; */
display: flex;
justify-content: space-between;
flex-direction: column;
/* margin-left: 4px; */
}
.container .userinfobox .userinfo .usernamebox .username,
.container .setting .userinfo .usernamebox .username {
display: flex;
justify-content: start;
flex-direction: row;
align-items: center;
line-height: 1;
margin-bottom: 10px;
font-size: 20px;
font-weight: 603;
display: flex;
justify-content: start;
flex-direction: row;
align-items: center;
line-height: 1;
margin-bottom: 10px;
font-size: 20px;
font-weight: 603;
}
.container .userinfobox .userinfo .usernamebox .username .theusername {
max-width: 160px;
word-wrap: nowrap;
word-break: keep-all;
overflow: hidden;
text-overflow: ellipsis;
color: #333;
max-width: 160px;
word-wrap: nowrap;
word-break: keep-all;
overflow: hidden;
text-overflow: ellipsis;
color: #333;
}
.container .userinfobox .userinfo .usernamebox .username i,
.container .setting .userinfo .usernamebox .username i {
width: 20px;
height: 20px;
margin-left: 5px;
width: 20px;
height: 20px;
margin-left: 5px;
}
.container .userinfobox .userinfo image,
.container .setting .userinfo image {
width: 56px;
height: 56px;
border-radius: 999px;
/* margin-right: 12px; */
width: 56px;
height: 56px;
border-radius: 999px;
/* margin-right: 12px; */
}
.container .userinfobox > view:last-child,
.container .setting > view:last-child {
display: flex;
align-items: center;
color: #acacac;
display: flex;
align-items: center;
color: #acacac;
}
.container .userinfobox > view:last-child text,
.container .setting > view:last-child text {
margin-left: 4px;
margin-left: 4px;
}
.balanceBox {
border-radius: 8px;
margin-bottom: 10px;
overflow: hidden;
margin-top: 10px;
border-radius: 8px;
margin-bottom: 10px;
overflow: hidden;
margin-top: 10px;
}
.balanceBox .myaBill {
display: flex;
justify-content: space-between;
align-items: center;
height: 48px;
padding: 0 10px 0 16px;
background-color: #fff;
display: flex;
justify-content: space-between;
align-items: center;
height: 48px;
padding: 0 10px 0 16px;
background-color: #fff;
}
.balanceBox .myaBill .icon-gengduo11 {
color: #999;
font-size: 12px;
color: #999;
font-size: 12px;
}
.container .userbalance {
display: flex;
justify-content: space-between;
align-items: center;
/* padding: 16px; */
border-radius: 8px 8px 0 0;
/* width: 355px; */
/* height: 96px; */
box-sizing: border-box;
color: #fff;
background-color: #fff;
display: flex;
justify-content: space-between;
align-items: center;
/* padding: 16px; */
border-radius: 8px 8px 0 0;
/* width: 355px; */
/* height: 96px; */
box-sizing: border-box;
color: #fff;
background-color: #fff;
}
.container .userbalance > navigator {
height: 100%;
display: flex;
flex: 1;
flex-direction: column;
justify-content: space-around;
padding: 16px 0 16px 16px;
height: 100%;
display: flex;
flex: 1;
flex-direction: column;
justify-content: space-around;
padding: 16px 0 16px 16px;
}
.container .userbalance > view > view:last-child {
font-size: 26px;
font-size: 26px;
}
.container .userbalance .balanceinfo {
display: flex;
justify-content: start;
flex-direction: row;
align-items: center;
display: flex;
justify-content: start;
flex-direction: row;
align-items: center;
}
.container .userbalance .balanceinfo > view:last-child {
width: 20px;
height: 20px;
background-repeat: no-repeat;
background-size: 100% 100%;
width: 20px;
height: 20px;
background-repeat: no-repeat;
background-size: 100% 100%;
}
.container .userbalance .rightbox {
display: flex;
justify-content: space-between;
flex-direction: column;
align-items: center;
display: flex;
justify-content: space-between;
flex-direction: column;
align-items: center;
}
.container .userbalance .rightbox > view:last-child {
width: 12px;
height: 12px;
/* margin-left: 8px; */
width: 12px;
height: 12px;
/* margin-left: 8px; */
}
.container .mycard,
.container .myserve {
background-color: #fff;
background-color: #fff;
}
.container .mycard .title,
.container .myserve .title {
font-size: 16px;
/* font-weight: 400; */
padding: 9px 0px;
/* padding-top: 16px; */
font-size: 16px;
/* font-weight: 400; */
padding: 9px 0px;
/* padding-top: 16px; */
}
.container .mycard .content,
.container .myserve .content {
display: flex;
justify-content: start;
padding: 16px 0px;
display: flex;
justify-content: start;
padding: 16px 0px;
}
.container .mycard .content > view,
.container .myserve .content > view {
width: 25%;
text-align: center;
font-size: 14px;
color: #666;
/* margin-right: 24px; */
width: 25%;
text-align: center;
font-size: 14px;
color: #666;
/* margin-right: 24px; */
}
.container .mycard .content > view image,
.container .myserve .content > view image {
width: 22px;
height: 22px;
width: 22px;
height: 22px;
}
/* .container .myserve .content {
justify-content: space-between;
} */
.container .myserve .content > view {
margin-right: 0;
margin-right: 0;
}
.container .servicebox {
/* display: flex;
/* display: flex;
justify-content: space-between;
flex-direction: column;
align-items: start; */
/* padding: 20px; */
padding: 16px 12px;
/* padding-bottom: 0; */
/* padding-right: 10px; */
background-color: #fff;
/* padding: 20px; */
padding: 16px 12px;
/* padding-bottom: 0; */
/* padding-right: 10px; */
background-color: #fff;
}
.container .servicebox .serviceinfo {
}
.container .servicebox .serviceinfo image {
width: 52px;
height: 52px;
width: 52px;
height: 52px;
}
/* .servicebox .serviceBottom {
height: 48px;
@ -235,142 +237,177 @@ page {
} */
.container .setting > view:first-child {
display: flex;
justify-content: space-between;
align-items: center;
display: flex;
justify-content: space-between;
align-items: center;
}
.weui-dialog .weui-dialog__ft {
display: flex;
align-items: center;
justify-content: space-around;
height: 80px;
display: flex;
align-items: center;
justify-content: space-around;
height: 80px;
}
.weui-dialog .weui-dialog__ft .cancel {
flex: unset;
width: 112px;
color: var(--color-ysd);
flex: unset;
width: 112px;
color: var(--color-ysd);
}
.weui-dialog .weui-dialog__ft .call {
flex: unset;
width: 112px;
height: 42px;
line-height: 42px;
padding: 0;
background-color: var(--color-ysd);
border-radius: 999px;
color: #fff;
flex: unset;
width: 112px;
height: 42px;
line-height: 42px;
padding: 0;
background-color: var(--color-ysd);
border-radius: 999px;
color: #fff;
}
.weui-dialog .weui-dialog__bd {
text-align: center;
padding: 20px 20px 0;
margin-bottom: 0;
font-weight: normal;
text-align: center;
padding: 20px 20px 0;
margin-bottom: 0;
font-weight: normal;
}
.weui-dialog .weui-dialog__bd .avatar {
margin-bottom: 12px;
margin-bottom: 12px;
}
.weui-dialog .weui-dialog__bd .avatar image {
width: 56px;
height: 56px;
width: 56px;
height: 56px;
}
.weui-dialog .weui-dialog__bd .name {
margin-bottom: 8px;
font-size: 20px;
margin-bottom: 8px;
font-size: 20px;
}
.weui-dialog .weui-dialog__bd .job {
margin-bottom: 20px;
font-size: 14px;
margin-bottom: 20px;
font-size: 14px;
}
.weui-dialog .weui-dialog__bd .tel {
margin-bottom: 20px;
font-size: 22px;
margin-bottom: 20px;
font-size: 22px;
}
.contact {
width: 80%;
height: 350px;
width: 80%;
height: 350px;
}
.contact .weui-dialog__hd {
margin-top: 40px;
padding: 0;
position: relative;
margin-top: 40px;
padding: 0;
position: relative;
}
.guanbi {
position: absolute;
right: 16px;
top: -28px;
position: absolute;
right: 16px;
top: -28px;
}
.contact .contact_bottomBtn .v-center {
width: 80px !important;
width: 80px !important;
}
.contact .contact_bottomBtn .rflex button {
padding: 0;
width: 100%;
padding: 0;
width: 100%;
}
.button-hover {
opacity: 0.8;
background-color: #fff;
opacity: 0.8;
background-color: #fff;
}
.friendBar .container {
display: flex;
justify-content: start;
padding: 0;
display: flex;
justify-content: start;
padding: 0;
}
.friendBar .container .sub {
flex: 25%;
padding: 16px 0;
text-align: center;
flex: 25%;
padding: 16px 0;
text-align: center;
}
.friendBar .container .sub .t-icon {
margin-bottom: 6px;
margin-bottom: 6px;
}
.friendBar .container .sub view {
line-height: 1;
line-height: 1;
}
.myBill .weui-grids {
border-top: 1px solid #f5f5f5;
border-top: 1px solid #f5f5f5;
}
.myBill .weui-grids::before,
.myTownsman .weui-grids::before {
display: none;
display: none;
}
.weui-grids navigator {
width: 20%;
width: 20%;
}
.weui-grid4 {
padding: 10px 0;
text-align: center;
padding: 10px 0;
text-align: center;
}
.weui-grid4::before {
display: none;
display: none;
}
.weui-grid5::before {
display: none;
display: none;
}
.mark {
position: absolute;
left: 50%;
bottom: -5px;
transform: translateX(-50%);
position: absolute;
left: 50%;
bottom: -5px;
transform: translateX(-50%);
}
.wodezhiwei{
display: flex;
background-color: #fff;
justify-content: space-between;
align-items: center;
padding: 18px 10px !important;
padding-left: 16px !important;
.wodezhiwei {
display: flex;
background-color: #fff;
justify-content: space-between;
align-items: center;
padding: 18px 10px !important;
padding-left: 16px !important;
}
.myzhiwei{
background-color: #fff;
border-radius: 8px;
.myzhiwei {
background-color: #fff;
border-radius: 8px;
text-align: center;
}
.addJob{
.addJob {
padding: 16px 0;
color: var(--color-ysd);
}
.tab_container {
display: flex;
justify-content: space-between;
align-items: center;
padding: 12px;
margin: 0 10px;
background-color: #fff;
border-radius: 8px;
}
.sticky {
position: sticky;
top: 0px;
left: 0;
z-index: 100;
}
.collectActive {
color: #1890ff;
font-weight: 601;
position: relative;
}
.collectActive::after {
content: "";
background: #1890ff;
height: 3px;
width: 32px;
position: absolute;
bottom: -6px;
left: 50%;
transform: translateX(-50%);
}
.tarbarText {
font-size: 16px;
font-weight: 400;
color: #666666;
/* line-height: 25px; */
}

@ -44,7 +44,7 @@
"tabIndent": "insertSpaces",
"tabSize": 2
},
"appid": "wxb0dea4d11428c6a5",
"appid": "wxe431e0b3abd9ae0b",
"packOptions": {
"ignore": [],
"include": []

Loading…
Cancel
Save