| | |
| | | { |
| | | title: '通道类型', |
| | | dataIndex: 'channelType', |
| | | align: 'center' |
| | | align: 'center', |
| | | }, |
| | | { |
| | | title: '图片', |
| | | dataIndex: 'channelImg', |
| | | align: 'center', |
| | | scopedSlots: { customRender: 'channelImg' } |
| | | scopedSlots: { customRender: 'channelImg' }, |
| | | }, |
| | | { |
| | | title: '通道名字', |
| | | dataIndex: 'channelName', |
| | | align: 'center' |
| | | align: 'center', |
| | | }, |
| | | { |
| | | title: '账号', |
| | | dataIndex: 'channelAccount', |
| | | align: 'center' |
| | | align: 'center', |
| | | }, |
| | | { |
| | | title: '描述', |
| | | dataIndex: 'channelDesc', |
| | | align: 'center' |
| | | align: 'center', |
| | | }, |
| | | { |
| | | title: '最小充值金额', |
| | | dataIndex: 'channelMinLimit', |
| | | align: 'center' |
| | | align: 'center', |
| | | }, |
| | | { |
| | | title: '最大充值金额', |
| | | dataIndex: 'channelMaxLimit', |
| | | align: 'center' |
| | | align: 'center', |
| | | }, |
| | | { |
| | | title: '是否显示', |
| | | dataIndex: 'isShow', |
| | | align: 'center', |
| | | scopedSlots: { customRender: 'isShow' } |
| | | scopedSlots: { customRender: 'isShow' }, |
| | | }, |
| | | { |
| | | title: '操作', |
| | |
| | | align: 'center', |
| | | fixed: 'right', |
| | | width: 200, |
| | | scopedSlots: { customRender: 'action' } |
| | | } |
| | | scopedSlots: { customRender: 'action' }, |
| | | }, |
| | | ], |
| | | // 表头 |
| | | pagination: { |
| | |
| | | pageSizeOptions: ['10', '20', '50', '100'], // 每页中显示的数据 |
| | | onShowSizeChange: (current, pageSize) => this.onSizeChange(current, pageSize), // 改变每页数量时更新显示 |
| | | onChange: (page, pageSize) => this.onPageChange(page, pageSize), // 点击页码事件 |
| | | showTotal: (total) => `共有 ${total} 条数据` // 分页中显示总的数据 |
| | | showTotal: (total) => `共有 ${total} 条数据`, // 分页中显示总的数据 |
| | | }, |
| | | loading: false, |
| | | queryParam: { |
| | | pageNum: 1, |
| | | pageSize: 10, |
| | | channelType: '' |
| | | channelType: '', |
| | | }, |
| | | datalist: [], |
| | | |
| | |
| | | addUserform: this.$form.createForm(this), |
| | | labelCol: { |
| | | xs: { span: 24 }, |
| | | sm: { span: 6 } |
| | | sm: { span: 6 }, |
| | | }, |
| | | wrapperCol: { |
| | | xs: { span: 24 }, |
| | | sm: { span: 18 } |
| | | sm: { span: 18 }, |
| | | }, |
| | | fields: [ |
| | | 'channelType', |
| | |
| | | 'assetsType', |
| | | 'channelImg', |
| | | 'code', |
| | | 'formUrl' |
| | | 'formUrl', |
| | | ], |
| | | currentDetails: '', |
| | | channelImg: '', |
| | | imgloading: false |
| | | imgloading: false, |
| | | } |
| | | }, |
| | | created () { |
| | |
| | | content: '确认删除该支付渠道?此操作不可恢复', |
| | | onOk () { |
| | | var data = { |
| | | cId: val |
| | | cId: val, |
| | | } |
| | | 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) |
| | | } |
| | | }) |
| | | }, |
| | | onCancel () { |
| | | console.log('Cancel') |
| | | } |
| | | }, |
| | | }) |
| | | }, |
| | | customRequest (data) { |
| | |
| | | if (res.status == 0) { |
| | | this.channelImg = res.data.url |
| | | this.addUserform.setFieldsValue({ |
| | | channelImg: res.data.url |
| | | channelImg: res.data.url, |
| | | }) |
| | | } else { |
| | | this.$message.error({ content: '上传失败请检查图片类型!' }) |
| | |
| | | form.resetFields() |
| | | this.getlist() |
| | | } else { |
| | | this.$message.error({ content: res.msg }) |
| | | this.$message.error(res.msg) |
| | | } |
| | | this.addUserDialogloading = false |
| | | }) |
| | |
| | | form.resetFields() |
| | | this.getlist() |
| | | } else { |
| | | this.$message.error({ content: res.msg }) |
| | | this.$message.error(res.msg) |
| | | } |
| | | this.addUserDialogloading = false |
| | | }) |
| | |
| | | this.queryParam = { |
| | | pageNum: 1, |
| | | pageSize: 10, |
| | | channelType: '' |
| | | channelType: '', |
| | | } |
| | | }, |
| | | getlist () { |
| | |
| | | this.queryParam.pageNum = current |
| | | this.queryParam.pageSize = pageSize |
| | | this.getlist() |
| | | } |
| | | } |
| | | }, |
| | | }, |
| | | } |
| | | </script> |
| | | <style scoped> |