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