瀏覽代碼

静态页面

xcx 4 年之前
父節點
當前提交
df033d2686
共有 1 個檔案被更改,包括 3 行新增3 行删除
  1. 3
    3
      src/pages/WoDe/TiXian/index.vue

+ 3
- 3
src/pages/WoDe/TiXian/index.vue 查看文件

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