29 lines
1.2 KiB
HTML
29 lines
1.2 KiB
HTML
|
{{template "header" }}
|
||
|
<div id="app" style="width:100%">
|
||
|
<template>
|
||
|
<el-container>
|
||
|
|
||
|
<el-main class="mainMain">
|
||
|
<el-form :model="modifyPass" label-width="100px" :rules="modifyPassRules" ref="modifyPassForm">
|
||
|
<el-form-item :label="flyLang.oldPass">
|
||
|
<el-input v-model="modifyPass.old_pass"></el-input>
|
||
|
</el-form-item>
|
||
|
<el-form-item :label="flyLang.newPass" prop="new_pass">
|
||
|
<el-input v-model="modifyPass.new_pass"></el-input>
|
||
|
</el-form-item>
|
||
|
<el-form-item :label="flyLang.reNewPass" prop="confirm_new_pass">
|
||
|
<el-input v-model="modifyPass.confirm_new_pass"></el-input>
|
||
|
</el-form-item>
|
||
|
<el-form-item>
|
||
|
<el-button type="primary" @click="setModifyPass()"><{flyLang.save}></el-button>
|
||
|
<el-button><{flyLang.cancel}></el-button>
|
||
|
</el-form-item>
|
||
|
</el-form>
|
||
|
</el-main>
|
||
|
|
||
|
</el-container>
|
||
|
</template>
|
||
|
|
||
|
</div>
|
||
|
</body>
|
||
|
{{template "setting_bottom" .}}
|