From 417c8c4716f8dab251c9877665f256c1be58acbb Mon Sep 17 00:00:00 2001
From: jhzh <1628036192@qq.com>
Date: Fri, 11 Oct 2024 17:20:16 +0800
Subject: [PATCH] 11
---
src/views/allsetting/paysetting.vue | 25 +++++++------------------
1 files changed, 7 insertions(+), 18 deletions(-)
diff --git a/src/views/allsetting/paysetting.vue b/src/views/allsetting/paysetting.vue
index fa5a7e9..f44ec15 100644
--- a/src/views/allsetting/paysetting.vue
+++ b/src/views/allsetting/paysetting.vue
@@ -95,23 +95,12 @@
placeholder="请选择"
v-decorator="['assetsType', { rules: [{ required: true, message: '请选择' }] }]"
>
- <a-select-option value="US">美国</a-select-option>
- <a-select-option value="MAS">马来西亚</a-select-option>
+ <a-select-option value="IN">印度</a-select-option>
+ <!-- <a-select-option value="MAS">马来西亚</a-select-option>
+ <a-select-option value="HK">香港</a-select-option> -->
</a-select>
</a-form-item>
</a-col>
- <!-- <a-col :md="12" :lg="12" :sm="12">
- <a-form-item label="通道类型" :labelCol="labelCol" :wrapperCol="wrapperCol">
- <a-select
- placeholder="请选择通道类型"
- v-decorator="['ctype', { rules: [{ required: true, message: '请选择通道类型' }] }]"
- >
- <a-select-option :value="0">支付宝</a-select-option>
- <a-select-option :value="1">公户转账</a-select-option>
- <a-select-option :value="2">其他</a-select-option>
- </a-select>
- </a-form-item>
- </a-col> -->
</a-row>
<a-row :gutter="48">
<a-col :md="12" :lg="12" :sm="12">
@@ -352,10 +341,10 @@
}
paydel(data).then((res) => {
if (res.status == 0) {
- that.$message.success({ content: res.msg, duration: 2 })
+ that.$message.success(res.msg)
that.getlist()
} else {
- that.$message.error({ content: res.msg })
+ that.$message.error(res.msg)
}
})
},
@@ -408,7 +397,7 @@
form.resetFields()
this.getlist()
} else {
- this.$message.error({ content: res.msg })
+ this.$message.error(res.msg)
}
this.addUserDialogloading = false
})
@@ -422,7 +411,7 @@
form.resetFields()
this.getlist()
} else {
- this.$message.error({ content: res.msg })
+ this.$message.error(res.msg)
}
this.addUserDialogloading = false
})
--
Gitblit v1.9.3