jufubao-admin-library 1.1.76 → 1.1.77
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -153,7 +153,7 @@
|
|
|
153
153
|
</div>
|
|
154
154
|
</template>
|
|
155
155
|
<template slot="amount" slot-scope="scope">
|
|
156
|
-
<xd-table-price :price="scope.row.amount"></xd-table-price>
|
|
156
|
+
<xd-table-price :price="scope.row.amount" :key="rePriceKey"></xd-table-price>
|
|
157
157
|
<div v-if="isShowDeductDetail(scope.row)" style="display:flex; justify-content: center; align-items: center">
|
|
158
158
|
<el-button type="primary" size="mini" @click="handleShowDetail(scope.row)">查看明细</el-button>
|
|
159
159
|
</div>
|
|
@@ -349,6 +349,7 @@ export default {
|
|
|
349
349
|
label: "备注",
|
|
350
350
|
},
|
|
351
351
|
],
|
|
352
|
+
rePriceKey: 'rePriceKey',
|
|
352
353
|
showExport: false,
|
|
353
354
|
exportName: "加盟商明细",
|
|
354
355
|
channelList: [],
|
|
@@ -432,6 +433,7 @@ export default {
|
|
|
432
433
|
this.detailTips = res.data['formula'];
|
|
433
434
|
this.detailCard = res.data['card_number']
|
|
434
435
|
this.dialogTableVisible = true;
|
|
436
|
+
this.rePriceKey = Date.now();
|
|
435
437
|
loading.close()
|
|
436
438
|
})
|
|
437
439
|
.catch(err=>{
|