From 37a095d5162ad431ec89506e41d200fea1cdadec Mon Sep 17 00:00:00 2001 From: lukeyan <1727408482@qq.com> Date: Mon, 23 Oct 2023 22:29:50 +0800 Subject: [PATCH] =?UTF-8?q?=E9=87=8D=E7=82=B9=E4=BA=BA=E5=91=98=E5=AE=A1?= =?UTF-8?q?=E6=A0=B8=EF=BC=8C=E4=BC=81=E4=B8=9A=E7=BA=A0=E7=BA=B7=EF=BC=8C?= =?UTF-8?q?=E4=BC=81=E4=B8=9A=E5=8F=8D=E9=A6=88=E9=9D=99=E6=80=81=E9=A1=B5?= =?UTF-8?q?=E9=9D=A2=E5=88=9D=E6=AD=A5=E5=BC=80=E5=8F=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/utils/request.js | 4 +- .../components/companyDialog.vue | 84 +++ .../applySupermarket/companyDispute/index.vue | 629 ++++++++++++++++++ .../components/feedbackDialog.vue | 84 +++ .../companyFeedback/index.vue | 546 +++++++++++++++ src/views/applySupermarket/index.vue | 38 +- .../applySupermarket/keyPerson/index.vue | 447 +++++++++++++ .../applySupermarket/policeReport/index.vue | 83 ++- 8 files changed, 1909 insertions(+), 6 deletions(-) create mode 100644 src/views/applySupermarket/companyDispute/components/companyDialog.vue create mode 100644 src/views/applySupermarket/companyDispute/index.vue create mode 100644 src/views/applySupermarket/companyFeedback/components/feedbackDialog.vue create mode 100644 src/views/applySupermarket/companyFeedback/index.vue create mode 100644 src/views/applySupermarket/keyPerson/index.vue diff --git a/src/utils/request.js b/src/utils/request.js index bbddc92..56dd381 100644 --- a/src/utils/request.js +++ b/src/utils/request.js @@ -7,8 +7,8 @@ const request = axios.create({ //baseURL: 'http://172.18.113.50:8080/zhapi', //baseURL: 'http://172.18.113.13:8080/zhapi', // 孙强 //baseURL: 'http://192.168.0.188:8888/zhapi', - //baseURL: 'http://121.41.91.94:12002/zhapi', - baseURL: `http://${window.location.host}/zhapi`, + baseURL: 'http://121.41.91.94:12002/zhapi', + //baseURL: `http://${window.location.host}/zhapi`, timeout: 50000, headers: { 'content-type': 'application/json' }, }) diff --git a/src/views/applySupermarket/companyDispute/components/companyDialog.vue b/src/views/applySupermarket/companyDispute/components/companyDialog.vue new file mode 100644 index 0000000..21b3c4c --- /dev/null +++ b/src/views/applySupermarket/companyDispute/components/companyDialog.vue @@ -0,0 +1,84 @@ + + + \ No newline at end of file diff --git a/src/views/applySupermarket/companyDispute/index.vue b/src/views/applySupermarket/companyDispute/index.vue new file mode 100644 index 0000000..46c62be --- /dev/null +++ b/src/views/applySupermarket/companyDispute/index.vue @@ -0,0 +1,629 @@ + + + + \ No newline at end of file diff --git a/src/views/applySupermarket/companyFeedback/components/feedbackDialog.vue b/src/views/applySupermarket/companyFeedback/components/feedbackDialog.vue new file mode 100644 index 0000000..5c4b3c5 --- /dev/null +++ b/src/views/applySupermarket/companyFeedback/components/feedbackDialog.vue @@ -0,0 +1,84 @@ + + + \ No newline at end of file diff --git a/src/views/applySupermarket/companyFeedback/index.vue b/src/views/applySupermarket/companyFeedback/index.vue new file mode 100644 index 0000000..a7f34ac --- /dev/null +++ b/src/views/applySupermarket/companyFeedback/index.vue @@ -0,0 +1,546 @@ + + + + \ No newline at end of file diff --git a/src/views/applySupermarket/index.vue b/src/views/applySupermarket/index.vue index aee2cc0..540e27e 100644 --- a/src/views/applySupermarket/index.vue +++ b/src/views/applySupermarket/index.vue @@ -6,10 +6,13 @@
>>人员背景审核
+
>>重点人员审核
>>警情通报
>>网络反诈提醒
+
>>企业纠纷提醒
+
>>企业反馈
@@ -23,7 +26,7 @@
人员背景审核
-
+
@@ -59,7 +62,7 @@
网络反诈提醒
-
+
@@ -95,7 +98,7 @@
证照办理
-
+
@@ -108,6 +111,9 @@
+
+ +
@@ -116,6 +122,13 @@
+ +
+ +
+
+ +
@@ -123,12 +136,18 @@ import PersonBack from "./personBack/index"; import PoliceReport from "./policeReport/index"; import Counterfraud from "./counterfraud/index"; +import CompanyDispute from "./companyDispute/index"; +import CompanyFeedback from "./companyFeedback/index"; +import KeyPerson from "./keyPerson/index" export default { name: "ApplySupermarket", components: { PersonBack, PoliceReport, Counterfraud, + CompanyDispute, + CompanyFeedback, + KeyPerson, }, data() { return { @@ -144,13 +163,26 @@ export default { person_back_change() { this.is_flag = "1"; }, + // 跳转至重点人员审核 + key_back_change() { + this.is_flag = '2' + }, // 跳转至警情通报 police_back_change() { this.is_flag = "3"; }, + // 跳转至网络反诈提醒 fraud_back_change() { this.is_flag = "5"; }, + // 跳转 企业纠纷提醒 + dispute_back_change() { + this.is_flag = "6" + }, + // 跳转 企业反馈 + feedback_back_change() { + this.is_flag = '10' + } }, }; diff --git a/src/views/applySupermarket/keyPerson/index.vue b/src/views/applySupermarket/keyPerson/index.vue new file mode 100644 index 0000000..560f7ce --- /dev/null +++ b/src/views/applySupermarket/keyPerson/index.vue @@ -0,0 +1,447 @@ + + + + \ No newline at end of file diff --git a/src/views/applySupermarket/policeReport/index.vue b/src/views/applySupermarket/policeReport/index.vue index 59cd5b8..881add1 100644 --- a/src/views/applySupermarket/policeReport/index.vue +++ b/src/views/applySupermarket/policeReport/index.vue @@ -87,7 +87,88 @@ export default { search_time: [this.get_today(), this.get_tomorrow()], word: "", }, - report_list: [], + report_list: [ + // { + // id:1, + // title:'招宝山区派出所', + // modifyTime:'2022-08-01 16:23:14', + // }, + // { + // id:2, + // title:'招宝山区派出所', + // modifyTime:'2022-08-01 16:23:14', + // }, + // { + // id:3, + // title:'招宝山区派出所', + // modifyTime:'2022-08-01 16:23:14', + // }, + // { + // id:4, + // title:'招宝山区派出所', + // modifyTime:'2022-08-01 16:23:14', + // }, + // { + // id:5, + // title:'招宝山区派出所', + // modifyTime:'2022-08-01 16:23:14', + // }, + // { + // id:6, + // title:'招宝山区派出所', + // modifyTime:'2022-08-01 16:23:14', + // }, + // { + // id:7, + // title:'招宝山区派出所', + // modifyTime:'2022-08-01 16:23:14', + // }, + // { + // id:8, + // title:'招宝山区派出所', + // modifyTime:'2022-08-01 16:23:14', + // }, + // { + // id:9, + // title:'招宝山区派出所', + // modifyTime:'2022-08-01 16:23:14', + // }, + // { + // id:10, + // title:'招宝山区派出所', + // modifyTime:'2022-08-01 16:23:14', + // }, + // { + // id:11, + // title:'招宝山区派出所', + // modifyTime:'2022-08-01 16:23:14', + // }, + // { + // id:12, + // title:'招宝山区派出所', + // modifyTime:'2022-08-01 16:23:14', + // }, + // { + // id:13, + // title:'招宝山区派出所', + // modifyTime:'2022-08-01 16:23:14', + // }, + // { + // id:14, + // title:'招宝山区派出所', + // modifyTime:'2022-08-01 16:23:14', + // }, + // { + // id:15, + // title:'招宝山区派出所', + // modifyTime:'2022-08-01 16:23:14', + // }, + // { + // id:16, + // title:'招宝山区派出所', + // modifyTime:'2022-08-01 16:23:14', + // }, + ], pageSize: 16, pageNum: 1, total: 0,