调整收费套餐页面
This commit is contained in:
parent
094294af4a
commit
a65e254c17
|
@ -538,6 +538,9 @@ export default {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
validateMore() {
|
validateMore() {
|
||||||
|
if(this.form.ridingRule === '1'){
|
||||||
|
return true
|
||||||
|
}
|
||||||
const { start, end, eachUnit, fee } = this.more;
|
const { start, end, eachUnit, fee } = this.more;
|
||||||
// 检查开始和结束值是否为空
|
// 检查开始和结束值是否为空
|
||||||
if (start === '' || end === '') {
|
if (start === '' || end === '') {
|
||||||
|
@ -575,6 +578,10 @@ export default {
|
||||||
return true; // 校验通过
|
return true; // 校验通过
|
||||||
},
|
},
|
||||||
validateRules() {
|
validateRules() {
|
||||||
|
if(this.form.ridingRule === '1'){
|
||||||
|
console.log(111111111111)
|
||||||
|
return true
|
||||||
|
}
|
||||||
for (let i = 0; i < this.rule.length; i++) {
|
for (let i = 0; i < this.rule.length; i++) {
|
||||||
const { start, end, eachUnit, fee } = this.rule[i];
|
const { start, end, eachUnit, fee } = this.rule[i];
|
||||||
if (start === '' || end === '') {
|
if (start === '' || end === '') {
|
||||||
|
|
|
@ -414,7 +414,7 @@ export default {
|
||||||
copy(row) {
|
copy(row) {
|
||||||
const account = `账号:${row.userName}`; // 获取账号
|
const account = `账号:${row.userName}`; // 获取账号
|
||||||
const password = `密码:${row.initPassword}`; // 获取密码
|
const password = `密码:${row.initPassword}`; // 获取密码
|
||||||
const fixedUrl = "https://dche.ccttiot.com/"; // 固定网址
|
const fixedUrl = "https://www.baidu.com/"; // 固定网址
|
||||||
|
|
||||||
// 组合要复制的内容
|
// 组合要复制的内容
|
||||||
const textToCopy = `${fixedUrl}\n${account}\n${password}`;
|
const textToCopy = `${fixedUrl}\n${account}\n${password}`;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user