jufubao-admin-library 1.1.76 → 1.1.78
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: [],
|
|
@@ -565,6 +566,7 @@ export default {
|
|
|
565
566
|
});
|
|
566
567
|
this.total = res.data.total_size;
|
|
567
568
|
this.totalData = res1.data;
|
|
569
|
+
this.rePriceKey = Date.now();
|
|
568
570
|
})
|
|
569
571
|
.catch((err) => {
|
|
570
572
|
loading.close();
|