From a65e254c1707c773cfdb387ebce46f5495312f97 Mon Sep 17 00:00:00 2001 From: 18650502300 <18650502300@163.com> Date: Mon, 2 Dec 2024 20:59:12 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=E6=94=B6=E8=B4=B9=E5=A5=97?= =?UTF-8?q?=E9=A4=90=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/system/fee/index.vue | 7 +++++++ src/views/system/user/index.vue | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/src/views/system/fee/index.vue b/src/views/system/fee/index.vue index cf31c7a..c9c3530 100644 --- a/src/views/system/fee/index.vue +++ b/src/views/system/fee/index.vue @@ -538,6 +538,9 @@ export default { } }, validateMore() { + if(this.form.ridingRule === '1'){ + return true + } const { start, end, eachUnit, fee } = this.more; // 检查开始和结束值是否为空 if (start === '' || end === '') { @@ -575,6 +578,10 @@ export default { return true; // 校验通过 }, validateRules() { + if(this.form.ridingRule === '1'){ + console.log(111111111111) + return true + } for (let i = 0; i < this.rule.length; i++) { const { start, end, eachUnit, fee } = this.rule[i]; if (start === '' || end === '') { diff --git a/src/views/system/user/index.vue b/src/views/system/user/index.vue index c2a950b..099cac7 100644 --- a/src/views/system/user/index.vue +++ b/src/views/system/user/index.vue @@ -414,7 +414,7 @@ export default { copy(row) { const account = `账号:${row.userName}`; // 获取账号 const password = `密码:${row.initPassword}`; // 获取密码 - const fixedUrl = "https://dche.ccttiot.com/"; // 固定网址 + const fixedUrl = "https://www.baidu.com/"; // 固定网址 // 组合要复制的内容 const textToCopy = `${fixedUrl}\n${account}\n${password}`;