添加:配送商移动端管理平台

This commit is contained in:
wuhui_zzw 2024-03-27 10:05:54 +08:00
parent cb075d0126
commit db21b6e114
3 changed files with 1045 additions and 2 deletions

View File

@ -1382,6 +1382,12 @@
"style": { "style": {
"navigationBarTitleText": "佣金明细" "navigationBarTitleText": "佣金明细"
} }
},
{
"path": "user/order",
"style": {
"navigationBarTitleText": "订单管理"
}
} }
] ]
}, },

View File

@ -4,7 +4,7 @@
<view class="main-content"> <view class="main-content">
<!--顶部信息--> <!--顶部信息-->
<view class="top"> <view class="top">
<template v-if="agent_info.agent_type == 11"> <template v-if="[8,11].includes(Number(agent_info.agent_type))">
<view class="title">{{ agent_info.agent_type_text || '' }}</view> <view class="title">{{ agent_info.agent_type_text || '' }}</view>
</template> </template>
<template v-else> <template v-else>
@ -142,7 +142,15 @@ export default {
icon: 'icon-yonghu1', icon: 'icon-yonghu1',
}); });
} }
//
if(['8'].includes(String(agentType))){
menuList.push({
title: '订单管理',
type: 'link',
url: '/pages/agent/user/order',
icon: 'icon-dingdanguanli',
});
}
// //
// staging_list:[ // staging_list:[

1029
pages/agent/user/order.vue Normal file

File diff suppressed because it is too large Load Diff