Browse Source

打印记录优化

pull/118/head
wangxy 3 years ago
parent
commit
e4439d2064
1 changed files with 7 additions and 3 deletions
  1. +7
    -3
      src/views/system/printer/printheadtab.vue

+ 7
- 3
src/views/system/printer/printheadtab.vue View File

@ -87,9 +87,13 @@ export default {
filters: {
changeContent(arg) {
let temp
(self.statusArray || []).forEach(item => {
if (item['stdeftab-stdeftyp'] === arg) temp = item['stdeftab-lang']
})
if (self.statusArray.length > 0) {
self.statusArray.forEach(item => {
if (item['stdeftab-stdeftyp'] === arg) temp = item['stdeftab-bez']
})
} else {
temp = arg
}
return temp
}
},


Loading…
Cancel
Save