From fb6a5a7233487ff3ffd551c18fb2460299b0d1fd Mon Sep 17 00:00:00 2001 From: quantulr <35954003+quantulr@users.noreply.github.com> Date: Thu, 7 Mar 2024 17:24:19 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=93=E5=AE=B6=E8=B7=B3=E8=BD=AC=E8=AF=A6?= =?UTF-8?q?=E6=83=85=E9=A1=B5=EF=BC=8C=E7=BB=8F=E7=BA=AA=E4=BA=BA=E6=9F=A5?= =?UTF-8?q?=E7=9C=8B=E6=9C=8D=E5=8A=A1=E7=9A=84=E9=9C=80=E6=B1=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/dataList/technology-demand.js | 7 + src/api/dataList/technology-project.js | 5 +- .../Enterpriseproducts/index.vue | 32 +-- src/views/dataAuditList/demand/index.vue | 2 +- src/views/dataList/agent/index.vue | 211 ++++++++++-------- .../dataList/agent/serving-tech-demand.vue | 85 +++++++ src/views/dataList/expert/index.vue | 16 +- .../dataList/technology-project/index.vue | 163 +++++++++++++- .../website/solution/serviceCase/index.vue | 2 +- 9 files changed, 404 insertions(+), 119 deletions(-) create mode 100644 src/api/dataList/technology-demand.js create mode 100644 src/views/dataList/agent/serving-tech-demand.vue diff --git a/src/api/dataList/technology-demand.js b/src/api/dataList/technology-demand.js new file mode 100644 index 0000000..591387c --- /dev/null +++ b/src/api/dataList/technology-demand.js @@ -0,0 +1,7 @@ +import request from "@/utils/request"; + +export const technologyDemandList = (params) => request({ + url: "/business/technologyDemand/list", + method: "GET", + params +}) \ No newline at end of file diff --git a/src/api/dataList/technology-project.js b/src/api/dataList/technology-project.js index e8758f6..6b3bffb 100644 --- a/src/api/dataList/technology-project.js +++ b/src/api/dataList/technology-project.js @@ -39,8 +39,11 @@ export function technologyProjectDetail(id) { export function technologyProjectDelete(ids) { return request({ - url: `/business/technologyProject/${ids}`, + url: `/business/technologyProject`, method: "DELETE", + data: { + ids + } }); } diff --git a/src/views/dataAuditList/Enterpriseproducts/index.vue b/src/views/dataAuditList/Enterpriseproducts/index.vue index 08603f1..aae5311 100644 --- a/src/views/dataAuditList/Enterpriseproducts/index.vue +++ b/src/views/dataAuditList/Enterpriseproducts/index.vue @@ -22,23 +22,25 @@ - - 搜索 - - 重置 - - - + + + + + + + + + + + + + + + + + diff --git a/src/views/dataList/agent/index.vue b/src/views/dataList/agent/index.vue index dadeede..930ffe2 100644 --- a/src/views/dataList/agent/index.vue +++ b/src/views/dataList/agent/index.vue @@ -1,19 +1,19 @@ --> - + diff --git a/src/views/website/solution/serviceCase/index.vue b/src/views/website/solution/serviceCase/index.vue index 84f49c4..613da08 100644 --- a/src/views/website/solution/serviceCase/index.vue +++ b/src/views/website/solution/serviceCase/index.vue @@ -208,7 +208,7 @@ const data = reactive({ form: {}, rules: { title: [{required: true, message: "案例标题不能为空", trigger: "blur"}], - description: [{required: true, message: "描述不能为空", trigger: "blur"}], + // description: [{required: true, message: "描述不能为空", trigger: "blur"}], image: [ { required: true,