fix(selfService): 自助服务添加alwaysshow判断

This commit is contained in:
woody 2025-07-15 14:01:56 +08:00
parent c19a05796d
commit cbe6f2cc4c
1 changed files with 2 additions and 2 deletions

View File

@ -65,7 +65,7 @@ export default {
name: '订单退款明细',
url: '../../static/images/refund-icon.svg',
path: '/pages/refund/detail',
id: '9',
id: '10',
alwaysShow: true,
},
],
@ -109,7 +109,7 @@ export default {
})
const theselfHeader = []
this.selfServiceList.forEach(element => {
if (element.ifshow == 0) {
if (element.ifshow == 0 || element.alwaysShow) {
theselfHeader.push(element)
}
})