backup: 子客服改造前保本版本(逍遥梦UI+商家客服页mock)

This commit is contained in:
XingQue
2026-06-20 01:50:14 +08:00
parent 0767e23f11
commit a751708d6e
49 changed files with 8189 additions and 5268 deletions

View File

@@ -4,9 +4,9 @@
"popup-notice": "/components/popup-notice/popup-notice"
},
"backgroundTextStyle": "dark",
"navigationBarBackgroundColor": "#0a0a0f",
"navigationBarTitleText": "商家派单",
"navigationBarTextStyle": "white",
"backgroundColor": "#0a0a0f",
"navigationBarBackgroundColor": "#fff8e1",
"navigationBarTitleText": "自定义发单",
"navigationBarTextStyle": "black",
"backgroundColor": "#f5f5f5",
"enablePullDownRefresh": false
}

View File

@@ -1,5 +1,5 @@
<!-- pages/merchant-dispatch/merchant-dispatch.wxml -->
<view class="page">
<view class="page sj-form-theme">
<!-- 余额卡片 -->
<view class="balance-card">
<text class="balance-label">可用余额</text>
@@ -144,7 +144,7 @@
<text class="field-optional">选填</text>
</view>
<view class="switch-row">
<switch checked="{{commissionEnabled}}" bindchange="onCommissionToggle" color="#9C27B0"/>
<switch checked="{{commissionEnabled}}" bindchange="onCommissionToggle" color="#ffd061"/>
<text class="switch-label">{{commissionEnabled ? '已开启' : '未开启'}}</text>
</view>
<input

View File

@@ -1,31 +1,10 @@
/* 商家派单 */
@import '../../styles/shangjia-xym-form.wxss';
page {
background: #f5f5f5;
}
.page {
min-height: 100vh;
padding: 24rpx;
padding-bottom: 160rpx;
box-sizing: border-box;
}
/* 余额卡片 */
.balance-card {
background: #1a1a2e;
border-radius: 16rpx;
padding: 36rpx 32rpx;
margin-bottom: 20rpx;
text-align: center;
}
.balance-label {
font-size: 24rpx;
color: rgba(255,255,255,0.5);
display: block;
}
/* 商家派单 - 布局补充 */
.balance-row {
display: flex;
align-items: baseline;
@@ -36,31 +15,21 @@ page {
.balance-value {
font-size: 52rpx;
font-weight: 700;
color: #f0d060;
line-height: 1;
}
.balance-unit {
font-size: 26rpx;
color: #f0d060;
margin-left: 6rpx;
font-weight: 500;
}
.balance-tip {
font-size: 20rpx;
color: rgba(255,255,255,0.35);
display: block;
}
/* 卡片 */
.card {
background: #fff;
border-radius: 16rpx;
padding: 28rpx;
margin-bottom: 20rpx;
}
.card-header {
display: flex;
align-items: center;
@@ -71,46 +40,16 @@ page {
width: 8rpx;
height: 8rpx;
border-radius: 4rpx;
background: #9C27B0;
margin-right: 12rpx;
flex-shrink: 0;
}
.card-title {
font-size: 28rpx;
font-weight: 700;
color: #333;
}
/* 订单类型 */
.type-scroll {
white-space: nowrap;
display: flex;
padding: 8rpx 0;
}
.type-chip {
display: inline-flex;
flex-shrink: 0;
align-items: center;
justify-content: center;
height: 64rpx;
padding: 0 28rpx;
margin-right: 14rpx;
background: #f5f5f5;
border-radius: 32rpx;
font-size: 24rpx;
color: #666;
border: 1rpx solid transparent;
}
.type-chip--active {
background: #f3e5f9;
color: #9C27B0;
border-color: #9C27B0;
font-weight: 600;
}
/* 表单字段 */
.field {
margin-bottom: 24rpx;