|
|
@ -77,7 +77,7 @@ |
|
|
</view> |
|
|
</view> |
|
|
<view class="delivery-status-desc">{{deliveryStatusText}}</view> |
|
|
<view class="delivery-status-desc">{{deliveryStatusText}}</view> |
|
|
<view class="delivery-status-meta"> |
|
|
<view class="delivery-status-meta"> |
|
|
<text :class="{'delivery-status-meta--warn': !zhipaiCheck}">{{zhipaiCheck ? '自动派单已开启' : '自动派单未开启'}}</text> |
|
|
<text :class="{'delivery-status-meta--warn': !zhipaiCheck}">{{zhipaiCheck ? '已开启指派接单' : '指派接单未开启'}}</text> |
|
|
<text>覆盖 {{totalRuleCount}} 条路线</text> |
|
|
<text>覆盖 {{totalRuleCount}} 条路线</text> |
|
|
<text v-if="minRuleFeeText">最低 {{minRuleFeeText}} 起</text> |
|
|
<text v-if="minRuleFeeText">最低 {{minRuleFeeText}} 起</text> |
|
|
</view> |
|
|
</view> |
|
|
@ -266,7 +266,7 @@ |
|
|
<uni-popup ref="carPopup" class="dispatch-popup" type="bottom" background-color="transparent" @change="handleDispatchPopupChange"> |
|
|
<uni-popup ref="carPopup" class="dispatch-popup" type="bottom" background-color="transparent" @change="handleDispatchPopupChange"> |
|
|
<view class="guize-list"> |
|
|
<view class="guize-list"> |
|
|
<view class="dispatch-popup-title"> |
|
|
<view class="dispatch-popup-title"> |
|
|
选择参与自动派单的接单范围 |
|
|
选择参与指派接单的接单范围 |
|
|
</view> |
|
|
</view> |
|
|
<view class="dispatch-popup-desc"> |
|
|
<view class="dispatch-popup-desc"> |
|
|
开启后,系统只会把符合你设置区域和最低佣金的订单派给你。未勾选路线不会参与指派。 |
|
|
开启后,系统只会把符合你设置区域和最低佣金的订单派给你。未勾选路线不会参与指派。 |
|
|
@ -283,7 +283,7 @@ |
|
|
</view> |
|
|
</view> |
|
|
<view class="dispatch-empty" v-if="totalRuleCount == 0"> |
|
|
<view class="dispatch-empty" v-if="totalRuleCount == 0"> |
|
|
<view class="dispatch-empty-title">你还没有接单范围</view> |
|
|
<view class="dispatch-empty-title">你还没有接单范围</view> |
|
|
<view class="dispatch-empty-desc">先去划定想送的楼栋和最低配送费,设置后才能开启自动派单。</view> |
|
|
<view class="dispatch-empty-desc">先去划定想送的楼栋和最低配送费,设置后才能开启指派接单。</view> |
|
|
</view> |
|
|
</view> |
|
|
<scroll-view scroll-y="true" class="dispatch-rule-scroll"> |
|
|
<scroll-view scroll-y="true" class="dispatch-rule-scroll"> |
|
|
<view style="height: 50rpx;line-height: 50rpx;font-weight: 700;display: flex;"> |
|
|
<view style="height: 50rpx;line-height: 50rpx;font-weight: 700;display: flex;"> |
|
|
@ -562,7 +562,7 @@ |
|
|
return '已设置范围,但当前离线,系统不会派单' |
|
|
return '已设置范围,但当前离线,系统不会派单' |
|
|
} |
|
|
} |
|
|
if (!this.zhipaiCheck) { |
|
|
if (!this.zhipaiCheck) { |
|
|
return '已上线,未开启自动派单,系统不会派单' |
|
|
return '已上线,未开启指派接单,系统不会派单' |
|
|
} |
|
|
} |
|
|
if (this.activeRuleCount == 0) { |
|
|
if (this.activeRuleCount == 0) { |
|
|
return '已上线,但还没有勾选参与派单的路线' |
|
|
return '已上线,但还没有勾选参与派单的路线' |
|
|
|