main.js 645 B

12345678910111213
  1. export const columns = [
  2. { label: "序号", props: "index", width: "60" },
  3. { label: "政策编号", props: "businessNo" },
  4. { label: "政策名称", props: "name" },
  5. { label: "政策概要", props: "abstractContent" },
  6. { label: "政策类别", props: "zcType", width: "100" },
  7. { label: "政策等级", props: "zcLevel", width: "100" },
  8. { label: "发布人", props: "createName" },
  9. { label: "发布单位", props: "companyName" },
  10. { label: "联系方式", props: "contactPhone" },
  11. { label: "发布日期", props: "createTime", width: "120" },
  12. { label: "入库类别", props: "inWhType", width: "100" }
  13. ]