|
@@ -61,13 +61,13 @@
|
|
<el-table-column prop="totalCurrentPrice"
|
|
<el-table-column prop="totalCurrentPrice"
|
|
label="现价(元)">
|
|
label="现价(元)">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
- {{ scope.row.totalCurrentPrice | moneyFormat }}
|
|
|
|
|
|
+ {{ numeral(scope.row.totalCurrentPrice).format('0,0') }}
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column prop="totalOriginalPrice"
|
|
<el-table-column prop="totalOriginalPrice"
|
|
label="原价(元)">
|
|
label="原价(元)">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
- {{ scope.row.totalOriginalPrice | moneyFormat }}
|
|
|
|
|
|
+ {{ numeral(scope.row.totalOriginalPrice).format('0,0') }}
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column prop="updateTime"
|
|
<el-table-column prop="updateTime"
|
|
@@ -113,6 +113,7 @@
|
|
import pagination from '@/components/Pagination/index'
|
|
import pagination from '@/components/Pagination/index'
|
|
import { chargeTypeList, chargeTypeOrganizationFeeAdd, musicGroupOrganizationCourseSettingsDel, chargeTypeOrganizationFeeUpdate, chargeTypeOrganizationFee, branchQueryPage, musicGroupOrganizationCourseSettingsQueryPage } from '@/api/specialSetting'
|
|
import { chargeTypeList, chargeTypeOrganizationFeeAdd, musicGroupOrganizationCourseSettingsDel, chargeTypeOrganizationFeeUpdate, chargeTypeOrganizationFee, branchQueryPage, musicGroupOrganizationCourseSettingsQueryPage } from '@/api/specialSetting'
|
|
import chargesForm from './modals/chargesForm'
|
|
import chargesForm from './modals/chargesForm'
|
|
|
|
+import numeral from 'numeral'
|
|
export default {
|
|
export default {
|
|
components: {
|
|
components: {
|
|
pagination,
|
|
pagination,
|
|
@@ -197,6 +198,7 @@ export default {
|
|
})
|
|
})
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
|
|
+ numeral,
|
|
search() {
|
|
search() {
|
|
this.pageInfo.page = 1;
|
|
this.pageInfo.page = 1;
|
|
this.getList();
|
|
this.getList();
|