From e9d3edf1ab0973042b253be238c3bb6e7ac60c82 Mon Sep 17 00:00:00 2001
From: 李 <344137771@qq.com>
Date: Wed, 03 Jun 2026 16:10:37 +0800
Subject: [PATCH] 1
---
src/views/modules/user/mang-fix-update-message.vue | 48 +-----------------------------------------------
1 files changed, 1 insertions(+), 47 deletions(-)
diff --git a/src/views/modules/user/mang-fix-update-message.vue b/src/views/modules/user/mang-fix-update-message.vue
index 459c8b5..975acb8 100644
--- a/src/views/modules/user/mang-fix-update-message.vue
+++ b/src/views/modules/user/mang-fix-update-message.vue
@@ -109,7 +109,6 @@
placeholder="请输入登录人谷歌验证码"
></el-input>
</el-form-item>
-
<el-form-item
v-if="isShow == 6"
label="限制流水"
@@ -121,20 +120,7 @@
placeholder="0.0"
></el-input>
</el-form-item>
-
- <el-form-item label-width="120px"
- v-if="isShow == 13"
- label="交割合约赢率"
- prop="futuresMostPrfitLevel"
- >
- <el-input
- type="number"
- v-model="dataForm.futuresMostPrfitLevel"
- placeholder="0.0"
- ></el-input>
- </el-form-item>
-
- <div v-if="isShow == 6 || isShow == 13" style="margin: 10px; color: #278927">
+ <div v-if="isShow == 6" style="margin: 10px; color: #278927">
增加请输入正数,减少请输入负数
</div>
<!-- <el-form-item label="原密码" prop="password">
@@ -187,7 +173,6 @@
googleAuthCode: "", //登录人谷歌验证器
newSafeword: "", //新资金密码
withdrawLimitAmount: "", //限制提现流水
- futuresMostPrfitLevel: "", //交割合约赢率
password: "",
newPassword: "",
confirmPassword: "",
@@ -274,7 +259,6 @@
this.title = m;
this.isShow = val;
this.dataForm.withdrawLimitAmount = this.row.withdrawLimitAmount;
- this.dataForm.futuresMostPrfitLevel = this.row.futuresMostPrfitLevel;
this.visible = true;
this.options.value = this.options[0].value;
this.optionsTwo.value = this.optionsTwo[0].value;
@@ -309,7 +293,6 @@
googleAuthCode: "", //登录人谷歌验证器
newSafeword: "", //新资金密码
withdrawLimitAmount: "", //限制提现流水
- futuresMostPrfitLevel: "", //交割合约赢率
password: "",
newPassword: "",
confirmPassword: "",
@@ -531,35 +514,6 @@
if (data.code == 0) {
this.$message({
message: "赠送成功",
- type: "success",
- duration: 1000,
- onClose: () => {
- this.visible = false;
- this.$nextTick(() => {
- this.$emit("refreshDataList");
- });
- },
- });
- } else {
- this.$message({
- message: data.msg,
- type: "error",
- });
- }
- });
- }else if (this.isShow == 13) {
- //设置交割合约赢率
- this.$http({
- url: this.$http.adornUrl("/user/updateFuturesMostPrfitLevel"),
- method: "post",
- data: this.$http.adornData({
- futuresMostPrfitLevel: this.dataForm.futuresMostPrfitLevel,
- userId: this.userId,
- }),
- }).then(({ data }) => {
- if (data.code == 0) {
- this.$message({
- message: "修改成功",
type: "success",
duration: 1000,
onClose: () => {
--
Gitblit v1.9.3