|
@@ -0,0 +1,76 @@
|
|
|
+<template>
|
|
|
+ <el-dialog :close-on-click-modal="false" append-to-body title="修改结算比例" :visible.sync="setMaxCostVisible" width="30%">
|
|
|
+ <el-form :rules="rules" ref="formRef" :model="form" label-width="auto">
|
|
|
+ <el-form-item label="结算比例" prop="maxConsumptionAmount">
|
|
|
+ <el-input v-model="form.maxConsumptionAmount" placeholder="请填写最大消费额度"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
+ <span slot="footer" class="dialog-footer">
|
|
|
+ <el-button @click="setMaxCostVisible = false">取 消</el-button>
|
|
|
+ <el-button type="primary" @click="handleConfirm" :loading="isLoading">确 定</el-button>
|
|
|
+ </span>
|
|
|
+ </el-dialog>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+import { setAllianceCardMaxConsumptionAmountApi } from '@/api/business'
|
|
|
+
|
|
|
+export default {
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ setMaxCostVisible: false,
|
|
|
+ form: {
|
|
|
+ shopParticipationRecordId: undefined,
|
|
|
+ maxConsumptionAmount: 0
|
|
|
+ },
|
|
|
+ rules: {
|
|
|
+ maxConsumptionAmount: [
|
|
|
+ { required: true, message: '请填写最大消费额度', trigger: 'blur' },
|
|
|
+ {
|
|
|
+ validator(rule, value, callback) {
|
|
|
+ const regex = /^(0|[1-9]\d*)(\.\d{1,2})?$/ // 正则表达式确保输入是数字,且最多两位小数
|
|
|
+ if (!value) {
|
|
|
+ callback(new Error('请输入一个数字'))
|
|
|
+ } else if (!regex.test(value) || Number(value) <= 0) {
|
|
|
+ callback(new Error('请输入大于零的数字,且最多两位小数'))
|
|
|
+ } else {
|
|
|
+ callback() // 验证通过
|
|
|
+ }
|
|
|
+ },
|
|
|
+ trigger: 'blur'
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+
|
|
|
+ isLoading: false
|
|
|
+ }
|
|
|
+ },
|
|
|
+
|
|
|
+ watch: {},
|
|
|
+
|
|
|
+ methods: {
|
|
|
+ handleOpen(row) {
|
|
|
+ if (!row) {
|
|
|
+ return this.$message.error('数据异常')
|
|
|
+ }
|
|
|
+ this.form.shopParticipationRecordId = row.id
|
|
|
+ this.form.maxConsumptionAmount = row.maxConsumptionAmount
|
|
|
+ this.setMaxCostVisible = true
|
|
|
+ },
|
|
|
+
|
|
|
+ async handleConfirm() {
|
|
|
+ try {
|
|
|
+ this.isLoading = true
|
|
|
+ await this.$refs.formRef.validate()
|
|
|
+ await setAllianceCardMaxConsumptionAmountApi(this.form)
|
|
|
+ this.$message.success('修改成功')
|
|
|
+ this.$emit('update', { ...this.form })
|
|
|
+ this.setMaxCostVisible = false
|
|
|
+ } catch (e) {
|
|
|
+ } finally {
|
|
|
+ this.isLoading = false
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</script>
|