Merge branch 'dev'
Showing
15 changed files
with
80 additions
and
93 deletions
| 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: 业务办理-获取下个节点内容 | ... | ... |
src/api/getusername.js
deleted
100644 → 0
| 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: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 | ... | ... |
| ... | @@ -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 | * @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({ | ... | ... |
-
Please register or sign in to post a comment