From 451674dd4dd784fa0725b4ba052d94449d892712 Mon Sep 17 00:00:00 2001
From: jhzh <1628036192@qq.com>
Date: Sat, 28 Sep 2024 15:12:16 +0800
Subject: [PATCH] Merge branch '6-29印度股票' of http://124.156.157.155:8060/r/dg/dabao_admin into 6-29印度股票
---
src/views/capital/rechargelist.vue | 60 ++++++++++++++++++++++++++++++------------------------------
1 files changed, 30 insertions(+), 30 deletions(-)
diff --git a/src/views/capital/rechargelist.vue b/src/views/capital/rechargelist.vue
index 774b9c9..7b082ed 100644
--- a/src/views/capital/rechargelist.vue
+++ b/src/views/capital/rechargelist.vue
@@ -65,9 +65,9 @@
@click=";(queryParam.pageNum = 1), getlist()"
>查询
</a-button>
- <a-button type="primary" icon="plus" style="margin-left: 8px" @click="addOrderdialog = true"
+ <!-- <a-button type="primary" icon="plus" style="margin-left: 8px" @click="addOrderdialog = true"
>创建充值订单
- </a-button>
+ </a-button> -->
<a-button type="primary" icon="vertical-align-bottom" style="margin-left: 8px" @click="getexport"
>导出搜索数据
</a-button>
@@ -243,28 +243,28 @@
dataIndex: 'orderSn',
align: 'center',
},
- {
- title: '账户类型',
- dataIndex: 'assetsType',
- align: 'center',
- customRender: (text, row, index) => {
- switch (text) {
- case 'US':
- return '美股账户'
- case 'MAS':
- return '马股账户'
- default:
- return '未知账户'
- }
- },
- },
- {
- title: '上传凭证',
- dataIndex: 'img',
- align: 'center',
- width: 180,
- scopedSlots: { customRender: 'img' },
- },
+ // {
+ // title: '账户类型',
+ // dataIndex: 'assetsType',
+ // align: 'center',
+ // customRender: (text, row, index) => {
+ // switch (text) {
+ // case 'US':
+ // return '美股账户'
+ // case 'MAS':
+ // return '马股账户'
+ // default:
+ // return '未知账户'
+ // }
+ // },
+ // },
+ // {
+ // title: '上传凭证',
+ // dataIndex: 'img',
+ // align: 'center',
+ // width: 180,
+ // scopedSlots: { customRender: 'img' },
+ // },
{
title: '客户电话',
dataIndex: 'userPhone',
@@ -378,11 +378,11 @@
.then((res) => {
if (res.status == 0) {
this.addOrderdialog = false
- this.$message.success({ content: res.msg, duration: 2 })
+ this.$message.success(res.msg)
form.resetFields()
this.getlist()
} else {
- this.$message.error({ content: res.msg })
+ this.$message.error(res.msg)
}
this.addOrderDialogloading = false
})
@@ -408,11 +408,11 @@
.then((res) => {
if (res.status == 0) {
this.editOrderdialog = false
- this.$message.success({ content: res.msg, duration: 2 })
+ this.$message.success(res.msg)
form.resetFields()
this.getlist()
} else {
- this.$message.error({ content: res.msg })
+ this.$message.error(res.msg)
}
this.editOrderDialogloading = false
})
@@ -440,10 +440,10 @@
}
rechargedel(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)
}
})
},
--
Gitblit v1.9.3