| | |
| | | |
| | | <el-form-item label=""> |
| | | <el-form-item label="单次BTC提现最低金额"></el-form-item> |
| | | <el-input v-model="dataForm.withdraw_limit_btc" placeholder="USDT"></el-input> |
| | | <el-input v-model="dataForm.withdraw_limit_btc" placeholder="BTC"></el-input> |
| | | </el-form-item> |
| | | |
| | | <el-form-item label=""> |
| | | <el-form-item label="单次ETH提现最低金额"></el-form-item> |
| | | <el-input v-model="dataForm.withdraw_limit_eth" placeholder="USDT"></el-input> |
| | | <el-input v-model="dataForm.withdraw_limit_eth" placeholder="ETH"></el-input> |
| | | </el-form-item> |
| | | |
| | | <el-form-item label=""> |
| | | <el-form-item label="单次USDC提现最低金额"></el-form-item> |
| | | <el-input v-model="dataForm.withdraw_limit_usdc" placeholder="USDC"></el-input> |
| | | </el-form-item> |
| | | |
| | | <el-form-item label=""> |
| | | <el-form-item label="每日可提现次数,若为0或空则不做限制"></el-form-item> |
| | | <el-input v-model="dataForm.withdraw_limit_num" placeholder="USDT"></el-input> |
| | | <el-input v-model="dataForm.withdraw_limit_num" placeholder=""></el-input> |
| | | </el-form-item> |
| | | |
| | | <el-form-item label=""> |
| | |
| | | <!-- 确认弹窗-start --> |
| | | <el-dialog title="确认修改" :visible.sync="dialogFormVisible" :append-to-body="true" @close = 'handClose'> |
| | | <el-form :model="dataForm2" ref="dataForm2" @keyup.enter.native="dataFormSubmit()" label-width="80px"> |
| | | <el-form-item label="登录人资金密码" :label-width="formLabelWidth" prop="loginSafeword"> |
| | | <!-- <el-form-item label="登录人资金密码" :label-width="formLabelWidth" prop="loginSafeword"> |
| | | <el-input v-model="dataForm2.loginSafeword" type="password" placeholder="登录人资金密码" autocomplete="off"></el-input> |
| | | </el-form-item> |
| | | <el-form-item label="超级谷歌验证码" :label-width="formLabelWidth" prop="superGoogleAuthCode"> |
| | | <el-input v-model="dataForm2.superGoogleAuthCode" placeholder="超级谷歌验证码" autocomplete="off"></el-input> |
| | | </el-form-item> |
| | | </el-form-item> --> |
| | | </el-form> |
| | | <div slot="footer" class="dialog-footer"> |
| | | <el-button @click="dialogFormVisible = false">取 消</el-button> |
| | |
| | | data () { |
| | | return { |
| | | form: { |
| | | loginSafeword : '', //登录人资金密码 |
| | | superGoogleAuthCode: '' //超级管理员谷歌验证码 |
| | | // loginSafeword : '', //登录人资金密码 |
| | | // superGoogleAuthCode: '' //超级管理员谷歌验证码 |
| | | }, |
| | | formLabelWidth: '120px', |
| | | dialogFormVisible:false, |
| | |
| | | "withdraw_limit_dapp":this.dataForm.withdraw_limit_dapp,//单次USDT提现限额 |
| | | "withdraw_limit_btc":this.dataForm.withdraw_limit_btc,//单次BTC提现最低金额 |
| | | "withdraw_limit_eth":this.dataForm.withdraw_limit_eth,//单次ETH提现最低金额 |
| | | "withdraw_limit_usdc":this.dataForm.withdraw_limit_usdc,//单次ETH提现最低金额 |
| | | "withdraw_limit_num":this.dataForm.withdraw_limit_num,//每日可提现次数,若为0或空则不做限制 |
| | | "withdraw_limit_time_min":this.dataForm.withdraw_limit_time_min||"0", |
| | | "withdraw_limit_time_max":this.dataForm.withdraw_limit_time_max||'0',//每日可提现时间段,若为空则不做限制 |
| | |
| | | "online_username_black_menu":this.dataForm.online_username_black_menu,//客服系统黑名单 |
| | | "stop_user_internet":this.dataForm.stop_user_internet,//前端用户黑名单 |
| | | "filter_ip":this.dataForm.filter_ip,//IP白名单 |
| | | "login_safeword": encrypt(this.dataForm2.loginSafeword), //safePassword 资金密码 |
| | | "super_google_auth_code": this.dataForm2.superGoogleAuthCode, //superGoogleAuthCode 超级管理员谷歌验证码 false |
| | | // "login_safeword": encrypt(this.dataForm2.loginSafeword), //safePassword 资金密码 |
| | | // "super_google_auth_code": this.dataForm2.superGoogleAuthCode, //superGoogleAuthCode 超级管理员谷歌验证码 false |
| | | } |
| | | ) |
| | | ) |