index.js 1.92 KB
import filter from '@/utils/filter.js'
let vm = null
const sendThis = (_this) => {
  vm = _this
}
class data extends filter {
  constructor() {
    super()
  }
  columns () {
    return [
      {
        label: '序号',
        type: 'index',
        width: '50',
        render: (h, scope) => {
          return (
            <div>
              {(vm.pageData.currentPage - 1) * vm.pageData.pageSize + scope.$index + 1}
            </div>
          )
        }
      },
      {
        label: '汇交状态',
        width: '110',
        render: (h, scope) => {
          return (
            <div>
              <span v-show={scope.row.exchangeState == 0} class='warehousing'>未上报</span>
              <span v-show={scope.row.exchangeState == 1} class='warehousing'>上报成功未响应</span>
              <span v-show={scope.row.exchangeState == 2} class='warehousing'>上报失败</span>
              <span v-show={scope.row.exchangeState == 3} class='adopt'>上报成功响应成功</span>
              <span v-show={scope.row.exchangeState == 4} class='warehousing'>响应失败</span>
            </div>
          )
        }
      },
      {
        prop: "areacode",
        label: "行政区代码",
        width: 80,
      },
      {
        prop: "areaName",
        label: "行政区名称",
        width: 90,
      },
      {
        prop: "bizMsgid",
        label: "业务报文ID",
      },
      {
        prop: "createdate",
        label: "创建时间",
      },
      {
        prop: "recflowid",
        label: "业务流水号",
      },
      {
        prop: "estatenum",
        label: "不动产单元号",
        width: 240,
      },
      {
        prop: "rectype",
        label: "业务编码",
      },
      {
        prop: "rectypeName",
        label: "业务名称",
      },
      {
        prop: "uploadtime",
        label: "汇交时间",
      }
    ]
  }
}
let datas = new data()
export {
  datas,
  sendThis
}