Compare commits

...

4 Commits

Author SHA1 Message Date
tx
5ca920b185 车辆类别修改优化 2024-12-13 15:10:35 +08:00
ddfc33f708 Merge branch 'refs/heads/tx' 2024-12-11 16:20:36 +08:00
2a5de3f40e bug 2024-12-11 16:19:00 +08:00
dda2376fe6 bug 2024-12-07 09:16:06 +08:00
4 changed files with 447 additions and 785 deletions

View File

@ -457,36 +457,6 @@
<div class="tips">当车辆电量低于多少时无法解锁用车</div>
</el-col>
</el-row>
<el-row>
<el-col :span="12">
<el-form-item
label="最大预约时间(分)"
label-width="120"
class="switch-item"
>
<el-input-number
style="width: 100%"
v-model="form.timeoutMinutes"
placeholder="车辆可最长预约多少分钟"
></el-input-number>
</el-form-item>
<div class="tips">设置车辆的最大可以预约时间</div>
</el-col>
<el-col :span="12">
<el-form-item
label="预约服务费(元)"
label-width="120"
class="switch-item"
>
<el-input-number
style="width: 100%"
v-model="form.appointmentServiceFee"
placeholder="预约时每十分钟的计费"
></el-input-number>
</el-form-item>
<div class="tips">设置车辆预约时每十分钟产生的费用</div>
</el-col>
</el-row>
<el-row>
<el-col :span="15">

View File

@ -406,12 +406,6 @@
placeholder="电量低于多少值自动生成换电订单"></el-input-number>
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="最大预约时间(分)" label-width="150">
<el-input-number style="width: 50%" v-model="form.timeoutMinutes"
placeholder="车辆可最长预约多少分钟"></el-input-number>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="12">
@ -471,7 +465,7 @@ export default {
},
data() {
return {
//
loading: true,
//

File diff suppressed because it is too large Load Diff

View File

@ -414,7 +414,7 @@ export default {
copy(row) {
const account = `账号:${row.userName}`; //
const password = `密码:${row.initPassword}`; //
const fixedUrl = "https://www.baidu.com/"; //
const fixedUrl = "https://dche.ccttiot.com/"; //
//
const textToCopy = `${fixedUrl}\n${account}\n${password}`;
@ -469,26 +469,17 @@ export default {
console.log("this.form.userId", this.form.userId)//
console.log("this.appUserId", this.appUserId)//app
let roles1 = this.form.roles
console.log("this.form.roles", roles1)//app
console.log("this.form.roles", JSON.stringify(roles1))//app
let role
if (roles1 && roles1.length > 0) {
let roleKey = roles1[0].roleKey
if (roleKey == 'root') {
role = '3';
} else if (roleKey == 'repair') {
role = '2';
} else if (roleKey == "leader" || roleKey == "admin") {
role = '9';
} else if (roleKey == "partner") {
role = '4';
}
role = roles1[0].roleId
} else {
this.$modal.msgError("系统用户未绑定角色");
this.open2 = false;
return
}
console.log("role", role)
bandSystemUser({ userId: this.appUserId, sysUserId: this.form.userId, role: role }).then(response => {
bandSystemUser({ userId: this.appUserId, sysUserId: this.form.userId, role: role ,sysRole: role}).then(response => {
getUser(this.form.userId).then(response => {
this.appUserList = response.data.users;
console.log("this.appUserList", this.appUserList)