diff --git a/src/pages/counter/list/index.vue b/src/pages/counter/list/index.vue index 53f5c74..0c7a6eb 100644 --- a/src/pages/counter/list/index.vue +++ b/src/pages/counter/list/index.vue @@ -10,7 +10,7 @@ -
+
@@ -108,12 +108,17 @@

{{item.name}}

+
@@ -3212,6 +3217,7 @@ export default { width: 100%; white-space: nowrap; overflow-x: auto; + overflow-y: hidden; position: fixed; bottom: 0; left: -100%; diff --git a/src/store/modules/system.js b/src/store/modules/system.js index 759ff76..a80ec3f 100644 --- a/src/store/modules/system.js +++ b/src/store/modules/system.js @@ -2683,6 +2683,15 @@ export default { for(const item of state.businessSelect[state.businessKey].data) { arr.push(allGoods[item]) } + const item = arr.find(item => item.id === 16) + if(item) { + if(state.businessKey === '业务一') { + item.name = '一类银行卡' + }else { + item.name = '银行卡' + } + } + return arr },