Merge branch 'dev' of http://yun.pashanhoo.com:9090/bdc/bdcdj-web into dev
Showing
1 changed file
with
4 additions
and
4 deletions
1 | <template> | 1 | <template> |
2 | <div class='sfDetail'> | 2 | <div class='sfDetail'> |
3 | <lb-table :column="column" :pagination="false" :key="key" | 3 | <lb-table :column="column" :pagination="false" :key="key" |
4 | :data="formData.dataList"> | 4 | :data="dataList"> |
5 | </lb-table> | 5 | </lb-table> |
6 | 6 | ||
7 | <div class="text-center"> | 7 | <div class="text-center"> |
... | @@ -87,10 +87,11 @@ | ... | @@ -87,10 +87,11 @@ |
87 | 'formData.dataList': { | 87 | 'formData.dataList': { |
88 | handler (newValue, oldValue) { | 88 | handler (newValue, oldValue) { |
89 | if (newValue.length != 0) { | 89 | if (newValue.length != 0) { |
90 | this.dataList = newValue | 90 | this.dataList = _.cloneDeep(newValue) |
91 | } | 91 | } |
92 | }, | 92 | }, |
93 | deep: true | 93 | deep: true, |
94 | immediate: true | ||
94 | } | 95 | } |
95 | }, | 96 | }, |
96 | methods: { | 97 | methods: { |
... | @@ -98,7 +99,6 @@ | ... | @@ -98,7 +99,6 @@ |
98 | recharge(this.formData.bsmBusiness).then(res => { | 99 | recharge(this.formData.bsmBusiness).then(res => { |
99 | if (res.code == 200) { | 100 | if (res.code == 200) { |
100 | this.dataList = res.result | 101 | this.dataList = res.result |
101 | store.dispatch("user/getPouopData", res.result); | ||
102 | this.$message({ | 102 | this.$message({ |
103 | message: '计费成功!', | 103 | message: '计费成功!', |
104 | type: 'success' | 104 | type: 'success' | ... | ... |
-
Please register or sign in to post a comment