index.js 3.33 KB
import filter from '@/utils/filter.js'
class data extends filter {
  constructor() {
    super()
  }
  columns () {
    return [
      {
        prop: "recType",
        label: "行政区",
        width: '90'
      },
      {
        label: '增量数据接入情况',
        children: [
          {
            prop: 'busniessCount',
            label: '本期接入业务量(笔)',
          },
          {
            prop: 'receiveCount',
            label: '本期接入业务量(次)',
          },
          {
            prop: 'recordTotal',
            label: '本期登簿日志反映出的登簿量(条)',
          },
          {
            label: '本期接入质量评价',
            children: [
              {
                prop: 'noReportLog',
                label: '未上报登簿日志县区数(个)',
              },
              {
                prop: 'noReportArea',
                label: '未上报数据县区数(个)',
              },
              {
                label: '本期未成功接入登簿量及在登簿日志量中的占比',
                children: [
                  {
                    prop: 'failReportCount',
                    label: '未成功接入登簿量(条)',
                    width: '120'
                  },
                  {
                    prop: 'failReportRatio',
                    label: '占比',
                    width: '60'
                  }
                ]
              },
              {
                label: '分时段接入登簿量及与本期接入登簿量的占比',
                children: [
                  {
                    label: '24小时内接入登簿量(占比%)',
                    width: '120',
                    children: [
                      {
                        prop: 'failReportCount24h',
                      },
                      {
                        prop: 'failReportRatio24h',
                      }
                    ]
                  },
                  {
                    label: '48小时内接入登簿量(占比%)',
                    width: '120',
                    children: [
                      {
                        prop: 'failReportCount24To48h',
                      },
                      {
                        prop: 'failReportRatio24To48h',
                      }
                    ]
                  },
                  {
                    label: '超过48小时接入登簿量(占比%)',
                    width: '120',
                    children: [
                      {
                        prop: 'failReportCount48h',
                      },
                      {
                        prop: 'failReportRatio48h',
                      }
                    ]
                  }
                ]
              },
              {
                prop: 'xxx',
                label: '网络环境异常情况',
              },
              {
                prop: 'xxx',
                label: '非登簿环节接入的区县数',
              },
              {
                prop: 'xxx',
                label: '非自动方式接入的区县数',
              },
              {
                prop: 'rate',
                label: '综合评分'
              }
            ]
          }
        ]
      }
    ]
  }
}
export default new data()