|
@@ -78,7 +78,7 @@
|
|
|
<tui-list-cell @click="pageTo({ url: '/admin/shop/sk' })" class="line-cell" :hover="false" :arrow="true">
|
|
<tui-list-cell @click="pageTo({ url: '/admin/shop/sk' })" class="line-cell" :hover="false" :arrow="true">
|
|
|
<view class="tui-title">更多设置</view>
|
|
<view class="tui-title">更多设置</view>
|
|
|
</tui-list-cell>
|
|
</tui-list-cell>
|
|
|
- <tui-list-cell @click="pageTo({ url: '/admin/delivery/deliveryManage' })" class="line-cell" :hover="false" :arrow="true" >
|
|
|
|
|
|
|
+ <tui-list-cell @click="handleDeliveryManage()" class="line-cell" :hover="false" :arrow="true" >
|
|
|
<view class="tui-title">绑定跑腿</view>
|
|
<view class="tui-title">绑定跑腿</view>
|
|
|
</tui-list-cell>
|
|
</tui-list-cell>
|
|
|
|
|
|
|
@@ -371,6 +371,15 @@ export default {
|
|
|
this.$msg('修改成功')
|
|
this.$msg('修改成功')
|
|
|
}
|
|
}
|
|
|
})
|
|
})
|
|
|
|
|
+ },
|
|
|
|
|
+ handleDeliveryManage() {
|
|
|
|
|
+ // #ifdef MP-WEIXIN
|
|
|
|
|
+ this.$msg('请使用 APP 操作')
|
|
|
|
|
+ return
|
|
|
|
|
+ // #endif
|
|
|
|
|
+ // #ifdef APP-PLUS
|
|
|
|
|
+ this.$util.pageTo({ url: '/admin/delivery/deliveryManage' })
|
|
|
|
|
+ // #endif
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|
|
|
};
|
|
};
|