|
@@ -353,6 +353,13 @@ const ruleForm = reactive({
|
|
|
a2: { fee: 0, start: 0, end: 0 },
|
|
a2: { fee: 0, start: 0, end: 0 },
|
|
|
a3: { fee: 0, end: 0 },
|
|
a3: { fee: 0, end: 0 },
|
|
|
}, // 退改设置
|
|
}, // 退改设置
|
|
|
|
|
+
|
|
|
|
|
+ toPay: "", // 支付满多少金额
|
|
|
|
|
+ toRelease: "", // 补贴释放多少金额
|
|
|
|
|
+ teacherPrice: "", // 教师支付金额
|
|
|
|
|
+ commonPrice: "", // 正常金额
|
|
|
|
|
+ poorReduce: "", // 贫困户减免金额
|
|
|
|
|
+
|
|
|
id: "",
|
|
id: "",
|
|
|
});
|
|
});
|
|
|
// 开始时间段配置
|
|
// 开始时间段配置
|
|
@@ -401,7 +408,13 @@ const getlist = async (message) => {
|
|
|
sessionStorage.setItem("sm_end", res.data.data.sm_end);
|
|
sessionStorage.setItem("sm_end", res.data.data.sm_end);
|
|
|
|
|
|
|
|
ruleForm.refundRule = res.data.data.refundRule;
|
|
ruleForm.refundRule = res.data.data.refundRule;
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
|
|
+ ruleForm.toPay = res.data.data.toPay; // 支付满多少金额
|
|
|
|
|
+ ruleForm.toRelease = res.data.data.toRelease; // 补贴释放多少金额
|
|
|
|
|
+ ruleForm.teacherPrice = res.data.data.teacherPrice; // 教师支付金额
|
|
|
|
|
+ ruleForm.commonPrice = res.data.data.commonPrice; // 正常金额
|
|
|
|
|
+ ruleForm.poorReduce = res.data.data.poorReduce; // 贫困户减免金额
|
|
|
|
|
+
|
|
|
if (message) {
|
|
if (message) {
|
|
|
ElMessage({
|
|
ElMessage({
|
|
|
type: "success",
|
|
type: "success",
|
|
@@ -514,12 +527,18 @@ const timeUpdata = async () => {
|
|
|
bb_before: ruleForm.bb_before,
|
|
bb_before: ruleForm.bb_before,
|
|
|
id: ruleForm.id,
|
|
id: ruleForm.id,
|
|
|
|
|
|
|
|
- workTime:ruleForm.workTime.join("-"),
|
|
|
|
|
- workMobile:ruleForm.workMobile,
|
|
|
|
|
|
|
+ workTime: ruleForm.workTime.join("-"),
|
|
|
|
|
+ workMobile: ruleForm.workMobile,
|
|
|
refundRule: JSON.stringify(ruleForm.refundRule),
|
|
refundRule: JSON.stringify(ruleForm.refundRule),
|
|
|
|
|
+
|
|
|
|
|
+ toPay: ruleForm.endTime, // 支付满多少金额
|
|
|
|
|
+ toRelease: ruleForm.toRelease, // 补贴释放多少金额
|
|
|
|
|
+ teacherPrice: ruleForm.teacherPrice, // 教师支付金额
|
|
|
|
|
+ commonPrice: ruleForm.commonPrice, // 正常金额
|
|
|
|
|
+ poorReduce: ruleForm.poorReduce, // 贫困户减免金额
|
|
|
};
|
|
};
|
|
|
console.log(data);
|
|
console.log(data);
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
let res = await axios({
|
|
let res = await axios({
|
|
|
method: "post",
|
|
method: "post",
|
|
|
url: api.value + "/carBook/cnupdate.action",
|
|
url: api.value + "/carBook/cnupdate.action",
|