소스 검색

静态页面

xcx 4 년 전
부모
커밋
df033d2686
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3
    3
      src/pages/WoDe/TiXian/index.vue

+ 3
- 3
src/pages/WoDe/TiXian/index.vue 파일 보기

@@ -6,7 +6,7 @@
6 6
         <div class="Form">
7 7
           <input type="number" placeholder="请输入提现金额" v-model="Amount">
8 8
         </div>
9
-        <span style="color: #999">提现金额不能低于100元,1元=100牛币</span>
9
+        <span style="color: #999">提现金额不能低于1元,1元=100牛币</span>
10 10
         <span style="color: #999">未设置过提现密码?<router-link :to="{ name: 'EditTiXianMiMa' }">设置提现密码</router-link></span>
11 11
         <div class="Btn">
12 12
           <a @click="ToShowPasswordPopup">提现</a>
@@ -72,8 +72,8 @@ export default {
72 72
         this.Toast('提现金额不能为空')
73 73
         return false
74 74
       }
75
-      if (this.Amount - 0 < 100) {
76
-        this.Toast('提现金额不能低于100元')
75
+      if (this.Amount - 0 < 1) {
76
+        this.Toast('提现金额不能低于1元')
77 77
         return false
78 78
       }
79 79
       if (this.Amount - 0 > (this.UserInfo.account.cash - 0) / 100) {