修改必填,隐藏模块

main
jwg 8 months ago
parent 012ccfffaf
commit 20d4a10e4b

File diff suppressed because it is too large Load Diff

@ -8,9 +8,7 @@
</div>
</van-col>
<van-col span="8">
<div class="tt-box">
财务数字一体化
</div>
<div class="tt-box">财务数字一体化</div>
</van-col>
<van-col span="8" class="rt-box" @click="handleToWait">
<div class="msg-box">
@ -27,9 +25,7 @@
</van-row>
<van-row type="flex" justify="space-between" align="center">
<van-col span="24" class="rt-box" @click="loginOut">
<div class="tt-box" style="margin-top:1rem">
退出
</div>
<div class="tt-box" style="margin-top: 1rem">退出</div>
</van-col>
</van-row>
<div class="home-content">
@ -37,7 +33,12 @@
<div class="item-tt" v-if="item.row.length">{{ item.title }}</div>
<div class="item-box">
<van-row type="flex">
<van-col class="ct-cl" span="8" v-for="(nt,ni) in item.row" :key="ni">
<van-col
class="ct-cl"
span="8"
v-for="(nt, ni) in item.row"
:key="ni"
>
<div class="cl-box" @click="handelTo(nt.route)">
<van-icon :name="nt.icon" size="2rem" />
<div class="cl-tt">
@ -55,7 +56,7 @@
<script>
import { checkPermission } from '@/utils'
import { getMyNotifyMessagePage } from "@/api/bs/waitToDo";
import { getMyNotifyMessagePage } from '@/api/bs/waitToDo'
import { Dialog } from 'vant'
export default {
name: 'home-index',
@ -65,7 +66,7 @@ export default {
props: {
applyShow: {
type: Boolean,
default: false
default: false,
},
},
computed: {
@ -103,8 +104,10 @@ export default {
pageNo: 1,
pageSize: 999,
}).then((res) => {
let resList = (res.data && res.data.list || [])
let newArr = resList.filter(item => !filterArr.includes(item.billType))
let resList = (res.data && res.data.list) || []
let newArr = resList.filter(
(item) => !filterArr.includes(item.billType)
)
if (newArr.length) {
this.isDot = true
} else {
@ -120,7 +123,7 @@ export default {
handleFilterList() {
this.roterList = []
let arr = [
{
/* {
row: [
{
route: '/mySupplier',
@ -148,7 +151,7 @@ export default {
},
],
title: '合同审批'
},
}, */
{
row: [
// {
@ -194,36 +197,38 @@ export default {
show: checkPermission('bs/invoice/index'),
},
],
title: '企业办公'
}
title: '企业办公',
},
]
this.roterList = arr.map(item => {
this.roterList = arr.map((item) => {
return {
...item,
row: item.row.filter(n => n.show)
row: item.row.filter((n) => n.show),
}
})
},
checkPermission,
handelTo(route) {
if (route) {
if (['/trips', '/claim', '/supplier', '/custom', '/pay'].includes(route)) {
if (
['/trips', '/claim', '/supplier', '/custom', '/pay'].includes(route)
) {
this.$router.push({
path: route,
query: {
type: 'add'
}
type: 'add',
},
})
} else {
this.$router.push({
path: route
path: route,
})
}
} else {
this.$fm('模块正在中...')
}
}
}
},
},
}
</script>

Loading…
Cancel
Save