大宝管理后台代码
ne1
zzzz
2024-04-07 69ff731fbacf2f2ae16f98a355506bfeb01dd567
src/views/allsetting/paysetting.vue
@@ -240,44 +240,44 @@
        {
          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: '操作',
@@ -285,8 +285,8 @@
          align: 'center',
          fixed: 'right',
          width: 200,
          scopedSlots: { customRender: 'action' }
        }
          scopedSlots: { customRender: 'action' },
        },
      ],
      // 表头
      pagination: {
@@ -296,13 +296,13 @@
        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: [],
@@ -311,11 +311,11 @@
      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',
@@ -330,11 +330,11 @@
        'assetsType',
        'channelImg',
        'code',
        'formUrl'
        'formUrl',
      ],
      currentDetails: '',
      channelImg: '',
      imgloading: false
      imgloading: false,
    }
  },
  created () {
@@ -348,20 +348,20 @@
        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) {
@@ -372,7 +372,7 @@
        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: '上传失败请检查图片类型!' })
@@ -408,7 +408,7 @@
                form.resetFields()
                this.getlist()
              } else {
                this.$message.error({ content: res.msg })
                this.$message.error(res.msg)
              }
              this.addUserDialogloading = false
            })
@@ -422,7 +422,7 @@
                form.resetFields()
                this.getlist()
              } else {
                this.$message.error({ content: res.msg })
                this.$message.error(res.msg)
              }
              this.addUserDialogloading = false
            })
@@ -435,7 +435,7 @@
      this.queryParam = {
        pageNum: 1,
        pageSize: 10,
        channelType: ''
        channelType: '',
      }
    },
    getlist () {
@@ -454,8 +454,8 @@
      this.queryParam.pageNum = current
      this.queryParam.pageSize = pageSize
      this.getlist()
    }
  }
    },
  },
}
</script>
<style scoped>