This commit is contained in:
liuye
2022-07-01 14:31:08 +08:00
parent 26da160d1d
commit d8c36de113
43 changed files with 2557 additions and 0 deletions

View File

@@ -0,0 +1,58 @@
<template>
<div class="AppPageMerchant">
<AiListPage :label="label" :appList="appList" :headerBg="headerBg" />
</div>
</template>
<script>
export default {
name: 'AppPageMerchant',
appName: '西城-商户管理',
data() {
return {
label: '西城-商户管理',
appList: [
{
name: '商户档案',
icon: require('./img/police-logo.jpg'),
url: '../AppMerchantManage/AppMerchantManage',
isBottom: true
},
{
name: '网格管理',
icon: require('./img/jmqgl.png'),
url: '../AppMerchanGird/AppMerchanGird',
isBottom: true
},
{
name: '商户地图',
icon: require('./img/police-logo.jpg'),
url: '../AppMerchantMap/AppMerchantMap',
isBottom: true
},
{
name: '网格统计',
icon: require('./img/police-logo.jpg'),
url: '../AppMerchanStatistics/AppMerchanStatistics'
}
],
headerBg: require('./img/header-bg.png'),
}
},
onShow() {
document.title = '西城-商户管理'
},
methods: {
},
}
</script>
<style lang="scss" scoped>
uni-page-body{
height: 100%;
}
.AppPageMerchant{
height: 100%;
}
</style>