//高新 const highTechColumns = [ { title: "序号", dataIndex: "key", key: "key", }, { title: "派单省份", dataIndex: "provinceName", key: "provinceName", }, { title: "负责部门", dataIndex: "thchDepName", key: "thchDepName", }, { title: "项目类别", dataIndex: "projectStatus", key: "projectStatus", }, { title: "库存数(个)", dataIndex: "stockCount", key: "stockCount", }, { title: "派单数(个)", dataIndex: "distributeCount", key: "distributeCount", }, { title: "完成数", dataIndex: "completeCount", key: "completeCount", }, { title: "驳回数", dataIndex: "rejectCount", key: "rejectCount", }, { title: "签单额(万元)", dataIndex: "amountCount", key: "amountCount", }, { title: "成本(万元)", dataIndex: "costAmount", key: "costAmount", }, { title: "利润(万元)", dataIndex: "profit", key: "profit", }, ]; //发明专利 const invention = [ { title: "序号", dataIndex: "key", key: "key", }, { title: "派单省份", dataIndex: "provinceName", key: "provinceName", }, // { // title: "订单部门", // dataIndex: "orderNo", // key: "orderNo", // }, { title: "负责部门", dataIndex: "thchDepName", key: "thchDepName", }, { title: "项目类别", dataIndex: "projectStatus", key: "projectStatus", }, { title: "库存数(个)", dataIndex: "stockCount", key: "stockCount", }, { title: "派单数(个)", dataIndex: "distributeCount", key: "distributeCount", }, { title: "受理数(个)", dataIndex: "acceptCount", key: "acceptCount", }, { title: "完结总数", dataIndex: "completeCount", key: "completeCount", }, { title: "授权数", dataIndex: "authorizeCount", key: "authorizeCount", }, { title: "驳回数", dataIndex: "rejectCount", key: "rejectCount", }, { title: "签单额(万元)", dataIndex: "amountCount", key: "amountCount", }, { title: "成本(万元)", dataIndex: "costAmount", key: "costAmount", }, { title: "利润(万元)", dataIndex: "profit", key: "profit", }, ]; //实用新型 const utilityModel = [ { title: "序号", dataIndex: "key", key: "key", }, { title: "派单省份", dataIndex: "provinceName", key: "provinceName", }, { title: "负责部门", dataIndex: "thchDepName", key: "thchDepName", }, { title: "项目类别", dataIndex: "projectStatus", key: "projectStatus", }, { title: "库存数(个)", dataIndex: "stockCount", key: "stockCount", }, { title: "派单数(个)", dataIndex: "distributeCount", key: "distributeCount", }, { title: "受理数(个)", dataIndex: "acceptCount", key: "acceptCount", }, { title: "完结总数", dataIndex: "completeCount", key: "completeCount", }, { title: "授权数", dataIndex: "authorizeCount", key: "authorizeCount", }, { title: "驳回数", dataIndex: "rejectCount", key: "rejectCount", }, { title: "签单额(万元)", dataIndex: "amountCount", key: "amountCount", }, { title: "成本(万元)", dataIndex: "costAmount", key: "costAmount", }, { title: "利润(万元)", dataIndex: "profit", key: "profit", }, ]; //软著 const softWriting = [ { title: "序号", dataIndex: "key", key: "key", }, { title: "派单省份", dataIndex: "provinceName", key: "provinceName", }, { title: "负责部门", dataIndex: "thchDepName", key: "thchDepName", }, { title: "项目类别", dataIndex: "projectStatus", key: "projectStatus", }, { title: "库存数(个)", dataIndex: "stockCount", key: "stockCount", }, { title: "派单数(个)", dataIndex: "distributeCount", key: "distributeCount", }, { title: "下证数(个)", dataIndex: "certificatesCount", key: "certificatesCount", }, { title: "签单额(万元)", dataIndex: "amountCount", key: "amountCount", }, { title: "成本(万元)", dataIndex: "costAmount", key: "costAmount", }, { title: "利润(万元)", dataIndex: "profit", key: "profit", }, ]; //商标 const otherTrademarks = [ { title: "序号", dataIndex: "key", key: "key", }, { title: "派单省份", dataIndex: "provinceName", key: "provinceName", }, { title: "负责部门", dataIndex: "thchDepName", key: "thchDepName", }, { title: "项目类别", dataIndex: "projectStatus", key: "projectStatus", }, { title: "库存数(个)", dataIndex: "stockCount", key: "stockCount", }, { title: "派单数(个)", dataIndex: "distributeCount", key: "distributeCount", }, { title: "申请数(个)", dataIndex: "applyCount", key: "applyCount", }, { title: "驳回数(个)", dataIndex: "rejectCount", key: "rejectCount", }, { title: "下证数(个)", dataIndex: "certificatesCount", key: "certificatesCount", }, { title: "签单额(万元)", dataIndex: "amountCount", key: "amountCount", }, { title: "成本(万元)", dataIndex: "costAmount", key: "costAmount", }, { title: "利润(万元)", dataIndex: "profit", key: "profit", }, ]; //通用 const currency = [ { title: "序号", dataIndex: "key", key: "key", }, { title: "派单省份", dataIndex: "provinceName", key: "provinceName", }, { title: "负责部门", dataIndex: "thchDepName", key: "thchDepName", }, { title: "项目类别", dataIndex: "projectStatus", key: "projectStatus", }, { title: "库存数(个)", dataIndex: "stockCount", key: "stockCount", }, { title: "派单数(个)", dataIndex: "distributeCount", key: "distributeCount", }, { title: "完成数", dataIndex: "completeCount", key: "completeCount", }, { title: "公示/立项数", dataIndex: "setUpCount", key: "setUpCount", }, { title: "签单额(万元)", dataIndex: "amountCount", key: "amountCount", }, { title: "成本(万元)", dataIndex: "costAmount", key: "costAmount", }, { title: "利润(万元)", dataIndex: "profit", key: "profit", }, ]; export { highTechColumns, invention, utilityModel, softWriting, otherTrademarks, currency, }