|
|
|
@ -1,127 +1,195 @@ |
|
|
|
|
<template> |
|
|
|
|
<div class="relative" v-loading="loading"> |
|
|
|
|
<div class="relative" |
|
|
|
|
v-loading="loading"> |
|
|
|
|
<div class="page"> |
|
|
|
|
<h6 class="l-title"><img src="@/assets/images/info1.png" alt=""> 基本信息</h6> |
|
|
|
|
<h6 class="l-title"><img src="@/assets/images/info1.png" |
|
|
|
|
alt=""> 基本信息</h6> |
|
|
|
|
<div class="page-content"> |
|
|
|
|
<ul class="list"> |
|
|
|
|
<li> |
|
|
|
|
<label>姓名:</label> |
|
|
|
|
<el-input placeholder="请输入姓名" type="text" v-model="form.realName" /> |
|
|
|
|
<el-input placeholder="请输入姓名" |
|
|
|
|
type="text" |
|
|
|
|
v-model="form.hrUserInfo.userName" /> |
|
|
|
|
</li> |
|
|
|
|
<li> |
|
|
|
|
<label>性别:</label> |
|
|
|
|
<el-select size="small" v-model="form.sex"> |
|
|
|
|
<el-option v-for="item in sexList" :key="item.value" :label="item.name" :value="item.value"></el-option> |
|
|
|
|
<el-select size="small" |
|
|
|
|
v-model="form.hrUserInfo.sex"> |
|
|
|
|
<el-option v-for="item in sexList" |
|
|
|
|
:key="item.value" |
|
|
|
|
:label="item.name" |
|
|
|
|
:value="item.value"></el-option> |
|
|
|
|
</el-select> |
|
|
|
|
</li> |
|
|
|
|
<li> |
|
|
|
|
<label>账号:</label> |
|
|
|
|
<el-input class="m-r-10" type="text" size="small" v-model="form.username"></el-input> |
|
|
|
|
<el-input class="m-r-10" |
|
|
|
|
type="text" |
|
|
|
|
size="small" |
|
|
|
|
v-model="form.userAccount.account"></el-input> |
|
|
|
|
<!-- <el-button type="text" size="small" @click="showAccount">修改</el-button> --> |
|
|
|
|
</li> |
|
|
|
|
<li> |
|
|
|
|
<label>工号:</label> |
|
|
|
|
<el-input size="small" v-model="form.jobNumber" clearable></el-input> |
|
|
|
|
<el-input size="small" |
|
|
|
|
v-model="form.userAccount.workNumber" |
|
|
|
|
clearable></el-input> |
|
|
|
|
</li> |
|
|
|
|
<li> |
|
|
|
|
<label>邮箱:</label> |
|
|
|
|
<el-input class="m-r-10" size="small" v-model="form.email"></el-input> |
|
|
|
|
<el-input class="m-r-10" |
|
|
|
|
size="small" |
|
|
|
|
v-model="form.hrUserInfo.email"></el-input> |
|
|
|
|
<!-- <el-button v-if="form.email" type="text" size="small" @click="bindEmail">更换</el-button> |
|
|
|
|
<el-button v-else type="text" size="small" @click="bindEmail">添加</el-button> --> |
|
|
|
|
</li> |
|
|
|
|
<li> |
|
|
|
|
<label>手机号:</label> |
|
|
|
|
<el-input class="m-r-10" type="text" size="small" maxlength="11" v-model="form.phone"></el-input> |
|
|
|
|
<el-input class="m-r-10" |
|
|
|
|
type="text" |
|
|
|
|
size="small" |
|
|
|
|
maxlength="11" |
|
|
|
|
v-model="form.hrUserInfo.phone"></el-input> |
|
|
|
|
<!-- <el-button type="text" size="small" @click="bindPhone">{{ form.phone ? '更换' : '绑定' }}</el-button> |
|
|
|
|
<el-button v-if="form.phone" type="text" size="small" @click="unbind">解绑</el-button> --> |
|
|
|
|
</li> |
|
|
|
|
<li> |
|
|
|
|
<label>密码:</label> |
|
|
|
|
<el-input class="m-r-10" size="small" value="******" disabled></el-input> |
|
|
|
|
<el-button type="text" size="small" @click="bindPassword">修改</el-button> |
|
|
|
|
<el-input class="m-r-10" |
|
|
|
|
size="small" |
|
|
|
|
value="******" |
|
|
|
|
disabled></el-input> |
|
|
|
|
<el-button type="text" |
|
|
|
|
size="small" |
|
|
|
|
@click="bindPassword">修改</el-button> |
|
|
|
|
</li> |
|
|
|
|
</ul> |
|
|
|
|
</div> |
|
|
|
|
<div class="btn-wrap"> |
|
|
|
|
<el-button size="small" v-throttle @click="$emit('back')">取消</el-button> |
|
|
|
|
<el-button type="primary" size="small" v-throttle @click="submit">更新</el-button> |
|
|
|
|
<el-button size="small" |
|
|
|
|
v-throttle |
|
|
|
|
@click="$emit('back')">取消</el-button> |
|
|
|
|
<el-button type="primary" |
|
|
|
|
size="small" |
|
|
|
|
v-throttle |
|
|
|
|
@click="submit">更新</el-button> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<el-dialog |
|
|
|
|
:title="form.email ? '更换邮箱' : '绑定邮箱'" |
|
|
|
|
<el-dialog :title="form.email ? '更换邮箱' : '绑定邮箱'" |
|
|
|
|
:visible.sync="emailVisible" |
|
|
|
|
:close-on-click-modal="false" |
|
|
|
|
@close="closeEmail" |
|
|
|
|
width="30%"> |
|
|
|
|
<el-form ref="form" :model="form" label-width="60px"> |
|
|
|
|
<el-form ref="form" |
|
|
|
|
:model="form" |
|
|
|
|
label-width="60px"> |
|
|
|
|
<el-form-item label="邮箱"> |
|
|
|
|
<el-input placeholder="请输入邮箱" v-model="email"></el-input> |
|
|
|
|
<el-input placeholder="请输入邮箱" |
|
|
|
|
v-model="email"></el-input> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="验证码"> |
|
|
|
|
<div class="flex-between"> |
|
|
|
|
<el-input v-model="emailCode" placeholder="请输入验证码" maxlength="6"></el-input> |
|
|
|
|
<el-button style="margin-left: 10px" type="text" @click="sendEmailCode" :disabled="emailDisabled">{{ emailBtnText }}</el-button> |
|
|
|
|
<el-input v-model="emailCode" |
|
|
|
|
placeholder="请输入验证码" |
|
|
|
|
maxlength="6"></el-input> |
|
|
|
|
<el-button style="margin-left: 10px" |
|
|
|
|
type="text" |
|
|
|
|
@click="sendEmailCode" |
|
|
|
|
:disabled="emailDisabled">{{ emailBtnText }}</el-button> |
|
|
|
|
</div> |
|
|
|
|
</el-form-item> |
|
|
|
|
</el-form> |
|
|
|
|
<span slot="footer" class="dialog-footer"> |
|
|
|
|
<span slot="footer" |
|
|
|
|
class="dialog-footer"> |
|
|
|
|
<el-button @click="emailVisible = false">取 消</el-button> |
|
|
|
|
<el-button type="primary" @click="emailSubmit">确 定</el-button> |
|
|
|
|
<el-button type="primary" |
|
|
|
|
@click="emailSubmit">确 定</el-button> |
|
|
|
|
</span> |
|
|
|
|
</el-dialog> |
|
|
|
|
<el-dialog |
|
|
|
|
:title="form.phone ? '更换手机号' : '绑定手机号'" |
|
|
|
|
<el-dialog :title="form.phone ? '更换手机号' : '绑定手机号'" |
|
|
|
|
:visible.sync="phoneVisible" |
|
|
|
|
:close-on-click-modal="false" |
|
|
|
|
@close="closePhone" |
|
|
|
|
width="30%"> |
|
|
|
|
<el-form ref="form" :model="form" label-width="60px"> |
|
|
|
|
<el-form ref="form" |
|
|
|
|
:model="form" |
|
|
|
|
label-width="60px"> |
|
|
|
|
<el-form-item label="手机号"> |
|
|
|
|
<el-input style="width: 404px;" placeholder="请输入手机号" v-model="phone" maxlength="11"></el-input> |
|
|
|
|
<el-input style="width: 404px;" |
|
|
|
|
placeholder="请输入手机号" |
|
|
|
|
v-model="phone" |
|
|
|
|
maxlength="11"></el-input> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="验证码"> |
|
|
|
|
<div class="flex-between"> |
|
|
|
|
<el-input v-model="phoneCode" placeholder="请输入验证码" maxlength="6"></el-input> |
|
|
|
|
<el-button style="margin-left: 10px" type="text" @click="sendPhoneCode" :disabled="phoneDisabled">{{ phoneBtnText }}</el-button> |
|
|
|
|
<el-input v-model="phoneCode" |
|
|
|
|
placeholder="请输入验证码" |
|
|
|
|
maxlength="6"></el-input> |
|
|
|
|
<el-button style="margin-left: 10px" |
|
|
|
|
type="text" |
|
|
|
|
@click="sendPhoneCode" |
|
|
|
|
:disabled="phoneDisabled">{{ phoneBtnText }}</el-button> |
|
|
|
|
</div> |
|
|
|
|
</el-form-item> |
|
|
|
|
</el-form> |
|
|
|
|
<span slot="footer" class="dialog-footer"> |
|
|
|
|
<span slot="footer" |
|
|
|
|
class="dialog-footer"> |
|
|
|
|
<el-button @click="phoneVisible = false">取 消</el-button> |
|
|
|
|
<el-button type="primary" @click="phoneSubmit">确 定</el-button> |
|
|
|
|
<el-button type="primary" |
|
|
|
|
@click="phoneSubmit">确 定</el-button> |
|
|
|
|
</span> |
|
|
|
|
</el-dialog> |
|
|
|
|
<el-dialog |
|
|
|
|
title="更换密码" |
|
|
|
|
<el-dialog title="更换密码" |
|
|
|
|
:visible.sync="pwdVisible" |
|
|
|
|
:close-on-click-modal="false" |
|
|
|
|
@close="closePassword" |
|
|
|
|
width="30%"> |
|
|
|
|
<el-form ref="pwdForm" :model="form" label-width="60px"> |
|
|
|
|
<el-form ref="pwdForm" |
|
|
|
|
:model="form" |
|
|
|
|
label-width="60px"> |
|
|
|
|
<el-form-item label="原密码"> |
|
|
|
|
<el-input type="password" v-model="pwdForm.password" placeholder="请输入原密码"></el-input> |
|
|
|
|
<el-input type="password" |
|
|
|
|
v-model="pwdForm.password" |
|
|
|
|
placeholder="请输入原密码"></el-input> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="新密码"> |
|
|
|
|
<el-input type="password" v-model="pwdForm.newPassword" placeholder="请输入新密码" @keyup.enter.native="editPassword"></el-input> |
|
|
|
|
<el-input type="password" |
|
|
|
|
v-model="pwdForm.newPassword" |
|
|
|
|
placeholder="请输入新密码" |
|
|
|
|
@keyup.enter.native="editPassword"></el-input> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="新密码"> |
|
|
|
|
<el-input type="password" v-model="pwdForm.reNewPassword" placeholder="请确认新密码" @keyup.enter.native="editPassword"></el-input> |
|
|
|
|
<el-input type="password" |
|
|
|
|
v-model="pwdForm.reNewPassword" |
|
|
|
|
placeholder="请确认新密码" |
|
|
|
|
@keyup.enter.native="editPassword"></el-input> |
|
|
|
|
</el-form-item> |
|
|
|
|
</el-form> |
|
|
|
|
<span slot="footer" class="dialog-footer"> |
|
|
|
|
<span slot="footer" |
|
|
|
|
class="dialog-footer"> |
|
|
|
|
<el-button @click="pwdVisible = false">取 消</el-button> |
|
|
|
|
<el-button type="primary" @click="editPassword">确 定</el-button> |
|
|
|
|
<el-button type="primary" |
|
|
|
|
@click="editPassword">确 定</el-button> |
|
|
|
|
</span> |
|
|
|
|
</el-dialog> |
|
|
|
|
<el-dialog title="修改账号" :visible.sync="accountVisible" :close-on-click-modal="false" width="30%"> |
|
|
|
|
<el-dialog title="修改账号" |
|
|
|
|
:visible.sync="accountVisible" |
|
|
|
|
:close-on-click-modal="false" |
|
|
|
|
width="30%"> |
|
|
|
|
<el-form label-width="70px"> |
|
|
|
|
<el-form-item label="账号"> |
|
|
|
|
<el-input v-model="editUsername" placeholder="请输入账号"></el-input> |
|
|
|
|
<el-input v-model="editUsername" |
|
|
|
|
placeholder="请输入账号"></el-input> |
|
|
|
|
</el-form-item> |
|
|
|
|
</el-form> |
|
|
|
|
<span slot="footer" class="dialog-footer"> |
|
|
|
|
<el-button size="small" @click="accountVisible = false">取 消</el-button> |
|
|
|
|
<el-button size="small" type="primary" @click="confirmAccount">确 定</el-button> |
|
|
|
|
<span slot="footer" |
|
|
|
|
class="dialog-footer"> |
|
|
|
|
<el-button size="small" |
|
|
|
|
@click="accountVisible = false">取 消</el-button> |
|
|
|
|
<el-button size="small" |
|
|
|
|
type="primary" |
|
|
|
|
@click="confirmAccount">确 定</el-button> |
|
|
|
|
</span> |
|
|
|
|
</el-dialog> |
|
|
|
|
</div> |
|
|
|
@ -132,7 +200,7 @@ import Setting from '@/setting' |
|
|
|
|
import util from '@/libs/util' |
|
|
|
|
import { mapState, mapMutations } from 'vuex' |
|
|
|
|
export default { |
|
|
|
|
data() { |
|
|
|
|
data () { |
|
|
|
|
return { |
|
|
|
|
loading: false, |
|
|
|
|
editUsername: '', |
|
|
|
@ -140,6 +208,8 @@ export default { |
|
|
|
|
updateTime: 0, |
|
|
|
|
token: util.local.get(Setting.tokenKey), |
|
|
|
|
form: { |
|
|
|
|
hrUserInfo: {}, |
|
|
|
|
userAccount: {}, |
|
|
|
|
userName: "", |
|
|
|
|
name: "", |
|
|
|
|
jobNumber: "", |
|
|
|
@ -191,14 +261,14 @@ export default { |
|
|
|
|
watch: { |
|
|
|
|
// 监听信息是否有更改,有的话页面离开的时候要询问是否要保存 |
|
|
|
|
form: { |
|
|
|
|
handler(){ |
|
|
|
|
handler () { |
|
|
|
|
this.updateTime++ |
|
|
|
|
if(this.updateTime > 1) this.$emit('updateStatus', this.updateTime > 1) |
|
|
|
|
if (this.updateTime > 1) this.$emit('updateStatus', this.updateTime > 1) |
|
|
|
|
}, |
|
|
|
|
deep:true |
|
|
|
|
deep: true |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
mounted() { |
|
|
|
|
mounted () { |
|
|
|
|
this.getData() |
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
@ -206,19 +276,19 @@ export default { |
|
|
|
|
'setUserName' |
|
|
|
|
]), |
|
|
|
|
// 获取用户信息 |
|
|
|
|
getData() { |
|
|
|
|
getData () { |
|
|
|
|
this.loading = true |
|
|
|
|
this.$get(`${this.api.user}/${this.userId}`).then(({ data }) => { |
|
|
|
|
this.form = data |
|
|
|
|
this.$get(this.api.queryUserInfoDetails).then(({ result }) => { |
|
|
|
|
this.form = result |
|
|
|
|
this.loading = false |
|
|
|
|
}).catch(err => {}) |
|
|
|
|
}).catch(err => { }) |
|
|
|
|
}, |
|
|
|
|
// 显示修改账号弹框 |
|
|
|
|
showAccount() { |
|
|
|
|
showAccount () { |
|
|
|
|
this.accountVisible = true |
|
|
|
|
}, |
|
|
|
|
// 修改账号 |
|
|
|
|
confirmAccount() { |
|
|
|
|
confirmAccount () { |
|
|
|
|
if (this.editUsername) { |
|
|
|
|
form.username = this.editUsername |
|
|
|
|
this.accountVisible = false |
|
|
|
@ -226,34 +296,34 @@ export default { |
|
|
|
|
this.$put(this.api.user, form).then(res => { |
|
|
|
|
this.setUserName(form.username) |
|
|
|
|
this.$message.success("提交成功!") |
|
|
|
|
}).catch(res => {}) |
|
|
|
|
}).catch(res => { }) |
|
|
|
|
} else { |
|
|
|
|
util.errorMsg('请输入账号') |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
bindEmail() { |
|
|
|
|
bindEmail () { |
|
|
|
|
this.email = this.form.email |
|
|
|
|
this.emailVisible = true |
|
|
|
|
}, |
|
|
|
|
bindPhone() { |
|
|
|
|
bindPhone () { |
|
|
|
|
this.phone = this.form.phone |
|
|
|
|
this.phoneVisible = true |
|
|
|
|
}, |
|
|
|
|
// 解绑手机号 |
|
|
|
|
unbind() { |
|
|
|
|
unbind () { |
|
|
|
|
this.$confirm('确定要解绑该手机号吗?', '提示', { |
|
|
|
|
type: 'warning' |
|
|
|
|
}).then(() => { |
|
|
|
|
this.$get(this.api.unbindMobilePhone).then(res => { |
|
|
|
|
this.$message.success('解绑成功') |
|
|
|
|
this.getData() |
|
|
|
|
}).catch(res => {}) |
|
|
|
|
}).catch(() => {}) |
|
|
|
|
}).catch(res => { }) |
|
|
|
|
}).catch(() => { }) |
|
|
|
|
}, |
|
|
|
|
bindPassword() { |
|
|
|
|
bindPassword () { |
|
|
|
|
this.pwdVisible = true |
|
|
|
|
}, |
|
|
|
|
editPassword() { |
|
|
|
|
editPassword () { |
|
|
|
|
const data = this.pwdForm |
|
|
|
|
if (!data.password) return util.warningMsg("请输入原密码") |
|
|
|
|
if (!data.newPassword) return util.warningMsg("请输入新密码") |
|
|
|
@ -268,32 +338,24 @@ export default { |
|
|
|
|
}).then(res => { |
|
|
|
|
util.successMsg("更换成功") |
|
|
|
|
this.pwdVisible = false |
|
|
|
|
}).catch(err => {}) |
|
|
|
|
}).catch(err => { }) |
|
|
|
|
}, |
|
|
|
|
closePassword() { |
|
|
|
|
closePassword () { |
|
|
|
|
this.pwdForm = { |
|
|
|
|
password: "", |
|
|
|
|
newPassword: "", |
|
|
|
|
reNewPassword: "" |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
submit() { |
|
|
|
|
submit () { |
|
|
|
|
const { form } = this |
|
|
|
|
this.$put(this.api.user, { |
|
|
|
|
id: form.id, |
|
|
|
|
jobNumber: form.jobNumber, |
|
|
|
|
phone: form.phone, |
|
|
|
|
realName: form.realName, |
|
|
|
|
username: form.username, |
|
|
|
|
email: form.email, |
|
|
|
|
sex: form.sex, |
|
|
|
|
}).then(res => { |
|
|
|
|
this.$post(this.api.updatePersonCenter, this.form).then(res => { |
|
|
|
|
this.$emit('updateStatus', false) |
|
|
|
|
this.setUserName(form.realName) |
|
|
|
|
this.setUserName(form.hrUserInfo.userName) |
|
|
|
|
this.$message.success("提交成功!") |
|
|
|
|
}).catch(res => {}) |
|
|
|
|
}).catch(res => { }) |
|
|
|
|
}, |
|
|
|
|
emailCountdown() { |
|
|
|
|
emailCountdown () { |
|
|
|
|
let count = 60; |
|
|
|
|
if (!this.emailTimer) { |
|
|
|
|
this.emailDisabled = true; |
|
|
|
@ -311,7 +373,7 @@ export default { |
|
|
|
|
}, 1000); |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
phoneCountdown() { |
|
|
|
|
phoneCountdown () { |
|
|
|
|
let count = 60; |
|
|
|
|
if (!this.phoneTimer) { |
|
|
|
|
this.phoneDisabled = true; |
|
|
|
@ -329,12 +391,12 @@ export default { |
|
|
|
|
}, 1000); |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
closeEmail() { |
|
|
|
|
closeEmail () { |
|
|
|
|
if (!this.emailDisabled) { |
|
|
|
|
this.emailCode = ""; |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
sendEmailCode() { |
|
|
|
|
sendEmailCode () { |
|
|
|
|
if (!this.email) return util.warningMsg("请输入邮箱") |
|
|
|
|
if (!/^([a-zA-Z]|[0-9])(\w|\-)+@[a-zA-Z0-9]+\.([a-zA-Z]{2,4})$/.test(this.email)) return util.warningMsg("请输入正确的邮箱") |
|
|
|
|
this.$post(this.api.sendPhoneOrEmailCode, { |
|
|
|
@ -347,9 +409,9 @@ export default { |
|
|
|
|
} else { |
|
|
|
|
util.errorMsg(res.message); |
|
|
|
|
} |
|
|
|
|
}).catch(res => {}) |
|
|
|
|
}).catch(res => { }) |
|
|
|
|
}, |
|
|
|
|
emailSubmit() { |
|
|
|
|
emailSubmit () { |
|
|
|
|
if (!this.email) return util.warningMsg("请输入邮箱") |
|
|
|
|
if (!/^([a-zA-Z]|[0-9])(\w|\-)+@[a-zA-Z0-9]+\.([a-zA-Z]{2,4})$/.test(this.email)) return util.warningMsg("请输入正确的邮箱") |
|
|
|
|
if (!this.emailCode) return util.warningMsg("请输入验证码") |
|
|
|
@ -363,14 +425,14 @@ export default { |
|
|
|
|
util.successMsg("绑定成功") |
|
|
|
|
this.form.email = this.email |
|
|
|
|
this.emailVisible = false |
|
|
|
|
}).catch(res => {}) |
|
|
|
|
}).catch(res => { }) |
|
|
|
|
}, |
|
|
|
|
closePhone() { |
|
|
|
|
closePhone () { |
|
|
|
|
if (!this.emailDisabled) { |
|
|
|
|
this.emailCode = ""; |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
sendPhoneCode() { |
|
|
|
|
sendPhoneCode () { |
|
|
|
|
if (!this.phone) return util.warningMsg("请输入手机号"); |
|
|
|
|
if (!/^1[3456789]\d{9}$/.test(this.phone)) return util.warningMsg("请输入正确的手机号"); |
|
|
|
|
let data = { |
|
|
|
@ -388,7 +450,7 @@ export default { |
|
|
|
|
}).catch(res => { |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
phoneSubmit() { |
|
|
|
|
phoneSubmit () { |
|
|
|
|
if (!this.phone) return util.warningMsg("请输入手机号"); |
|
|
|
|
if (!/^1[3456789]\d{9}$/.test(this.phone)) return util.warningMsg("请输入正确的手机号"); |
|
|
|
|
if (!this.phoneCode) return util.warningMsg("请输入验证码"); |
|
|
|
@ -424,22 +486,23 @@ export default { |
|
|
|
|
margin-right: 5px; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.list{ |
|
|
|
|
.list { |
|
|
|
|
.line { |
|
|
|
|
display: flex; |
|
|
|
|
margin-bottom: 24px; |
|
|
|
|
} |
|
|
|
|
.el-input, .el-select { |
|
|
|
|
.el-input, |
|
|
|
|
.el-select { |
|
|
|
|
width: 220px; |
|
|
|
|
.el-input__inner{ |
|
|
|
|
border-color: #CACFDB; |
|
|
|
|
.el-input__inner { |
|
|
|
|
border-color: #cacfdb; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
li { |
|
|
|
|
display: flex; |
|
|
|
|
align-items: center; |
|
|
|
|
margin-bottom: 20px; |
|
|
|
|
&>label { |
|
|
|
|
& > label { |
|
|
|
|
width: 100px; |
|
|
|
|
margin-right: 5px; |
|
|
|
|
text-align: right; |
|
|
|
@ -465,7 +528,7 @@ export default { |
|
|
|
|
padding: 12px 0; |
|
|
|
|
text-align: center; |
|
|
|
|
background-color: #fff; |
|
|
|
|
.el-button{ |
|
|
|
|
.el-button { |
|
|
|
|
width: 80px; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|