|
|
@@ -7,11 +7,9 @@
|
|
|
<view class="header-section">
|
|
|
<view class="header-main" @click="goProfile">
|
|
|
<view class="avatar-wrap">
|
|
|
- <image
|
|
|
- class="avatar"
|
|
|
+ <image class="avatar"
|
|
|
:src="merchantInfo.cPortrait ? $globalData.publicUrl + merchantInfo.cPortrait : '/static/common/avatar.png'"
|
|
|
- mode="aspectFill"
|
|
|
- />
|
|
|
+ mode="aspectFill" />
|
|
|
</view>
|
|
|
<view class="header-info">
|
|
|
<view class="nickname">
|
|
|
@@ -94,7 +92,7 @@
|
|
|
<view class="order-card">
|
|
|
<view class="order-title-row">
|
|
|
<text class="order-title one-line-text">{{ orderTitle }}服务项目</text>
|
|
|
- <!-- v-if="isNewCustomer" -->
|
|
|
+ <!-- v-if="isNewCustomer" -->
|
|
|
<text class="tag-new">新客户</text>
|
|
|
</view>
|
|
|
<view class="order-time">
|
|
|
@@ -110,13 +108,9 @@
|
|
|
<view class="slide-wrap" id="slideWrap">
|
|
|
<view class="slide-track">
|
|
|
<text class="slide-hint">滑动接单</text>
|
|
|
- <view
|
|
|
- class="slide-thumb"
|
|
|
- :style="{ transform: `translateX(${slideX}px)` }"
|
|
|
- @touchstart="onSlideStart"
|
|
|
- @touchmove.stop.prevent="onSlideMove"
|
|
|
- @touchend="onSlideEnd"
|
|
|
- >
|
|
|
+ <view class="slide-thumb" :style="{ transform: `translateX(${slideX}px)` }"
|
|
|
+ @touchstart="onSlideStart" @touchmove.stop.prevent="onSlideMove"
|
|
|
+ @touchend="onSlideEnd">
|
|
|
<image class="slide-arrow" src="/static/workbench/move.png" mode="aspectFit" />
|
|
|
</view>
|
|
|
</view>
|
|
|
@@ -143,14 +137,15 @@
|
|
|
<view v-if="skillList.length === 1" class="skill-single">
|
|
|
<view class="skill-card skill-card--single">
|
|
|
<view class="skill-img">
|
|
|
- <image :src="skillList[0].cCover" mode="aspectFill" />
|
|
|
+ <image :src="public + skillList[0].projectMasterImage" mode="aspectFill" />
|
|
|
</view>
|
|
|
<view class="skill-info">
|
|
|
- <view class="skill-name one-line-text">{{ skillList[0].cTitle }}</view>
|
|
|
- <view class="skill-tags" v-if="skillList[0].cTags && skillList[0].cTags.length">
|
|
|
- <view class="skill-tag" v-for="(tag, tagIndex) in skillList[0].cTags" :key="tagIndex">{{ tag }}</view>
|
|
|
+ <view class="skill-name one-line-text">{{ skillList[0].projectName }}</view>
|
|
|
+ <view class="skill-tags" v-if="skillList[0].highlight && skillList[0].highlight.length">
|
|
|
+ <view class="skill-tag" v-for="(tag, tagIndex) in skillList[0].highlight" :key="tagIndex">
|
|
|
+ {{ tag }}</view>
|
|
|
</view>
|
|
|
- <view class="skill-price">¥{{ formatMoney(skillList[0].dPrice) }}</view>
|
|
|
+ <view class="skill-price">¥{{ formatMoney(skillList[0].projectCurrentPrice) }}</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
@@ -159,11 +154,11 @@
|
|
|
<view class="skill-list">
|
|
|
<view class="skill-card skill-card--multi" v-for="(item, index) in skillList" :key="index">
|
|
|
<view class="skill-img">
|
|
|
- <image :src="item.cCover" mode="aspectFill" />
|
|
|
+ <image :src="public + item.projectMasterImage" mode="aspectFill" />
|
|
|
</view>
|
|
|
<view class="skill-info">
|
|
|
- <view class="skill-name one-line-text">{{ item.cTitle }}</view>
|
|
|
- <view class="skill-price">¥{{ formatMoney(item.dPrice) }}</view>
|
|
|
+ <view class="skill-name one-line-text">{{ item.projectName }}</view>
|
|
|
+ <view class="skill-price">¥{{ formatMoney(item.projectCurrentPrice) }}</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
@@ -194,12 +189,8 @@
|
|
|
<image class="more-tip" src="/static/workbench/skillTip.png" mode="aspectFit" />
|
|
|
</view>
|
|
|
<view class="more-grid">
|
|
|
- <view
|
|
|
- class="more-item"
|
|
|
- v-for="(item, index) in moreFeatures"
|
|
|
- :key="index"
|
|
|
- @click="onMoreFeature(item)"
|
|
|
- >
|
|
|
+ <view class="more-item" v-for="(item, index) in moreFeatures" :key="index"
|
|
|
+ @click="onMoreFeature(item)">
|
|
|
<image class="more-icon" :src="item.icon" mode="aspectFit" />
|
|
|
<text class="more-label">{{ item.label }}</text>
|
|
|
</view>
|
|
|
@@ -211,12 +202,7 @@
|
|
|
<view class="popup-mask" v-if="showRejectPopup" @click="closeRejectPopup">
|
|
|
<view class="popup-box" @click.stop>
|
|
|
<view class="popup-title">请输入拒绝接单原因</view>
|
|
|
- <input
|
|
|
- class="popup-input"
|
|
|
- v-model="rejectReason"
|
|
|
- maxlength="10"
|
|
|
- placeholder="请输入拒绝原因,最多10个字"
|
|
|
- />
|
|
|
+ <input class="popup-input" v-model="rejectReason" maxlength="10" placeholder="请输入拒绝原因,最多10个字" />
|
|
|
<view class="popup-btns">
|
|
|
<view class="popup-btn" @click="closeRejectPopup">取消</view>
|
|
|
<view class="popup-btn confirm" @click="submitReject">提交</view>
|
|
|
@@ -228,11 +214,7 @@
|
|
|
<view class="popup-mask bottom" v-if="showStatusPopup" @click="showStatusPopup = false">
|
|
|
<view class="status-panel" @click.stop>
|
|
|
<view class="panel-title">接单状态</view>
|
|
|
- <view
|
|
|
- class="status-option"
|
|
|
- :class="{ active: statusDraft === 'rest' }"
|
|
|
- @click="statusDraft = 'rest'"
|
|
|
- >
|
|
|
+ <view class="status-option" :class="{ active: statusDraft === 'rest' }" @click="statusDraft = 'rest'">
|
|
|
<view class="option-body">
|
|
|
<text class="option-name">{{ !isWorking ? '休息中' : '下线休息' }}</text>
|
|
|
<text class="option-desc">{{ getStatusDesc('rest') }}</text>
|
|
|
@@ -241,11 +223,8 @@
|
|
|
<image src="@/static/workbench/checkCircle.png" mode=""></image>
|
|
|
</view>
|
|
|
</view>
|
|
|
- <view
|
|
|
- class="status-option"
|
|
|
- :class="{ active: statusDraft === 'working' }"
|
|
|
- @click="statusDraft = 'working'"
|
|
|
- >
|
|
|
+ <view class="status-option" :class="{ active: statusDraft === 'working' }"
|
|
|
+ @click="statusDraft = 'working'">
|
|
|
<view class="option-body">
|
|
|
<text class="option-name">在线接单</text>
|
|
|
<text class="option-desc">{{ getStatusDesc('working') }}</text>
|
|
|
@@ -282,1328 +261,1424 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-import {
|
|
|
- getMerchantData,
|
|
|
- getInfo,
|
|
|
- myIncome,
|
|
|
- getStaffWorkData,
|
|
|
- getWaitOrder,
|
|
|
- myBank,
|
|
|
- getProjectByJsId,
|
|
|
- netStaffWork,
|
|
|
- getJsLocation,
|
|
|
-} from '@/api/index';
|
|
|
-import { orderDeatails, takeOrder, refuseOrder } from '@/api/order.js';
|
|
|
-
|
|
|
-import { getTechnician } from '@/api/workbench.js';
|
|
|
-
|
|
|
-export default {
|
|
|
- data() {
|
|
|
- return {
|
|
|
- showModal: false, // 控制弹窗显隐
|
|
|
- merchantInfo: {},
|
|
|
- cJsId: '',
|
|
|
- isWorking: false,
|
|
|
- todayOrderCount: '6',
|
|
|
- bankCardCount: '3',
|
|
|
- ratingScore: '4.8',
|
|
|
- onlineHours: '3',
|
|
|
- workStartTime: null,
|
|
|
- restStartTime: null,
|
|
|
- balance: 12341.56,
|
|
|
- myIncome: {
|
|
|
- tAmount: '12341.56',
|
|
|
- wAmount: '12341.56',
|
|
|
- yAmount: '12341.56',
|
|
|
- gAmount: '12341.56',
|
|
|
- kAmount: '12341.56',
|
|
|
- deductAmount: '12341.56',
|
|
|
- },
|
|
|
- pendingOrder: true,
|
|
|
- skillList: [
|
|
|
- {
|
|
|
- cTitle: '中式推拿中式推拿中式推拿中式推拿中式推拿',
|
|
|
- dPrice: 128,
|
|
|
- cCover: 'https://cdn.uviewui.com/uview/album/1.jpg' ,
|
|
|
- cTags:['多人团购','热门剧本','环境干净']
|
|
|
+ import {
|
|
|
+ getMerchantData,
|
|
|
+ getInfo,
|
|
|
+ myIncome,
|
|
|
+ getStaffWorkData,
|
|
|
+ getWaitOrder,
|
|
|
+ myBank,
|
|
|
+ getProjectByJsId,
|
|
|
+ netStaffWork,
|
|
|
+ getJsLocation,
|
|
|
+ } from '@/api/index';
|
|
|
+ import {
|
|
|
+ orderDeatails,
|
|
|
+ takeOrder,
|
|
|
+ refuseOrder
|
|
|
+ } from '@/api/order.js';
|
|
|
+
|
|
|
+ import {
|
|
|
+ getTechnician,
|
|
|
+ switchToOffline,
|
|
|
+ getSkillList
|
|
|
+ } from '@/api/workbench.js';
|
|
|
+
|
|
|
+ export default {
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ showModal: false, // 控制弹窗显隐
|
|
|
+ merchantInfo: {},
|
|
|
+ cJsId: '',
|
|
|
+ isWorking: false,
|
|
|
+ todayOrderCount: '6',
|
|
|
+ bankCardCount: '3',
|
|
|
+ ratingScore: '4.8',
|
|
|
+ onlineHours: '3',
|
|
|
+ workStartTime: null,
|
|
|
+ restStartTime: null,
|
|
|
+ balance: 12341.56,
|
|
|
+ myIncome: {
|
|
|
+ tAmount: '12341.56',
|
|
|
+ wAmount: '12341.56',
|
|
|
+ yAmount: '12341.56',
|
|
|
+ gAmount: '12341.56',
|
|
|
+ kAmount: '12341.56',
|
|
|
+ deductAmount: '12341.56',
|
|
|
},
|
|
|
- // { cTitle: '中式推拿', dPrice: 128, cCover: 'https://cdn.uviewui.com/uview/album/2.jpg' },
|
|
|
- // { cTitle: '中式推拿', dPrice: 128, cCover: 'https://cdn.uviewui.com/uview/album/3.jpg' },
|
|
|
- // { cTitle: '中式推拿', dPrice: 128, cCover: 'https://cdn.uviewui.com/uview/album/4.jpg' },
|
|
|
- // { cTitle: '中式推拿', dPrice: 128, cCover: 'https://cdn.uviewui.com/uview/album/5.jpg' },
|
|
|
- // { cTitle: '中式推拿', dPrice: 128, cCover: 'https://cdn.uviewui.com/uview/album/6.jpg' },
|
|
|
- ],
|
|
|
- currentAddress: '',
|
|
|
- showRejectPopup: false,
|
|
|
- rejectReason: '',
|
|
|
- showStatusPopup: false,
|
|
|
- statusDraft: 'working',
|
|
|
- slideX: 0,
|
|
|
- slideStartX: 0,
|
|
|
- slideMax: 0,
|
|
|
- isSliding: false,
|
|
|
- moreFeatures: [
|
|
|
- { label: '免车费', icon: '/static/workbench/freeCar.png', path: '/workbench/fare/index' },
|
|
|
- { label: '开通新技能', icon: '/static/workbench/newSkill.png', path: '/workbench/skill/add' },
|
|
|
- { label: '我的合同', icon: '/static/workbench/contract.png', path: '/workbench/contract/index' },
|
|
|
- { label: '我的资料', icon: '/static/workbench/info.png', path: '/pages/my/indent?title=编辑资料' },
|
|
|
- { label: '城市管理', icon: '/static/workbench/city.png', path: '/workbench/city/index' },
|
|
|
- ],
|
|
|
- }
|
|
|
- },
|
|
|
- computed: {
|
|
|
- orderTitle() {
|
|
|
- if (!this.pendingOrder) return ''
|
|
|
- const goods = this.pendingOrder.cGoods || []
|
|
|
- return goods[0]?.cTitle || '服务项目'
|
|
|
- },
|
|
|
- orderServiceTime() {
|
|
|
- if (!this.pendingOrder) return ''
|
|
|
- return this.formatOrderTime(
|
|
|
- this.pendingOrder.reachTime || this.pendingOrder.dtCreateTime || ''
|
|
|
- )
|
|
|
- },
|
|
|
- deductionAmount() {
|
|
|
- return (
|
|
|
- this.myIncome.kAmount ??
|
|
|
- this.myIncome.deductAmount ??
|
|
|
- this.myIncome.dAmount ??
|
|
|
- 0
|
|
|
- )
|
|
|
- },
|
|
|
- orderAddress() {
|
|
|
- if (!this.pendingOrder) return ''
|
|
|
- return this.pendingOrder.address || this.pendingOrder.atlasAdd || ''
|
|
|
- },
|
|
|
- isNewCustomer() {
|
|
|
- return this.pendingOrder?.nB2 == 1
|
|
|
- },
|
|
|
- },
|
|
|
- onShow() {
|
|
|
- this.syncCurrentAddress()
|
|
|
- this.loadPageData()
|
|
|
- },
|
|
|
- onLoad() {
|
|
|
- setTimeout(() => {
|
|
|
- console.log('666')
|
|
|
- this.showModal = true
|
|
|
- }, 500);
|
|
|
- },
|
|
|
- methods: {
|
|
|
- // 我在想想:关闭弹窗
|
|
|
- cancel() {
|
|
|
- console.log('5555')
|
|
|
- this.showModal = false
|
|
|
- },
|
|
|
- // 立即入驻:跳转入驻页
|
|
|
- goEnter() {
|
|
|
- this.showModal = false
|
|
|
- uni.navigateTo({
|
|
|
- url: '/pages/join/applyJoin' // 替换你的入驻页面路径
|
|
|
- })
|
|
|
- },
|
|
|
- loadPageData() {
|
|
|
- this.fetchMerchantInfo()
|
|
|
- this.fetchWalletInfo()
|
|
|
- this.fetchIncome()
|
|
|
- this.fetchWorkData()
|
|
|
- this.fetchBankCards()
|
|
|
-
|
|
|
- this.getWorkInfo();
|
|
|
- },
|
|
|
- getWorkInfo(){
|
|
|
- let params = { openid: uni.getStorageSync('wx_copenid') }
|
|
|
- getTechnician(params).then(res => {
|
|
|
- console.log('res----',res)
|
|
|
- })
|
|
|
- },
|
|
|
- fetchMerchantInfo() {
|
|
|
- const params = { cOpenId: uni.getStorageSync('wx_copenid') }
|
|
|
- getMerchantData(params).then(res => {
|
|
|
- if (res.data.code != 200 || !res.data.data) return
|
|
|
- const data = res.data.data
|
|
|
- this.merchantInfo = data
|
|
|
- this.cJsId = data.id
|
|
|
- this.isWorking = data.nStatus2 == '0'
|
|
|
- this.ratingScore = data.nStar != null ? Number(data.nStar).toFixed(1) : '0.0'
|
|
|
- this.workStartTime = data.dtWorkStart || data.dtOnlineStart || null
|
|
|
- this.restStartTime = data.dtRestStart || data.restStartTime || null
|
|
|
- this.syncCurrentAddress(data)
|
|
|
- this.fetchTodayOrders()
|
|
|
- this.fetchPendingOrder()
|
|
|
- this.fetchSkills()
|
|
|
- })
|
|
|
+ pendingOrder: true,
|
|
|
+ currentAddress: '',
|
|
|
+ showRejectPopup: false,
|
|
|
+ rejectReason: '',
|
|
|
+ showStatusPopup: false,
|
|
|
+ statusDraft: 'working',
|
|
|
+ slideX: 0,
|
|
|
+ slideStartX: 0,
|
|
|
+ slideMax: 0,
|
|
|
+ isSliding: false,
|
|
|
+ skillList: [],
|
|
|
+ public: this.$globalData.publicUrl, //图片前缀
|
|
|
+ serviceTag: '', //服务标签(1:按摩推拿 2:陪玩)
|
|
|
+ moreFeatures: [
|
|
|
+ { label: '免车费', icon: '/static/workbench/freeCar.png', path: '/workbench/fare/index' },
|
|
|
+ { label: '开通新技能', icon: '/static/workbench/newSkill.png', path: '/workbench/skill/add' },
|
|
|
+ { label: '我的合同', icon: '/static/workbench/contract.png', path: '/workbench/contract/index' },
|
|
|
+ { label: '我的资料', icon: '/static/workbench/info.png', path: '/pages/my/indent?title=编辑资料' },
|
|
|
+ { label: '城市管理', icon: '/static/workbench/city.png', path: '/workbench/city/index' },
|
|
|
+ ],
|
|
|
+ }
|
|
|
},
|
|
|
- fetchWalletInfo() {
|
|
|
- getInfo().then(res => {
|
|
|
- if (res.data.code == 200 && res.data.data) {
|
|
|
- this.cJsId = res.data.data.id;
|
|
|
- }
|
|
|
- })
|
|
|
+ computed: {
|
|
|
+ orderTitle() {
|
|
|
+ if (!this.pendingOrder) return ''
|
|
|
+ const goods = this.pendingOrder.cGoods || []
|
|
|
+ return goods[0]?.cTitle || '服务项目'
|
|
|
+ },
|
|
|
+ orderServiceTime() {
|
|
|
+ if (!this.pendingOrder) return ''
|
|
|
+ return this.formatOrderTime(
|
|
|
+ this.pendingOrder.reachTime || this.pendingOrder.dtCreateTime || ''
|
|
|
+ )
|
|
|
+ },
|
|
|
+ deductionAmount() {
|
|
|
+ return (
|
|
|
+ this.myIncome.kAmount ??
|
|
|
+ this.myIncome.deductAmount ??
|
|
|
+ this.myIncome.dAmount ??
|
|
|
+ 0
|
|
|
+ )
|
|
|
+ },
|
|
|
+ orderAddress() {
|
|
|
+ if (!this.pendingOrder) return ''
|
|
|
+ return this.pendingOrder.address || this.pendingOrder.atlasAdd || ''
|
|
|
+ },
|
|
|
+ isNewCustomer() {
|
|
|
+ return this.pendingOrder?.nB2 == 1
|
|
|
+ },
|
|
|
},
|
|
|
- fetchIncome() {
|
|
|
- myIncome().then(res => {
|
|
|
- if (res.data.code == 200 && res.data.data) {
|
|
|
- this.myIncome = res.data.data
|
|
|
- }
|
|
|
- })
|
|
|
+ onShow() {
|
|
|
+ this.loadPageData()
|
|
|
},
|
|
|
- fetchWorkData() {
|
|
|
- getStaffWorkData({ openId: uni.getStorageSync('wx_copenid') }).then(res => {
|
|
|
- if (res.data.code == 200 && res.data.data) {
|
|
|
- const minutes = res.data.data.onLine || 0
|
|
|
- // this.onlineHours = (minutes / 60).toFixed(1).replace(/\.0$/, '')
|
|
|
- }
|
|
|
- })
|
|
|
+ onLoad() {
|
|
|
+ setTimeout(() => {
|
|
|
+ console.log('666')
|
|
|
+ this.showModal = true
|
|
|
+ }, 500);
|
|
|
},
|
|
|
- fetchBankCards() {
|
|
|
- myBank().then(res => {
|
|
|
- if (res.data.code == 200 && Array.isArray(res.data.data)) {
|
|
|
- // this.bankCardCount = res.data.data.length
|
|
|
+ methods: {
|
|
|
+ // 我在想想:关闭弹窗
|
|
|
+ cancel() {
|
|
|
+ console.log('5555')
|
|
|
+ this.showModal = false
|
|
|
+ },
|
|
|
+ // 立即入驻:跳转入驻页
|
|
|
+ goEnter() {
|
|
|
+ this.showModal = false
|
|
|
+ uni.navigateTo({
|
|
|
+ url: '/pages/join/applyJoin' // 替换你的入驻页面路径
|
|
|
+ })
|
|
|
+ },
|
|
|
+ loadPageData() {
|
|
|
+ // this.fetchMerchantInfo()
|
|
|
+ // this.fetchWalletInfo()
|
|
|
+ // this.fetchIncome()
|
|
|
+ // this.fetchWorkData()
|
|
|
+ // this.fetchBankCards()
|
|
|
+
|
|
|
+ this.getWorkInfo();
|
|
|
+ },
|
|
|
+ getWorkInfo() {
|
|
|
+ let params = {
|
|
|
+ openid: uni.getStorageSync('wx_copenid')
|
|
|
}
|
|
|
- })
|
|
|
- },
|
|
|
- fetchTodayOrders() {
|
|
|
- if (!this.cJsId) return
|
|
|
- getWaitOrder({ cJsId: this.cJsId }).then(res => {
|
|
|
- if (res.data.code == 200) {
|
|
|
- this.todayOrderCount = res.data.data || 0
|
|
|
+ getTechnician(params).then(res => {
|
|
|
+ console.log('res----', res)
|
|
|
+ if (res.data.code == 200) {
|
|
|
+ this.cJsId = res.data.result.id; //用户id
|
|
|
+ /**
|
|
|
+ * 服务标签(1:按摩推拿 2:陪玩)
|
|
|
+ */
|
|
|
+ this.serviceTag = res.data.result.serviceTag
|
|
|
+ uni.setStorageSync('serviceTag', res.data.result.serviceTag)
|
|
|
+ uni.setStorageSync('userId', res.data.result.id)
|
|
|
+ this.getSkillList();
|
|
|
+ }
|
|
|
+
|
|
|
+ })
|
|
|
+ },
|
|
|
+ getSkillList() {
|
|
|
+ let params = {
|
|
|
+ auditStatus: "1", //审核状态:0-待审核,1-审核通过,2-审核驳回
|
|
|
+ userId: this.cJsId, //商户ID
|
|
|
+ typeId: this.serviceTag //服务标签ID
|
|
|
}
|
|
|
- })
|
|
|
- },
|
|
|
- fetchSkills() {
|
|
|
- // TODO: 接口联调后开启,当前使用假数据展示
|
|
|
- return
|
|
|
- const openId = uni.getStorageSync('wx_copenid')
|
|
|
- if (!openId) return
|
|
|
- getProjectByJsId({ openId }).then(res => {
|
|
|
- if (res.data.code == 200 && Array.isArray(res.data.data)) {
|
|
|
- this.skillList = res.data.data
|
|
|
+ getSkillList(params).then(res => {
|
|
|
+ console.log('res----我的技能', res)
|
|
|
+ if (res.data.code == 200) {
|
|
|
+ this.skillList = res.data.result;
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ fetchMerchantInfo() {
|
|
|
+ const params = {
|
|
|
+ cOpenId: uni.getStorageSync('wx_copenid')
|
|
|
}
|
|
|
- })
|
|
|
- },
|
|
|
- fetchPendingOrder() {
|
|
|
- if (!this.cJsId) return
|
|
|
- orderDeatails({
|
|
|
- cJsId: this.cJsId,
|
|
|
- nStatus: 0,
|
|
|
- current: 1,
|
|
|
- size: 1,
|
|
|
- }).then(res => {
|
|
|
- if (res.data.code == 200 && res.data.data?.records?.length) {
|
|
|
- this.pendingOrder = res.data.data.records[0]
|
|
|
- this.slideX = 0
|
|
|
- this.initSlideRange()
|
|
|
- } else {
|
|
|
- this.pendingOrder = null
|
|
|
+ getMerchantData(params).then(res => {
|
|
|
+ if (res.data.code != 200 || !res.data.data) return
|
|
|
+ const data = res.data.data
|
|
|
+ this.merchantInfo = data
|
|
|
+ this.cJsId = data.id
|
|
|
+ this.isWorking = data.nStatus2 == '0'
|
|
|
+ this.ratingScore = data.nStar != null ? Number(data.nStar).toFixed(1) : '0.0'
|
|
|
+ this.workStartTime = data.dtWorkStart || data.dtOnlineStart || null
|
|
|
+ this.restStartTime = data.dtRestStart || data.restStartTime || null
|
|
|
+ this.syncCurrentAddress(data)
|
|
|
+ this.fetchTodayOrders()
|
|
|
+ this.fetchPendingOrder()
|
|
|
+ this.fetchSkills()
|
|
|
+ })
|
|
|
+ },
|
|
|
+ fetchWalletInfo() {
|
|
|
+ getInfo().then(res => {
|
|
|
+ if (res.data.code == 200 && res.data.data) {
|
|
|
+ this.cJsId = res.data.data.id;
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ fetchIncome() {
|
|
|
+ myIncome().then(res => {
|
|
|
+ if (res.data.code == 200 && res.data.data) {
|
|
|
+ this.myIncome = res.data.data
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ fetchWorkData() {
|
|
|
+ getStaffWorkData({
|
|
|
+ openId: uni.getStorageSync('wx_copenid')
|
|
|
+ }).then(res => {
|
|
|
+ if (res.data.code == 200 && res.data.data) {
|
|
|
+ const minutes = res.data.data.onLine || 0
|
|
|
+ // this.onlineHours = (minutes / 60).toFixed(1).replace(/\.0$/, '')
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ fetchBankCards() {
|
|
|
+ myBank().then(res => {
|
|
|
+ if (res.data.code == 200 && Array.isArray(res.data.data)) {
|
|
|
+ // this.bankCardCount = res.data.data.length
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ fetchTodayOrders() {
|
|
|
+ if (!this.cJsId) return
|
|
|
+ getWaitOrder({
|
|
|
+ cJsId: this.cJsId
|
|
|
+ }).then(res => {
|
|
|
+ if (res.data.code == 200) {
|
|
|
+ this.todayOrderCount = res.data.data || 0
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ fetchSkills() {
|
|
|
+ // TODO: 接口联调后开启,当前使用假数据展示
|
|
|
+ return
|
|
|
+ const openId = uni.getStorageSync('wx_copenid')
|
|
|
+ if (!openId) return
|
|
|
+ getProjectByJsId({
|
|
|
+ openId
|
|
|
+ }).then(res => {
|
|
|
+ if (res.data.code == 200 && Array.isArray(res.data.data)) {
|
|
|
+ this.skillList = res.data.data
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ fetchPendingOrder() {
|
|
|
+ if (!this.cJsId) return
|
|
|
+ orderDeatails({
|
|
|
+ cJsId: this.cJsId,
|
|
|
+ nStatus: 0,
|
|
|
+ current: 1,
|
|
|
+ size: 1,
|
|
|
+ }).then(res => {
|
|
|
+ if (res.data.code == 200 && res.data.data?.records?.length) {
|
|
|
+ this.pendingOrder = res.data.data.records[0]
|
|
|
+ this.slideX = 0
|
|
|
+ this.initSlideRange()
|
|
|
+ } else {
|
|
|
+ this.pendingOrder = null
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ formatMoney(amount) {
|
|
|
+ const num = parseFloat(amount)
|
|
|
+ if (isNaN(num)) return '0.00'
|
|
|
+ return num.toFixed(2)
|
|
|
+ },
|
|
|
+ skillPriceUnit(item) {
|
|
|
+ if (item.cUnit) return `/${item.cUnit}`
|
|
|
+ if (item.nMinute) return '/小时'
|
|
|
+ return ''
|
|
|
+ },
|
|
|
+ formatOrderTime(timeStr) {
|
|
|
+ if (!timeStr) return ''
|
|
|
+ const str = String(timeStr)
|
|
|
+ const d = new Date(str.replace(/-/g, '/'))
|
|
|
+ if (Number.isNaN(d.getTime())) return str
|
|
|
+ const m = d.getMonth() + 1
|
|
|
+ const day = d.getDate()
|
|
|
+ const hh = String(d.getHours()).padStart(2, '0')
|
|
|
+ const mm = String(d.getMinutes()).padStart(2, '0')
|
|
|
+ if (str.includes('-') && str.length > 16) {
|
|
|
+ const end = str.slice(11, 16)
|
|
|
+ if (end && end !== `${hh}:${mm}`) {
|
|
|
+ return `${m}月${day}日 ${hh}:${mm}至${end}`
|
|
|
+ }
|
|
|
}
|
|
|
- })
|
|
|
- },
|
|
|
- formatMoney(amount) {
|
|
|
- const num = parseFloat(amount)
|
|
|
- if (isNaN(num)) return '0.00'
|
|
|
- return num.toFixed(2)
|
|
|
- },
|
|
|
- skillPriceUnit(item) {
|
|
|
- if (item.cUnit) return `/${item.cUnit}`
|
|
|
- if (item.nMinute) return '/小时'
|
|
|
- return ''
|
|
|
- },
|
|
|
- formatOrderTime(timeStr) {
|
|
|
- if (!timeStr) return ''
|
|
|
- const str = String(timeStr)
|
|
|
- const d = new Date(str.replace(/-/g, '/'))
|
|
|
- if (Number.isNaN(d.getTime())) return str
|
|
|
- const m = d.getMonth() + 1
|
|
|
- const day = d.getDate()
|
|
|
- const hh = String(d.getHours()).padStart(2, '0')
|
|
|
- const mm = String(d.getMinutes()).padStart(2, '0')
|
|
|
- if (str.includes('-') && str.length > 16) {
|
|
|
- const end = str.slice(11, 16)
|
|
|
- if (end && end !== `${hh}:${mm}`) {
|
|
|
- return `${m}月${day}日 ${hh}:${mm}至${end}`
|
|
|
+ return `${m}月${day}日 ${hh}:${mm}`
|
|
|
+ },
|
|
|
+ getStatusDurationHours(type) {
|
|
|
+ const since =
|
|
|
+ type === 'working' ?
|
|
|
+ this.workStartTime :
|
|
|
+ this.restStartTime
|
|
|
+ if (!since) return 0
|
|
|
+ const start = new Date(String(since).replace(/-/g, '/')).getTime()
|
|
|
+ if (Number.isNaN(start)) return 0
|
|
|
+ return Math.max(0, Math.floor((Date.now() - start) / 3600000))
|
|
|
+ },
|
|
|
+ getStatusDesc(type) {
|
|
|
+ const isCurrent =
|
|
|
+ type === 'working' ? this.isWorking : !this.isWorking
|
|
|
+ if (isCurrent) {
|
|
|
+ const hours = this.getStatusDurationHours(type)
|
|
|
+ if (type === 'working') {
|
|
|
+ return `已连续辛勤工作${hours}个小时`
|
|
|
+ }
|
|
|
+ return `已休息${hours}个小时`
|
|
|
}
|
|
|
- }
|
|
|
- return `${m}月${day}日 ${hh}:${mm}`
|
|
|
- },
|
|
|
- getStatusDurationHours(type) {
|
|
|
- const since =
|
|
|
- type === 'working'
|
|
|
- ? this.workStartTime
|
|
|
- : this.restStartTime
|
|
|
- if (!since) return 0
|
|
|
- const start = new Date(String(since).replace(/-/g, '/')).getTime()
|
|
|
- if (Number.isNaN(start)) return 0
|
|
|
- return Math.max(0, Math.floor((Date.now() - start) / 3600000))
|
|
|
- },
|
|
|
- getStatusDesc(type) {
|
|
|
- const isCurrent =
|
|
|
- type === 'working' ? this.isWorking : !this.isWorking
|
|
|
- if (isCurrent) {
|
|
|
- const hours = this.getStatusDurationHours(type)
|
|
|
if (type === 'working') {
|
|
|
- return `已连续辛勤工作${hours}个小时`
|
|
|
+ return '早起的人已经接单,勤奋的人账户常满'
|
|
|
}
|
|
|
- return `已休息${hours}个小时`
|
|
|
- }
|
|
|
- if (type === 'working') {
|
|
|
- return '早起的人已经接单,勤奋的人账户常满'
|
|
|
- }
|
|
|
- return '今日辛苦啦,早点下线休息,注意劳逸结合!'
|
|
|
- },
|
|
|
- openStatusPopup() {
|
|
|
- this.statusDraft = this.isWorking ? 'working' : 'rest'
|
|
|
- this.showStatusPopup = true
|
|
|
- },
|
|
|
- confirmStatusChange() {
|
|
|
- const wantWorking = this.statusDraft === 'working'
|
|
|
- this.showStatusPopup = false
|
|
|
- if (wantWorking === this.isWorking) return
|
|
|
- this.updateWorkStatus(wantWorking)
|
|
|
- },
|
|
|
- updateWorkStatus(working) {
|
|
|
- if (!this.cJsId) {
|
|
|
- uni.showToast({ title: '请先登录', icon: 'none' })
|
|
|
- return
|
|
|
- }
|
|
|
- netStaffWork({
|
|
|
- id: this.cJsId,
|
|
|
- nStatus2: working ? '0' : '-1',
|
|
|
- }).then(res => {
|
|
|
- if (res.data.code == 200) {
|
|
|
- this.isWorking = working
|
|
|
- const now = new Date().toISOString()
|
|
|
- if (working) {
|
|
|
- this.workStartTime = now
|
|
|
+ return '今日辛苦啦,早点下线休息,注意劳逸结合!'
|
|
|
+ },
|
|
|
+ openStatusPopup() {
|
|
|
+ this.statusDraft = this.isWorking ? 'working' : 'rest'
|
|
|
+ this.showStatusPopup = true
|
|
|
+ },
|
|
|
+ confirmStatusChange() {
|
|
|
+ const wantWorking = this.statusDraft === 'working'
|
|
|
+ this.showStatusPopup = false
|
|
|
+ if (wantWorking === this.isWorking) return
|
|
|
+ this.updateWorkStatus(wantWorking)
|
|
|
+
|
|
|
+ },
|
|
|
+ updateWorkStatus(working) {
|
|
|
+ if (!this.cJsId) {
|
|
|
+ uni.showToast({
|
|
|
+ title: '请先登录',
|
|
|
+ icon: 'none'
|
|
|
+ })
|
|
|
+ return
|
|
|
+ }
|
|
|
+ switchToOffline({
|
|
|
+ userId: this.cJsId,
|
|
|
+ forceConfirm: working,
|
|
|
+ }).then(res => {
|
|
|
+ if (res.data.code == 200) {
|
|
|
+ this.isWorking = working
|
|
|
+ const now = new Date().toISOString()
|
|
|
+ if (working) {
|
|
|
+ this.workStartTime = now
|
|
|
+ } else {
|
|
|
+ this.restStartTime = now
|
|
|
+ }
|
|
|
+ uni.showToast({
|
|
|
+ title: working ? '已上线' : '已下线',
|
|
|
+ icon: 'none'
|
|
|
+ })
|
|
|
} else {
|
|
|
- this.restStartTime = now
|
|
|
+ uni.showToast({
|
|
|
+ title: res.data.msg || '设置失败',
|
|
|
+ icon: 'none'
|
|
|
+ })
|
|
|
}
|
|
|
- uni.showToast({ title: working ? '已上线' : '已下线', icon: 'none' })
|
|
|
- } else {
|
|
|
- uni.showToast({ title: res.data.msg || '设置失败', icon: 'none' })
|
|
|
- }
|
|
|
- })
|
|
|
- },
|
|
|
- onRejectOrder() {
|
|
|
- this.showRejectPopup = true
|
|
|
- this.rejectReason = ''
|
|
|
- },
|
|
|
- closeRejectPopup() {
|
|
|
- this.showRejectPopup = false
|
|
|
- this.rejectReason = ''
|
|
|
- },
|
|
|
- submitReject() {
|
|
|
- const reason = this.rejectReason.trim()
|
|
|
- if (!reason) {
|
|
|
- uni.showToast({ title: '拒绝原因不能为空', icon: 'none' })
|
|
|
- return
|
|
|
- }
|
|
|
- refuseOrder({
|
|
|
- cId: this.pendingOrder.cId,
|
|
|
- reasonRefusal: reason,
|
|
|
- }).then(res => {
|
|
|
- if (res.data.code == 200) {
|
|
|
- uni.showToast({ title: '已拒绝', icon: 'none' })
|
|
|
- this.closeRejectPopup()
|
|
|
- this.pendingOrder = null
|
|
|
- this.fetchTodayOrders()
|
|
|
- } else {
|
|
|
- uni.showToast({ title: res.data.msg || '操作失败', icon: 'none' })
|
|
|
+ })
|
|
|
+ },
|
|
|
+ onRejectOrder() {
|
|
|
+ this.showRejectPopup = true
|
|
|
+ this.rejectReason = ''
|
|
|
+ },
|
|
|
+ closeRejectPopup() {
|
|
|
+ this.showRejectPopup = false
|
|
|
+ this.rejectReason = ''
|
|
|
+ },
|
|
|
+ submitReject() {
|
|
|
+ const reason = this.rejectReason.trim()
|
|
|
+ if (!reason) {
|
|
|
+ uni.showToast({
|
|
|
+ title: '拒绝原因不能为空',
|
|
|
+ icon: 'none'
|
|
|
+ })
|
|
|
+ return
|
|
|
}
|
|
|
- })
|
|
|
- },
|
|
|
- initSlideRange() {
|
|
|
- this.$nextTick(() => {
|
|
|
- const query = uni.createSelectorQuery().in(this)
|
|
|
- query.select('.slide-track').boundingClientRect()
|
|
|
- query.select('.slide-thumb').boundingClientRect()
|
|
|
- query.exec(res => {
|
|
|
- const trackRect = res[0]
|
|
|
- const thumbRect = res[1]
|
|
|
- if (trackRect && thumbRect) {
|
|
|
- this.slideMax = Math.max(0, trackRect.width - thumbRect.width)
|
|
|
+ refuseOrder({
|
|
|
+ cId: this.pendingOrder.cId,
|
|
|
+ reasonRefusal: reason,
|
|
|
+ }).then(res => {
|
|
|
+ if (res.data.code == 200) {
|
|
|
+ uni.showToast({
|
|
|
+ title: '已拒绝',
|
|
|
+ icon: 'none'
|
|
|
+ })
|
|
|
+ this.closeRejectPopup()
|
|
|
+ this.pendingOrder = null
|
|
|
+ this.fetchTodayOrders()
|
|
|
+ } else {
|
|
|
+ uni.showToast({
|
|
|
+ title: res.data.msg || '操作失败',
|
|
|
+ icon: 'none'
|
|
|
+ })
|
|
|
}
|
|
|
})
|
|
|
- })
|
|
|
- },
|
|
|
- onSlideStart(e) {
|
|
|
- this.isSliding = true
|
|
|
- this.slideStartX = e.touches[0].clientX - this.slideX
|
|
|
- this.initSlideRange()
|
|
|
- },
|
|
|
- onSlideMove(e) {
|
|
|
- if (!this.isSliding) return
|
|
|
- let x = e.touches[0].clientX - this.slideStartX
|
|
|
- if (x < 0) x = 0
|
|
|
- if (x > this.slideMax) x = this.slideMax
|
|
|
- this.slideX = x
|
|
|
- },
|
|
|
- onSlideEnd() {
|
|
|
- if (!this.isSliding) return
|
|
|
- this.isSliding = false
|
|
|
- if (this.slideX >= this.slideMax * 0.85) {
|
|
|
- this.acceptOrder()
|
|
|
- }
|
|
|
- this.slideX = 0
|
|
|
- },
|
|
|
- acceptOrder() {
|
|
|
- if (!this.pendingOrder) return
|
|
|
- uni.showToast({ title: '接单失败', icon: 'none' })
|
|
|
- return;
|
|
|
- takeOrder({ cId: this.pendingOrder.cId }).then(res => {
|
|
|
- if (res.data.code == 200) {
|
|
|
- uni.showToast({ title: '已接单', icon: 'none' })
|
|
|
- this.pendingOrder = null
|
|
|
- this.fetchTodayOrders()
|
|
|
- } else {
|
|
|
- uni.showToast({ title: res.data.msg || '接单失败', icon: 'none' })
|
|
|
+ },
|
|
|
+ initSlideRange() {
|
|
|
+ this.$nextTick(() => {
|
|
|
+ const query = uni.createSelectorQuery().in(this)
|
|
|
+ query.select('.slide-track').boundingClientRect()
|
|
|
+ query.select('.slide-thumb').boundingClientRect()
|
|
|
+ query.exec(res => {
|
|
|
+ const trackRect = res[0]
|
|
|
+ const thumbRect = res[1]
|
|
|
+ if (trackRect && thumbRect) {
|
|
|
+ this.slideMax = Math.max(0, trackRect.width - thumbRect.width)
|
|
|
+ }
|
|
|
+ })
|
|
|
+ })
|
|
|
+ },
|
|
|
+ onSlideStart(e) {
|
|
|
+ this.isSliding = true
|
|
|
+ this.slideStartX = e.touches[0].clientX - this.slideX
|
|
|
+ this.initSlideRange()
|
|
|
+ },
|
|
|
+ onSlideMove(e) {
|
|
|
+ if (!this.isSliding) return
|
|
|
+ let x = e.touches[0].clientX - this.slideStartX
|
|
|
+ if (x < 0) x = 0
|
|
|
+ if (x > this.slideMax) x = this.slideMax
|
|
|
+ this.slideX = x
|
|
|
+ },
|
|
|
+ onSlideEnd() {
|
|
|
+ if (!this.isSliding) return
|
|
|
+ this.isSliding = false
|
|
|
+ if (this.slideX >= this.slideMax * 0.85) {
|
|
|
+ this.acceptOrder()
|
|
|
}
|
|
|
- })
|
|
|
- },
|
|
|
- goProfile() {
|
|
|
- uni.navigateTo({ url: '/pages/my/indent?title=编辑资料' })
|
|
|
- },
|
|
|
- goTodayOrders() {
|
|
|
- uni.navigateTo({ url: '/pages/my/js_order' })
|
|
|
- },
|
|
|
- goBankList() {
|
|
|
- uni.navigateTo({ url: '/workbench/bank/index' })
|
|
|
- },
|
|
|
- goReviewList() {
|
|
|
- uni.navigateTo({ url: '/workbench/rating/index' })
|
|
|
- },
|
|
|
- goWithdraw() {
|
|
|
- uni.navigateTo({ url: '/workbench/withdraw/apply' })
|
|
|
- },
|
|
|
- goIncome() {
|
|
|
- uni.navigateTo({ url: '/workbench/income/index' })
|
|
|
- },
|
|
|
- goWithdrawRecord() {
|
|
|
- uni.navigateTo({ url: '/workbench/withdraw/record' })
|
|
|
- },
|
|
|
- goSkillManage() {
|
|
|
- uni.navigateTo({ url: '/workbench/skill/index' })
|
|
|
- },
|
|
|
- syncCurrentAddress(merchantData) {
|
|
|
- const sl = uni.getStorageSync('staffLocation')
|
|
|
- if (sl?.address || sl?.name) {
|
|
|
- this.currentAddress = `${sl.address || ''}${sl.name || ''}`
|
|
|
- return
|
|
|
- }
|
|
|
- const data = merchantData || this.merchantInfo
|
|
|
- this.currentAddress = data?.address || data?.name || ''
|
|
|
- },
|
|
|
- goSwitchAddress() {
|
|
|
- uni.chooseLocation({
|
|
|
- success: (res) => {
|
|
|
- console.log('切换地址',res)
|
|
|
-
|
|
|
- }
|
|
|
- });
|
|
|
- },
|
|
|
- async goUpdateAddress() {
|
|
|
- // if (!this.cJsId) {
|
|
|
- // uni.showToast({ title: '请先登录', icon: 'none' })
|
|
|
- // return
|
|
|
- // }
|
|
|
- try {
|
|
|
- const res = await this.$utils.addressService.chooseLocation()
|
|
|
- const params = {
|
|
|
- id: this.cJsId,
|
|
|
- cPhone: this.merchantInfo.cPhone,
|
|
|
- name: res.name,
|
|
|
- address: res.address,
|
|
|
- latitude: res.latitude,
|
|
|
- longitude: res.longitude,
|
|
|
- cOpenId: uni.getStorageSync('wx_copenid'),
|
|
|
+ this.slideX = 0
|
|
|
+ },
|
|
|
+ acceptOrder() {
|
|
|
+ if (!this.pendingOrder) return
|
|
|
+ uni.showToast({
|
|
|
+ title: '接单失败',
|
|
|
+ icon: 'none'
|
|
|
+ })
|
|
|
+ return;
|
|
|
+ takeOrder({
|
|
|
+ cId: this.pendingOrder.cId
|
|
|
+ }).then(res => {
|
|
|
+ if (res.data.code == 200) {
|
|
|
+ uni.showToast({
|
|
|
+ title: '已接单',
|
|
|
+ icon: 'none'
|
|
|
+ })
|
|
|
+ this.pendingOrder = null
|
|
|
+ this.fetchTodayOrders()
|
|
|
+ } else {
|
|
|
+ uni.showToast({
|
|
|
+ title: res.data.msg || '接单失败',
|
|
|
+ icon: 'none'
|
|
|
+ })
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ goProfile() {
|
|
|
+ uni.navigateTo({
|
|
|
+ url: '/pages/my/indent?title=编辑资料'
|
|
|
+ })
|
|
|
+ },
|
|
|
+ goTodayOrders() {
|
|
|
+ uni.navigateTo({
|
|
|
+ url: '/pages/my/js_order'
|
|
|
+ })
|
|
|
+ },
|
|
|
+ goBankList() {
|
|
|
+ uni.navigateTo({
|
|
|
+ url: '/workbench/bank/index'
|
|
|
+ })
|
|
|
+ },
|
|
|
+ goReviewList() {
|
|
|
+ uni.navigateTo({
|
|
|
+ url: '/workbench/rating/index'
|
|
|
+ })
|
|
|
+ },
|
|
|
+ goWithdraw() {
|
|
|
+ uni.navigateTo({
|
|
|
+ url: '/workbench/withdraw/apply'
|
|
|
+ })
|
|
|
+ },
|
|
|
+ goIncome() {
|
|
|
+ uni.navigateTo({
|
|
|
+ url: '/workbench/income/index'
|
|
|
+ })
|
|
|
+ },
|
|
|
+ goWithdrawRecord() {
|
|
|
+ uni.navigateTo({
|
|
|
+ url: '/workbench/withdraw/record'
|
|
|
+ })
|
|
|
+ },
|
|
|
+ goSkillManage() {
|
|
|
+ uni.navigateTo({
|
|
|
+ url: `/workbench/skill/index?serviceTag=${this.serviceTag}`
|
|
|
+ })
|
|
|
+ },
|
|
|
+ syncCurrentAddress(merchantData) {
|
|
|
+ const sl = uni.getStorageSync('staffLocation')
|
|
|
+ if (sl?.address || sl?.name) {
|
|
|
+ this.currentAddress = `${sl.address || ''}${sl.name || ''}`
|
|
|
+ return
|
|
|
}
|
|
|
- const apiRes = await getJsLocation(params)
|
|
|
- if (apiRes.data.code == 200) {
|
|
|
- uni.setStorageSync('staffLocation', {
|
|
|
+ const data = merchantData || this.merchantInfo
|
|
|
+ this.currentAddress = data?.address || data?.name || ''
|
|
|
+ },
|
|
|
+ goSwitchAddress() {
|
|
|
+ uni.chooseLocation({
|
|
|
+ success: (res) => {
|
|
|
+ console.log('切换地址', res)
|
|
|
+
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
+ async goUpdateAddress() {
|
|
|
+ // if (!this.cJsId) {
|
|
|
+ // uni.showToast({ title: '请先登录', icon: 'none' })
|
|
|
+ // return
|
|
|
+ // }
|
|
|
+ try {
|
|
|
+ const res = await this.$utils.addressService.chooseLocation()
|
|
|
+ const params = {
|
|
|
+ id: this.cJsId,
|
|
|
+ cPhone: this.merchantInfo.cPhone,
|
|
|
name: res.name,
|
|
|
address: res.address,
|
|
|
latitude: res.latitude,
|
|
|
longitude: res.longitude,
|
|
|
+ cOpenId: uni.getStorageSync('wx_copenid'),
|
|
|
+ }
|
|
|
+ const apiRes = await getJsLocation(params)
|
|
|
+ if (apiRes.data.code == 200) {
|
|
|
+ uni.setStorageSync('staffLocation', {
|
|
|
+ name: res.name,
|
|
|
+ address: res.address,
|
|
|
+ latitude: res.latitude,
|
|
|
+ longitude: res.longitude,
|
|
|
+ })
|
|
|
+ this.syncCurrentAddress()
|
|
|
+ uni.showToast({
|
|
|
+ title: '地址已更新',
|
|
|
+ icon: 'none'
|
|
|
+ })
|
|
|
+ } else {
|
|
|
+ uni.showToast({
|
|
|
+ title: apiRes.data.msg || '更新失败',
|
|
|
+ icon: 'none'
|
|
|
+ })
|
|
|
+ }
|
|
|
+ } catch (err) {
|
|
|
+ if (err?.cancelled) return
|
|
|
+ uni.showToast({
|
|
|
+ title: err?.message || '获取位置失败',
|
|
|
+ icon: 'none'
|
|
|
})
|
|
|
- this.syncCurrentAddress()
|
|
|
- uni.showToast({ title: '地址已更新', icon: 'none' })
|
|
|
- } else {
|
|
|
- uni.showToast({ title: apiRes.data.msg || '更新失败', icon: 'none' })
|
|
|
}
|
|
|
- } catch (err) {
|
|
|
- if (err?.cancelled) return
|
|
|
- uni.showToast({ title: err?.message || '获取位置失败', icon: 'none' })
|
|
|
- }
|
|
|
- },
|
|
|
- onMoreFeature(item) {
|
|
|
- if (!item.path) {
|
|
|
- uni.showToast({ title: '功能开发中', icon: 'none' })
|
|
|
- return
|
|
|
- }
|
|
|
- uni.navigateTo({ url: item.path })
|
|
|
+ },
|
|
|
+ onMoreFeature(item) {
|
|
|
+ if (!item.path) {
|
|
|
+ uni.showToast({
|
|
|
+ title: '功能开发中',
|
|
|
+ icon: 'none'
|
|
|
+ })
|
|
|
+ return
|
|
|
+ }
|
|
|
+ uni.navigateTo({
|
|
|
+ url: item.path
|
|
|
+ })
|
|
|
+ },
|
|
|
},
|
|
|
- },
|
|
|
-}
|
|
|
+ }
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
-// 弹窗
|
|
|
-.modal-wrap {
|
|
|
- width: 620rpx;
|
|
|
- background: #fff;
|
|
|
- border-radius: 16rpx;
|
|
|
- overflow: hidden;
|
|
|
-
|
|
|
- .title {
|
|
|
- font-size: 42rpx;
|
|
|
- text-align: center;
|
|
|
- padding: 40rpx 30rpx 20rpx;
|
|
|
- font-weight: 500;
|
|
|
- color: #333;
|
|
|
- }
|
|
|
+ // 弹窗
|
|
|
+ .modal-wrap {
|
|
|
+ width: 620rpx;
|
|
|
+ background: #fff;
|
|
|
+ border-radius: 16rpx;
|
|
|
+ overflow: hidden;
|
|
|
+
|
|
|
+ .title {
|
|
|
+ font-size: 42rpx;
|
|
|
+ text-align: center;
|
|
|
+ padding: 40rpx 30rpx 20rpx;
|
|
|
+ font-weight: 500;
|
|
|
+ color: #333;
|
|
|
+ }
|
|
|
|
|
|
- .content {
|
|
|
- font-size: 36rpx;
|
|
|
- color: #333;
|
|
|
- padding: 0 40rpx 40rpx;
|
|
|
- line-height: 1.7;
|
|
|
- }
|
|
|
+ .content {
|
|
|
+ font-size: 36rpx;
|
|
|
+ color: #333;
|
|
|
+ padding: 0 40rpx 40rpx;
|
|
|
+ line-height: 1.7;
|
|
|
+ }
|
|
|
|
|
|
- .btn-box {
|
|
|
- display: flex;
|
|
|
- border-top: 1rpx solid #eee;
|
|
|
- }
|
|
|
+ .btn-box {
|
|
|
+ display: flex;
|
|
|
+ border-top: 1rpx solid #eee;
|
|
|
+ }
|
|
|
|
|
|
- .btn {
|
|
|
- flex: 1;
|
|
|
- height: 90rpx;
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- justify-content: center;
|
|
|
- font-size: 36rpx;
|
|
|
- }
|
|
|
+ .btn {
|
|
|
+ flex: 1;
|
|
|
+ height: 90rpx;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ font-size: 36rpx;
|
|
|
+ }
|
|
|
|
|
|
- .left {
|
|
|
- color: #333;
|
|
|
- border-right: 1rpx solid #eee;
|
|
|
- }
|
|
|
-
|
|
|
- .right {
|
|
|
- color: #007aff;
|
|
|
- }
|
|
|
-
|
|
|
-}
|
|
|
-$primary: #1ecbc3;
|
|
|
-$primary-dark: #0fa89e;
|
|
|
-$text-main: #333333;
|
|
|
-$text-sub: #999999;
|
|
|
-$page-bg: #f6f7f9;
|
|
|
-
|
|
|
-.workbench {
|
|
|
- min-height: 100vh;
|
|
|
- background: $page-bg;
|
|
|
- position: relative;
|
|
|
- box-sizing: border-box;
|
|
|
-}
|
|
|
-
|
|
|
-.page-bg {
|
|
|
- position: absolute;
|
|
|
- top: -170rpx;
|
|
|
- left: 0;
|
|
|
- width: 100%;
|
|
|
- z-index: 0;
|
|
|
- height: 420rpx;
|
|
|
-}
|
|
|
-
|
|
|
-.page-content {
|
|
|
- position: relative;
|
|
|
- z-index: 1;
|
|
|
- padding: 20rpx 24rpx 40rpx;
|
|
|
- box-sizing: border-box;
|
|
|
-}
|
|
|
-
|
|
|
-.card {
|
|
|
- background: #ffffff;
|
|
|
- border-radius: 24rpx;
|
|
|
- margin-bottom: 24rpx;
|
|
|
- padding: 28rpx 24rpx;
|
|
|
- box-sizing: border-box;
|
|
|
- box-shadow: 0 8rpx 24rpx rgba(0, 0, 0, 0.04);
|
|
|
-}
|
|
|
-.card-address {
|
|
|
- background: #ffffff;
|
|
|
- border-radius: 24rpx;
|
|
|
- margin-bottom: 24rpx;
|
|
|
- padding: 28rpx 24rpx 0 24rpx;
|
|
|
- box-sizing: border-box;
|
|
|
- box-shadow: 0 8rpx 24rpx rgba(0, 0, 0, 0.04);
|
|
|
-}
|
|
|
-
|
|
|
-/* 头部 */
|
|
|
-.header-section {
|
|
|
- padding: 16rpx 8rpx 32rpx;
|
|
|
-}
|
|
|
-
|
|
|
-.header-main {
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
-}
|
|
|
-
|
|
|
-.avatar-wrap {
|
|
|
- width: 112rpx;
|
|
|
- height: 112rpx;
|
|
|
- border-radius: 50%;
|
|
|
- border: 4rpx solid rgba(255, 255, 255, 0.8);
|
|
|
- overflow: hidden;
|
|
|
- background: #eee;
|
|
|
- flex-shrink: 0;
|
|
|
- box-shadow: 0 4rpx 16rpx rgba(0, 0, 0, 0.08);
|
|
|
-}
|
|
|
-
|
|
|
-.avatar {
|
|
|
- width: 100%;
|
|
|
- height: 100%;
|
|
|
-}
|
|
|
-
|
|
|
-.header-info {
|
|
|
- margin-left: 24rpx;
|
|
|
- flex: 1;
|
|
|
- min-width: 0;
|
|
|
-}
|
|
|
-
|
|
|
-.nickname {
|
|
|
- font-size: 36rpx;
|
|
|
- color: $text-main;
|
|
|
- font-weight: 600;
|
|
|
- line-height: 1.4;
|
|
|
-}
|
|
|
-
|
|
|
-.status-bar {
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- gap: 16rpx;
|
|
|
- margin-top: 16rpx;
|
|
|
-}
|
|
|
-
|
|
|
-.status-tag {
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- padding: 6rpx 16rpx;
|
|
|
- font-size: 22rpx;
|
|
|
- border-radius: 24rpx;
|
|
|
- color: #1D2129;
|
|
|
- background: linear-gradient( 263deg, #45FFD7 0%, #78FFA5 100%);
|
|
|
-}
|
|
|
-
|
|
|
-.status-tag-icon {
|
|
|
- width: 24rpx;
|
|
|
- height: 24rpx;
|
|
|
- margin-right: 6rpx;
|
|
|
-}
|
|
|
-
|
|
|
-.status-select {
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- padding: 6rpx 16rpx;
|
|
|
- font-size: 22rpx;
|
|
|
- border-radius: 24rpx;
|
|
|
- color: $text-main;
|
|
|
- background: rgba(255, 255, 255, 0.9);
|
|
|
-}
|
|
|
-
|
|
|
-.status-arrow {
|
|
|
- width: 20rpx;
|
|
|
- height: 20rpx;
|
|
|
- margin-left: 6rpx;
|
|
|
-}
|
|
|
-
|
|
|
-/* 统计栏 */
|
|
|
-.stats-section {
|
|
|
- display: flex;
|
|
|
- justify-content: space-between;
|
|
|
- padding: 32rpx 16rpx;
|
|
|
-}
|
|
|
-
|
|
|
-.stat-item {
|
|
|
- flex: 1;
|
|
|
- text-align: center;
|
|
|
-}
|
|
|
-
|
|
|
-.stat-value {
|
|
|
- font-size: 36rpx;
|
|
|
- color: $text-main;
|
|
|
- font-weight: 600;
|
|
|
- line-height: 1.4;
|
|
|
-}
|
|
|
-
|
|
|
-.stat-label {
|
|
|
- font-size: 22rpx;
|
|
|
- color: $text-sub;
|
|
|
- margin-top: 10rpx;
|
|
|
-}
|
|
|
-
|
|
|
-.unit {
|
|
|
- font-size: 24rpx;
|
|
|
- font-weight: 400;
|
|
|
- margin-left: 2rpx;
|
|
|
-}
|
|
|
-
|
|
|
-/* 钱包 */
|
|
|
-.wallet-section {
|
|
|
- padding: 32rpx 32rpx;
|
|
|
- background: radial-gradient( 109.56% 48.07% at 10.06% 5%, #E7FDF9 0%, #FFFFFF 100%), #FFFFFF;
|
|
|
-}
|
|
|
-
|
|
|
-.balance-row {
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- justify-content: space-between;
|
|
|
- padding-bottom: 28rpx;
|
|
|
-}
|
|
|
-
|
|
|
-.balance-main {
|
|
|
- display: flex;
|
|
|
- flex-direction: column;
|
|
|
-}
|
|
|
-
|
|
|
-.balance-amount {
|
|
|
- font-size: 56rpx;
|
|
|
- font-weight: 700;
|
|
|
- color: $text-main;
|
|
|
- line-height: 1.2;
|
|
|
- font-family: DIN, 'Helvetica Neue', sans-serif;
|
|
|
-}
|
|
|
-
|
|
|
-.balance-label {
|
|
|
- font-size: 24rpx;
|
|
|
- color: $text-sub;
|
|
|
- margin-top: 8rpx;
|
|
|
-}
|
|
|
-
|
|
|
-.withdraw-btn {
|
|
|
- padding: 16rpx 48rpx;
|
|
|
- background: linear-gradient(90deg, #3dd9cf 0%, #1ecbc3 100%);
|
|
|
- border-radius: 40rpx;
|
|
|
- font-size: 28rpx;
|
|
|
- color: #ffffff;
|
|
|
- font-weight: 500;
|
|
|
- flex-shrink: 0;
|
|
|
- box-shadow: 0 8rpx 20rpx rgba(30, 203, 195, 0.35);
|
|
|
-}
|
|
|
-
|
|
|
-.wallet-grid {
|
|
|
- display: flex;
|
|
|
- justify-content: space-between;
|
|
|
-}
|
|
|
-
|
|
|
-.wallet-item {
|
|
|
- text-align: center;
|
|
|
-}
|
|
|
-
|
|
|
-.wallet-value {
|
|
|
- font-size: 28rpx;
|
|
|
- color: $text-main;
|
|
|
- font-weight: 600;
|
|
|
- line-height: 1.4;
|
|
|
-}
|
|
|
-
|
|
|
-.wallet-label {
|
|
|
- font-size: 22rpx;
|
|
|
- color: $text-sub;
|
|
|
- margin-top: 10rpx;
|
|
|
-}
|
|
|
-
|
|
|
-/* 新订单 */
|
|
|
-.order-section {
|
|
|
- margin-bottom: 24rpx;
|
|
|
- border-radius: 24rpx;
|
|
|
- overflow: hidden;
|
|
|
- background: #1D2129;
|
|
|
- box-shadow: 0 8rpx 24rpx rgba(0, 0, 0, 0.04);
|
|
|
-}
|
|
|
-
|
|
|
-.order-header {
|
|
|
- position: relative;
|
|
|
- height: 88rpx;
|
|
|
- .order-header-bg {
|
|
|
- position: absolute;
|
|
|
- right: 0;
|
|
|
- bottom: -10rpx;
|
|
|
- image{
|
|
|
- width: 410rpx;
|
|
|
- height: 50rpx;
|
|
|
+ .left {
|
|
|
+ color: #333;
|
|
|
+ border-right: 1rpx solid #eee;
|
|
|
+ }
|
|
|
+
|
|
|
+ .right {
|
|
|
+ color: #007aff;
|
|
|
}
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-.order-header-content {
|
|
|
- position: relative;
|
|
|
- z-index: 1;
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- height: 100%;
|
|
|
- padding: 0 28rpx;
|
|
|
- font-size: 28rpx;
|
|
|
- color: #45FFD7;
|
|
|
- font-weight: 500;
|
|
|
-}
|
|
|
-
|
|
|
-.order-bell {
|
|
|
- width: 36rpx;
|
|
|
- height: 36rpx;
|
|
|
- margin-right: 12rpx;
|
|
|
-}
|
|
|
-
|
|
|
-.order-card {
|
|
|
- background-color: #fff;
|
|
|
- margin: 4rpx;
|
|
|
- border-radius: 24rpx;
|
|
|
- padding: 28rpx 24rpx 32rpx;
|
|
|
-}
|
|
|
-
|
|
|
-.order-title-row {
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- justify-content: space-between;
|
|
|
- gap: 16rpx;
|
|
|
-}
|
|
|
-
|
|
|
-.order-title {
|
|
|
- flex: 1;
|
|
|
- font-size: 32rpx;
|
|
|
- color: #1D2129;
|
|
|
- font-weight: 600;
|
|
|
- line-height: 1.5;
|
|
|
-}
|
|
|
-
|
|
|
-.tag-new {
|
|
|
- font-size: 28rpx;
|
|
|
- color: #FF8D2F;
|
|
|
-}
|
|
|
-
|
|
|
-.order-time,
|
|
|
-.order-address {
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- font-size: 28rpx;
|
|
|
- color: #1D2129;
|
|
|
- margin-top: 10rpx;
|
|
|
- line-height: 1.6;
|
|
|
-}
|
|
|
-
|
|
|
-.order-icon {
|
|
|
- width: 28rpx;
|
|
|
- height: 28rpx;
|
|
|
- margin-right: 12rpx;
|
|
|
- margin-top: 4rpx;
|
|
|
- flex-shrink: 0;
|
|
|
-}
|
|
|
-
|
|
|
-.order-actions {
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- gap: 20rpx;
|
|
|
- margin-top: 32rpx;
|
|
|
-}
|
|
|
-
|
|
|
-.reject-btn {
|
|
|
- width: 128rpx;
|
|
|
- height: 88rpx;
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- justify-content: center;
|
|
|
- font-size: 26rpx;
|
|
|
- color: #333333;
|
|
|
-
|
|
|
- background: rgba(255,141,47,0.12);
|
|
|
- border-radius: 2000rpx 2000rpx 2000rpx 2000rpx;
|
|
|
- border: 1rpx solid #FF8D2F;
|
|
|
-}
|
|
|
-
|
|
|
-.slide-wrap {
|
|
|
- flex: 1;
|
|
|
-}
|
|
|
-
|
|
|
-.slide-track {
|
|
|
- position: relative;
|
|
|
- height: 96rpx;
|
|
|
- background: linear-gradient( 263deg, #45FFD7 0%, #7FFFBD 100%), #1D2129;
|
|
|
- border-radius: 48rpx;
|
|
|
- overflow: hidden;
|
|
|
- box-shadow: 0 8rpx 20rpx rgba(30, 203, 195, 0.3);
|
|
|
-}
|
|
|
-
|
|
|
-.slide-hint {
|
|
|
- position: absolute;
|
|
|
- left: 0;
|
|
|
- right: 80rpx;
|
|
|
- top: 0;
|
|
|
- bottom: 0;
|
|
|
- line-height: 96rpx;
|
|
|
- text-align: center;
|
|
|
- font-size: 28rpx;
|
|
|
- color: #000;
|
|
|
- font-weight: 500;
|
|
|
- pointer-events: none;
|
|
|
-}
|
|
|
-
|
|
|
-.slide-thumb {
|
|
|
- position: absolute;
|
|
|
- left: 0;
|
|
|
- top: 0;
|
|
|
- width: 96rpx;
|
|
|
- height: 96rpx;
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- justify-content: center;
|
|
|
- // background: rgba(255, 255, 255, 0.35);
|
|
|
- border-radius: 50%;
|
|
|
- z-index: 1;
|
|
|
-}
|
|
|
-
|
|
|
-.slide-thumb .slide-arrow {
|
|
|
- width: 40rpx;
|
|
|
- height: 40rpx;
|
|
|
-}
|
|
|
-
|
|
|
-/* 技能 */
|
|
|
-.skills-section {
|
|
|
- .section-header {
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- justify-content: space-between;
|
|
|
- margin-bottom: 24rpx;
|
|
|
- }
|
|
|
|
|
|
- .section-heading-wrap {
|
|
|
- display: flex;
|
|
|
- align-items: flex-start;
|
|
|
}
|
|
|
|
|
|
- .section-heading-box {
|
|
|
+ $primary: #1ecbc3;
|
|
|
+ $primary-dark: #0fa89e;
|
|
|
+ $text-main: #333333;
|
|
|
+ $text-sub: #999999;
|
|
|
+ $page-bg: #f6f7f9;
|
|
|
+
|
|
|
+ .workbench {
|
|
|
+ min-height: 100vh;
|
|
|
+ background: $page-bg;
|
|
|
position: relative;
|
|
|
- display: inline-flex;
|
|
|
- flex-direction: column;
|
|
|
+ box-sizing: border-box;
|
|
|
}
|
|
|
|
|
|
- .section-heading {
|
|
|
+ .page-bg {
|
|
|
+ position: absolute;
|
|
|
+ top: -170rpx;
|
|
|
+ left: 0;
|
|
|
+ width: 100%;
|
|
|
+ z-index: 0;
|
|
|
+ height: 420rpx;
|
|
|
+ }
|
|
|
+
|
|
|
+ .page-content {
|
|
|
position: relative;
|
|
|
z-index: 1;
|
|
|
- font-size: 32rpx;
|
|
|
- color: #1D2129;
|
|
|
- font-weight: 600;
|
|
|
- line-height: 1.4;
|
|
|
- padding-bottom: 10rpx;
|
|
|
- background-image: url('/static/workbench/skill.png');
|
|
|
- background-repeat: no-repeat;
|
|
|
- background-size: 80%;
|
|
|
+ padding: 20rpx 24rpx 40rpx;
|
|
|
+ box-sizing: border-box;
|
|
|
}
|
|
|
|
|
|
- .skill-tip {
|
|
|
- width: 40rpx;
|
|
|
- height: 40rpx;
|
|
|
- margin-left: 8rpx;
|
|
|
- margin-top: 2rpx;
|
|
|
- flex-shrink: 0;
|
|
|
+ .card {
|
|
|
+ background: #ffffff;
|
|
|
+ border-radius: 24rpx;
|
|
|
+ margin-bottom: 24rpx;
|
|
|
+ padding: 28rpx 24rpx;
|
|
|
+ box-sizing: border-box;
|
|
|
+ box-shadow: 0 8rpx 24rpx rgba(0, 0, 0, 0.04);
|
|
|
}
|
|
|
|
|
|
- .section-link {
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- font-size: 28rpx;
|
|
|
- color: #86909C;
|
|
|
- flex-shrink: 0;
|
|
|
+ .card-address {
|
|
|
+ background: #ffffff;
|
|
|
+ border-radius: 24rpx;
|
|
|
+ margin-bottom: 24rpx;
|
|
|
+ padding: 28rpx 24rpx 0 24rpx;
|
|
|
+ box-sizing: border-box;
|
|
|
+ box-shadow: 0 8rpx 24rpx rgba(0, 0, 0, 0.04);
|
|
|
}
|
|
|
|
|
|
- .link-arrow {
|
|
|
- width: 30rpx;
|
|
|
- height: 30rpx;
|
|
|
- margin-left: 4rpx;
|
|
|
+ /* 头部 */
|
|
|
+ .header-section {
|
|
|
+ padding: 16rpx 8rpx 32rpx;
|
|
|
}
|
|
|
-}
|
|
|
-
|
|
|
-.skill-single {
|
|
|
- width: 100%;
|
|
|
-}
|
|
|
-
|
|
|
-.skill-scroll {
|
|
|
- width: 100%;
|
|
|
-}
|
|
|
-
|
|
|
-.skill-list {
|
|
|
- display: flex;
|
|
|
- flex-direction: row;
|
|
|
- flex-wrap: nowrap;
|
|
|
-}
|
|
|
|
|
|
-.skill-card {
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- padding: 16rpx;
|
|
|
- border: 1rpx solid #eeeeee;
|
|
|
- border-radius: 16rpx;
|
|
|
- background: #ffffff;
|
|
|
- box-sizing: border-box;
|
|
|
-}
|
|
|
-
|
|
|
-.skill-card--single {
|
|
|
- width: 100%;
|
|
|
-
|
|
|
- .skill-img {
|
|
|
- width: 160rpx;
|
|
|
- height: 160rpx;
|
|
|
- margin-right: 20rpx;
|
|
|
+ .header-main {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
}
|
|
|
-}
|
|
|
|
|
|
-.skill-card--multi {
|
|
|
- flex-shrink: 0;
|
|
|
- width: 380rpx;
|
|
|
- margin-right: 20rpx;
|
|
|
-
|
|
|
- &:last-child {
|
|
|
- margin-right: 0;
|
|
|
+ .avatar-wrap {
|
|
|
+ width: 112rpx;
|
|
|
+ height: 112rpx;
|
|
|
+ border-radius: 50%;
|
|
|
+ border: 4rpx solid rgba(255, 255, 255, 0.8);
|
|
|
+ overflow: hidden;
|
|
|
+ background: #eee;
|
|
|
+ flex-shrink: 0;
|
|
|
+ box-shadow: 0 4rpx 16rpx rgba(0, 0, 0, 0.08);
|
|
|
}
|
|
|
-}
|
|
|
|
|
|
-.skill-img {
|
|
|
- width: 88rpx;
|
|
|
- height: 88rpx;
|
|
|
- background: #f5f5f5;
|
|
|
- border-radius: 10rpx;
|
|
|
- overflow: hidden;
|
|
|
- flex-shrink: 0;
|
|
|
- margin-right: 14rpx;
|
|
|
-
|
|
|
- image {
|
|
|
+ .avatar {
|
|
|
width: 100%;
|
|
|
height: 100%;
|
|
|
}
|
|
|
-}
|
|
|
-
|
|
|
-.skill-info {
|
|
|
- flex: 1;
|
|
|
- min-width: 0;
|
|
|
- display: flex;
|
|
|
- flex-direction: column;
|
|
|
- justify-content: center;
|
|
|
-}
|
|
|
-
|
|
|
-.skill-name {
|
|
|
- font-size: 28rpx;
|
|
|
- color: $text-main;
|
|
|
- margin-bottom: 8rpx;
|
|
|
- font-weight: 500;
|
|
|
- line-height: 1.3;
|
|
|
-}
|
|
|
-
|
|
|
-.skill-tags {
|
|
|
- display: flex;
|
|
|
- flex-wrap: wrap;
|
|
|
- gap: 8rpx;
|
|
|
- margin-bottom: 10rpx;
|
|
|
-}
|
|
|
-
|
|
|
-.skill-tag {
|
|
|
- font-size: 20rpx;
|
|
|
- color: #c9a227;
|
|
|
- background: #fff8e6;
|
|
|
- padding: 4rpx 12rpx;
|
|
|
- border-radius: 6rpx;
|
|
|
- line-height: 1.4;
|
|
|
-}
|
|
|
-
|
|
|
-.skill-price {
|
|
|
- font-size: 30rpx;
|
|
|
- color: #ff5d75;
|
|
|
- font-weight: 600;
|
|
|
- line-height: 1.2;
|
|
|
-}
|
|
|
-
|
|
|
-.empty-tip {
|
|
|
- font-size: 26rpx;
|
|
|
- color: $text-sub;
|
|
|
- text-align: center;
|
|
|
- padding: 32rpx 0;
|
|
|
-}
|
|
|
-
|
|
|
-/* 地址 */
|
|
|
-.address-section {
|
|
|
- .address-heading-wrap {
|
|
|
- display: flex;
|
|
|
- align-items: flex-start;
|
|
|
- margin-bottom: 20rpx;
|
|
|
+
|
|
|
+ .header-info {
|
|
|
+ margin-left: 24rpx;
|
|
|
+ flex: 1;
|
|
|
+ min-width: 0;
|
|
|
}
|
|
|
|
|
|
- .section-heading {
|
|
|
- font-size: 32rpx;
|
|
|
- color: #1D2129;
|
|
|
+ .nickname {
|
|
|
+ font-size: 36rpx;
|
|
|
+ color: $text-main;
|
|
|
font-weight: 600;
|
|
|
line-height: 1.4;
|
|
|
- padding-bottom: 10rpx;
|
|
|
- background-image: url('/static/workbench/more.png');
|
|
|
- background-repeat: no-repeat;
|
|
|
- background-size: 80%;
|
|
|
}
|
|
|
|
|
|
- .address-tip {
|
|
|
- width: 40rpx;
|
|
|
- height: 40rpx;
|
|
|
- margin-left: 8rpx;
|
|
|
- margin-top: 2rpx;
|
|
|
- flex-shrink: 0;
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-.address-row {
|
|
|
- display: flex;
|
|
|
- align-items: flex-start;
|
|
|
- margin-bottom: 28rpx;
|
|
|
-}
|
|
|
-
|
|
|
-.address-icon {
|
|
|
- width: 32rpx;
|
|
|
- height: 32rpx;
|
|
|
- margin-right: 12rpx;
|
|
|
- margin-top: 4rpx;
|
|
|
- flex-shrink: 0;
|
|
|
-}
|
|
|
-
|
|
|
-.address-text {
|
|
|
- flex: 1;
|
|
|
- font-size: 26rpx;
|
|
|
- color: #666666;
|
|
|
- line-height: 1.6;
|
|
|
-}
|
|
|
-
|
|
|
-.address-actions {
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- border-top: 1rpx solid #f0f0f0;
|
|
|
-}
|
|
|
-
|
|
|
-.addr-btn {
|
|
|
- flex: 1;
|
|
|
- height: 80rpx;
|
|
|
- line-height: 80rpx;
|
|
|
- text-align: center;
|
|
|
- font-size: 30rpx;
|
|
|
- color: $text-main;
|
|
|
-}
|
|
|
-
|
|
|
-.addr-divider {
|
|
|
- width: 1rpx;
|
|
|
- height: 120rpx;
|
|
|
- background: #e8e8e8;
|
|
|
-}
|
|
|
-
|
|
|
-/* 更多功能 */
|
|
|
-.more-section {
|
|
|
- .more-heading-wrap {
|
|
|
+ .status-bar {
|
|
|
display: flex;
|
|
|
- align-items: flex-start;
|
|
|
- margin-bottom: 20rpx;
|
|
|
+ align-items: center;
|
|
|
+ gap: 16rpx;
|
|
|
+ margin-top: 16rpx;
|
|
|
}
|
|
|
|
|
|
- .section-heading {
|
|
|
- font-size: 32rpx;
|
|
|
+ .status-tag {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ padding: 6rpx 16rpx;
|
|
|
+ font-size: 22rpx;
|
|
|
+ border-radius: 24rpx;
|
|
|
color: #1D2129;
|
|
|
- font-weight: 600;
|
|
|
- line-height: 1.4;
|
|
|
- padding-bottom: 10rpx;
|
|
|
- background-image: url('/static/workbench/more.png');
|
|
|
- background-repeat: no-repeat;
|
|
|
- background-size: 80%;
|
|
|
+ background: linear-gradient(263deg, #45FFD7 0%, #78FFA5 100%);
|
|
|
}
|
|
|
|
|
|
- .more-tip {
|
|
|
- width: 40rpx;
|
|
|
- height: 40rpx;
|
|
|
- margin-left: 8rpx;
|
|
|
- margin-top: 2rpx;
|
|
|
- flex-shrink: 0;
|
|
|
+ .status-tag-icon {
|
|
|
+ width: 24rpx;
|
|
|
+ height: 24rpx;
|
|
|
+ margin-right: 6rpx;
|
|
|
}
|
|
|
-}
|
|
|
-
|
|
|
-.more-grid {
|
|
|
- display: flex;
|
|
|
- flex-wrap: wrap;
|
|
|
-}
|
|
|
-
|
|
|
-.more-item {
|
|
|
- width: 25%;
|
|
|
- display: flex;
|
|
|
- flex-direction: column;
|
|
|
- align-items: center;
|
|
|
- padding: 24rpx 0 8rpx;
|
|
|
-}
|
|
|
-
|
|
|
-.more-icon {
|
|
|
- width: 80rpx;
|
|
|
- height: 80rpx;
|
|
|
- margin-bottom: 12rpx;
|
|
|
-}
|
|
|
-
|
|
|
-.more-label {
|
|
|
- font-size: 24rpx;
|
|
|
- color: #666666;
|
|
|
- text-align: center;
|
|
|
- line-height: 1.4;
|
|
|
-}
|
|
|
-
|
|
|
-/* 弹窗 */
|
|
|
-.popup-mask {
|
|
|
- position: fixed;
|
|
|
- left: 0;
|
|
|
- top: 0;
|
|
|
- right: 0;
|
|
|
- bottom: 0;
|
|
|
- background: rgba(0, 0, 0, 0.4);
|
|
|
- z-index: 999;
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- justify-content: center;
|
|
|
-}
|
|
|
-
|
|
|
-.popup-box {
|
|
|
- width: 600rpx;
|
|
|
- background: #fff;
|
|
|
- border-radius: 8rpx;
|
|
|
- padding: 32rpx;
|
|
|
-}
|
|
|
-
|
|
|
-.popup-title {
|
|
|
- font-size: 28rpx;
|
|
|
- color: #333;
|
|
|
- text-align: center;
|
|
|
- margin-bottom: 24rpx;
|
|
|
-}
|
|
|
-
|
|
|
-.popup-input {
|
|
|
- width: 100%;
|
|
|
- height: 72rpx;
|
|
|
- border: 1rpx solid #ddd;
|
|
|
- border-radius: 6rpx;
|
|
|
- padding: 0 20rpx;
|
|
|
- font-size: 26rpx;
|
|
|
- box-sizing: border-box;
|
|
|
-}
|
|
|
-
|
|
|
-.popup-btns {
|
|
|
- display: flex;
|
|
|
- gap: 24rpx;
|
|
|
- margin-top: 32rpx;
|
|
|
-}
|
|
|
-
|
|
|
-.popup-btn {
|
|
|
- flex: 1;
|
|
|
- height: 72rpx;
|
|
|
- line-height: 72rpx;
|
|
|
- text-align: center;
|
|
|
- border: 1rpx solid #ccc;
|
|
|
- border-radius: 6rpx;
|
|
|
- font-size: 28rpx;
|
|
|
- color: #666;
|
|
|
-
|
|
|
- &.confirm {
|
|
|
- background: linear-gradient(90deg, #3dd9cf 0%, #1ecbc3 100%);
|
|
|
- border-color: #1ecbc3;
|
|
|
- color: #fff;
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-.popup-mask.bottom {
|
|
|
- align-items: flex-end;
|
|
|
-}
|
|
|
-
|
|
|
-.status-panel {
|
|
|
- width: 100%;
|
|
|
- background: #fff;
|
|
|
- border-radius: 24rpx 24rpx 0 0;
|
|
|
- padding: 32rpx;
|
|
|
- padding-bottom: calc(env(safe-area-inset-bottom) + 32rpx);
|
|
|
- box-sizing: border-box;
|
|
|
-}
|
|
|
-
|
|
|
-.panel-title {
|
|
|
- font-size: 32rpx;
|
|
|
- font-weight: 600;
|
|
|
- color: #333;
|
|
|
- text-align: center;
|
|
|
- margin-bottom: 32rpx;
|
|
|
-}
|
|
|
-
|
|
|
-.status-option {
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- padding: 28rpx 0;
|
|
|
- border-bottom: 1rpx solid #f5f5f5;
|
|
|
-
|
|
|
- // &.active .option-name {
|
|
|
- // color: #1ecbc3;
|
|
|
- // }
|
|
|
-}
|
|
|
-
|
|
|
-.option-body {
|
|
|
- flex: 1;
|
|
|
- min-width: 0;
|
|
|
-}
|
|
|
-
|
|
|
-.option-check {
|
|
|
- font-size: 36rpx;
|
|
|
- color: #1ecbc3;
|
|
|
- font-weight: 600;
|
|
|
- flex-shrink: 0;
|
|
|
- margin-left: 16rpx;
|
|
|
- image{
|
|
|
- width: 50rpx;
|
|
|
- height: 50rpx;
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-.option-name {
|
|
|
- display: block;
|
|
|
- font-size: 30rpx;
|
|
|
- color: #333;
|
|
|
- font-weight: 500;
|
|
|
-}
|
|
|
-
|
|
|
-.option-desc {
|
|
|
- display: block;
|
|
|
- font-size: 24rpx;
|
|
|
- color: #999;
|
|
|
- margin-top: 8rpx;
|
|
|
- line-height: 1.5;
|
|
|
-}
|
|
|
-
|
|
|
-.panel-btns {
|
|
|
- display: flex;
|
|
|
- gap: 24rpx;
|
|
|
- margin-top: 32rpx;
|
|
|
-}
|
|
|
-
|
|
|
-.panel-btn {
|
|
|
- flex: 1;
|
|
|
- height: 80rpx;
|
|
|
- line-height: 80rpx;
|
|
|
- text-align: center;
|
|
|
- background: rgba(51,51,53,0.05);
|
|
|
- border-radius: 60rpx 60rpx 60rpx 60rpx;
|
|
|
- font-size: 32rpx;
|
|
|
- color: #1D2129;
|
|
|
-
|
|
|
- &.confirm {
|
|
|
- background: #333335;
|
|
|
- border-radius: 60rpx 60rpx 60rpx 60rpx;
|
|
|
- color: #fff;
|
|
|
+
|
|
|
+ .status-select {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ padding: 6rpx 16rpx;
|
|
|
+ font-size: 22rpx;
|
|
|
+ border-radius: 24rpx;
|
|
|
+ color: $text-main;
|
|
|
+ background: rgba(255, 255, 255, 0.9);
|
|
|
}
|
|
|
-}
|
|
|
|
|
|
-.one-line-text {
|
|
|
- overflow: hidden;
|
|
|
- text-overflow: ellipsis;
|
|
|
- white-space: nowrap;
|
|
|
-}
|
|
|
-</style>
|
|
|
+ .status-arrow {
|
|
|
+ width: 20rpx;
|
|
|
+ height: 20rpx;
|
|
|
+ margin-left: 6rpx;
|
|
|
+ }
|
|
|
+
|
|
|
+ /* 统计栏 */
|
|
|
+ .stats-section {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ padding: 32rpx 16rpx;
|
|
|
+ }
|
|
|
+
|
|
|
+ .stat-item {
|
|
|
+ flex: 1;
|
|
|
+ text-align: center;
|
|
|
+ }
|
|
|
+
|
|
|
+ .stat-value {
|
|
|
+ font-size: 36rpx;
|
|
|
+ color: $text-main;
|
|
|
+ font-weight: 600;
|
|
|
+ line-height: 1.4;
|
|
|
+ }
|
|
|
+
|
|
|
+ .stat-label {
|
|
|
+ font-size: 22rpx;
|
|
|
+ color: $text-sub;
|
|
|
+ margin-top: 10rpx;
|
|
|
+ }
|
|
|
+
|
|
|
+ .unit {
|
|
|
+ font-size: 24rpx;
|
|
|
+ font-weight: 400;
|
|
|
+ margin-left: 2rpx;
|
|
|
+ }
|
|
|
+
|
|
|
+ /* 钱包 */
|
|
|
+ .wallet-section {
|
|
|
+ padding: 32rpx 32rpx;
|
|
|
+ background: radial-gradient(109.56% 48.07% at 10.06% 5%, #E7FDF9 0%, #FFFFFF 100%), #FFFFFF;
|
|
|
+ }
|
|
|
+
|
|
|
+ .balance-row {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: space-between;
|
|
|
+ padding-bottom: 28rpx;
|
|
|
+ }
|
|
|
+
|
|
|
+ .balance-main {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ }
|
|
|
+
|
|
|
+ .balance-amount {
|
|
|
+ font-size: 56rpx;
|
|
|
+ font-weight: 700;
|
|
|
+ color: $text-main;
|
|
|
+ line-height: 1.2;
|
|
|
+ font-family: DIN, 'Helvetica Neue', sans-serif;
|
|
|
+ }
|
|
|
+
|
|
|
+ .balance-label {
|
|
|
+ font-size: 24rpx;
|
|
|
+ color: $text-sub;
|
|
|
+ margin-top: 8rpx;
|
|
|
+ }
|
|
|
+
|
|
|
+ .withdraw-btn {
|
|
|
+ padding: 16rpx 48rpx;
|
|
|
+ background: linear-gradient(90deg, #3dd9cf 0%, #1ecbc3 100%);
|
|
|
+ border-radius: 40rpx;
|
|
|
+ font-size: 28rpx;
|
|
|
+ color: #ffffff;
|
|
|
+ font-weight: 500;
|
|
|
+ flex-shrink: 0;
|
|
|
+ box-shadow: 0 8rpx 20rpx rgba(30, 203, 195, 0.35);
|
|
|
+ }
|
|
|
+
|
|
|
+ .wallet-grid {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ }
|
|
|
+
|
|
|
+ .wallet-item {
|
|
|
+ text-align: center;
|
|
|
+ }
|
|
|
+
|
|
|
+ .wallet-value {
|
|
|
+ font-size: 28rpx;
|
|
|
+ color: $text-main;
|
|
|
+ font-weight: 600;
|
|
|
+ line-height: 1.4;
|
|
|
+ }
|
|
|
+
|
|
|
+ .wallet-label {
|
|
|
+ font-size: 22rpx;
|
|
|
+ color: $text-sub;
|
|
|
+ margin-top: 10rpx;
|
|
|
+ }
|
|
|
+
|
|
|
+ /* 新订单 */
|
|
|
+ .order-section {
|
|
|
+ margin-bottom: 24rpx;
|
|
|
+ border-radius: 24rpx;
|
|
|
+ overflow: hidden;
|
|
|
+ background: #1D2129;
|
|
|
+ box-shadow: 0 8rpx 24rpx rgba(0, 0, 0, 0.04);
|
|
|
+ }
|
|
|
+
|
|
|
+ .order-header {
|
|
|
+ position: relative;
|
|
|
+ height: 88rpx;
|
|
|
+
|
|
|
+ .order-header-bg {
|
|
|
+ position: absolute;
|
|
|
+ right: 0;
|
|
|
+ bottom: -10rpx;
|
|
|
+
|
|
|
+ image {
|
|
|
+ width: 410rpx;
|
|
|
+ height: 50rpx;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ .order-header-content {
|
|
|
+ position: relative;
|
|
|
+ z-index: 1;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ height: 100%;
|
|
|
+ padding: 0 28rpx;
|
|
|
+ font-size: 28rpx;
|
|
|
+ color: #45FFD7;
|
|
|
+ font-weight: 500;
|
|
|
+ }
|
|
|
+
|
|
|
+ .order-bell {
|
|
|
+ width: 36rpx;
|
|
|
+ height: 36rpx;
|
|
|
+ margin-right: 12rpx;
|
|
|
+ }
|
|
|
+
|
|
|
+ .order-card {
|
|
|
+ background-color: #fff;
|
|
|
+ margin: 4rpx;
|
|
|
+ border-radius: 24rpx;
|
|
|
+ padding: 28rpx 24rpx 32rpx;
|
|
|
+ }
|
|
|
+
|
|
|
+ .order-title-row {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: space-between;
|
|
|
+ gap: 16rpx;
|
|
|
+ }
|
|
|
+
|
|
|
+ .order-title {
|
|
|
+ flex: 1;
|
|
|
+ font-size: 32rpx;
|
|
|
+ color: #1D2129;
|
|
|
+ font-weight: 600;
|
|
|
+ line-height: 1.5;
|
|
|
+ }
|
|
|
+
|
|
|
+ .tag-new {
|
|
|
+ font-size: 28rpx;
|
|
|
+ color: #FF8D2F;
|
|
|
+ }
|
|
|
+
|
|
|
+ .order-time,
|
|
|
+ .order-address {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ font-size: 28rpx;
|
|
|
+ color: #1D2129;
|
|
|
+ margin-top: 10rpx;
|
|
|
+ line-height: 1.6;
|
|
|
+ }
|
|
|
+
|
|
|
+ .order-icon {
|
|
|
+ width: 28rpx;
|
|
|
+ height: 28rpx;
|
|
|
+ margin-right: 12rpx;
|
|
|
+ margin-top: 4rpx;
|
|
|
+ flex-shrink: 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ .order-actions {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ gap: 20rpx;
|
|
|
+ margin-top: 32rpx;
|
|
|
+ }
|
|
|
+
|
|
|
+ .reject-btn {
|
|
|
+ width: 128rpx;
|
|
|
+ height: 88rpx;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ font-size: 26rpx;
|
|
|
+ color: #333333;
|
|
|
+
|
|
|
+ background: rgba(255, 141, 47, 0.12);
|
|
|
+ border-radius: 2000rpx 2000rpx 2000rpx 2000rpx;
|
|
|
+ border: 1rpx solid #FF8D2F;
|
|
|
+ }
|
|
|
+
|
|
|
+ .slide-wrap {
|
|
|
+ flex: 1;
|
|
|
+ }
|
|
|
+
|
|
|
+ .slide-track {
|
|
|
+ position: relative;
|
|
|
+ height: 96rpx;
|
|
|
+ background: linear-gradient(263deg, #45FFD7 0%, #7FFFBD 100%), #1D2129;
|
|
|
+ border-radius: 48rpx;
|
|
|
+ overflow: hidden;
|
|
|
+ box-shadow: 0 8rpx 20rpx rgba(30, 203, 195, 0.3);
|
|
|
+ }
|
|
|
+
|
|
|
+ .slide-hint {
|
|
|
+ position: absolute;
|
|
|
+ left: 0;
|
|
|
+ right: 80rpx;
|
|
|
+ top: 0;
|
|
|
+ bottom: 0;
|
|
|
+ line-height: 96rpx;
|
|
|
+ text-align: center;
|
|
|
+ font-size: 28rpx;
|
|
|
+ color: #000;
|
|
|
+ font-weight: 500;
|
|
|
+ pointer-events: none;
|
|
|
+ }
|
|
|
+
|
|
|
+ .slide-thumb {
|
|
|
+ position: absolute;
|
|
|
+ left: 0;
|
|
|
+ top: 0;
|
|
|
+ width: 96rpx;
|
|
|
+ height: 96rpx;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ // background: rgba(255, 255, 255, 0.35);
|
|
|
+ border-radius: 50%;
|
|
|
+ z-index: 1;
|
|
|
+ }
|
|
|
+
|
|
|
+ .slide-thumb .slide-arrow {
|
|
|
+ width: 40rpx;
|
|
|
+ height: 40rpx;
|
|
|
+ }
|
|
|
+
|
|
|
+ /* 技能 */
|
|
|
+ .skills-section {
|
|
|
+ .section-header {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: space-between;
|
|
|
+ margin-bottom: 24rpx;
|
|
|
+ }
|
|
|
+
|
|
|
+ .section-heading-wrap {
|
|
|
+ display: flex;
|
|
|
+ align-items: flex-start;
|
|
|
+ }
|
|
|
+
|
|
|
+ .section-heading-box {
|
|
|
+ position: relative;
|
|
|
+ display: inline-flex;
|
|
|
+ flex-direction: column;
|
|
|
+ }
|
|
|
+
|
|
|
+ .section-heading {
|
|
|
+ position: relative;
|
|
|
+ z-index: 1;
|
|
|
+ font-size: 32rpx;
|
|
|
+ color: #1D2129;
|
|
|
+ font-weight: 600;
|
|
|
+ line-height: 1.4;
|
|
|
+ padding-bottom: 10rpx;
|
|
|
+ background-image: url('/static/workbench/skill.png');
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ background-size: 80%;
|
|
|
+ }
|
|
|
+
|
|
|
+ .skill-tip {
|
|
|
+ width: 40rpx;
|
|
|
+ height: 40rpx;
|
|
|
+ margin-left: 8rpx;
|
|
|
+ margin-top: 2rpx;
|
|
|
+ flex-shrink: 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ .section-link {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ font-size: 28rpx;
|
|
|
+ color: #86909C;
|
|
|
+ flex-shrink: 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ .link-arrow {
|
|
|
+ width: 30rpx;
|
|
|
+ height: 30rpx;
|
|
|
+ margin-left: 4rpx;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .skill-single {
|
|
|
+ width: 100%;
|
|
|
+ }
|
|
|
+
|
|
|
+ .skill-scroll {
|
|
|
+ width: 100%;
|
|
|
+ }
|
|
|
+
|
|
|
+ .skill-list {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: row;
|
|
|
+ flex-wrap: nowrap;
|
|
|
+ }
|
|
|
+
|
|
|
+ .skill-card {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ padding: 16rpx;
|
|
|
+ border: 1rpx solid #eeeeee;
|
|
|
+ border-radius: 16rpx;
|
|
|
+ background: #ffffff;
|
|
|
+ box-sizing: border-box;
|
|
|
+ }
|
|
|
+
|
|
|
+ .skill-card--single {
|
|
|
+ width: 100%;
|
|
|
+
|
|
|
+ .skill-img {
|
|
|
+ width: 160rpx;
|
|
|
+ height: 160rpx;
|
|
|
+ margin-right: 20rpx;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .skill-card--multi {
|
|
|
+ flex-shrink: 0;
|
|
|
+ width: 380rpx;
|
|
|
+ margin-right: 20rpx;
|
|
|
+
|
|
|
+ &:last-child {
|
|
|
+ margin-right: 0;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .skill-img {
|
|
|
+ width: 88rpx;
|
|
|
+ height: 88rpx;
|
|
|
+ background: #f5f5f5;
|
|
|
+ border-radius: 10rpx;
|
|
|
+ overflow: hidden;
|
|
|
+ flex-shrink: 0;
|
|
|
+ margin-right: 14rpx;
|
|
|
+
|
|
|
+ image {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .skill-info {
|
|
|
+ flex: 1;
|
|
|
+ min-width: 0;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ justify-content: center;
|
|
|
+ }
|
|
|
+
|
|
|
+ .skill-name {
|
|
|
+ font-size: 28rpx;
|
|
|
+ color: $text-main;
|
|
|
+ margin-bottom: 8rpx;
|
|
|
+ font-weight: 500;
|
|
|
+ line-height: 1.3;
|
|
|
+ }
|
|
|
+
|
|
|
+ .skill-tags {
|
|
|
+ display: flex;
|
|
|
+ flex-wrap: wrap;
|
|
|
+ gap: 8rpx;
|
|
|
+ margin-bottom: 10rpx;
|
|
|
+ }
|
|
|
+
|
|
|
+ .skill-tag {
|
|
|
+ font-size: 20rpx;
|
|
|
+ color: #c9a227;
|
|
|
+ background: #fff8e6;
|
|
|
+ padding: 4rpx 12rpx;
|
|
|
+ border-radius: 6rpx;
|
|
|
+ line-height: 1.4;
|
|
|
+ }
|
|
|
+
|
|
|
+ .skill-price {
|
|
|
+ font-size: 30rpx;
|
|
|
+ color: #ff5d75;
|
|
|
+ font-weight: 600;
|
|
|
+ line-height: 1.2;
|
|
|
+ }
|
|
|
+
|
|
|
+ .empty-tip {
|
|
|
+ font-size: 26rpx;
|
|
|
+ color: $text-sub;
|
|
|
+ text-align: center;
|
|
|
+ padding: 32rpx 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ /* 地址 */
|
|
|
+ .address-section {
|
|
|
+ .address-heading-wrap {
|
|
|
+ display: flex;
|
|
|
+ align-items: flex-start;
|
|
|
+ margin-bottom: 20rpx;
|
|
|
+ }
|
|
|
+
|
|
|
+ .section-heading {
|
|
|
+ font-size: 32rpx;
|
|
|
+ color: #1D2129;
|
|
|
+ font-weight: 600;
|
|
|
+ line-height: 1.4;
|
|
|
+ padding-bottom: 10rpx;
|
|
|
+ background-image: url('/static/workbench/more.png');
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ background-size: 80%;
|
|
|
+ }
|
|
|
+
|
|
|
+ .address-tip {
|
|
|
+ width: 40rpx;
|
|
|
+ height: 40rpx;
|
|
|
+ margin-left: 8rpx;
|
|
|
+ margin-top: 2rpx;
|
|
|
+ flex-shrink: 0;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .address-row {
|
|
|
+ display: flex;
|
|
|
+ align-items: flex-start;
|
|
|
+ margin-bottom: 28rpx;
|
|
|
+ }
|
|
|
+
|
|
|
+ .address-icon {
|
|
|
+ width: 32rpx;
|
|
|
+ height: 32rpx;
|
|
|
+ margin-right: 12rpx;
|
|
|
+ margin-top: 4rpx;
|
|
|
+ flex-shrink: 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ .address-text {
|
|
|
+ flex: 1;
|
|
|
+ font-size: 26rpx;
|
|
|
+ color: #666666;
|
|
|
+ line-height: 1.6;
|
|
|
+ }
|
|
|
+
|
|
|
+ .address-actions {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ border-top: 1rpx solid #f0f0f0;
|
|
|
+ }
|
|
|
+
|
|
|
+ .addr-btn {
|
|
|
+ flex: 1;
|
|
|
+ height: 80rpx;
|
|
|
+ line-height: 80rpx;
|
|
|
+ text-align: center;
|
|
|
+ font-size: 30rpx;
|
|
|
+ color: $text-main;
|
|
|
+ }
|
|
|
+
|
|
|
+ .addr-divider {
|
|
|
+ width: 1rpx;
|
|
|
+ height: 120rpx;
|
|
|
+ background: #e8e8e8;
|
|
|
+ }
|
|
|
+
|
|
|
+ /* 更多功能 */
|
|
|
+ .more-section {
|
|
|
+ .more-heading-wrap {
|
|
|
+ display: flex;
|
|
|
+ align-items: flex-start;
|
|
|
+ margin-bottom: 20rpx;
|
|
|
+ }
|
|
|
+
|
|
|
+ .section-heading {
|
|
|
+ font-size: 32rpx;
|
|
|
+ color: #1D2129;
|
|
|
+ font-weight: 600;
|
|
|
+ line-height: 1.4;
|
|
|
+ padding-bottom: 10rpx;
|
|
|
+ background-image: url('/static/workbench/more.png');
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ background-size: 80%;
|
|
|
+ }
|
|
|
+
|
|
|
+ .more-tip {
|
|
|
+ width: 40rpx;
|
|
|
+ height: 40rpx;
|
|
|
+ margin-left: 8rpx;
|
|
|
+ margin-top: 2rpx;
|
|
|
+ flex-shrink: 0;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .more-grid {
|
|
|
+ display: flex;
|
|
|
+ flex-wrap: wrap;
|
|
|
+ }
|
|
|
+
|
|
|
+ .more-item {
|
|
|
+ width: 25%;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ align-items: center;
|
|
|
+ padding: 24rpx 0 8rpx;
|
|
|
+ }
|
|
|
+
|
|
|
+ .more-icon {
|
|
|
+ width: 80rpx;
|
|
|
+ height: 80rpx;
|
|
|
+ margin-bottom: 12rpx;
|
|
|
+ }
|
|
|
+
|
|
|
+ .more-label {
|
|
|
+ font-size: 24rpx;
|
|
|
+ color: #666666;
|
|
|
+ text-align: center;
|
|
|
+ line-height: 1.4;
|
|
|
+ }
|
|
|
+
|
|
|
+ /* 弹窗 */
|
|
|
+ .popup-mask {
|
|
|
+ position: fixed;
|
|
|
+ left: 0;
|
|
|
+ top: 0;
|
|
|
+ right: 0;
|
|
|
+ bottom: 0;
|
|
|
+ background: rgba(0, 0, 0, 0.4);
|
|
|
+ z-index: 999;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ }
|
|
|
+
|
|
|
+ .popup-box {
|
|
|
+ width: 600rpx;
|
|
|
+ background: #fff;
|
|
|
+ border-radius: 8rpx;
|
|
|
+ padding: 32rpx;
|
|
|
+ }
|
|
|
+
|
|
|
+ .popup-title {
|
|
|
+ font-size: 28rpx;
|
|
|
+ color: #333;
|
|
|
+ text-align: center;
|
|
|
+ margin-bottom: 24rpx;
|
|
|
+ }
|
|
|
+
|
|
|
+ .popup-input {
|
|
|
+ width: 100%;
|
|
|
+ height: 72rpx;
|
|
|
+ border: 1rpx solid #ddd;
|
|
|
+ border-radius: 6rpx;
|
|
|
+ padding: 0 20rpx;
|
|
|
+ font-size: 26rpx;
|
|
|
+ box-sizing: border-box;
|
|
|
+ }
|
|
|
+
|
|
|
+ .popup-btns {
|
|
|
+ display: flex;
|
|
|
+ gap: 24rpx;
|
|
|
+ margin-top: 32rpx;
|
|
|
+ }
|
|
|
+
|
|
|
+ .popup-btn {
|
|
|
+ flex: 1;
|
|
|
+ height: 72rpx;
|
|
|
+ line-height: 72rpx;
|
|
|
+ text-align: center;
|
|
|
+ border: 1rpx solid #ccc;
|
|
|
+ border-radius: 6rpx;
|
|
|
+ font-size: 28rpx;
|
|
|
+ color: #666;
|
|
|
+
|
|
|
+ &.confirm {
|
|
|
+ background: linear-gradient(90deg, #3dd9cf 0%, #1ecbc3 100%);
|
|
|
+ border-color: #1ecbc3;
|
|
|
+ color: #fff;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .popup-mask.bottom {
|
|
|
+ align-items: flex-end;
|
|
|
+ }
|
|
|
+
|
|
|
+ .status-panel {
|
|
|
+ width: 100%;
|
|
|
+ background: #fff;
|
|
|
+ border-radius: 24rpx 24rpx 0 0;
|
|
|
+ padding: 32rpx;
|
|
|
+ padding-bottom: calc(env(safe-area-inset-bottom) + 32rpx);
|
|
|
+ box-sizing: border-box;
|
|
|
+ }
|
|
|
+
|
|
|
+ .panel-title {
|
|
|
+ font-size: 32rpx;
|
|
|
+ font-weight: 600;
|
|
|
+ color: #333;
|
|
|
+ text-align: center;
|
|
|
+ margin-bottom: 32rpx;
|
|
|
+ }
|
|
|
+
|
|
|
+ .status-option {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ padding: 28rpx 0;
|
|
|
+ border-bottom: 1rpx solid #f5f5f5;
|
|
|
+
|
|
|
+ // &.active .option-name {
|
|
|
+ // color: #1ecbc3;
|
|
|
+ // }
|
|
|
+ }
|
|
|
+
|
|
|
+ .option-body {
|
|
|
+ flex: 1;
|
|
|
+ min-width: 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ .option-check {
|
|
|
+ font-size: 36rpx;
|
|
|
+ color: #1ecbc3;
|
|
|
+ font-weight: 600;
|
|
|
+ flex-shrink: 0;
|
|
|
+ margin-left: 16rpx;
|
|
|
+
|
|
|
+ image {
|
|
|
+ width: 50rpx;
|
|
|
+ height: 50rpx;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .option-name {
|
|
|
+ display: block;
|
|
|
+ font-size: 30rpx;
|
|
|
+ color: #333;
|
|
|
+ font-weight: 500;
|
|
|
+ }
|
|
|
+
|
|
|
+ .option-desc {
|
|
|
+ display: block;
|
|
|
+ font-size: 24rpx;
|
|
|
+ color: #999;
|
|
|
+ margin-top: 8rpx;
|
|
|
+ line-height: 1.5;
|
|
|
+ }
|
|
|
+
|
|
|
+ .panel-btns {
|
|
|
+ display: flex;
|
|
|
+ gap: 24rpx;
|
|
|
+ margin-top: 32rpx;
|
|
|
+ }
|
|
|
+
|
|
|
+ .panel-btn {
|
|
|
+ flex: 1;
|
|
|
+ height: 80rpx;
|
|
|
+ line-height: 80rpx;
|
|
|
+ text-align: center;
|
|
|
+ background: rgba(51, 51, 53, 0.05);
|
|
|
+ border-radius: 60rpx 60rpx 60rpx 60rpx;
|
|
|
+ font-size: 32rpx;
|
|
|
+ color: #1D2129;
|
|
|
+
|
|
|
+ &.confirm {
|
|
|
+ background: #333335;
|
|
|
+ border-radius: 60rpx 60rpx 60rpx 60rpx;
|
|
|
+ color: #fff;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .one-line-text {
|
|
|
+ overflow: hidden;
|
|
|
+ text-overflow: ellipsis;
|
|
|
+ white-space: nowrap;
|
|
|
+ }
|
|
|
+</style>
|