You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
{{template "header" }}
|
|
|
|
<div id="app" style="width:100%">
|
|
|
|
<template>
|
|
|
|
<el-container>
|
|
|
|
|
|
|
|
<el-main class="mainMain">
|
|
|
|
<el-form :model="modifyPass" label-width="100px">
|
|
|
|
<el-form-item label="原密码">
|
|
|
|
<el-input v-model="modifyPass.old_pass"></el-input>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="新密码">
|
|
|
|
<el-input v-model="modifyPass.new_pass"></el-input>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="重复新密码">
|
|
|
|
<el-input v-model="modifyPass.confirm_new_pass"></el-input>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item>
|
|
|
|
<el-button type="primary" @click="setModifyPass()">保存</el-button>
|
|
|
|
<el-button>取消</el-button>
|
|
|
|
</el-form-item>
|
|
|
|
</el-form>
|
|
|
|
</el-main>
|
|
|
|
|
|
|
|
</el-container>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
{{template "setting_bottom" .}}
|