|
@@ -33,10 +33,16 @@
|
|
<el-tag>{{ scope.row.settlementRatio * 100 }}%</el-tag>
|
|
<el-tag>{{ scope.row.settlementRatio * 100 }}%</el-tag>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
|
+ <el-table-column prop="maxConsumptionAmount" label="最大消费金额" width="120" align="center">
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <el-tag>{{ scope.row.maxConsumptionAmount || 0 }}元</el-tag>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
<el-table-column width="150" prop="createTime" label="报名时间" align="center" />
|
|
<el-table-column width="150" prop="createTime" label="报名时间" align="center" />
|
|
- <el-table-column align="center" label="操作" width="130" fixed="right" class-name="small-padding fixed-width">
|
|
|
|
|
|
+ <el-table-column align="center" label="操作" width="270" fixed="right" class-name="small-padding fixed-width">
|
|
<template slot-scope="{ row }">
|
|
<template slot-scope="{ row }">
|
|
<el-button type="primary" size="mini" @click="$refs.editProportionRrf && $refs.editProportionRrf.handleOpen(row)">修改结算比例</el-button>
|
|
<el-button type="primary" size="mini" @click="$refs.editProportionRrf && $refs.editProportionRrf.handleOpen(row)">修改结算比例</el-button>
|
|
|
|
+ <el-button type="primary" size="mini" @click="$refs.setMaxCostPriceRef && $refs.setMaxCostPriceRef.handleOpen(row)">设置最大消费金额</el-button>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
</el-table>
|
|
</el-table>
|
|
@@ -54,15 +60,17 @@
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<EditProportion @update="handleRefreshBussnessInfo" ref="editProportionRrf"></EditProportion>
|
|
<EditProportion @update="handleRefreshBussnessInfo" ref="editProportionRrf"></EditProportion>
|
|
|
|
+ <SetMaxCostPrice @update="handleRefreshBussnessInfo" ref="setMaxCostPriceRef"></SetMaxCostPrice>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<script>
|
|
<script>
|
|
import { getRegistrationShopsByIdApi } from '@/api/business'
|
|
import { getRegistrationShopsByIdApi } from '@/api/business'
|
|
import EditProportion from './EditProportion.vue'
|
|
import EditProportion from './EditProportion.vue'
|
|
|
|
+import SetMaxCostPrice from './SetMaxCostPrice.vue'
|
|
|
|
|
|
export default {
|
|
export default {
|
|
- components: { EditProportion },
|
|
|
|
|
|
+ components: { EditProportion, SetMaxCostPrice },
|
|
props: {
|
|
props: {
|
|
cardId: { type: [Number, String], required: true }
|
|
cardId: { type: [Number, String], required: true }
|
|
},
|
|
},
|
|
@@ -109,10 +117,11 @@ export default {
|
|
this.getList()
|
|
this.getList()
|
|
},
|
|
},
|
|
|
|
|
|
- handleRefreshBussnessInfo({ shopParticipationRecordId, settlementRatio }) {
|
|
|
|
|
|
+ handleRefreshBussnessInfo({ shopParticipationRecordId, settlementRatio, maxConsumptionAmount }) {
|
|
const current = this.list.find((item) => item.id * 1 === shopParticipationRecordId * 1)
|
|
const current = this.list.find((item) => item.id * 1 === shopParticipationRecordId * 1)
|
|
if (current) {
|
|
if (current) {
|
|
- current.settlementRatio = settlementRatio
|
|
|
|
|
|
+ settlementRatio !== undefined && (current.settlementRatio = settlementRatio)
|
|
|
|
+ maxConsumptionAmount !== undefined && (current.maxConsumptionAmount = maxConsumptionAmount)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|