hailu
2022-08-15 5162ff1e7eb018ba9a4aad4e06573df2ac59a32a
文字
1个文件已修改
21 ■■■■■ 已修改文件
src/view/rentExchangeZF/rentExchangeCompanyZF.vue 21 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/view/rentExchangeZF/rentExchangeCompanyZF.vue
@@ -1570,7 +1570,7 @@
            axisPointer: {type: 'cross'}
          },
          title: {
            text: '一般公共预算收支(亿元)',
            text: '区域负债(亿元)',
            x: 'center', //水平安放位置,默认为'left',可选为:'center' | 'left' | 'right' | {number}(x坐标,单位px)
            // y: 'top', //垂直安放位置,默认为top,可选为:'top' | 'bottom' | 'center' | {number}(y坐标,单位px)
            textAlign: 'left',
@@ -2455,9 +2455,9 @@
        // let option6 = JSON.parse(JSON.stringify(this.option))
        // let option7 = JSON.parse(JSON.stringify(this.option))
        // let option8 = JSON.parse(JSON.stringify(this.option))
        option1.title.text = '租赁资产风险分布图 - 按租赁项目数量'
        option1.title.text = '租赁资产风险分布图 - 按承租人数量'
        option2.title.text = '租赁资产风险分布图 - 按资产余额(单位:元)'
        option3.title.text = '租赁资产行业分布图 - 按租赁项目数量'
        option3.title.text = '租赁资产行业分布图 - 按承租人数量'
        option4.title.text = '租赁资产行业分布图 - 按投放金额(单位:元)'
        option5.title.text = '租赁资产行业分布图 - 按资产余额(单位:元)'
        // option6.title.text = '租赁资产地区分布图 - 按租赁项目数量'
@@ -2654,7 +2654,8 @@
        align: 'right',
        minWidth: 200,
        render: (h, params) => {
          return h('span', this.CustomMethods.numTo$(params.row['2020']))
          // return h('span', this.CustomMethods.numTo$(params.row['2020']))
          return h('span', params.row[2020] ? this.CustomMethods.numTo$(params.row[2020]) : '--')
        },
      })
      columns.push({
@@ -2663,7 +2664,9 @@
        align: 'right',
        minWidth: 200,
        render: (h, params) => {
          return h('span', this.CustomMethods.numTo$(params.row['2019']))
          // return h('span', this.CustomMethods.numTo$(params.row['2019']))
          return h('span', params.row[2019] ? this.CustomMethods.numTo$(params.row[2019]) : '--')
        },
      })
      columns.push({
@@ -2672,7 +2675,9 @@
        align: 'right',
        minWidth: 200,
        render: (h, params) => {
          return h('span', this.CustomMethods.numTo$(params.row['2018']))
          // return h('span', this.CustomMethods.numTo$(params.row['2018']))
          return h('span', params.row[2018] ? this.CustomMethods.numTo$(params.row[2018]) : '--')
        },
      })
      columns.push({
@@ -2682,7 +2687,9 @@
        // slot: 'contentparams',
        minWidth: 200,
        render: (h, params) => {
          return h('span', this.CustomMethods.numTo$(params.row['2017']))
          // return h('span', this.CustomMethods.numTo$(params.row['2017']))
          return h('span', params.row[2017] ? this.CustomMethods.numTo$(params.row[2017]) : '--')
        },
      })
      return columns