safety.vue 1.44 KB
<template>

  <!-- 账号安全 -->
  <el-row>
    <el-col :span="24">
      <br>
      <el-form label-width="140px">
        <el-form-item label="手机号:">
          <el-input
            v-model="account"
            style="width: 400px"
            placeholder="请输入账号"
          />
          <el-button class="brn" type="primary" round>绑定</el-button>
          <el-button v-if="false" class="brn" type="primary" round>解绑</el-button>
        </el-form-item>
        <el-form-item label="微信:">
          <el-input
            v-if="false"
            v-model="password"
            style="width: 400px"
            type="password"
            placeholder="请输入密码"
          />
          <a style="width: 400px">去绑定</a>

          <el-button class="brn" type="primary" round>去绑定</el-button>
          <el-button v-if="false" class="brn" type="primary" round>去绑定</el-button>
        </el-form-item>
        <el-form-item label="登录密码:">
          <el-input
            v-model="confirmPassword"
            style="width: 400px"
            type="password"
            placeholder="请再次输入密码"
          />
          <el-button class="brn" type="primary" size="large" style="width: 180px;margin-left: 200px;">去修改</el-button>
        </el-form-item>
      </el-form>
    </el-col>
  </el-row>

</template>

<script setup></script>

<style scope lang="scss">
.brn {
  margin-left: 20px;
}
</style>