-
-
-
-
-
- 搜索
- 重置
-
-
-
-
-
+
- 新增
+ 新增
-
- 修改
-
-
-
-
+
-
-
-
-
+
+
-
-
-
+
-
-
-
-
+
+
+
+
+
+
+
+ 审核
+
+
+ 查看流程
+ 查看历史
+
-
-
+
-
-
-
-
+
上传excel
@@ -81,136 +55,142 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
diff --git a/src/views/design/drawingreview/indexEdit.vue b/src/views/design/drawingreview/indexEdit.vue
new file mode 100644
index 0000000..302492c
--- /dev/null
+++ b/src/views/design/drawingreview/indexEdit.vue
@@ -0,0 +1,361 @@
+
+
+
+
+
+
+
+
+
+
+
图纸评审
+
+
+
+
+
+
+
+
+
+ 点击打开
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/design/received/index.vue b/src/views/design/received/index.vue
index 99f7d26..64541f9 100644
--- a/src/views/design/received/index.vue
+++ b/src/views/design/received/index.vue
@@ -87,9 +87,10 @@
确认提交
- 审核
- 重新发起审核
- 查看流程
+ 审核
+ 重新发起审核
+ 查看流程
+ 导出
@@ -101,7 +102,7 @@ import { ref, reactive, computed, onMounted } from 'vue';
import { useUserStoreHook } from '@/store/modules/user';
import { ElMessage, ElLoading } from 'element-plus';
import { systemUserList } from '@/api/design/appointment';
-import { collectBatch, byProjectId } from '@/api/design/received';
+import { collectBatch, byProjectId, exportWord } from '@/api/design/received';
// 获取用户 store
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
const userStore = useUserStoreHook();
@@ -293,6 +294,16 @@ onMounted(() => {
byProjectIdAll();
});
});
+const onLoad = async () => {
+ // 导出接口
+ proxy?.download(
+ 'design/collect/exportWord',
+ {
+ id: form.id
+ },
+ `收资清单.zip`
+ );
+};
//监听项目id刷新数据
const listeningProject = watch(
() => currentProject.value.id,