|
|
|
@ -179,18 +179,31 @@ |
|
|
|
|
direction="ltr" |
|
|
|
|
size="55%" |
|
|
|
|
> |
|
|
|
|
<div style="padding: 20px;"> |
|
|
|
|
<div style="width: 100%; |
|
|
|
|
height: 100%; |
|
|
|
|
display: flex; |
|
|
|
|
flex-direction: column; |
|
|
|
|
position: relative;"> |
|
|
|
|
<el-form |
|
|
|
|
ref="form" |
|
|
|
|
:model="updatePwd" |
|
|
|
|
:rules="rules" |
|
|
|
|
label-width="100px" |
|
|
|
|
style="flex:1;padding: 20px;" |
|
|
|
|
> |
|
|
|
|
<el-form-item label="新密码" prop="encryptPsw"> |
|
|
|
|
<el-input v-model="updatePwd.encryptPsw" style="width: 50%" /> |
|
|
|
|
</el-form-item> |
|
|
|
|
</el-form> |
|
|
|
|
<div style="text-align: right"> |
|
|
|
|
<div style="min-height: 50px; |
|
|
|
|
position: sticky; |
|
|
|
|
bottom: 0px; |
|
|
|
|
width: 100%; |
|
|
|
|
display: flex; |
|
|
|
|
justify-content: right; |
|
|
|
|
padding: 15px 20px; |
|
|
|
|
box-sizing: border-box; |
|
|
|
|
border-top: solid 1px #e5e5e5;"> |
|
|
|
|
<el-button @click="updatePwdDialog = false;">取消</el-button> |
|
|
|
|
<el-button type="primary" @click="updatePwdSubmit">提交</el-button> |
|
|
|
|
</div> |
|
|
|
@ -263,6 +276,7 @@ |
|
|
|
|
<SysCustomerInfoInfo |
|
|
|
|
v-if="showTableDrawer" |
|
|
|
|
:sys-customer-info="sysCustomerInfo" |
|
|
|
|
@closeDialog="closeDialog" |
|
|
|
|
@closedialogs="closeDialogs" |
|
|
|
|
/> |
|
|
|
|
</el-drawer> |
|
|
|
@ -611,6 +625,7 @@ export default { |
|
|
|
|
this.updateDialog = false; |
|
|
|
|
this.updateInfoDialog = false; |
|
|
|
|
this.addInfoDialog = false; |
|
|
|
|
this.showTableDrawer = false; |
|
|
|
|
}, |
|
|
|
|
}, |
|
|
|
|
}; |
|
|
|
|