大宝管理后台代码
dcc
2024-05-14 793cefdfcaabc838d2a55aa98f18d00b308e364d
src/views/userlist/index.vue
@@ -200,14 +200,15 @@
          dataIndex: 'realName',
          align: 'center'
        },
        {
          title: '总资金',
          dataIndex: 'userAmt',
          align: 'center',
          customRender: (text, row, index) => {
            return text.toFixed(2)
          }
        },
        // {
        //   title: '总资金',
        //   dataIndex: 'userAmt',
        //   align: 'center',
        //   customRender: (text, row, index) => {
        //     return text ? text.toFixed(2) : '0'
        //     // return text.toFixed(2)
        //   },
        // },
        {
          title: '认证信息',
          dataIndex: 'isActive',
@@ -274,7 +275,9 @@
      console.log(record.id)
      getMoney({ userId: record.id }).then((res) => {
        if (res.status === 0) {
          const arr = res.data.filter((item) => item.accectType !== 'ALL')
          console.log(res.data)
          let arr = res.data.filter((item) => item.accectType !== 'ALL')
          arr = res.data.filter((item) => item.accectType == 'US' || item.accectType == 'IN')
          this.activeArr = arr
          this.$refs.editCapitaluserdialog.getEditorder(record)
        }
@@ -292,10 +295,10 @@
          }
          userdelete(data).then((res) => {
            if (res.status == 0) {
              that.$message.success({ content: res.msg, duration: 2 })
              that.$message.success(res.msg)
              that.getinit()
            } else {
              that.$message.error({ content: res.msg })
              that.$message.error(res.msg)
            }
          })
        },
@@ -341,8 +344,9 @@
      this.getuserList()
    },
    onSizeChange (current, pageSize) {
      // console.log(current, pageSize)
      this.queryParam.pageNum = current
      this.pagination.current = page
      // this.pagination.current = page
      this.queryParam.pageSize = pageSize
      this.getuserList()
    },