58 lines
1.2 KiB
Vue
58 lines
1.2 KiB
Vue
|
|
<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>
|