调整收费套餐页面

This commit is contained in:
邱贞招 2024-11-28 17:56:21 +08:00
parent 6cd03185f5
commit 094294af4a
4 changed files with 148 additions and 32 deletions

View File

@ -231,7 +231,7 @@
<span></span>
</el-col>
<el-col :span="2">
<el-input v-model="interval.start" :placeholder="'请输入'" />
<el-input v-model="interval.start" :placeholder="'请输入'" :disabled="true"/>
</el-col>
<el-col :span="0.5" style="line-height: 32px;">
~
@ -267,7 +267,7 @@
<span>大于</span>
</el-col>
<el-col :span="2">
<el-input placeholder="请输入" v-model="more.start" />
<el-input placeholder="请输入" v-model="more.start" disabled/>
</el-col>
<el-col :span="3" style="line-height: 32px;">
{{ timeUnit }} 之后
@ -356,6 +356,23 @@ export default {
'form.deptId': function(deptId) {
this.getAreaListByDeptId(deptId);
},
'rule': {
handler(newVal) {
newVal.forEach((interval, index) => {
//
if (index > 0) {
interval.start = newVal[index - 1].end || ''; // start
}
});
// more.start end
if (newVal.length > 0) {
this.more.start = newVal[newVal.length - 1].end || ''; // more.start
}
},
deep: true, //
immediate: true //
}
},
props: {
// id
@ -418,7 +435,7 @@ export default {
startingTime: '1',
timeoutPrice: '5',
enablelnterval: false,
rule: [{ start: '', end: '', eachUnit: '', fee: '' }],
rule: [{ start: '0', end: '', eachUnit: '', fee: '' }],
more: { start: '', end: '9999', eachUnit: '', fee: '' },
timeUnit: '分钟',
rules: {
@ -467,14 +484,6 @@ export default {
deptId: [
{ required: true, message: '请选择代理商', trigger: 'change' },
]
// startingTime: [
// { required: true, message: '', trigger: 'blur' },
// { pattern: /^\d+$/, message: '', trigger: 'blur' }
// ],
// timeoutTime: [
// { required: true, message: '', trigger: 'blur' },
// { pattern: /^\d+$/, message: '', trigger: 'blur' }
// ],
},
};
},
@ -528,8 +537,98 @@ export default {
this.addInterval();
}
},
validateMore() {
const { start, end, eachUnit, fee } = this.more;
//
if (start === '' || end === '') {
this.$modal.msgError('区间计费:大于分钟数不能为空');
return false;
}
//
if (eachUnit === '') {
this.$modal.msgError('区间计费:大于每分钟数不能为空');
return false;
}
if (fee === '') {
this.$modal.msgError('区间计费:大于分钟之后的金额不能为空');
return false;
}
//
if (isNaN(Number(start)) || isNaN(Number(end))) {
this.$modal.msgError('区间计费:大于分钟数必须是数值');
return false;
}
//
if (isNaN(Number(eachUnit))) {
this.$modal.msgError('区间计费:大于每分钟数必须是数值');
return false;
}
if (isNaN(Number(fee))) {
this.$modal.msgError('区间计费:大于分钟之后的金额必须是数值');
return false;
}
return true; //
},
validateRules() {
for (let i = 0; i < this.rule.length; i++) {
const { start, end, eachUnit, fee } = this.rule[i];
if (start === '' || end === '') {
this.$modal.msgError(`区间计费:第 ${i + 1} 区间的开始或结束值不能为空`);
return false;
}
if (eachUnit === '') {
this.$modal.msgError(`区间计费:第 ${i + 1} 区间的分钟数不能为空`);
return false;
}
if (fee === '') {
this.$modal.msgError(`区间计费:第 ${i + 1} 区间的金额不能为空`);
return false;
}
//
if (isNaN(Number(start)) || isNaN(Number(end))) {
this.$modal.msgError(`区间计费:第 ${i + 1} 区间的开始和结束值必须是数值`);
return false;
}
if (isNaN(Number(eachUnit))) {
this.$modal.msgError(`区间计费:第 ${i + 1} 区间的分钟数必须是数值`);
return false;
}
if (isNaN(Number(fee))) {
this.$modal.msgError(`区间计费:第 ${i + 1} 区间的金额必须是数值`);
return false;
}
if (parseFloat(start) >= parseFloat(end)) {
this.$modal.msgError(`区间计费:第 ${i + 1} 区间的结束值必须小于开始值`);
return false;
}
}
return true; //
},
addInterval() {
this.rule.push({ start: '', end: '', eachUnit: '', fee: '' });
// this.rule.push({ start: '', end: '', eachUnit: '', fee: '' });
const lastInterval = this.rule[this.rule.length - 1];
const newInterval = { start: '', end: '', eachUnit: '', fee: '' };
// start end
if (lastInterval && lastInterval.end) {
newInterval.start = lastInterval.end;
}else{
this.$modal.msgError('请先设置上一条规则的结束值');
return;
}
this.rule.push(newInterval);
},
removeInterval(index) {
this.rule.splice(index, 1);
@ -564,7 +663,7 @@ export default {
}
this.enablelnterval = false,
this.more = { start: '', end: '9999', eachUnit: '', fee: '' }
this.rule = [{ start: '', end: '', eachUnit: '', fee: '' }],
this.rule = [{ start: '0', end: '', eachUnit: '', fee: '' }],
this.timeoutTime = '60',
this.startingPrice = '5',
this.startingTime = '60',
@ -634,6 +733,12 @@ export default {
},
submitForm() {
this.$refs["form"].validate(valid => {
if(!this.validateRules()){
return
}
if (!this.validateMore()) {
return; //
}
if (valid) {
//
if (!/^\d+$/.test(this.startingTime)) {

View File

@ -114,7 +114,7 @@
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="flowList" @selection-change="handleSelectionChange">
<el-table v-loading="loading" :data="flowList" show-summary @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
<!-- <el-table-column label="流水id" align="center" prop="flowId" />-->
<el-table-column label="交易时间" align="center" prop="createTime" width="150">
@ -131,7 +131,6 @@
</router-link>
</template>
</el-table-column>
<!-- <el-table-column label="关联订单号" width="180" align="center" prop="orderNo" />-->
<el-table-column align="center" label="关联订单号" width="180" prop="orderNo">
<template slot-scope="scope">
<router-link :to="'/system/order/index/' + scope.row.orderNo" class="link-type">
@ -150,22 +149,8 @@
<dict-tag :options="dict.type.et_business_type" :value="scope.row.busType"/>
</template>
</el-table-column>
<!-- <el-table-column label="交易金额" align="center" prop="amount" :formatter="formatAmount"/>-->
<!-- <el-table-column label="支付手续费" align="center" prop="handlingCharge" :formatter="formatAmount"/>-->
<!-- <el-table-column label="平台服务费" align="center" prop="platformServiceFee" :formatter="formatAmount"/>-->
<el-table-column label="账变金额" align="left" prop="operatorDividend" :formatter="formatAmount2"/>
<el-table-column label="代理商结余" align="center" prop="operatorBalance" :formatter="formatAmount"/>
<!-- <el-table-column label="合伙人分账" align="center" prop="partnerDividend" :formatter="formatAmount"/>-->
<!-- <el-table-column label="支付方式" align="center" prop="payType">-->
<!-- <template slot-scope="scope">-->
<!-- <dict-tag :options="dict.type.et_pay_type" :value="scope.row.payType"/>-->
<!-- </template>-->
<!-- </el-table-column>-->
<!-- <el-table-column label="状态" align="center" prop="status">-->
<!-- <template slot-scope="scope">-->
<!-- <dict-tag :options="dict.type.et_flow_status" :value="scope.row.status"/>-->
<!-- </template>-->
<!-- </el-table-column>-->
<el-table-column label="车型" align="center" prop="model" />
</el-table>

View File

@ -1112,13 +1112,39 @@ export default {
},
/** 提交退款 */
submitRefund(){
// console.log("=====submitRefund======="+this.form2)
console.log("=====submitRefund======="+this.form2)
if(!this.refundValidate()){
return
}
refund(this.form2).then(response => {
this.$modal.msgSuccess("退款成功");
this.open2 = false;
this.getList();
});
},
refundValidate(){
//
const fields = [
this.form2.appointmentFee,
this.form2.ridingFee,
this.form2.dispatchFee,
this.form2.manageFee
];
//
const total = fields.reduce((sum, fee) => sum + (Number(fee) || 0), 0);
//
console.log('总和:', total);
// 0
if (total === 0) {
this.$modal.msgError("退款金额不能为0");
return false;
}
return true;
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate(valid => {

View File

@ -42,7 +42,7 @@
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="refundList" show-summary="total" @selection-change="handleSelectionChange">
<el-table v-loading="loading" :data="refundList" show-summary @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
<el-table-column label="时间" align="center" prop="day" />
<el-table-column label="代理商" align="center" prop="deptName" />