b9bb4571 by yuanbo

Merge remote-tracking branch 'origin/dev' into dev

2 parents 0355303c da7a03df
1 /* 1 /*
2 * @Description: 业务办理 2 * @Description: 业务办理
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-05-17 10:13:24 4 * @LastEditTime: 2023-07-19 14:53:41
5 */ 5 */
6 6
7 import request from '@/utils/request' 7 import request from '@/utils/request'
...@@ -17,8 +17,6 @@ export function getCollectBiz () { ...@@ -17,8 +17,6 @@ export function getCollectBiz () {
17 method: 'post' 17 method: 'post'
18 }) 18 })
19 } 19 }
20
21
22 /** 20 /**
23 * @description: 业务办理-获取左侧菜单 21 * @description: 业务办理-获取左侧菜单
24 * @author: renchao 22 * @author: renchao
...@@ -29,12 +27,11 @@ export function getleftMenu () { ...@@ -29,12 +27,11 @@ export function getleftMenu () {
29 method: 'post' 27 method: 'post'
30 }) 28 })
31 } 29 }
32
33 /** 30 /**
34 * @description: 登记簿补录 31 * @description: 登记簿补录
35 * @author: renchao 32 * @author: renchao
36 */ 33 */
37 export function getRepairBiz () { 34 export function getRepairBiz () {
38 return request({ 35 return request({
39 url: SERVER.SERVERAPI + '/rest/ywbl/BusinessApply/getRepairBiz', 36 url: SERVER.SERVERAPI + '/rest/ywbl/BusinessApply/getRepairBiz',
40 method: 'post' 37 method: 'post'
...@@ -50,7 +47,7 @@ export function getTogetherBiz () { ...@@ -50,7 +47,7 @@ export function getTogetherBiz () {
50 url: SERVER.SERVERAPI + '/rest/ywbl/BusinessApply/getTogetherBiz', 47 url: SERVER.SERVERAPI + '/rest/ywbl/BusinessApply/getTogetherBiz',
51 method: 'post' 48 method: 'post'
52 }) 49 })
53 } 50 }
54 51
55 /** 52 /**
56 * @description: 业务办理-获取下个节点内容 53 * @description: 业务办理-获取下个节点内容
......
1 // 封装axios请求
2 import axios from "axios";
3 // 创建axios的对象
4 const instance = axios.create({
5 baseURL: "http://192.168.2.235/management/rest/users",
6 })
7
8
9
10 export const getusername = (data) => instance({
11
12 url: '', // 请求地址
13 method: 'get',
14 params:{
15 queryOptions: {
16 conditionGroup: {
17 conditions: [
18 {
19 property: "loginName",
20 value:data,
21 operator: "IN",
22 },
23 ],
24 queryRelation: "AND",
25 },
26 orderBys:[{"property":"sort","direction":"desc"}]
27 },
28 },
29
30 })
1 /* 1 /*
2 * @Description: 楼盘表查询 2 * @Description: 楼盘表查询
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-07-12 13:26:37 4 * @LastEditTime: 2023-07-19 15:00:43
5 */ 5 */
6 import request from "@/utils/request"; 6 import request from "@/utils/request";
7 let SERVER = window.config 7 let SERVER = window.config
8 ? window.config 8 ? window.config
9 : JSON.parse(localStorage.getItem("ApiUrl")); 9 : JSON.parse(localStorage.getItem("ApiUrl"));
10 const url = SERVER.SERVERAPI + "/rest/zhcx/lpcx/"; 10 const url = SERVER.SERVERAPI + "/rest/zhcx/lpcx/";
11 //
12 /** 11 /**
13 * @description:楼盘查询- 根据条件进行列表查询 12 * @description:楼盘查询- 根据条件进行列表查询
14 * @param {*} data 13 * @param {*} data
15 * @author: renchao 14 * @author: renchao
16 */ 15 */
17 export function getLpZrz(data) { 16 export function getLpZrz (data) {
18 return request({ 17 return request({
19 url: "service-lpb/rest/zhcx/lpcx/getLpZrz", 18 url: "service-lpb/rest/zhcx/lpcx/getLpZrz",
20 method: "post", 19 method: "post",
...@@ -27,7 +26,7 @@ export function getLpZrz(data) { ...@@ -27,7 +26,7 @@ export function getLpZrz(data) {
27 * @param {*} zrzbsm 26 * @param {*} zrzbsm
28 * @author: renchao 27 * @author: renchao
29 */ 28 */
30 export function getLpb(zrzbsm) { 29 export function getLpb (zrzbsm) {
31 return request({ 30 return request({
32 url: "service-lpb/rest/zhcx/lpcx/getLpb?scyclx=0&zrzbsm=" + zrzbsm, 31 url: "service-lpb/rest/zhcx/lpcx/getLpb?scyclx=0&zrzbsm=" + zrzbsm,
33 method: "get", 32 method: "get",
...@@ -38,7 +37,7 @@ export function getLpb(zrzbsm) { ...@@ -38,7 +37,7 @@ export function getLpb(zrzbsm) {
38 * @param {*} zrzbsm 37 * @param {*} zrzbsm
39 * @author: renchao 38 * @author: renchao
40 */ 39 */
41 export function getLpbFwytAndQlxz(zrzbsm) { 40 export function getLpbFwytAndQlxz (zrzbsm) {
42 return request({ 41 return request({
43 url: 42 url:
44 "service-lpb/rest/zhcx/lpcx/getLpbFwytAndQlxz?scyclx=0&zrzbsm=" + 43 "service-lpb/rest/zhcx/lpcx/getLpbFwytAndQlxz?scyclx=0&zrzbsm=" +
...@@ -51,7 +50,7 @@ export function getLpbFwytAndQlxz(zrzbsm) { ...@@ -51,7 +50,7 @@ export function getLpbFwytAndQlxz(zrzbsm) {
51 * @param {*} zrzbsm 50 * @param {*} zrzbsm
52 * @author: renchao 51 * @author: renchao
53 */ 52 */
54 export function getLpbQsxtj(zrzbsm) { 53 export function getLpbQsxtj (zrzbsm) {
55 return request({ 54 return request({
56 url: "service-lpb/rest/zhcx/lpcx/getLpbQsxtj?scyclx=0&zrzbsm=" + zrzbsm, 55 url: "service-lpb/rest/zhcx/lpcx/getLpbQsxtj?scyclx=0&zrzbsm=" + zrzbsm,
57 method: "get", 56 method: "get",
...@@ -65,7 +64,7 @@ export function getLpbQsxtj(zrzbsm) { ...@@ -65,7 +64,7 @@ export function getLpbQsxtj(zrzbsm) {
65 * scyclx 实测预测类型 0预测,1实测 64 * scyclx 实测预测类型 0预测,1实测
66 * @return {*} 65 * @return {*}
67 */ 66 */
68 export function getLpbTj(zrzbsm) { 67 export function getLpbTj (zrzbsm) {
69 return request({ 68 return request({
70 url: "service-lpb/rest/zhcx/lpcx/getLpbTj?scyclx=0&zrzbsm=" + zrzbsm, 69 url: "service-lpb/rest/zhcx/lpcx/getLpbTj?scyclx=0&zrzbsm=" + zrzbsm,
71 method: "get", 70 method: "get",
......
...@@ -17,8 +17,6 @@ export function getErrorLogList (data) { ...@@ -17,8 +17,6 @@ export function getErrorLogList (data) {
17 data 17 data
18 }) 18 })
19 } 19 }
20
21
22 /** 20 /**
23 * @description: 系统监控 -获取操作日志列表 21 * @description: 系统监控 -获取操作日志列表
24 * @param {*} data 22 * @param {*} data
...@@ -31,7 +29,6 @@ export function getOperationLogList (data) { ...@@ -31,7 +29,6 @@ export function getOperationLogList (data) {
31 data 29 data
32 }) 30 })
33 } 31 }
34
35 /** 32 /**
36 * @description: 系统监控 -主机监控 33 * @description: 系统监控 -主机监控
37 * @author: renchao 34 * @author: renchao
......
1 /* 1 /*
2 * @Description: 业务申请 2 * @Description: 业务申请
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-05-17 10:13:24 4 * @LastEditTime: 2023-07-19 14:52:03
5 */ 5 */
6 6
7 import request from '@/utils/request' 7 import request from '@/utils/request'
...@@ -132,11 +132,11 @@ export function selectDz (data) { ...@@ -132,11 +132,11 @@ export function selectDz (data) {
132 data 132 data
133 }) 133 })
134 } 134 }
135 /**
136 * @description: 业务办理-选择单元-查询户信息
137 * @author: renchao
138 */
135 139
136
137 /*
138 业务办理-选择单元-查询户信息
139 */
140 export function selectH (data) { 140 export function selectH (data) {
141 return request({ 141 return request({
142 url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectH', 142 url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectH',
......
1 <!--
2 * @Description:
3 * @Autor: renchao
4 * @LastEditTime: 2023-07-19 15:01:08
5 -->
1 <template> 6 <template>
2 <div class="djxxTable"> 7 <div class="djxxTable">
3 <div class="tableBox"> 8 <div class="tableBox">
......
1 <!--
2 * @Description:
3 * @Autor: renchao
4 * @LastEditTime: 2023-07-19 15:01:40
5 -->
1 <template> 6 <template>
2 <div class="djxxTable"> 7 <div class="djxxTable">
3 <div class="tableBox"> 8 <div class="tableBox">
......
1 <!--
2 * @Description:
3 * @Autor: renchao
4 * @LastEditTime: 2023-07-19 15:03:14
5 -->
1 <template> 6 <template>
2 <div class="djxxTable"> 7 <div class="djxxTable">
3 <div class="tableBox"> 8 <div class="tableBox">
......
1 <!--
2 * @Description:
3 * @Autor: renchao
4 * @LastEditTime: 2023-07-19 15:03:56
5 -->
1 <template> 6 <template>
2 <div class="djxxTable"> 7 <div class="djxxTable">
3 <div class="tableBox"> 8 <div class="tableBox">
......
1 <!--
2 * @Description:
3 * @Autor: renchao
4 * @LastEditTime: 2023-07-19 15:04:07
5 -->
1 <template> 6 <template>
2 <div class="djxxTable"> 7 <div class="djxxTable">
3 <div class="tableBox"> 8 <div class="tableBox">
......
1 <!--
2 * @Description:
3 * @Autor: renchao
4 * @LastEditTime: 2023-07-19 15:04:15
5 -->
1 <template> 6 <template>
2 <div class="djxxTable"> 7 <div class="djxxTable">
3 <div class="tableBox"> 8 <div class="tableBox">
......
1 <!--
2 * @Description:
3 * @Autor: renchao
4 * @LastEditTime: 2023-07-19 15:04:26
5 -->
1 <template> 6 <template>
2 <div class="from-clues"> 7 <div class="from-clues">
3 <!-- 表单部分 --> 8 <!-- 表单部分 -->
...@@ -10,8 +15,7 @@ ...@@ -10,8 +15,7 @@
10 placeholder="请输入编号" 15 placeholder="请输入编号"
11 v-model="queryForm.jklx" 16 v-model="queryForm.jklx"
12 class="width200px" 17 class="width200px"
13 clearable 18 clearable></el-input>
14 ></el-input>
15 </el-form-item> 19 </el-form-item>
16 </el-col> 20 </el-col>
17 <el-col :span="5"> 21 <el-col :span="5">
...@@ -20,8 +24,7 @@ ...@@ -20,8 +24,7 @@
20 placeholder="请输入编号" 24 placeholder="请输入编号"
21 v-model="queryForm.dyzt" 25 v-model="queryForm.dyzt"
22 class="width200px" 26 class="width200px"
23 clearable 27 clearable></el-input>
24 ></el-input>
25 </el-form-item> 28 </el-form-item>
26 </el-col> 29 </el-col>
27 </el-row> 30 </el-row>
...@@ -33,8 +36,7 @@ ...@@ -33,8 +36,7 @@
33 placeholder="请输入IP" 36 placeholder="请输入IP"
34 v-model="queryForm.fwip" 37 v-model="queryForm.fwip"
35 class="width200px" 38 class="width200px"
36 clearable 39 clearable></el-input>
37 ></el-input>
38 40
39 </el-form-item> 41 </el-form-item>
40 </el-col> 42 </el-col>
...@@ -53,14 +55,13 @@ ...@@ -53,14 +55,13 @@
53 placeholder="请输入url" 55 placeholder="请输入url"
54 v-model="queryForm.qqdz" 56 v-model="queryForm.qqdz"
55 class="width500px" 57 class="width500px"
56 clearable 58 clearable></el-input>
57 ></el-input>
58 59
59 </el-form-item> 60 </el-form-item>
60 </el-col> 61 </el-col>
61 </el-row> 62 </el-row>
62 63
63 </el-row> 64 </el-row>
64 <el-row> 65 <el-row>
65 <el-col :span="20"> 66 <el-col :span="20">
66 <el-form-item label="请求头数据"> 67 <el-form-item label="请求头数据">
...@@ -69,8 +70,7 @@ ...@@ -69,8 +70,7 @@
69 placeholder="请输入请求头数据" 70 placeholder="请输入请求头数据"
70 v-model="queryForm.qqtsj" 71 v-model="queryForm.qqtsj"
71 class="width500px" 72 class="width500px"
72 clearable 73 clearable></el-input>
73 ></el-input>
74 74
75 </el-form-item> 75 </el-form-item>
76 </el-col> 76 </el-col>
...@@ -83,8 +83,7 @@ ...@@ -83,8 +83,7 @@
83 placeholder="请输入参数" 83 placeholder="请输入参数"
84 v-model="queryForm.rcsj" 84 v-model="queryForm.rcsj"
85 class="width500px" 85 class="width500px"
86 clearable 86 clearable></el-input>
87 ></el-input>
88 87
89 </el-form-item> 88 </el-form-item>
90 </el-col> 89 </el-col>
...@@ -98,8 +97,7 @@ ...@@ -98,8 +97,7 @@
98 placeholder="调用描述" 97 placeholder="调用描述"
99 v-model="queryForm.dyms" 98 v-model="queryForm.dyms"
100 class="width200px" 99 class="width200px"
101 clearable 100 clearable></el-input>
102 ></el-input>
103 101
104 </el-form-item> 102 </el-form-item>
105 </el-col> 103 </el-col>
...@@ -113,8 +111,7 @@ ...@@ -113,8 +111,7 @@
113 placeholder="返回数据" 111 placeholder="返回数据"
114 v-model="queryForm.fhsj" 112 v-model="queryForm.fhsj"
115 class="width200px" 113 class="width200px"
116 clearable 114 clearable></el-input>
117 ></el-input>
118 115
119 </el-form-item> 116 </el-form-item>
120 </el-col> 117 </el-col>
...@@ -137,7 +134,7 @@ ...@@ -137,7 +134,7 @@
137 <script> 134 <script>
138 135
139 136
140 export default { 137 export default {
141 138
142 data () { 139 data () {
143 return { 140 return {
...@@ -155,8 +152,8 @@ export default { ...@@ -155,8 +152,8 @@ export default {
155 } 152 }
156 }, 153 },
157 154
158 } 155 }
159 </script> 156 </script>
160 <style scoped lang="scss"> 157 <style scoped lang="scss">
161 @import "~@/styles/public.scss"; 158 @import "~@/styles/public.scss";
162 </style> 159 </style>
...\ No newline at end of file ...\ No newline at end of file
......
1 <!--
2 * @Description:
3 * @Autor: renchao
4 * @LastEditTime: 2023-07-19 15:04:38
5 -->
1 <template> 6 <template>
2 <div class="from-clues"> 7 <div class="from-clues">
3 <!-- 表单部分 --> 8 <!-- 表单部分 -->
...@@ -10,8 +15,7 @@ ...@@ -10,8 +15,7 @@
10 placeholder="请输入编号" 15 placeholder="请输入编号"
11 v-model="queryForm.jklx" 16 v-model="queryForm.jklx"
12 class="width200px" 17 class="width200px"
13 clearable 18 clearable></el-input>
14 ></el-input>
15 </el-form-item> 19 </el-form-item>
16 </el-col> 20 </el-col>
17 <el-col :span="5"> 21 <el-col :span="5">
...@@ -20,8 +24,7 @@ ...@@ -20,8 +24,7 @@
20 placeholder="请输入编号" 24 placeholder="请输入编号"
21 v-model="queryForm.dyzt" 25 v-model="queryForm.dyzt"
22 class="width200px" 26 class="width200px"
23 clearable 27 clearable></el-input>
24 ></el-input>
25 </el-form-item> 28 </el-form-item>
26 </el-col> 29 </el-col>
27 </el-row> 30 </el-row>
...@@ -33,8 +36,7 @@ ...@@ -33,8 +36,7 @@
33 placeholder="请输入IP" 36 placeholder="请输入IP"
34 v-model="queryForm.fwip" 37 v-model="queryForm.fwip"
35 class="width200px" 38 class="width200px"
36 clearable 39 clearable></el-input>
37 ></el-input>
38 40
39 </el-form-item> 41 </el-form-item>
40 </el-col> 42 </el-col>
...@@ -53,14 +55,13 @@ ...@@ -53,14 +55,13 @@
53 placeholder="请输入url" 55 placeholder="请输入url"
54 v-model="queryForm.qqdz" 56 v-model="queryForm.qqdz"
55 class="width500px" 57 class="width500px"
56 clearable 58 clearable></el-input>
57 ></el-input>
58 59
59 </el-form-item> 60 </el-form-item>
60 </el-col> 61 </el-col>
61 </el-row> 62 </el-row>
62 63
63 </el-row> 64 </el-row>
64 <el-row> 65 <el-row>
65 <el-col :span="20"> 66 <el-col :span="20">
66 <el-form-item label="请求头数据"> 67 <el-form-item label="请求头数据">
...@@ -69,8 +70,7 @@ ...@@ -69,8 +70,7 @@
69 placeholder="请输入请求头数据" 70 placeholder="请输入请求头数据"
70 v-model="queryForm.qqtsj" 71 v-model="queryForm.qqtsj"
71 class="width500px" 72 class="width500px"
72 clearable 73 clearable></el-input>
73 ></el-input>
74 74
75 </el-form-item> 75 </el-form-item>
76 </el-col> 76 </el-col>
...@@ -83,8 +83,7 @@ ...@@ -83,8 +83,7 @@
83 placeholder="请输入参数" 83 placeholder="请输入参数"
84 v-model="queryForm.rcsj" 84 v-model="queryForm.rcsj"
85 class="width500px" 85 class="width500px"
86 clearable 86 clearable></el-input>
87 ></el-input>
88 87
89 </el-form-item> 88 </el-form-item>
90 </el-col> 89 </el-col>
...@@ -98,8 +97,7 @@ ...@@ -98,8 +97,7 @@
98 placeholder="调用描述" 97 placeholder="调用描述"
99 v-model="queryForm.dyms" 98 v-model="queryForm.dyms"
100 class="width200px" 99 class="width200px"
101 clearable 100 clearable></el-input>
102 ></el-input>
103 101
104 </el-form-item> 102 </el-form-item>
105 </el-col> 103 </el-col>
...@@ -113,8 +111,7 @@ ...@@ -113,8 +111,7 @@
113 placeholder="返回数据" 111 placeholder="返回数据"
114 v-model="queryForm.fhsj" 112 v-model="queryForm.fhsj"
115 class="width200px" 113 class="width200px"
116 clearable 114 clearable></el-input>
117 ></el-input>
118 115
119 </el-form-item> 116 </el-form-item>
120 </el-col> 117 </el-col>
...@@ -137,7 +134,7 @@ ...@@ -137,7 +134,7 @@
137 <script> 134 <script>
138 135
139 136
140 export default { 137 export default {
141 138
142 data () { 139 data () {
143 return { 140 return {
...@@ -155,8 +152,8 @@ export default { ...@@ -155,8 +152,8 @@ export default {
155 } 152 }
156 }, 153 },
157 154
158 } 155 }
159 </script> 156 </script>
160 <style scoped lang="scss"> 157 <style scoped lang="scss">
161 @import "~@/styles/public.scss"; 158 @import "~@/styles/public.scss";
162 </style> 159 </style>
...\ No newline at end of file ...\ No newline at end of file
......
1 <!--
2 * @Description:
3 * @Autor: renchao
4 * @LastEditTime: 2023-07-19 14:09:11
5 -->
1 <template> 6 <template>
2 <div class="from-clues"> 7 <div class="from-clues">
3 <!-- 表单部分 --> 8 <!-- 表单部分 -->
...@@ -6,12 +11,12 @@ ...@@ -6,12 +11,12 @@
6 <el-row> 11 <el-row>
7 <el-col :span="5"> 12 <el-col :span="5">
8 <el-form-item label="个性化配置"> 13 <el-form-item label="个性化配置">
9 <el-input ></el-input> 14 <el-input></el-input>
10 </el-form-item> 15 </el-form-item>
11 </el-col> 16 </el-col>
12 <el-col :span="19" class="btnColRight"> 17 <el-col :span="19" class="btnColRight">
13 <el-form-item> 18 <el-form-item>
14 <el-button type="primary" native-type="submit" >查询</el-button> 19 <el-button type="primary" native-type="submit">查询</el-button>
15 </el-form-item> 20 </el-form-item>
16 </el-col> 21 </el-col>
17 </el-row> 22 </el-row>
...@@ -19,12 +24,12 @@ ...@@ -19,12 +24,12 @@
19 </div> 24 </div>
20 <!-- 表格 --> 25 <!-- 表格 -->
21 </div> 26 </div>
22 </template> 27 </template>
23 <script> 28 <script>
24 import table from "@/utils/mixin/table"; 29 import table from "@/utils/mixin/table";
25 export default { 30 export default {
26 name: "gxhpz", 31 name: "gxhpz",
27 components: { }, 32 components: {},
28 mixins: [table], 33 mixins: [table],
29 mounted () { 34 mounted () {
30 }, 35 },
...@@ -40,5 +45,5 @@ ...@@ -40,5 +45,5 @@
40 </script> 45 </script>
41 <style scoped lang="scss"> 46 <style scoped lang="scss">
42 @import "~@/styles/public.scss"; 47 @import "~@/styles/public.scss";
43 </style> 48 </style>
44 49
...\ No newline at end of file ...\ No newline at end of file
......
1 <!--
2 * @Description:
3 * @Autor: renchao
4 * @LastEditTime: 2023-07-19 14:09:29
5 -->
1 <template> 6 <template>
2 <div class="from-clues"> 7 <div class="from-clues">
3 <!-- 表单部分 --> 8 <!-- 表单部分 -->
...@@ -31,11 +36,11 @@ ...@@ -31,11 +36,11 @@
31 </div> 36 </div>
32 </template> 37 </template>
33 <script> 38 <script>
34 import { mapGetters } from 'vuex' 39 import { mapGetters } from 'vuex'
35 import { sysSqywmbszSearch } from '@/api/sysSqywmbsz' 40 import { sysSqywmbszSearch } from '@/api/sysSqywmbsz'
36 import table from "@/utils/mixin/table" 41 import table from "@/utils/mixin/table"
37 import { datas, sendThis } from "./qtjfjmb" 42 import { datas, sendThis } from "./qtjfjmb"
38 export default { 43 export default {
39 name: "qtjfjmb", 44 name: "qtjfjmb",
40 mixins: [table], 45 mixins: [table],
41 mounted () { 46 mounted () {
...@@ -73,8 +78,8 @@ export default { ...@@ -73,8 +78,8 @@ export default {
73 this.$popupDialog("其他及附记模板", "system/qtjfjmb/components/editDialog", row, '60%') 78 this.$popupDialog("其他及附记模板", "system/qtjfjmb/components/editDialog", row, '60%')
74 } 79 }
75 } 80 }
76 } 81 }
77 </script> 82 </script>
78 <style scoped lang="scss"> 83 <style scoped lang="scss">
79 @import "~@/styles/public.scss"; 84 @import "~@/styles/public.scss";
80 </style> 85 </style>
......
1 <!-- 1 <!--
2 功能:登记情形设定 2 * @Description: 登记情形设定
3 * @Autor: renchao
4 * @LastEditTime: 2023-07-19 14:09:47
3 --> 5 -->
4 <template> 6 <template>
5 <div> 7 <div>
...@@ -22,9 +24,9 @@ ...@@ -22,9 +24,9 @@
22 </div> 24 </div>
23 </template> 25 </template>
24 <script> 26 <script>
25 import { mapGetters } from 'vuex' 27 import { mapGetters } from 'vuex'
26 import { upward, down } from '@/utils/operation' 28 import { upward, down } from '@/utils/operation'
27 export default { 29 export default {
28 props: { 30 props: {
29 ruleForm: { 31 ruleForm: {
30 type: Object, default: {} 32 type: Object, default: {}
...@@ -223,8 +225,7 @@ export default { ...@@ -223,8 +225,7 @@ export default {
223 down(index, this.tableData) 225 down(index, this.tableData)
224 }, 226 },
225 } 227 }
226 } 228 }
227 </script> 229 </script>
228 <style scoped lang='scss'> 230 <style scoped lang='scss'>
229
230 </style> 231 </style>
...\ No newline at end of file ...\ No newline at end of file
......
1 <!-- 1 <!--
2 功能:登记情形设定 2 * @Description: 功能:登记情形设定
3 * @Autor: renchao
4 * @LastEditTime: 2023-07-19 14:10:04
3 --> 5 -->
4 <template> 6 <template>
5 <div class='djqxsd'> 7 <div class='djqxsd'>
...@@ -22,8 +24,8 @@ ...@@ -22,8 +24,8 @@
22 </div> 24 </div>
23 </template> 25 </template>
24 <script> 26 <script>
25 import { upward, down } from '@/utils/operation' 27 import { upward, down } from '@/utils/operation'
26 export default { 28 export default {
27 props: { 29 props: {
28 ruleForm: { 30 ruleForm: {
29 type: Object, default: () => { 31 type: Object, default: () => {
...@@ -241,14 +243,14 @@ export default { ...@@ -241,14 +243,14 @@ export default {
241 this.key++ 243 this.key++
242 } 244 }
243 } 245 }
244 } 246 }
245 </script> 247 </script>
246 <style lang='scss' scoped> 248 <style lang='scss' scoped>
247 .djqxsd { 249 .djqxsd {
248 .repeat { 250 .repeat {
249 .el-input__inner { 251 .el-input__inner {
250 border-color: red !important; 252 border-color: red !important;
251 } 253 }
252 } 254 }
253 } 255 }
254 </style> 256 </style>
...\ No newline at end of file ...\ No newline at end of file
......
1 <!-- 1 <!--
2 功能:单元状态设定 2 * @Description: 单元状态设定
3 * @Autor: renchao
4 * @LastEditTime: 2023-07-19 14:10:44
3 --> 5 -->
4 <template> 6 <template>
5 <div class='该组件名称'> 7 <div class='该组件名称'>
...@@ -48,7 +50,7 @@ ...@@ -48,7 +50,7 @@
48 </div> 50 </div>
49 </template> 51 </template>
50 <script> 52 <script>
51 export default { 53 export default {
52 props: { 54 props: {
53 ruleForm: { 55 ruleForm: {
54 type: Object, default: {} 56 type: Object, default: {}
...@@ -103,19 +105,19 @@ export default { ...@@ -103,19 +105,19 @@ export default {
103 }) 105 })
104 } 106 }
105 } 107 }
106 } 108 }
107 </script> 109 </script>
108 <style scoped lang='scss'> 110 <style scoped lang='scss'>
109 @import "~@/styles/mixin.scss"; 111 @import "~@/styles/mixin.scss";
110 112
111 .dyztsd-title { 113 .dyztsd-title {
112 @include flex; 114 @include flex;
113 align-items: center; 115 align-items: center;
114 justify-content: space-between; 116 justify-content: space-between;
115 padding-left: 20px; 117 padding-left: 20px;
116 } 118 }
117 119
118 .qlxx-list { 120 .qlxx-list {
119 @include flex; 121 @include flex;
120 flex-wrap: wrap; 122 flex-wrap: wrap;
121 padding-left: 20px; 123 padding-left: 20px;
...@@ -124,9 +126,9 @@ export default { ...@@ -124,9 +126,9 @@ export default {
124 width: 33%; 126 width: 33%;
125 margin-bottom: 15px; 127 margin-bottom: 15px;
126 } 128 }
127 } 129 }
128 130
129 .screen-list { 131 .screen-list {
130 @include flex; 132 @include flex;
131 align-items: center; 133 align-items: center;
132 flex-wrap: wrap; 134 flex-wrap: wrap;
...@@ -151,5 +153,5 @@ export default { ...@@ -151,5 +153,5 @@ export default {
151 li:nth-child(odd) { 153 li:nth-child(odd) {
152 border-right: 1px solid $borderColor; 154 border-right: 1px solid $borderColor;
153 } 155 }
154 } 156 }
155 </style> 157 </style>
...\ No newline at end of file ...\ No newline at end of file
......
1 <!--
2 * @Description:
3 * @Autor: renchao
4 * @LastEditTime: 2023-07-19 14:10:56
5 -->
1 <template> 6 <template>
2 <dialogBox title="申请业务规则配置" @submitForm="submitForm" @closeDialog="closeDialog" v-model="myValue" 7 <dialogBox title="申请业务规则配置" @submitForm="submitForm" @closeDialog="closeDialog" v-model="myValue"
3 :btnDisabled="btnDisabled"> 8 :btnDisabled="btnDisabled">
...@@ -123,12 +128,12 @@ ...@@ -123,12 +128,12 @@
123 </dialogBox> 128 </dialogBox>
124 </template> 129 </template>
125 <script> 130 <script>
126 import { uploadUrl } from '@/api/file' 131 import { uploadUrl } from '@/api/file'
127 import djqxsd from './djqxsd.vue' 132 import djqxsd from './djqxsd.vue'
128 import clgzsd from './clgzsd.vue' 133 import clgzsd from './clgzsd.vue'
129 import dyztsd from './dyztsd.vue' 134 import dyztsd from './dyztsd.vue'
130 import { getSqdjywDetail, saveSqdjyw } from '@/api/sysSqdjyw' 135 import { getSqdjywDetail, saveSqdjyw } from '@/api/sysSqdjyw'
131 export default { 136 export default {
132 components: { 137 components: {
133 djqxsd, 138 djqxsd,
134 clgzsd, 139 clgzsd,
...@@ -314,25 +319,25 @@ export default { ...@@ -314,25 +319,25 @@ export default {
314 } 319 }
315 } 320 }
316 } 321 }
317 }; 322 };
318 </script> 323 </script>
319 <style scoped lang="scss"> 324 <style scoped lang="scss">
320 @import "~@/styles/mixin.scss"; 325 @import "~@/styles/mixin.scss";
321 326
322 /deep/.el-radio { 327 /deep/.el-radio {
323 margin-right: 0; 328 margin-right: 0;
324 } 329 }
325 330
326 /deep/.el-radio__label { 331 /deep/.el-radio__label {
327 padding-left: 2px; 332 padding-left: 2px;
328 } 333 }
329 334
330 .active { 335 .active {
331 background: $light-blue !important; 336 background: $light-blue !important;
332 color: #fff; 337 color: #fff;
333 } 338 }
334 339
335 .edit-title-list { 340 .edit-title-list {
336 @include flex; 341 @include flex;
337 342
338 li { 343 li {
...@@ -348,9 +353,9 @@ export default { ...@@ -348,9 +353,9 @@ export default {
348 @extend .active; 353 @extend .active;
349 } 354 }
350 } 355 }
351 } 356 }
352 357
353 .sqywgz-edit { 358 .sqywgz-edit {
354 @include flex; 359 @include flex;
355 width: 100%; 360 width: 100%;
356 height: 563px; 361 height: 563px;
...@@ -358,11 +363,9 @@ export default { ...@@ -358,11 +363,9 @@ export default {
358 &-left { 363 &-left {
359 width: 26px; 364 width: 26px;
360 365
361
362
363 li { 366 li {
364 @include flex-center; 367 @include flex-center;
365 background-color: #E4E7ED; 368 background-color: #e4e7ed;
366 border-bottom-right-radius: 5px; 369 border-bottom-right-radius: 5px;
367 padding: 15px; 370 padding: 15px;
368 cursor: pointer; 371 cursor: pointer;
...@@ -383,5 +386,5 @@ export default { ...@@ -383,5 +386,5 @@ export default {
383 flex: 1; 386 flex: 1;
384 width: 100%; 387 width: 100%;
385 } 388 }
386 } 389 }
387 </style> 390 </style>
......
1 <!--
2 * @Description:
3 * @Autor: renchao
4 * @LastEditTime: 2023-07-19 14:11:05
5 -->
1 <template> 6 <template>
2 <div> 7 <div>
3 <ul class="edit-title-list" v-if="djlxList.length > 0"> 8 <ul class="edit-title-list" v-if="djlxList.length > 0">
......
1 <!--
2 * @Description:
3 * @Autor: renchao
4 * @LastEditTime: 2023-07-19 14:11:20
5 -->
1 <template> 6 <template>
2 <div class="from-clues"> 7 <div class="from-clues">
3 <!-- 表单部分 --> 8 <!-- 表单部分 -->
...@@ -36,12 +41,12 @@ ...@@ -36,12 +41,12 @@
36 </div> 41 </div>
37 </template> 42 </template>
38 <script> 43 <script>
39 import table from "@/utils/mixin/table"; 44 import table from "@/utils/mixin/table";
40 import editDialog from "./components/editDialog.vue"; 45 import editDialog from "./components/editDialog.vue";
41 import componentDialog from "./sqywDetail.vue"; 46 import componentDialog from "./sqywDetail.vue";
42 import { datas, sendThis } from "./sqywgzdata"; 47 import { datas, sendThis } from "./sqywgzdata";
43 import { getSysSqdjywBysearch, getDjlxInfo } from "@/api/sysSqdjyw.js"; 48 import { getSysSqdjywBysearch, getDjlxInfo } from "@/api/sysSqdjyw.js";
44 export default { 49 export default {
45 name: "djbcx", 50 name: "djbcx",
46 components: { 51 components: {
47 editDialog, 52 editDialog,
...@@ -93,8 +98,8 @@ export default { ...@@ -93,8 +98,8 @@ export default {
93 this.$popupDialog(row.nodename, "system/sqywgz/sqywDetail", this.sqqlRule, '80%') 98 this.$popupDialog(row.nodename, "system/sqywgz/sqywDetail", this.sqqlRule, '80%')
94 } 99 }
95 } 100 }
96 } 101 }
97 </script> 102 </script>
98 <style scoped lang="scss"> 103 <style scoped lang="scss">
99 @import "~@/styles/public.scss"; 104 @import "~@/styles/public.scss";
100 </style> 105 </style>
......
...@@ -34,6 +34,7 @@ export default { ...@@ -34,6 +34,7 @@ export default {
34 }, 34 },
35 //切换选项卡内容组件 35 //切换选项卡内容组件
36 getFromRouter (tabname) { 36 getFromRouter (tabname) {
37 console.log(tabname, 'tabnametabnametabnametabnametabname');
37 //根据tabname获取选中的表单 此操作为了获取后端返回的表单对象,使用里面的是否可操作的属性 38 //根据tabname获取选中的表单 此操作为了获取后端返回的表单对象,使用里面的是否可操作的属性
38 for (let item of this.tabList) { 39 for (let item of this.tabList) {
39 if (item.value === tabname) { 40 if (item.value === tabname) {
......
1 <!-- 1 <!--
2 功能:高级搜索 2 * @Description:
3 作者:calliope 3 * @Autor: renchao
4 * @LastEditTime: 2023-07-19 14:08:17
4 --> 5 -->
5 <template> 6 <template>
6 <dialogBox :isButton="false" :isFullscreen="false" width="50%" @closeDialog="closeDialog" v-model="myValue" 7 <dialogBox :isButton="false" :isFullscreen="false" width="50%" @closeDialog="closeDialog" v-model="myValue"
...@@ -42,10 +43,10 @@ ...@@ -42,10 +43,10 @@
42 </template> 43 </template>
43 <script> 44 <script>
44 45
45 export default { 46 export default {
46 props: { 47 props: {
47 value: { type: Boolean, default: false }, 48 value: { type: Boolean, default: false },
48 advancedForm:{type: Object, default: "" } 49 advancedForm: { type: Object, default: "" }
49 }, 50 },
50 data () { 51 data () {
51 return { 52 return {
...@@ -62,8 +63,8 @@ export default { ...@@ -62,8 +63,8 @@ export default {
62 value (val) { 63 value (val) {
63 this.myValue = val 64 this.myValue = val
64 }, 65 },
65 advancedForm(){ 66 advancedForm () {
66 this.ruleForm={...this.advancedForm} 67 this.ruleForm = { ...this.advancedForm }
67 } 68 }
68 }, 69 },
69 70
...@@ -74,7 +75,7 @@ export default { ...@@ -74,7 +75,7 @@ export default {
74 }, 75 },
75 resetForm () { 76 resetForm () {
76 this.$refs['ruleForm'].resetFields() 77 this.$refs['ruleForm'].resetFields()
77 this.ruleForm={ 78 this.ruleForm = {
78 sqywmc: '', 79 sqywmc: '',
79 qlrmc: '', 80 qlrmc: '',
80 ywrmc: '', 81 ywrmc: '',
...@@ -88,17 +89,17 @@ export default { ...@@ -88,17 +89,17 @@ export default {
88 89
89 } 90 }
90 } 91 }
91 } 92 }
92 </script> 93 </script>
93 <style scoped lang='scss'> 94 <style scoped lang='scss'>
94 @import '~@/styles/public.scss'; 95 @import "~@/styles/public.scss";
95 96
96 .search-btn { 97 .search-btn {
97 padding: 0 20px 20px 20px; 98 padding: 0 20px 20px 20px;
98 text-align: right; 99 text-align: right;
99 } 100 }
100 101
101 /deep/.el-icon-date { 102 /deep/.el-icon-date {
102 display: none; 103 display: none;
103 } 104 }
104 </style> 105 </style>
......
1 <!-- 1 <!--
2 * @Description: 受理信息 2 * @Description: 受理信息
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-07-14 11:16:12 4 * @LastEditTime: 2023-07-19 14:43:59
5 --> 5 -->
6 <template> 6 <template>
7 <div class="slxx"> 7 <div class="slxx">
...@@ -268,7 +268,6 @@ ...@@ -268,7 +268,6 @@
268 this.ruleForm.ywrList = _.cloneDeep(val); 268 this.ruleForm.ywrList = _.cloneDeep(val);
269 }, 269 },
270 onSubmit () { 270 onSubmit () {
271 console.log("this.ruleForm",);
272 saveData(this.ruleForm).then((res) => { 271 saveData(this.ruleForm).then((res) => {
273 if (res.code === 200) { 272 if (res.code === 200) {
274 this.$message({ 273 this.$message({
......
1 <!-- 1 <!--
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-07-13 16:31:05 4 * @LastEditTime: 2023-07-19 14:38:31
5 --> 5 -->
6 <template> 6 <template>
7 <div class="from-clues"> 7 <div class="from-clues">
...@@ -114,7 +114,7 @@ ...@@ -114,7 +114,7 @@
114 class="loadingtext" 114 class="loadingtext"
115 @sort-change="handleSort" 115 @sort-change="handleSort"
116 :current-page.sync="pageData.currentPage" 116 :current-page.sync="pageData.currentPage"
117 :heightNum="295" 117 :heightNum="305"
118 :total="tableData.total" 118 :total="tableData.total"
119 @size-change="handleSizeChange" 119 @size-change="handleSizeChange"
120 @p-current-change="handleCurrentChange" 120 @p-current-change="handleCurrentChange"
......
1 <!--
2 * @Description:
3 * @Autor: renchao
4 * @LastEditTime: 2023-07-19 13:59:35
5 -->
1 <template> 6 <template>
2 <div class="from-clues"> 7 <div class="from-clues">
3 <!-- 表单部分 --> 8 <!-- 表单部分 -->
...@@ -89,12 +94,12 @@ ...@@ -89,12 +94,12 @@
89 </div> 94 </div>
90 </template> 95 </template>
91 <script> 96 <script>
92 import { mapGetters } from "vuex"; 97 import { mapGetters } from "vuex";
93 import table from "@/utils/mixin/table"; 98 import table from "@/utils/mixin/table";
94 import { datas, sendThis } from "./djbcxdata"; 99 import { datas, sendThis } from "./djbcxdata";
95 import { getDjbBysearch } from "@/api/search.js"; 100 import { getDjbBysearch } from "@/api/search.js";
96 101
97 export default { 102 export default {
98 name: "djbcx", 103 name: "djbcx",
99 mixins: [table], 104 mixins: [table],
100 mounted () { 105 mounted () {
...@@ -181,16 +186,16 @@ export default { ...@@ -181,16 +186,16 @@ export default {
181 186
182 // }, 187 // },
183 } 188 }
184 } 189 }
185 </script> 190 </script>
186 <style scoped lang="scss"> 191 <style scoped lang="scss">
187 @import "~@/styles/public.scss"; 192 @import "~@/styles/public.scss";
188 193
189 .icon-circle { 194 .icon-circle {
190 position: relative; 195 position: relative;
191 } 196 }
192 197
193 .icon-circle::before { 198 .icon-circle::before {
194 content: ""; 199 content: "";
195 width: 4px; 200 width: 4px;
196 height: 4px; 201 height: 4px;
...@@ -198,5 +203,5 @@ export default { ...@@ -198,5 +203,5 @@ export default {
198 background: #000; 203 background: #000;
199 top: 0px; 204 top: 0px;
200 left: 0px; 205 left: 0px;
201 } 206 }
202 </style> 207 </style>
......
1 <!--
2 * @Description:
3 * @Autor: renchao
4 * @LastEditTime: 2023-07-19 13:59:55
5 -->
1 <template> 6 <template>
2 <div class="from-clues"> 7 <div class="from-clues">
3 <!-- 表单部分 --> 8 <!-- 表单部分 -->
......
1 <!--
2 * @Description:
3 * @Autor: renchao
4 * @LastEditTime: 2023-07-19 14:00:03
5 -->
1 <template> 6 <template>
2 <div class="from-clues"> 7 <div class="from-clues">
3 <!-- 楼盘查询 --> 8 <!-- 楼盘查询 -->
......
1 <!--
2 * @Description:
3 * @Autor: renchao
4 * @LastEditTime: 2023-07-19 14:07:38
5 -->
1 <template> 6 <template>
2 <div class="from-clues"> 7 <div class="from-clues">
3 <!-- 表单部分 --> 8 <!-- 表单部分 -->
......