大宝管理后台代码
ne1
zzzz
2024-04-07 69ff731fbacf2f2ae16f98a355506bfeb01dd567
src/views/allsetting/paysetting.vue
@@ -18,7 +18,7 @@
                    icon="search"
                    style="margin-left: 8px"
                    @click=";(queryParam.pageNum = 1), getlist()"
                  >查询</a-button
                    >查询</a-button
                  >
                  <a-button
                    type="primary"
@@ -234,50 +234,50 @@
import pick from 'lodash.pick'
export default {
  name: 'Basecurrency',
  data () {
  data() {
    return {
      columns: [
        {
          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,41 +330,41 @@
        'assetsType',
        'channelImg',
        'code',
        'formUrl'
        'formUrl',
      ],
      currentDetails: '',
      channelImg: '',
      imgloading: false
      imgloading: false,
    }
  },
  created () {
  created() {
    this.getlist()
  },
  methods: {
    deletebaseCurrency (val) {
    deletebaseCurrency(val) {
      var that = this
      this.$confirm({
        title: '提示',
        content: '确认删除该支付渠道?此操作不可恢复',
        onOk () {
        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 () {
        onCancel() {
          console.log('Cancel')
        }
        },
      })
    },
    customRequest (data) {
    customRequest(data) {
      this.imgloading = true
      var formData = new FormData()
      formData.append('upload_file', data.file)
@@ -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: '上传失败请检查图片类型!' })
@@ -380,20 +380,20 @@
        this.imgloading = false
      })
    },
    geteditbaseCurrency (val) {
    geteditbaseCurrency(val) {
      this.currentDetails = val
      this.channelImg = val.channelImg
      this.addUserdialog = true
      this.fields.forEach((v) => this.addUserform.getFieldDecorator(v))
      this.addUserform.setFieldsValue(pick(val, this.fields))
    },
    CanceladdUserdialog () {
    CanceladdUserdialog() {
      this.addUserdialog = false
      const form = this.$refs.addUserform.form
      form.resetFields()
      this.channelImg = ''
    },
    OkaddUserdialog () {
    OkaddUserdialog() {
      const form = this.$refs.addUserform.form
      form.validateFields((errors, values) => {
        if (!errors) {
@@ -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
            })
@@ -431,14 +431,14 @@
        }
      })
    },
    getqueryParam () {
    getqueryParam() {
      this.queryParam = {
        pageNum: 1,
        pageSize: 10,
        channelType: ''
        channelType: '',
      }
    },
    getlist () {
    getlist() {
      this.loading = true
      paylist(this.queryParam).then((res) => {
        this.datalist = res.data.list
@@ -446,16 +446,16 @@
        this.loading = false
      })
    },
    onPageChange (page, pageSize) {
    onPageChange(page, pageSize) {
      this.queryParam.pageNum = page
      this.getlist()
    },
    onSizeChange (current, pageSize) {
    onSizeChange(current, pageSize) {
      this.queryParam.pageNum = current
      this.queryParam.pageSize = pageSize
      this.getlist()
    }
  }
    },
  },
}
</script>
<style scoped>