Newer
Older
KaiFengPC / src / utils / cloums.js
@鲁yixuan 鲁yixuan on 19 Aug 22 KB updata
  1. export const projectTableCloum = [
  2. { lable: '项目编码', value: 'projectNo' },
  3. { lable: '项目名称', value: 'projectName' },
  4. { lable: '项目估算', value: 'valuation' },
  5. { lable: '项目运作模式', value: 'projectOperationPattern' },
  6. // { lable: "建设单位", value: "projectOperationPattern" },
  7. { lable: '责任人', value: 'chargeUser' },
  8. { lable: '责任部门', value: 'chargeDepartment' },
  9. { lable: '联系方式', value: 'phone' },
  10. { lable: '提交人', value: 'submitUserName' },
  11. { lable: '最近处理人', value: 'recentSubmitter' },
  12. { lable: '流程步骤', value: 'status' },
  13. ];
  14. export const projectEstimateCloum = [
  15. { lable: '项目编码', value: 'projectNo' },
  16. { lable: '项目名称', value: 'projectName' },
  17. { lable: '资金来源', value: 'fundSource' },
  18. { lable: '概算金额', value: 'budget' },
  19. { lable: '联系人', value: 'contactUser' },
  20. { lable: '联系方式', value: 'contactPhone' },
  21. { lable: '报价日期', value: 'quoteDate' },
  22. { lable: '技术人员', value: 'techUser' },
  23. { lable: '技术人员联系方式', value: 'techPhone' },
  24. // { lable: "制单人", value: "techPhone" },
  25. ];
  26.  
  27. export const stationInfoCloum = [
  28. { label: '站点名称', prop: 'stationName', placeholder: '站点名称' },
  29. { label: '站点编号', prop: 'stationCode', placeholder: '站点编号' },
  30. { label: '站点类型', prop: 'plcStationType', placeholder: '站点类型' },
  31. { label: '经纬度', prop: 'lonLat', placeholder: '经纬度' },
  32. { label: '数据采集频率(分钟/次)', prop: 'dataFrequency', placeholder: '数据采集频率' },
  33. { label: '状态', prop: 'status', placeholder: '状态' },
  34. { label: '创建时间', prop: 'createTime', placeholder: '创建时间' },
  35. { label: '更新时间', prop: 'updateTime', placeholder: '请选择点更新时间' },
  36. ];
  37.  
  38. export const projectInformationCloum = [
  39. { lable: '项目编码', value: 'projectNo' },
  40. { lable: '项目名称', value: 'projectName' },
  41. { lable: '建设单位', value: 'constructUnit' },
  42. { lable: '项目类型', value: 'projectTypeName' },
  43. { lable: '项目进度', value: 'projectProgress' },
  44. { lable: '项目估算', value: 'valuation' },
  45. { lable: '完成项目投资', value: 'completeTotalInvest' },
  46. { lable: '完成海绵投资', value: 'completeSpongeInvest' },
  47. { lable: '责任人', value: 'chargeUser' },
  48. { lable: '立项时间', value: 'startTime' },
  49. { lable: '项目状态', value: 'projectStatus' },
  50. { lable: '流程步骤', value: 'status' },
  51. ];
  52. export const projectChangesCloum = [
  53. { label: '项目编码', props: 'projectNo' },
  54. { label: '项目名称', props: 'projectName' },
  55. { label: '项目变更类型', props: 'operation' },
  56. { label: '项目运作模式', props: 'projectOperationPattern' },
  57. { label: '建设单位', props: 'constructUnit' },
  58. { label: '责任人', props: 'chargeUser' },
  59. { label: '联系方式', props: 'phone' },
  60. { label: '提交人', props: 'submitUserName' },
  61. { label: '最近处理人', props: 'recentSubmitter' },
  62. { label: '审核状态', props: 'auditStatus' },
  63. ];
  64. export const lcProject = [
  65. {
  66. value: 'update',
  67. label: '修改',
  68. },
  69. {
  70. value: 'delete',
  71. label: '删除',
  72. },
  73. ];
  74.  
  75. export const statusOption = [
  76. {
  77. value: 0,
  78. label: '待审核',
  79. },
  80. {
  81. value: 1,
  82. label: '审核驳回',
  83. },
  84. {
  85. value: 2,
  86. label: '审核通过',
  87. },
  88. ];
  89.  
  90. export const projectChangetableCloum = [
  91. { label: '项目名称', props: 'projectName', span: 12 },
  92. { label: '项目类别', props: 'projectTypeId', span: 12 },
  93. { label: '建设类别', props: 'buildCategory', span: 12 },
  94. { label: '项目运作模式', props: 'projectOperationPattern', span: 12 },
  95. { label: '所属排水分区', props: 'drainagePartition', span: 24 },
  96. // { label: "工程分项类容", props: "amongContent", span: 24 },
  97. // { label: "设计参数", props: "designParam", span: 24 },
  98. { label: '总体工程量', props: 'totalQuantites', span: 24 },
  99. // { label: "投资分项内容", props: "investDetailed", span: 24 },
  100. { label: '海绵相关投资(万元)', props: 'spongeInvest', span: 12 },
  101. { label: '地方政府投资(万元)', props: 'govermentInvest', span: 12 },
  102. { label: '社会资本投入(万元)', props: 'socialInvest', span: 12 },
  103. { label: '中央专项资金(万元)', props: 'centralSpecialFunds', span: 12 },
  104. { label: '责任部门名称', props: 'chargeDepartment', span: 12 },
  105. { label: '责任人', props: 'chargeUser', span: 12 },
  106. { label: '联系方式', props: 'phone', span: 12 },
  107. { label: '设计单位', props: 'designUnit', span: 12 },
  108. { label: '施工单位', props: 'constructUnit', span: 12 },
  109. { label: '运维单位', props: 'operationUnit', span: 12 },
  110. ];
  111.  
  112. export const tenderReviewCloum = [
  113. { label: '项目编码', props: 'projectNo' },
  114. { label: '项目名称', props: 'projectName', span: 12 },
  115. { label: '标书编号', props: 'tenderNumber', span: 12 },
  116. { label: '投标公司名称', props: 'tenderCompanyName', span: 12 },
  117. { label: '投招标项目资金来源', props: 'capitalSource', span: 12 },
  118. { label: '投标时间', props: 'bidTime', span: 24 },
  119. { label: '招标方式', props: 'bidWay', span: 24 },
  120. { label: '保证金金额', props: 'earnestMoney', span: 12 },
  121. { label: '开标日期', props: 'bidOpenDate', span: 12 },
  122. ];
  123.  
  124. export const tenderResultCloum = [
  125. { label: '项目编码', props: 'projectNo' },
  126. { label: '项目名称', props: 'projectName', span: 12 },
  127. { label: '标书编号', props: 'tenderNumber', span: 12 },
  128. { label: '中标单位', props: 'successfulUnitName', span: 12 },
  129. { label: '中标金额', props: 'successfulMoney', span: 12 },
  130. { label: '投标时间', props: 'bidTime', span: 24 },
  131. { label: '开标日期', props: 'bidOpenDate', span: 12 },
  132. ];
  133.  
  134. export const tabsNumList = [
  135. { label: '概况', value: 1 },
  136. { label: '合同', value: 2 },
  137. { label: '计划', value: 3 },
  138. { label: '进度', value: 4 },
  139. { label: '质量', value: 5 },
  140. { label: '安全', value: 6 },
  141. { label: '图片', value: 7 },
  142. ];
  143.  
  144. export const contractManagementCloum = [
  145. { label: '项目编码', props: 'projectNo' },
  146. { label: '项目名称', props: 'projectName', span: 12 },
  147. { label: '合同编号', props: 'contractNo', span: 12 },
  148. { label: '合同名称', props: 'contractName', span: 12 },
  149. { label: '合同类型', props: 'contractType', span: 12 },
  150. { label: '合同金额', props: 'money', span: 24 },
  151. { label: '签约日期', props: 'signTime', span: 24 },
  152. { label: '已付款', props: 'paidMoney', span: 12 },
  153. { label: '未付款', props: 'notPaidMoney', span: 12 },
  154. { label: '支付情况', props: 'ratio', span: 12 },
  155. ];
  156. export const projectPlanCloum = [
  157. { label: '项目名称', props: 'projectName', span: 12 },
  158. { label: '项目编码', props: 'projectNo' },
  159. { label: '计划开始日期', props: 'startTime', span: 12 },
  160. { label: '计划结束日期', props: 'endTime', span: 12 },
  161. { label: '责任人', props: 'chargeUser', span: 24 },
  162. ];
  163.  
  164. export const yzsblishiCloum = [
  165. { label: '一级节点', props: 'nodeName' },
  166. { label: '计划日期起', props: 'planStartTime', span: 12 },
  167. { label: '计划日期止', props: 'planEndTime', span: 12 },
  168. { label: '完成开始日期', props: 'actualFinishStartTime', span: 12 },
  169. { label: '完成结束日期', props: 'actualFinishEndTime', span: 12 },
  170. { label: '工作类容', props: 'outputData', span: 24 },
  171. { label: '预计工时', props: 'estimatedWorkHours', span: 24 },
  172. // { label: "已付款", props: "paidMoney", span: 12 },
  173. // { label: "未付款", props: "notPaidMoney", span: 12 },
  174. // { label: "支付情况", props: "ratio", span: 12 },
  175. ];
  176. export const shortcuts = [
  177. {
  178. text: '近一周',
  179. value: () => {
  180. const end = new Date();
  181. const start = new Date();
  182. start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
  183. return [start, end];
  184. },
  185. },
  186. {
  187. text: '近一个月',
  188. value: () => {
  189. const end = new Date();
  190. const start = new Date();
  191. start.setTime(start.getTime() - 3600 * 1000 * 24 * 30);
  192. return [start, end];
  193. },
  194. },
  195. {
  196. text: '近三个月',
  197. value: () => {
  198. const end = new Date();
  199. const start = new Date();
  200. start.setTime(start.getTime() - 3600 * 1000 * 24 * 90);
  201. return [start, end];
  202. },
  203. },
  204. ];
  205. export const projectMilestonesCloum = [
  206. { label: '项目编码', props: 'projectNo' },
  207. { label: '项目名称', props: 'projectName', span: 12 },
  208. { label: '里程碑', props: 'milestoneName', span: 12 },
  209. { label: '日期', props: 'finishDate', span: 12 },
  210. { label: '创建人', props: 'createBy', span: 12 },
  211. { label: '创建时间', props: 'createTime', span: 24 },
  212. // { label: "已付款", props: "paidMoney", span: 12 },
  213. // { label: "未付款", props: "notPaidMoney", span: 12 },
  214. // { label: "支付情况", props: "ratio", span: 12 },
  215. ];
  216.  
  217. export const shangbaoCloum = [
  218. { label: '项目编号', props: 'projectNo' },
  219. { label: '项目名称', props: 'projectName' },
  220. { label: '项目类别', props: 'projectTypeName' },
  221. { label: '建设类别', props: 'buildCategory' },
  222. { label: '责任人', props: 'chargeUser' },
  223. { label: '施工单位', props: 'constructUnitName' },
  224. ];
  225. export const yzsblishisjCloum = [
  226. { label: '项目编号', props: 'projectNo' },
  227. { label: '项目名称', props: 'projectName' },
  228. { label: '项目类别', props: 'projectTypeName' },
  229. { label: '建设状态', props: 'buildStatus' },
  230. // { label: "建设类别", props: "buildCategory" },
  231. { label: '月份', props: 'month' },
  232. { label: '建设进度', props: 'totalProgress' },
  233. { label: '当月完成项目总投资(万元)', props: 'monthInvest' },
  234. { label: '当月完成海绵投资(万元)', props: 'monthSpongeInvest' },
  235. { label: '完成项目总投资(万元)', props: 'completeTotalInvest' },
  236. { label: '完成海绵相关投资(万元)', props: 'completeSpongeInvest' },
  237. { label: '责任人', props: 'chargeUser' },
  238. ];
  239.  
  240. export const payContCloum = [
  241. { label: '合同编号', props: 'contractNo' },
  242. { label: '合同名称', props: 'contractName' },
  243. // { label: "合同计价方式", props: "projectNo" },
  244. { label: '合同类型', props: 'contractType' },
  245. { label: '合同金额', props: 'money' },
  246. { label: '签约日期', props: 'signTime' },
  247. { label: '已付款', props: 'paidMoney' },
  248. { label: '未付款', props: 'notPaidMoney' },
  249. { label: '支付情况', props: 'ratio' },
  250. ];
  251.  
  252. export const plantContCloum = [
  253. { label: '一级节点', props: 'nodeName' },
  254. // { label: "状态", props: "status" },
  255. // { label: "进度", props: "schedule" },
  256. { label: '计划日期起', props: 'planStartTime' },
  257. { label: '实际日期止', props: 'planEndTime' },
  258. { label: '预算工时', props: 'estimatedWorkHours' },
  259. // { label: "实际日期起", props: "actualFinishStartTime" },
  260. // { label: "实际工时", props: "manHour" },
  261. { label: '负责人', props: 'dutyUserId' },
  262. { label: '输出资料', props: 'outputData' },
  263. // { label: "备注", props: "remark" },
  264. ];
  265.  
  266. export const quaitryContCloumOne = [
  267. { label: '巡检记录编号', props: 'patrolNo' },
  268. { label: '巡检人', props: 'patrolPrimaryPerson' },
  269. { label: '巡检日期', props: 'patrolTime' },
  270. { label: '问题分类', props: 'problemType' },
  271. { label: '检查项', props: 'checkItem' },
  272. { label: '项目整体描述', props: 'description' },
  273. // { label: "是否整改", props: "status" },
  274. { label: '整改状态', props: 'status' },
  275. { label: '备注', props: 'remark' },
  276. ];
  277. export const quaitryContCloumTwo = [
  278. { label: '整改单号', props: 'reformNo' },
  279. { label: '问题分类', props: 'problemType' },
  280. { label: '检查项', props: 'checkItem' },
  281. // { label: "检查项明细", props: "checkItem" },
  282. { label: '检查项明细', props: 'checkItem' },
  283. { label: '整改要求', props: 'abarbeitungRequire' },
  284. { label: '整改前问题描述', props: 'problemDescription' },
  285. { label: '整改措施说明', props: 'abarbeitungDescription' },
  286. { label: '整改类型', props: 'abarbeitungType' },
  287. { label: '整改前附图', props: 'fileSaveRequestList' },
  288. { label: '整改后附图', props: 'afterRectificationFileList' },
  289. ];
  290.  
  291. export const safcityContCloumOne = [
  292. { label: '编码', props: 'id' },
  293. { label: '方案名称', props: 'scenarioName' },
  294. { label: '申请时间', props: 'compilationTime' },
  295. { label: '建筑面积', props: 'area' },
  296. { label: '补充说明', props: 'description' },
  297. // { label: "方案附件", props: "abarbeitungType" },
  298. { label: '方案附件', props: 'fileSaveRequestList' },
  299. // { label: "申请人", props: "createBy" },
  300. { label: '申请人', props: 'createBy' },
  301. ];
  302. export const safcityContCloumTwo = [
  303. { label: '隐患编号', props: 'reformRecordCode' },
  304. { label: '检查人', props: 'checkUserName' },
  305. { label: '检查日期', props: 'checkTime' },
  306. { label: '隐患类型', props: 'hiddenTroubleType' },
  307. { label: '隐患级别', props: 'hiddenTroubleLevel' },
  308. { label: '通知方式', props: 'notificationType' },
  309. { label: '整改完成期限', props: 'abarbeitungDeadline' },
  310. { label: '实际完成日期', props: 'actualFinishDate' },
  311. { label: '责任整改人', props: 'abarbeitungDutyUserName' },
  312. { label: '整改单位', props: 'abarbeitungUnitName' },
  313. ];
  314.  
  315. export const safcityContCloumThree = [
  316. { label: '识别日期', props: 'identificationDate' },
  317. { label: '识别内容', props: 'identifyContent' },
  318. { label: '环境因素', props: 'environmentElement' },
  319. { label: '活动点', props: 'activePoint' },
  320. { label: '排放量', props: 'discharge' },
  321. { label: '标准要求', props: 'standardRequire' },
  322. { label: '处置方式', props: 'disposalWay' },
  323. { label: '控制方式', props: 'controlWay' },
  324. { label: '相关法律法规', props: 'legal' },
  325. { label: '评价结果', props: 'evaluationResult' },
  326. ];
  327.  
  328. export const safcityContCloumFour = [
  329. // { label: "测量日期", props: "measurTime" },
  330. { label: '测量日期', props: 'measurTime' },
  331. { label: '仪器名称', props: 'instrumentName' },
  332. { label: '仪器编码', props: 'instrumentNumber' },
  333. { label: '测量人', props: 'measurUserName' },
  334. ];
  335.  
  336. export const imgwhCloum = [
  337. { label: '项目编号', props: 'projectNo' },
  338. { label: '项目名称', props: 'projectName' },
  339. { label: '项目类别', props: 'projectTypeName' },
  340. // { label: "项目状态", props: "projectStatus" },
  341. { label: '建设前', props: 'preConstructionFileList' },
  342. { label: '建设中', props: 'underConstructionFileList' },
  343. { label: '建设后', props: 'postConstructionFileList' },
  344. { label: '概况', props: 'generalSituationFileList' },
  345. ];
  346.  
  347. export const dwwhCloum = [
  348. { label: '单位名称', props: 'unitName' },
  349. { label: '类型', props: 'unitType' },
  350. { label: '单位属性', props: 'unitProperty' },
  351. { label: '电话', props: 'unitPhone' },
  352. { label: '负责人', props: 'primaryConcatPersonNickName' },
  353. { label: '联系方式', props: 'primaryConcatPersonInformation' },
  354. { label: '信用度', props: 'creditLine' },
  355. { label: '注册时间', props: 'registryDate' },
  356. ];
  357.  
  358. export const xmGisCloum = [
  359. { label: '项目编号', props: 'projectNo' },
  360. { label: '项目名称', props: 'projectName' },
  361. { label: '编码', props: 'gisNo' },
  362. { label: '标注类型', props: 'facilityType' },
  363. { label: '名称', props: 'gisName' },
  364. { label: '描述', props: 'remark' },
  365. { label: '类型', props: 'facilityType' },
  366. { label: '颜色', props: 'color' },
  367. { label: '边界颜色', props: 'boundaryColor' },
  368. { label: '边界线类型', props: 'boundaryType' },
  369. ];
  370. export const environmentalMonitoringCloum = [
  371. { label: '项目编号', props: 'projectNo' },
  372. { label: '项目名称', props: 'projectName' },
  373. { label: '识别日期', props: 'identificationDate' },
  374. { label: '环境因素', props: 'environmentElement' },
  375. { label: '识别内容', props: 'identifyContent' },
  376. { label: '处置方式', props: 'disposalWay' },
  377. { label: '负责人', props: 'chargeUser' },
  378. ];
  379. export const hazardRectificationAndReviewCloum = [
  380. { label: '项目编号', props: 'projectNo' },
  381. { label: '项目名称', props: 'projectName' },
  382. { label: '测量日期', props: 'measurTime' },
  383. { label: '仪器名称', props: 'instrumentName' },
  384. { label: '仪器编码', props: 'instrumentNumber' },
  385. { label: '测量人', props: 'measurUserName' },
  386. { label: '负责人', props: 'measurDutyUserName' },
  387. ];
  388. export const environmentalIdentificationAndEvaluationCloum = [
  389. { label: '项目编号', props: 'projectNo' },
  390. { label: '项目名称', props: 'projectName' },
  391. { label: '隐患编号', props: 'reformRecordCode' },
  392. { label: '隐患类型', props: 'hiddenTroubleType' },
  393. { label: '隐患级别', props: 'hiddenTroubleLevel' },
  394. { label: '检查人', props: 'checkUserName' },
  395. { label: '检查日期', props: 'checkTime' },
  396. { label: '检查单位', props: 'checkUnitName' },
  397. { label: '最近处理人', props: 'recentSubmitter' },
  398. { label: '流程步骤', props: 'status' },
  399. ];
  400.  
  401. export const engineeringApprovalCloum = [
  402. { label: '项目编号', props: 'projectNo' },
  403. { label: '项目名称', props: 'projectName' },
  404. { label: '编号', props: 'id' },
  405. { label: '方案名称', props: 'scenarioName' },
  406. { label: '部门', props: 'chargeDepartment' },
  407. { label: '责任人', props: 'chargeUser' },
  408. { label: '编制时间', props: 'compilationTime' },
  409. { label: '最近处理人', props: 'recentSubmitter' },
  410. { label: '流程步骤', props: 'status' },
  411. ];
  412.  
  413. export const qualityRectificationDetailsCloum = [
  414. { label: '项目编号', props: 'projectNo' },
  415. { label: '项目名称', props: 'projectName' },
  416. { label: '整改单号', props: 'reformNo' },
  417. { label: '问题类型', props: 'problemType' },
  418. { label: '检查项', props: 'checkItem' },
  419. // { label: "检查项明细", props: "problemType" },
  420. { label: '整改要求', props: 'abarbeitungRequire' },
  421. { label: '整改类型', props: 'abarbeitungType' },
  422. ];
  423.  
  424. export const qualityRectificationCloum = [
  425. { label: '项目编号', props: 'projectNo' },
  426. { label: '项目名称', props: 'projectName' },
  427. { label: '整改单号', props: 'reformNo' },
  428. { label: '整改发起时间', props: 'abarbeitungStartTime' },
  429. { label: '限制整改时间', props: 'abarbeitungEndTime' },
  430. { label: '问题数量', props: 'problemCount' },
  431. { label: '提交人', props: 'submitUserName' },
  432. { label: '最近处理人', props: 'recentSubmitter' },
  433. { label: '流程步骤', props: 'status' },
  434. ];
  435.  
  436. export const ListOfIssuesCloum = [
  437. { label: '项目编号', props: 'projectNo' },
  438. { label: '项目名称', props: 'projectName' },
  439. { label: '巡检记录编号', props: 'patrolNo' },
  440. { label: '巡检人', props: 'patrolPrimaryPerson' },
  441. { label: '巡检日期', props: 'patrolTime' },
  442. { label: '问题分类', props: 'problemType' },
  443. { label: '是否整改', props: 'status' },
  444. ];
  445.  
  446. export const InspectionRecordsCloum = [
  447. { label: '项目编号', props: 'projectNo' },
  448. { label: '项目名称', props: 'projectName' },
  449. { label: '巡检记录编号', props: 'patrolNo' },
  450. { label: '巡检人', props: 'patrolPrimaryPerson' },
  451. { label: '巡检日期', props: 'patrolTime' },
  452. { label: '项目整体进度描述', props: 'description' },
  453. { label: '问题数量', props: 'problemCount' },
  454. ];
  455. export const areaInfoCloum = [
  456. { label: '区域名称', prop: 'areaName', placeholder: '请输入区域名称' },
  457. { label: '区域编号', prop: 'areaCode', placeholder: '请输入区域编号' },
  458. { label: '上级区域', prop: 'parentId', placeholder: '请选择上级区域' },
  459. { label: '站点名称', prop: 'stationName', placeholder: '请选择站点名称' },
  460. { label: '位置', prop: 'address', placeholder: '请输入位置' },
  461. // { label: "坐标", prop: "lonLat" ,placeholder:"请输入坐标"},
  462. { label: '备注', prop: 'remark', placeholder: '请输入备注' },
  463. ];
  464. export const plcPointInfoCloum = [
  465. { label: '点位', prop: 'pointName', placeholder: '请输入点位名称' },
  466. { label: '点位键', prop: 'pointKey', placeholder: '请输入点位键' },
  467. { label: '站点', prop: 'stationName', placeholder: '请输入站点名称' },
  468. { label: '区域', prop: 'areaName', placeholder: '请选择区域名称' },
  469. { label: '设备', prop: 'deviceName', placeholder: '请输入设备名称' },
  470. { label: '数据类型', prop: 'dataType', placeholder: '请选择数据类型' },
  471. { label: '监测类型', prop: 'monitorType', placeholder: '监测类型 ' },
  472. { label: '单位', prop: 'unit', placeholder: '站点编号' },
  473. { label: '保留小数位数', prop: 'scaleNum', placeholder: '请输入保留小数位数' },
  474. { label: '是否生成报表', prop: 'createReport', placeholder: '请选择是否生成报表' },
  475. { label: '报表统计类型', prop: 'reportType', placeholder: '请点击报表统计类型' },
  476. { label: '状态', prop: 'status', placeholder: '状态' },
  477. { label: '排序', prop: 'orderNum', placeholder: '请输入排序' },
  478. { label: '搜索展示', prop: 'dataShow', placeholder: '请输入搜索展示' },
  479. ];
  480. export const deviceInfoCloum = [
  481. { label: '设备名称', prop: 'deviceName', placeholder: '设备名称' },
  482. { label: '设备编码', prop: 'deviceCode', placeholder: '设备编码' },
  483. { label: '设备类型', prop: 'deviceType', placeholder: '设备类型' },
  484. // { label: "站点编号", prop: "stationCode" ,placeholder:"站点编号"},
  485. { label: '站点名称', prop: 'stationName', placeholder: '站点名称' },
  486. { label: '区域名称', prop: 'areaName', placeholder: '请输入区域名称' },
  487. { label: '备注', prop: 'remark', placeholder: '备注' },
  488. { label: '状态', prop: 'status', placeholder: '状态' },
  489.  
  490. // { label: "区域编号", prop: "areaCode",placeholder:"区域编号" },
  491. ];
  492.  
  493. export const plcDatasourceCloum = [
  494. { label: '接入频率(秒/次)', prop: 'accessFrequency', placeholder: '接入频率(秒/次)' },
  495. { label: '数据源名称', prop: 'datasourceName', placeholder: '请输入数据源名称' },
  496. { label: '端口', prop: 'port', placeholder: '请输入端口' },
  497. { label: '扩展属性(json)', prop: 'property', placeholder: '请输入扩展属性(json)' },
  498. { label: '类型', prop: 'type', placeholder: '请选择类型' },
  499. { label: 'url', prop: 'url', placeholder: '请输入URL' },
  500. { label: '用户名', prop: 'userName', placeholder: '请输入用户名' },
  501. { label: '密码', prop: 'userPassword', placeholder: '请输入密码' },
  502. { label: '备注', prop: 'remark', placeholder: '请输入备注' },
  503. { label: '状态', prop: 'status', placeholder: '请输入状态' },
  504. ];