Browse Source

解决了登陆页面会请求一次 404的bug

pixel 4 years ago
parent
commit
05d067b8b7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      web/src/view/login/login.vue

+ 1 - 1
web/src/view/login/login.vue

@@ -25,7 +25,7 @@
             placeholder="请输入验证码"
             maxlength="10"
           />
-          <img :src="path + picPath" alt="请输入验证码" @click="loginVefify()" class="vPic">
+          <img v-if="picPath" :src="path + picPath" alt="请输入验证码" @click="loginVefify()" class="vPic">
         </el-form-item>
         <el-form-item>
           <el-button @click="submitForm" style="width:100%">登 录</el-button>