Compare commits
4 Commits
44491bb455
...
5ca920b185
Author | SHA1 | Date | |
---|---|---|---|
5ca920b185 | |||
ddfc33f708 | |||
2a5de3f40e | |||
dda2376fe6 |
|
@ -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">
|
||||
|
|
|
@ -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
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue
Block a user