diff --git a/src/views/filesTransfer/issue/config.js b/src/views/filesTransfer/issue/config.js new file mode 100644 index 0000000..90b2ddb --- /dev/null +++ b/src/views/filesTransfer/issue/config.js @@ -0,0 +1,33 @@ +export const formLabel = [ + { + isShow: false, // 是否展示label + f_type: 'ipt', + f_label: '单项工程名称', + f_model: 'proName', + f_max: 32, + }, + { + isShow: false, // 是否展示label + f_type: 'sel', + f_label: '项目类型', + f_model: 'proType', + f_selList: [], + f_dict: 'pro_type', + }, + { + isShow: false, // 是否展示label + f_type: 'sel', + f_label: '电压等级', + f_model: 'voltageLevel', + f_selList: [], + f_dict: 'voltage_level', + }, +] + +export const columnsList = [ + { t_props: 'proName', t_label: '项目名称' }, + { t_props: 'singleProName', t_label: '单项工程名称' }, + { t_props: 'createUserName', t_label: '移交时间' }, + { t_props: 'createTime', t_label: '接收单位' }, + { t_slot: 'auditStatus', t_label: '移交问题' }, +] \ No newline at end of file diff --git a/src/views/filesTransfer/issue/index.vue b/src/views/filesTransfer/issue/index.vue new file mode 100644 index 0000000..116a436 --- /dev/null +++ b/src/views/filesTransfer/issue/index.vue @@ -0,0 +1,134 @@ + + + diff --git a/src/views/filesTransfer/issue/prop/issueForm.vue b/src/views/filesTransfer/issue/prop/issueForm.vue new file mode 100644 index 0000000..6ff738b --- /dev/null +++ b/src/views/filesTransfer/issue/prop/issueForm.vue @@ -0,0 +1,333 @@ + + + \ No newline at end of file