style:收费信息
Showing
1 changed file
with
5 additions
and
3 deletions
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-12-28 09:33:40 | 4 | * @LastEditTime: 2023-12-29 16:35:50 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class='sfxx'> | 7 | <div class='sfxx'> |
... | @@ -144,12 +144,14 @@ | ... | @@ -144,12 +144,14 @@ |
144 | }, | 144 | }, |
145 | methods: { | 145 | methods: { |
146 | getList () { | 146 | getList () { |
147 | getSfmxList(this.$route.query.bsmBusiness).then(res => { | 147 | let bsmBusiness = this.$route.query.bsmBusiness ? this.$route.query.bsmBusiness : window.currentSelect.bsmBusiness |
148 | getSfmxList(bsmBusiness).then(res => { | ||
148 | this.tableData.data = res.result | 149 | this.tableData.data = res.result |
149 | }) | 150 | }) |
150 | }, | 151 | }, |
151 | hanldeAdd () { | 152 | hanldeAdd () { |
152 | this.$popupDialog('新增', 'workflow/components/dialog/xzsf', { bsmBusiness: this.$route.query.bsmBusiness }, '50%', true) | 153 | let bsmBusiness = this.$route.query.bsmBusiness ? this.$route.query.bsmBusiness : window.currentSelect.bsmBusiness |
154 | this.$popupDialog('新增', 'workflow/components/dialog/xzsf', { bsmBusiness: bsmBusiness }, '50%', true) | ||
153 | }, | 155 | }, |
154 | handleDelete (row) { | 156 | handleDelete (row) { |
155 | let that = this | 157 | let that = this | ... | ... |
-
Please register or sign in to post a comment