From c06b7ccedc3cf91879b42ddd932b6e45ae5ffd65 Mon Sep 17 00:00:00 2001
From: cwchen <1048842385@qq.com>
Date: Mon, 22 Sep 2025 15:02:20 +0800
Subject: [PATCH] =?UTF-8?q?=E7=A7=BB=E4=BA=A4=E9=97=AE=E9=A2=98=E7=AE=A1?=
=?UTF-8?q?=E7=90=86?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/filesTransfer/issue/config.js | 33 ++
src/views/filesTransfer/issue/index.vue | 134 +++++++
.../filesTransfer/issue/prop/issueForm.vue | 333 ++++++++++++++++++
3 files changed, 500 insertions(+)
create mode 100644 src/views/filesTransfer/issue/config.js
create mode 100644 src/views/filesTransfer/issue/index.vue
create mode 100644 src/views/filesTransfer/issue/prop/issueForm.vue
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