diff --git a/src/views/project-demand/summary/add.vue b/src/views/project-demand/summary/add.vue
index e475340..bfa7431 100644
--- a/src/views/project-demand/summary/add.vue
+++ b/src/views/project-demand/summary/add.vue
@@ -1,27 +1,260 @@
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- 存为草稿
- 发布
-
+ 存为草稿
+ 发布
+
diff --git a/src/views/project-demand/summary/api/index.js b/src/views/project-demand/summary/api/index.js
index 849a293..a0c5b30 100644
--- a/src/views/project-demand/summary/api/index.js
+++ b/src/views/project-demand/summary/api/index.js
@@ -13,8 +13,14 @@ export const fileUp = (url, data) => {
export const requirementReported = (data) => {
return request({
- url: '/workflow/mosr/requirement/reported',
+ url: '/workflow/mosr/requirement/collect/reported',
method: "post",
data: data
});
};
+export const getProcessInfo = () => {
+ return request({
+ url: '/workflow/mosr/requirement/collect/process',
+ method: "post"
+ });
+};
diff --git a/src/views/project-demand/summary/index.vue b/src/views/project-demand/summary/index.vue
index d2ad14e..5121d79 100644
--- a/src/views/project-demand/summary/index.vue
+++ b/src/views/project-demand/summary/index.vue
@@ -19,7 +19,7 @@ const router = useRouter()
const searchConfig = reactive([
{
label: '名称',
- prop: 'name',
+ prop: 'requirementName',
props: {
placeholder: '请输入'
},
@@ -75,17 +75,17 @@ const tableConfig = reactive({
prop: 'selection'
},
{
- prop: 'name',
+ prop: 'requirementName',
label: '名称',
align: 'center'
},
{
- prop: 'company',
+ prop: 'companyINames',
label: '所属公司',
align: 'center'
},
{
- prop: 'projectType',
+ prop: 'collectType',
label: '项目类型',
align: 'center'
},
@@ -105,7 +105,7 @@ const tableConfig = reactive({
align: 'center'
},
{
- prop: 'time',
+ prop: 'deadline',
label: '起止时间',
align: 'center'
},