Merge branch 'dev' of http://yun.pashanhoo.com:9090/bdc/bdcsjsb-web into dev
Showing
195 changed files
with
2829 additions
and
183 deletions
... | @@ -10,7 +10,7 @@ let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('Ap | ... | @@ -10,7 +10,7 @@ let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('Ap |
10 | class business { | 10 | class business { |
11 | /** | 11 | /** |
12 | * @description: 成功率统计 | 12 | * @description: 成功率统计 |
13 | * @param {*} startDate | 13 | * @param {*} startDate |
14 | * @param {*} endDate | 14 | * @param {*} endDate |
15 | * @param {*} qxdm | 15 | * @param {*} qxdm |
16 | * @author: renchao | 16 | * @author: renchao |
... | @@ -27,4 +27,4 @@ class business { | ... | @@ -27,4 +27,4 @@ class business { |
27 | }) | 27 | }) |
28 | } | 28 | } |
29 | } | 29 | } |
30 | export default new business() | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
30 | export default new business() | ... | ... |
... | @@ -39,6 +39,7 @@ export function getAreaReportPage (data) { | ... | @@ -39,6 +39,7 @@ export function getAreaReportPage (data) { |
39 | 39 | ||
40 | /** | 40 | /** |
41 | * @description: 接入数据上报分页 | 41 | * @description: 接入数据上报分页 |
42 | * @param {*} data | ||
42 | * @author: renchao | 43 | * @author: renchao |
43 | */ | 44 | */ |
44 | export function getReceiveDataReportPage (data) { | 45 | export function getReceiveDataReportPage (data) { |
... | @@ -51,6 +52,7 @@ export function getReceiveDataReportPage (data) { | ... | @@ -51,6 +52,7 @@ export function getReceiveDataReportPage (data) { |
51 | 52 | ||
52 | /** | 53 | /** |
53 | * @description: 数据上报分页 | 54 | * @description: 数据上报分页 |
55 | * @param {*} data | ||
54 | * @author: renchao | 56 | * @author: renchao |
55 | */ | 57 | */ |
56 | export function getDataReportPage (data) { | 58 | export function getDataReportPage (data) { |
... | @@ -61,6 +63,11 @@ export function getDataReportPage (data) { | ... | @@ -61,6 +63,11 @@ export function getDataReportPage (data) { |
61 | }) | 63 | }) |
62 | } | 64 | } |
63 | 65 | ||
66 | /** | ||
67 | * @description: 获取数据上报数据 | ||
68 | * @param {*} data | ||
69 | * @author: renchao | ||
70 | */ | ||
64 | export function getSjsbReportPage (data) { | 71 | export function getSjsbReportPage (data) { |
65 | return request({ | 72 | return request({ |
66 | url: urlHeader + 'getSjsbReportPage', | 73 | url: urlHeader + 'getSjsbReportPage', |
... | @@ -70,6 +77,7 @@ export function getSjsbReportPage (data) { | ... | @@ -70,6 +77,7 @@ export function getSjsbReportPage (data) { |
70 | } | 77 | } |
71 | /** | 78 | /** |
72 | * @description: 查询数据上报详情tabs选项卡 | 79 | * @description: 查询数据上报详情tabs选项卡 |
80 | * @param {*} params | ||
73 | * @author: renchao | 81 | * @author: renchao |
74 | */ | 82 | */ |
75 | export function getTabsDetail (params) { | 83 | export function getTabsDetail (params) { |
... | @@ -81,6 +89,7 @@ export function getTabsDetail (params) { | ... | @@ -81,6 +89,7 @@ export function getTabsDetail (params) { |
81 | } | 89 | } |
82 | /** | 90 | /** |
83 | * @description: 查询数据上报详情 | 91 | * @description: 查询数据上报详情 |
92 | * @param {*} params | ||
84 | * @author: renchao | 93 | * @author: renchao |
85 | */ | 94 | */ |
86 | export function getReportDetail (params) { | 95 | export function getReportDetail (params) { | ... | ... |
... | @@ -5,15 +5,21 @@ | ... | @@ -5,15 +5,21 @@ |
5 | */ | 5 | */ |
6 | import request from '@/utils/request' | 6 | import request from '@/utils/request' |
7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
8 | /* | 8 | /** |
9 | 获取全部字典数据 | 9 | * @description: 获取全部字典数据 |
10 | */ | 10 | * @author: renchao |
11 | */ | ||
11 | export function getAllDict () { | 12 | export function getAllDict () { |
12 | return request({ | 13 | return request({ |
13 | url: SERVER.SERVERAPI + '/rest/sys/dict/getAllDict', | 14 | url: SERVER.SERVERAPI + '/rest/sys/dict/getAllDict', |
14 | method: 'post' | 15 | method: 'post' |
15 | }) | 16 | }) |
16 | } | 17 | } |
18 | /** | ||
19 | * @description: 获取字典类型列表 | ||
20 | * @param {*} data | ||
21 | * @author: renchao | ||
22 | */ | ||
17 | export function getQlxxDictList (data) { | 23 | export function getQlxxDictList (data) { |
18 | return request({ | 24 | return request({ |
19 | url: SERVER.SERVERAPI + '/rest/sys/dict/getDictList', | 25 | url: SERVER.SERVERAPI + '/rest/sys/dict/getDictList', |
... | @@ -21,9 +27,11 @@ export function getQlxxDictList (data) { | ... | @@ -21,9 +27,11 @@ export function getQlxxDictList (data) { |
21 | data | 27 | data |
22 | }) | 28 | }) |
23 | } | 29 | } |
24 | /* | 30 | /** |
25 | 获取字典子级列表 | 31 | * @description: 获取字典子级列表 |
26 | */ | 32 | * @param {*} bsmDict |
33 | * @author: renchao | ||
34 | */ | ||
27 | export function getChildDictList (bsmDict) { | 35 | export function getChildDictList (bsmDict) { |
28 | return request({ | 36 | return request({ |
29 | url: SERVER.SERVERAPI + '/rest/sys/dict/getChildDictList', | 37 | url: SERVER.SERVERAPI + '/rest/sys/dict/getChildDictList', |
... | @@ -33,9 +41,11 @@ export function getChildDictList (bsmDict) { | ... | @@ -33,9 +41,11 @@ export function getChildDictList (bsmDict) { |
33 | } | 41 | } |
34 | }) | 42 | }) |
35 | } | 43 | } |
36 | /* | 44 | /** |
37 | 编辑字典数据 | 45 | * @description: 编辑字典数据 |
38 | */ | 46 | * @param {*} data |
47 | * @author: renchao | ||
48 | */ | ||
39 | export function editDictNode (data) { | 49 | export function editDictNode (data) { |
40 | return request({ | 50 | return request({ |
41 | url: SERVER.SERVERAPI + '/rest/sys/dict/editDictNode', | 51 | url: SERVER.SERVERAPI + '/rest/sys/dict/editDictNode', |
... | @@ -44,9 +54,10 @@ export function editDictNode (data) { | ... | @@ -44,9 +54,10 @@ export function editDictNode (data) { |
44 | }) | 54 | }) |
45 | } | 55 | } |
46 | 56 | ||
47 | /* | 57 | /** |
48 | 刷新字典缓存 | 58 | * @description: 刷新字典缓存 |
49 | */ | 59 | * @author: renchao |
60 | */ | ||
50 | export function refreshDictCache () { | 61 | export function refreshDictCache () { |
51 | return request({ | 62 | return request({ |
52 | url: SERVER.SERVERAPI + '/rest/sys/dict/refreshDictCache', | 63 | url: SERVER.SERVERAPI + '/rest/sys/dict/refreshDictCache', | ... | ... |
... | @@ -7,7 +7,11 @@ import request from "@/utils/request"; | ... | @@ -7,7 +7,11 @@ import request from "@/utils/request"; |
7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
8 | 8 | ||
9 | class djfDjDb { | 9 | class djfDjDb { |
10 | //登记登簿信息 | 10 | /** |
11 | * @description: 登记登簿信息 | ||
12 | * @param {*} bsmSjsb | ||
13 | * @author: renchao | ||
14 | */ | ||
11 | async getDjfDjDbById (bsmSjsb) { | 15 | async getDjfDjDbById (bsmSjsb) { |
12 | return request({ | 16 | return request({ |
13 | url: SERVER.SERVERAPI + "/rest/reg/DjfDjDb/detail", | 17 | url: SERVER.SERVERAPI + "/rest/reg/DjfDjDb/detail", |
... | @@ -17,7 +21,11 @@ class djfDjDb { | ... | @@ -17,7 +21,11 @@ class djfDjDb { |
17 | }, | 21 | }, |
18 | }); | 22 | }); |
19 | } | 23 | } |
20 | //修改登记登簿信息 | 24 | /** |
25 | * @description: 修改登记登簿信息 | ||
26 | * @param {*} data | ||
27 | * @author: renchao | ||
28 | */ | ||
21 | async updateDjfDjDb (data) { | 29 | async updateDjfDjDb (data) { |
22 | return request({ | 30 | return request({ |
23 | url: SERVER.SERVERAPI + "/rest/reg/DjfDjDb/edit", | 31 | url: SERVER.SERVERAPI + "/rest/reg/DjfDjDb/edit", | ... | ... |
... | @@ -7,7 +7,11 @@ import request from "@/utils/request"; | ... | @@ -7,7 +7,11 @@ import request from "@/utils/request"; |
7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
8 | 8 | ||
9 | class djfDjFz { | 9 | class djfDjFz { |
10 | //登记发证信息 | 10 | /** |
11 | * @description: 登记发证信息 | ||
12 | * @param {*} bsmSjsb | ||
13 | * @author: renchao | ||
14 | */ | ||
11 | async getDjfDjFzDetailById (bsmSjsb) { | 15 | async getDjfDjFzDetailById (bsmSjsb) { |
12 | return request({ | 16 | return request({ |
13 | url: SERVER.SERVERAPI + "/rest/reg/DjfDjFz/detail", | 17 | url: SERVER.SERVERAPI + "/rest/reg/DjfDjFz/detail", |
... | @@ -17,7 +21,11 @@ class djfDjFz { | ... | @@ -17,7 +21,11 @@ class djfDjFz { |
17 | }, | 21 | }, |
18 | }); | 22 | }); |
19 | } | 23 | } |
20 | //修改登记发证信息 | 24 | /** |
25 | * @description: 修改登记发证信息 | ||
26 | * @param {*} data | ||
27 | * @author: renchao | ||
28 | */ | ||
21 | async updateDjfDjFz (data) { | 29 | async updateDjfDjFz (data) { |
22 | return request({ | 30 | return request({ |
23 | url: SERVER.SERVERAPI + "/rest/reg/DjfDjFz/edit", | 31 | url: SERVER.SERVERAPI + "/rest/reg/DjfDjFz/edit", | ... | ... |
... | @@ -7,7 +7,11 @@ import request from "@/utils/request"; | ... | @@ -7,7 +7,11 @@ import request from "@/utils/request"; |
7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
8 | 8 | ||
9 | class djfDjGd { | 9 | class djfDjGd { |
10 | // 登记归档信息-业务表单 | 10 | /** |
11 | * @description: 登记归档信息-业务表单 | ||
12 | * @param {*} bsmSjsb | ||
13 | * @author: renchao | ||
14 | */ | ||
11 | async getDjfDjGdById (bsmSjsb) { | 15 | async getDjfDjGdById (bsmSjsb) { |
12 | return request({ | 16 | return request({ |
13 | url: SERVER.SERVERAPI + "/rest/reg/DjfDjGd/detail", | 17 | url: SERVER.SERVERAPI + "/rest/reg/DjfDjGd/detail", |
... | @@ -17,7 +21,11 @@ class djfDjGd { | ... | @@ -17,7 +21,11 @@ class djfDjGd { |
17 | }, | 21 | }, |
18 | }); | 22 | }); |
19 | } | 23 | } |
20 | // 登记归档信息-业务-修改 | 24 | /** |
25 | * @description: 登记归档信息-业务-修改 | ||
26 | * @param {*} data | ||
27 | * @author: renchao | ||
28 | */ | ||
21 | async updateDjfDjGd (data) { | 29 | async updateDjfDjGd (data) { |
22 | return request({ | 30 | return request({ |
23 | url: SERVER.SERVERAPI + "/rest/reg/DjfDjGd/edit", | 31 | url: SERVER.SERVERAPI + "/rest/reg/DjfDjGd/edit", | ... | ... |
... | @@ -7,7 +7,11 @@ import request from '@/utils/request' | ... | @@ -7,7 +7,11 @@ import request from '@/utils/request' |
7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
8 | 8 | ||
9 | class djfDjSf { | 9 | class djfDjSf { |
10 | // 登记收费信息 | 10 | /** |
11 | * @description: 登记收费信息 | ||
12 | * @param {*} bsmSjsb | ||
13 | * @author: renchao | ||
14 | */ | ||
11 | async getDjfDjSfById (bsmSjsb) { | 15 | async getDjfDjSfById (bsmSjsb) { |
12 | return request({ | 16 | return request({ |
13 | url: SERVER.SERVERAPI + '/rest/reg/DjfDjSf/detail', | 17 | url: SERVER.SERVERAPI + '/rest/reg/DjfDjSf/detail', |
... | @@ -17,7 +21,11 @@ class djfDjSf { | ... | @@ -17,7 +21,11 @@ class djfDjSf { |
17 | } | 21 | } |
18 | }) | 22 | }) |
19 | } | 23 | } |
20 | // 登记收费信息-修改 | 24 | /** |
25 | * @description: 登记收费信息-修改 | ||
26 | * @param {*} data | ||
27 | * @author: renchao | ||
28 | */ | ||
21 | async updateDjfDjSf (data) { | 29 | async updateDjfDjSf (data) { |
22 | return request({ | 30 | return request({ |
23 | url: SERVER.SERVERAPI + '/rest/reg/DjfDjSf/edit', | 31 | url: SERVER.SERVERAPI + '/rest/reg/DjfDjSf/edit', | ... | ... |
... | @@ -7,7 +7,11 @@ import request from "@/utils/request"; | ... | @@ -7,7 +7,11 @@ import request from "@/utils/request"; |
7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
8 | 8 | ||
9 | class djfDjSh { | 9 | class djfDjSh { |
10 | //登记审核信息 | 10 | /** |
11 | * @description: 登记审核信息 | ||
12 | * @param {*} bsmSjsb | ||
13 | * @author: renchao | ||
14 | */ | ||
11 | async getDjfDjShById (bsmSjsb) { | 15 | async getDjfDjShById (bsmSjsb) { |
12 | return request({ | 16 | return request({ |
13 | url: SERVER.SERVERAPI + "/rest/reg/DjfDjSh/detail", | 17 | url: SERVER.SERVERAPI + "/rest/reg/DjfDjSh/detail", |
... | @@ -17,7 +21,11 @@ class djfDjSh { | ... | @@ -17,7 +21,11 @@ class djfDjSh { |
17 | }, | 21 | }, |
18 | }); | 22 | }); |
19 | } | 23 | } |
20 | //修改登记审核信息 | 24 | /** |
25 | * @description: 修改登记审核信息 | ||
26 | * @param {*} data | ||
27 | * @author: renchao | ||
28 | */ | ||
21 | async updateDjfDjSh (data) { | 29 | async updateDjfDjSh (data) { |
22 | return request({ | 30 | return request({ |
23 | url: SERVER.SERVERAPI + "/rest/reg/DjfDjSh/edit", | 31 | url: SERVER.SERVERAPI + "/rest/reg/DjfDjSh/edit", | ... | ... |
... | @@ -7,7 +7,11 @@ import request from "@/utils/request"; | ... | @@ -7,7 +7,11 @@ import request from "@/utils/request"; |
7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
8 | 8 | ||
9 | class djfDjSj { | 9 | class djfDjSj { |
10 | //登记收件信息 | 10 | /** |
11 | * @description: 登记收件信息 | ||
12 | * @param {*} bsmSjsb | ||
13 | * @author: renchao | ||
14 | */ | ||
11 | async getDjfDjSjById (bsmSjsb) { | 15 | async getDjfDjSjById (bsmSjsb) { |
12 | return request({ | 16 | return request({ |
13 | url: SERVER.SERVERAPI + "/rest/reg/DjfDjSj/detail", | 17 | url: SERVER.SERVERAPI + "/rest/reg/DjfDjSj/detail", |
... | @@ -17,7 +21,11 @@ class djfDjSj { | ... | @@ -17,7 +21,11 @@ class djfDjSj { |
17 | }, | 21 | }, |
18 | }); | 22 | }); |
19 | } | 23 | } |
20 | //修改登记收件信息 | 24 | /** |
25 | * @description: 修改登记收件信息 | ||
26 | * @param {*} data | ||
27 | * @author: renchao | ||
28 | */ | ||
21 | async updateDjfDjSj (data) { | 29 | async updateDjfDjSj (data) { |
22 | return request({ | 30 | return request({ |
23 | url: SERVER.SERVERAPI + "/rest/reg/DjfDjSj/edit", | 31 | url: SERVER.SERVERAPI + "/rest/reg/DjfDjSj/edit", | ... | ... |
... | @@ -7,7 +7,11 @@ import request from "@/utils/request"; | ... | @@ -7,7 +7,11 @@ import request from "@/utils/request"; |
7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
8 | 8 | ||
9 | class djfDjSqr { | 9 | class djfDjSqr { |
10 | // 申请人属性信息-业务表单 | 10 | /** |
11 | * @description: 申请人属性信息-业务表单 | ||
12 | * @param {*} bsmSjsb | ||
13 | * @author: renchao | ||
14 | */ | ||
11 | async getDjfDjSqrById (bsmSjsb) { | 15 | async getDjfDjSqrById (bsmSjsb) { |
12 | return request({ | 16 | return request({ |
13 | url: SERVER.SERVERAPI + "/rest/reg/DjfDjSqr/detail", | 17 | url: SERVER.SERVERAPI + "/rest/reg/DjfDjSqr/detail", |
... | @@ -17,7 +21,11 @@ class djfDjSqr { | ... | @@ -17,7 +21,11 @@ class djfDjSqr { |
17 | }, | 21 | }, |
18 | }); | 22 | }); |
19 | } | 23 | } |
20 | // 申请人属性信息-业务-修改 | 24 | /** |
25 | * @description: 申请人属性信息-业务-修改 | ||
26 | * @param {*} data | ||
27 | * @author: renchao | ||
28 | */ | ||
21 | async updateDjfDjSqr (data) { | 29 | async updateDjfDjSqr (data) { |
22 | return request({ | 30 | return request({ |
23 | url: SERVER.SERVERAPI + "/rest/reg/DjfDjSqr/edit", | 31 | url: SERVER.SERVERAPI + "/rest/reg/DjfDjSqr/edit", | ... | ... |
... | @@ -7,7 +7,11 @@ import request from "@/utils/request"; | ... | @@ -7,7 +7,11 @@ import request from "@/utils/request"; |
7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
8 | 8 | ||
9 | class djfDjSz { | 9 | class djfDjSz { |
10 | //登记缮证信息 | 10 | /** |
11 | * @description: 登记缮证信息 | ||
12 | * @param {*} bsmSjsb | ||
13 | * @author: renchao | ||
14 | */ | ||
11 | async getDjfDjSzById (bsmSjsb) { | 15 | async getDjfDjSzById (bsmSjsb) { |
12 | return request({ | 16 | return request({ |
13 | url: SERVER.SERVERAPI + "/rest/reg/DjfDjSz/detail", | 17 | url: SERVER.SERVERAPI + "/rest/reg/DjfDjSz/detail", |
... | @@ -17,7 +21,11 @@ class djfDjSz { | ... | @@ -17,7 +21,11 @@ class djfDjSz { |
17 | }, | 21 | }, |
18 | }); | 22 | }); |
19 | } | 23 | } |
20 | //修改登记缮证信息 | 24 | /** |
25 | * @description: 修改登记缮证信息 | ||
26 | * @param {*} data | ||
27 | * @author: renchao | ||
28 | */ | ||
21 | async updateDjfDjSz (data) { | 29 | async updateDjfDjSz (data) { |
22 | return request({ | 30 | return request({ |
23 | url: SERVER.SERVERAPI + "/rest/reg/DjfDjSz/edit", | 31 | url: SERVER.SERVERAPI + "/rest/reg/DjfDjSz/edit", | ... | ... |
... | @@ -7,7 +7,11 @@ import request from "@/utils/request"; | ... | @@ -7,7 +7,11 @@ import request from "@/utils/request"; |
7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
8 | 8 | ||
9 | class djtDjSlsq { | 9 | class djtDjSlsq { |
10 | // 登记受理申请信息 -- 业务表单 | 10 | /** |
11 | * @description: 登记受理申请信息 -- 业务表单 | ||
12 | * @param {*} bsmSjsb | ||
13 | * @author: renchao | ||
14 | */ | ||
11 | async getDjtDjSlsqById (bsmSjsb) { | 15 | async getDjtDjSlsqById (bsmSjsb) { |
12 | return request({ | 16 | return request({ |
13 | url: SERVER.SERVERAPI + "/rest/reg/DjtDjSlsq/detail", | 17 | url: SERVER.SERVERAPI + "/rest/reg/DjtDjSlsq/detail", |
... | @@ -17,7 +21,11 @@ class djtDjSlsq { | ... | @@ -17,7 +21,11 @@ class djtDjSlsq { |
17 | }, | 21 | }, |
18 | }); | 22 | }); |
19 | } | 23 | } |
20 | // 登记受理申请信息 -- 业务修改 | 24 | /** |
25 | * @description: 登记受理申请信息 -- 业务修改 | ||
26 | * @param {*} data | ||
27 | * @author: renchao | ||
28 | */ | ||
21 | async updateDjtDjSlsq (data) { | 29 | async updateDjtDjSlsq (data) { |
22 | return request({ | 30 | return request({ |
23 | url: SERVER.SERVERAPI + "/rest/reg/DjtDjSlsq/edit", | 31 | url: SERVER.SERVERAPI + "/rest/reg/DjtDjSlsq/edit", |
... | @@ -25,7 +33,11 @@ class djtDjSlsq { | ... | @@ -25,7 +33,11 @@ class djtDjSlsq { |
25 | data, | 33 | data, |
26 | }); | 34 | }); |
27 | } | 35 | } |
28 | //修改登记受理申请信息 | 36 | /** |
37 | * @description: 修改登记受理申请信息 | ||
38 | * @param {*} data | ||
39 | * @author: renchao | ||
40 | */ | ||
29 | async updateDjtDjSlsq (data) { | 41 | async updateDjtDjSlsq (data) { |
30 | return request({ | 42 | return request({ |
31 | url: SERVER.SERVERAPI + "/rest/reg/DjtDjSlsq/updateDjtDjSlsq", | 43 | url: SERVER.SERVERAPI + "/rest/reg/DjtDjSlsq/updateDjtDjSlsq", | ... | ... |
... | @@ -7,11 +7,13 @@ import request from "@/utils/request"; | ... | @@ -7,11 +7,13 @@ import request from "@/utils/request"; |
7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
8 | 8 | ||
9 | class efficient { | 9 | class efficient { |
10 | /* | 10 | /** |
11 | 获取对应的业务量总数 | 11 | * @description: 获取对应的业务量总数 |
12 | startDate:开始日期 | 12 | * @param {*} startDate:开始日期 |
13 | endDate:结束日期 | 13 | * @param {*} endDate:结束日期 |
14 | */ | 14 | * @param {*} qxdm |
15 | * @author: renchao | ||
16 | */ | ||
15 | async getProcessCounts (startDate, endDate, qxdm) { | 17 | async getProcessCounts (startDate, endDate, qxdm) { |
16 | return request({ | 18 | return request({ |
17 | url: SERVER.SERVERAPI + "/rest/statistics/Efficient/getProcessCounts", | 19 | url: SERVER.SERVERAPI + "/rest/statistics/Efficient/getProcessCounts", |
... | @@ -23,12 +25,13 @@ class efficient { | ... | @@ -23,12 +25,13 @@ class efficient { |
23 | }, | 25 | }, |
24 | }); | 26 | }); |
25 | } | 27 | } |
26 | /* | 28 | /** |
27 | 获取各区县业务对应的天数 | 29 | * @description: 获取各区县业务对应的天数 |
28 | recType:业务代码 | 30 | * @param {*} recType:业务代码 |
29 | startDate:开始日期 | 31 | * @param {*} startDate:开始日期 |
30 | endDate:结束日期 | 32 | * @param {*} endDate:结束日期 |
31 | */ | 33 | * @author: renchao |
34 | */ | ||
32 | async getProcessDays (recType, startDate, endDate) { | 35 | async getProcessDays (recType, startDate, endDate) { |
33 | return request({ | 36 | return request({ |
34 | url: SERVER.SERVERAPI + "/rest/statistics/Efficient/getProcessDays", | 37 | url: SERVER.SERVERAPI + "/rest/statistics/Efficient/getProcessDays", | ... | ... |
... | @@ -7,7 +7,11 @@ import request from '@/utils/request' | ... | @@ -7,7 +7,11 @@ import request from '@/utils/request' |
7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
8 | 8 | ||
9 | class fjF100 { | 9 | class fjF100 { |
10 | // 非结构化文档 | 10 | /** |
11 | * @description: 非结构化文档 | ||
12 | * @param {*} bsmSjsb | ||
13 | * @author: renchao | ||
14 | */ | ||
11 | async getFjF100ById (bsmSjsb) { | 15 | async getFjF100ById (bsmSjsb) { |
12 | return request({ | 16 | return request({ |
13 | url: SERVER.SERVERAPI + '/rest/reg/FjF100/detail', | 17 | url: SERVER.SERVERAPI + '/rest/reg/FjF100/detail', |
... | @@ -18,7 +22,11 @@ class fjF100 { | ... | @@ -18,7 +22,11 @@ class fjF100 { |
18 | }) | 22 | }) |
19 | } | 23 | } |
20 | 24 | ||
21 | //非结构化文档-修改 | 25 | /** |
26 | * @description: 非结构化文档-修改 | ||
27 | * @param {*} data | ||
28 | * @author: renchao | ||
29 | */ | ||
22 | async updateFjF100 (data) { | 30 | async updateFjF100 (data) { |
23 | return request({ | 31 | return request({ |
24 | url: SERVER.SERVERAPI + '/rest/reg/FjF100/edit', | 32 | url: SERVER.SERVERAPI + '/rest/reg/FjF100/edit', | ... | ... |
... | @@ -7,7 +7,11 @@ import request from '@/utils/request' | ... | @@ -7,7 +7,11 @@ import request from '@/utils/request' |
7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
8 | 8 | ||
9 | class ktfQtDzdzw { | 9 | class ktfQtDzdzw { |
10 | // 点状定着物信息 | 10 | /** |
11 | * @description: 点状定着物信息 | ||
12 | * @param {*} bsmSjsb | ||
13 | * @author: renchao | ||
14 | */ | ||
11 | async getKtfQtDzdzwById (bsmSjsb) { | 15 | async getKtfQtDzdzwById (bsmSjsb) { |
12 | return request({ | 16 | return request({ |
13 | url: SERVER.SERVERAPI + '/rest/reg/KtfQtDzdzw/detail', | 17 | url: SERVER.SERVERAPI + '/rest/reg/KtfQtDzdzw/detail', |
... | @@ -17,7 +21,11 @@ class ktfQtDzdzw { | ... | @@ -17,7 +21,11 @@ class ktfQtDzdzw { |
17 | } | 21 | } |
18 | }) | 22 | }) |
19 | } | 23 | } |
20 | // 点状定着物信息-修改 | 24 | /** |
25 | * @description: 点状定着物信息-修改 | ||
26 | * @param {*} data | ||
27 | * @author: renchao | ||
28 | */ | ||
21 | async updateKtfQtDzdzw (data) { | 29 | async updateKtfQtDzdzw (data) { |
22 | return request({ | 30 | return request({ |
23 | url: SERVER.SERVERAPI + '/rest/reg/KtfQtDzdzw/edit', | 31 | url: SERVER.SERVERAPI + '/rest/reg/KtfQtDzdzw/edit', | ... | ... |
... | @@ -7,7 +7,11 @@ import request from '@/utils/request' | ... | @@ -7,7 +7,11 @@ import request from '@/utils/request' |
7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
8 | 8 | ||
9 | class ktfQtMzdzw { | 9 | class ktfQtMzdzw { |
10 | // 面状定着物 | 10 | /** |
11 | * @description: 面状定着物 | ||
12 | * @param {*} bsmSjsb | ||
13 | * @author: renchao | ||
14 | */ | ||
11 | async getKtfQtMzdzwById (bsmSjsb) { | 15 | async getKtfQtMzdzwById (bsmSjsb) { |
12 | return request({ | 16 | return request({ |
13 | url: SERVER.SERVERAPI + '/rest/reg/KtfQtMzdzw/detail', | 17 | url: SERVER.SERVERAPI + '/rest/reg/KtfQtMzdzw/detail', |
... | @@ -17,7 +21,11 @@ class ktfQtMzdzw { | ... | @@ -17,7 +21,11 @@ class ktfQtMzdzw { |
17 | } | 21 | } |
18 | }) | 22 | }) |
19 | } | 23 | } |
20 | // 面状定着物-修改 | 24 | /** |
25 | * @description: 面状定着物-修改 | ||
26 | * @param {*} data | ||
27 | * @author: renchao | ||
28 | */ | ||
21 | async updateKtfQtMzdzw (data) { | 29 | async updateKtfQtMzdzw (data) { |
22 | return request({ | 30 | return request({ |
23 | url: SERVER.SERVERAPI + '/rest/reg/KtfQtMzdzw/edit', | 31 | url: SERVER.SERVERAPI + '/rest/reg/KtfQtMzdzw/edit', | ... | ... |
... | @@ -7,7 +7,11 @@ import request from '@/utils/request' | ... | @@ -7,7 +7,11 @@ import request from '@/utils/request' |
7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
8 | 8 | ||
9 | class ktfQtXzdzw { | 9 | class ktfQtXzdzw { |
10 | // 线状定着物 | 10 | /** |
11 | * @description: 线状定着物 | ||
12 | * @param {*} bsmSjsb | ||
13 | * @author: renchao | ||
14 | */ | ||
11 | async getKtfQtXzdzwById (bsmSjsb) { | 15 | async getKtfQtXzdzwById (bsmSjsb) { |
12 | return request({ | 16 | return request({ |
13 | url: SERVER.SERVERAPI + '/rest/reg/KtfQtXzdzw/detail', | 17 | url: SERVER.SERVERAPI + '/rest/reg/KtfQtXzdzw/detail', |
... | @@ -17,7 +21,11 @@ class ktfQtXzdzw { | ... | @@ -17,7 +21,11 @@ class ktfQtXzdzw { |
17 | } | 21 | } |
18 | }) | 22 | }) |
19 | } | 23 | } |
20 | // 线状定着物-修改 | 24 | /** |
25 | * @description: 线状定着物-修改 | ||
26 | * @param {*} data | ||
27 | * @author: renchao | ||
28 | */ | ||
21 | async updateKtfQtXzdzw (data) { | 29 | async updateKtfQtXzdzw (data) { |
22 | return request({ | 30 | return request({ |
23 | url: SERVER.SERVERAPI + '/rest/reg/KtfQtXzdzw/edit', | 31 | url: SERVER.SERVERAPI + '/rest/reg/KtfQtXzdzw/edit', | ... | ... |
... | @@ -7,7 +7,11 @@ import request from '@/utils/request' | ... | @@ -7,7 +7,11 @@ import request from '@/utils/request' |
7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
8 | 8 | ||
9 | class ktfZdbhqk { | 9 | class ktfZdbhqk { |
10 | //宗地变化情况 | 10 | /** |
11 | * @description: 宗地变化情况 | ||
12 | * @param {*} bsmSjsb | ||
13 | * @author: renchao | ||
14 | */ | ||
11 | async getKtfZdbhqkById (bsmSjsb) { | 15 | async getKtfZdbhqkById (bsmSjsb) { |
12 | return request({ | 16 | return request({ |
13 | url: SERVER.SERVERAPI + '/rest/reg/KtfZdbhqk/detail', | 17 | url: SERVER.SERVERAPI + '/rest/reg/KtfZdbhqk/detail', |
... | @@ -17,7 +21,11 @@ class ktfZdbhqk { | ... | @@ -17,7 +21,11 @@ class ktfZdbhqk { |
17 | } | 21 | } |
18 | }) | 22 | }) |
19 | } | 23 | } |
20 | //修改宗地变化情况 | 24 | /** |
25 | * @description: 修改宗地变化情况 | ||
26 | * @param {*} data | ||
27 | * @author: renchao | ||
28 | */ | ||
21 | async updateKtfZdbhqk (data) { | 29 | async updateKtfZdbhqk (data) { |
22 | return request({ | 30 | return request({ |
23 | url: SERVER.SERVERAPI + '/rest/reg/KtfZdbhqk/edit', | 31 | url: SERVER.SERVERAPI + '/rest/reg/KtfZdbhqk/edit', | ... | ... |
... | @@ -7,7 +7,11 @@ import request from '@/utils/request' | ... | @@ -7,7 +7,11 @@ import request from '@/utils/request' |
7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
8 | 8 | ||
9 | class ktfZhYhydzb { | 9 | class ktfZhYhydzb { |
10 | // 用海,用岛坐标 | 10 | /** |
11 | * @description: 用海,用岛坐标 | ||
12 | * @param {*} bsmSjsb | ||
13 | * @author: renchao | ||
14 | */ | ||
11 | async getKtfZhYhydzbById (bsmSjsb) { | 15 | async getKtfZhYhydzbById (bsmSjsb) { |
12 | return request({ | 16 | return request({ |
13 | url: SERVER.SERVERAPI + '/rest/reg/KtfZhYhydzb/detail', | 17 | url: SERVER.SERVERAPI + '/rest/reg/KtfZhYhydzb/detail', |
... | @@ -17,7 +21,11 @@ class ktfZhYhydzb { | ... | @@ -17,7 +21,11 @@ class ktfZhYhydzb { |
17 | } | 21 | } |
18 | }) | 22 | }) |
19 | } | 23 | } |
20 | // 用海,用岛坐标-修改 | 24 | /** |
25 | * @description: 用海,用岛坐标-修改 | ||
26 | * @param {*} data | ||
27 | * @author: renchao | ||
28 | */ | ||
21 | async updateKtfZhYhydzb (data) { | 29 | async updateKtfZhYhydzb (data) { |
22 | return request({ | 30 | return request({ |
23 | url: SERVER.SERVERAPI + '/rest/reg/KtfZhYhydzb/edit', | 31 | url: SERVER.SERVERAPI + '/rest/reg/KtfZhYhydzb/edit', | ... | ... |
... | @@ -7,7 +7,11 @@ import request from '@/utils/request' | ... | @@ -7,7 +7,11 @@ import request from '@/utils/request' |
7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
8 | 8 | ||
9 | class ktfZhYhzk { | 9 | class ktfZhYhzk { |
10 | //用海状况 | 10 | /** |
11 | * @description: 用海状况 | ||
12 | * @param {*} bsmSjsb | ||
13 | * @author: renchao | ||
14 | */ | ||
11 | async getKtfZhYhzkById (bsmSjsb) { | 15 | async getKtfZhYhzkById (bsmSjsb) { |
12 | return request({ | 16 | return request({ |
13 | url: SERVER.SERVERAPI + '/rest/reg/KtfZhYhzk/detail', | 17 | url: SERVER.SERVERAPI + '/rest/reg/KtfZhYhzk/detail', |
... | @@ -17,7 +21,11 @@ class ktfZhYhzk { | ... | @@ -17,7 +21,11 @@ class ktfZhYhzk { |
17 | } | 21 | } |
18 | }) | 22 | }) |
19 | } | 23 | } |
20 | //修改用海状况 | 24 | /** |
25 | * @description: 修改用海状况 | ||
26 | * @param {*} data | ||
27 | * @author: renchao | ||
28 | */ | ||
21 | async updateKtfZhYhzk (data) { | 29 | async updateKtfZhYhzk (data) { |
22 | return request({ | 30 | return request({ |
23 | url: SERVER.SERVERAPI + '/rest/reg/KtfZhYhzk/edit', | 31 | url: SERVER.SERVERAPI + '/rest/reg/KtfZhYhzk/edit', | ... | ... |
... | @@ -7,7 +7,11 @@ import request from "@/utils/request"; | ... | @@ -7,7 +7,11 @@ import request from "@/utils/request"; |
7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
8 | 8 | ||
9 | class kttFwC { | 9 | class kttFwC { |
10 | // 层信息- 业务表单 | 10 | /** |
11 | * @description: 层信息- 业务表单 | ||
12 | * @param {*} bsmSjsb | ||
13 | * @author: renchao | ||
14 | */ | ||
11 | async getKttFwCById (bsmSjsb) { | 15 | async getKttFwCById (bsmSjsb) { |
12 | return request({ | 16 | return request({ |
13 | url: SERVER.SERVERAPI + "/rest/reg/KttFwC/detail", | 17 | url: SERVER.SERVERAPI + "/rest/reg/KttFwC/detail", |
... | @@ -17,7 +21,11 @@ class kttFwC { | ... | @@ -17,7 +21,11 @@ class kttFwC { |
17 | }, | 21 | }, |
18 | }); | 22 | }); |
19 | } | 23 | } |
20 | // 层信息-业务-修改 | 24 | /** |
25 | * @description: 层信息-业务-修改 | ||
26 | * @param {*} data | ||
27 | * @author: renchao | ||
28 | */ | ||
21 | async updateKttFwC (data) { | 29 | async updateKttFwC (data) { |
22 | return request({ | 30 | return request({ |
23 | url: SERVER.SERVERAPI + "/rest/reg/KttFwC/edit", | 31 | url: SERVER.SERVERAPI + "/rest/reg/KttFwC/edit", | ... | ... |
... | @@ -7,7 +7,11 @@ import request from "@/utils/request"; | ... | @@ -7,7 +7,11 @@ import request from "@/utils/request"; |
7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
8 | 8 | ||
9 | class kttFwH { | 9 | class kttFwH { |
10 | // 户信息- 业务表单 | 10 | /** |
11 | * @description: 户信息- 业务表单 | ||
12 | * @param {*} bsmSjsb | ||
13 | * @author: renchao | ||
14 | */ | ||
11 | async getKttFwHById (bsmSjsb) { | 15 | async getKttFwHById (bsmSjsb) { |
12 | return request({ | 16 | return request({ |
13 | url: SERVER.SERVERAPI + "/rest/reg/KttFwH/detail", | 17 | url: SERVER.SERVERAPI + "/rest/reg/KttFwH/detail", |
... | @@ -17,7 +21,11 @@ class kttFwH { | ... | @@ -17,7 +21,11 @@ class kttFwH { |
17 | }, | 21 | }, |
18 | }); | 22 | }); |
19 | } | 23 | } |
20 | // 户信息-业务-修改 | 24 | /** |
25 | * @description: 户信息-业务-修改 | ||
26 | * @param {*} data | ||
27 | * @author: renchao | ||
28 | */ | ||
21 | async updateKttFwH (data) { | 29 | async updateKttFwH (data) { |
22 | return request({ | 30 | return request({ |
23 | url: SERVER.SERVERAPI + "/rest/reg/KttFwH/edit", | 31 | url: SERVER.SERVERAPI + "/rest/reg/KttFwH/edit", | ... | ... |
... | @@ -7,7 +7,11 @@ import request from "@/utils/request"; | ... | @@ -7,7 +7,11 @@ import request from "@/utils/request"; |
7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
8 | 8 | ||
9 | class kttFwLjz { | 9 | class kttFwLjz { |
10 | // 逻辑幢信息 -- 业务表单 | 10 | /** |
11 | * @description: 逻辑幢信息 -- 业务表单 | ||
12 | * @param {*} bsmSjsb | ||
13 | * @author: renchao | ||
14 | */ | ||
11 | async getKttFwLjzById (bsmSjsb) { | 15 | async getKttFwLjzById (bsmSjsb) { |
12 | return request({ | 16 | return request({ |
13 | url: SERVER.SERVERAPI + "/rest/reg/KttFwLjz/detail", | 17 | url: SERVER.SERVERAPI + "/rest/reg/KttFwLjz/detail", |
... | @@ -17,7 +21,11 @@ class kttFwLjz { | ... | @@ -17,7 +21,11 @@ class kttFwLjz { |
17 | }, | 21 | }, |
18 | }); | 22 | }); |
19 | } | 23 | } |
20 | // 逻辑幢信息 -- 业务修改 | 24 | /** |
25 | * @description: 逻辑幢信息 -- 业务修改 | ||
26 | * @param {*} data | ||
27 | * @author: renchao | ||
28 | */ | ||
21 | async updateKttFwLjz (data) { | 29 | async updateKttFwLjz (data) { |
22 | return request({ | 30 | return request({ |
23 | url: SERVER.SERVERAPI + "/rest/reg/KttFwLjz/edit", | 31 | url: SERVER.SERVERAPI + "/rest/reg/KttFwLjz/edit", | ... | ... |
... | @@ -7,7 +7,11 @@ import request from '@/utils/request' | ... | @@ -7,7 +7,11 @@ import request from '@/utils/request' |
7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
8 | 8 | ||
9 | class kttFwZrz { | 9 | class kttFwZrz { |
10 | // 自然幢信息 | 10 | /** |
11 | * @description: 自然幢信息 | ||
12 | * @param {*} bsmSjsb | ||
13 | * @author: renchao | ||
14 | */ | ||
11 | async getKttFwZrzById (bsmSjsb) { | 15 | async getKttFwZrzById (bsmSjsb) { |
12 | return request({ | 16 | return request({ |
13 | url: SERVER.SERVERAPI + '/rest/reg/KttFwZrz/detail', | 17 | url: SERVER.SERVERAPI + '/rest/reg/KttFwZrz/detail', |
... | @@ -17,7 +21,11 @@ class kttFwZrz { | ... | @@ -17,7 +21,11 @@ class kttFwZrz { |
17 | } | 21 | } |
18 | }) | 22 | }) |
19 | } | 23 | } |
20 | // 自然幢信息-修改 | 24 | /** |
25 | * @description: 自然幢信息-修改 | ||
26 | * @param {*} data | ||
27 | * @author: renchao | ||
28 | */ | ||
21 | async updateKttFwZrz (data) { | 29 | async updateKttFwZrz (data) { |
22 | return request({ | 30 | return request({ |
23 | url: SERVER.SERVERAPI + '/rest/reg/KttFwZrz/edit', | 31 | url: SERVER.SERVERAPI + '/rest/reg/KttFwZrz/edit', | ... | ... |
... | @@ -7,7 +7,11 @@ import request from '@/utils/request' | ... | @@ -7,7 +7,11 @@ import request from '@/utils/request' |
7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
8 | 8 | ||
9 | class kttGyJzd { | 9 | class kttGyJzd { |
10 | //界址点 | 10 | /** |
11 | * @description: 界址点 | ||
12 | * @param {*} bsmSjsb | ||
13 | * @author: renchao | ||
14 | */ | ||
11 | async getKttGyJzdById (bsmSjsb) { | 15 | async getKttGyJzdById (bsmSjsb) { |
12 | return request({ | 16 | return request({ |
13 | url: SERVER.SERVERAPI + '/rest/reg/KttGyJzd/detail', | 17 | url: SERVER.SERVERAPI + '/rest/reg/KttGyJzd/detail', |
... | @@ -17,7 +21,11 @@ class kttGyJzd { | ... | @@ -17,7 +21,11 @@ class kttGyJzd { |
17 | } | 21 | } |
18 | }) | 22 | }) |
19 | } | 23 | } |
20 | //修改界址点 | 24 | /** |
25 | * @description: 修改界址点 | ||
26 | * @param {*} data | ||
27 | * @author: renchao | ||
28 | */ | ||
21 | async updateKttGyJzd (data) { | 29 | async updateKttGyJzd (data) { |
22 | return request({ | 30 | return request({ |
23 | url: SERVER.SERVERAPI + '/rest/reg/KttGyJzd/edit', | 31 | url: SERVER.SERVERAPI + '/rest/reg/KttGyJzd/edit', | ... | ... |
... | @@ -7,7 +7,11 @@ import request from '@/utils/request' | ... | @@ -7,7 +7,11 @@ import request from '@/utils/request' |
7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
8 | 8 | ||
9 | class kttGyJzx { | 9 | class kttGyJzx { |
10 | //界址线信息 | 10 | /** |
11 | * @description: 界址线信息 | ||
12 | * @param {*} bsmSjsb | ||
13 | * @author: renchao | ||
14 | */ | ||
11 | async getKttGyJzxById (bsmSjsb) { | 15 | async getKttGyJzxById (bsmSjsb) { |
12 | return request({ | 16 | return request({ |
13 | url: SERVER.SERVERAPI + '/rest/reg/KttGyJzx/detail', | 17 | url: SERVER.SERVERAPI + '/rest/reg/KttGyJzx/detail', |
... | @@ -17,7 +21,11 @@ class kttGyJzx { | ... | @@ -17,7 +21,11 @@ class kttGyJzx { |
17 | } | 21 | } |
18 | }) | 22 | }) |
19 | } | 23 | } |
20 | //修改界址线信息 | 24 | /** |
25 | * @description: 修改界址线信息 | ||
26 | * @param {*} data | ||
27 | * @author: renchao | ||
28 | */ | ||
21 | async updateKttGyJzx (data) { | 29 | async updateKttGyJzx (data) { |
22 | return request({ | 30 | return request({ |
23 | url: SERVER.SERVERAPI + '/rest/reg/KttGyJzx/edit', | 31 | url: SERVER.SERVERAPI + '/rest/reg/KttGyJzx/edit', | ... | ... |
... | @@ -7,7 +7,11 @@ import request from '@/utils/request' | ... | @@ -7,7 +7,11 @@ import request from '@/utils/request' |
7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
8 | 8 | ||
9 | class kttGzw { | 9 | class kttGzw { |
10 | //构筑物 | 10 | /** |
11 | * @description: 构筑物 | ||
12 | * @param {*} bsmSjsb | ||
13 | * @author: renchao | ||
14 | */ | ||
11 | async getKttGzwById (bsmSjsb) { | 15 | async getKttGzwById (bsmSjsb) { |
12 | return request({ | 16 | return request({ |
13 | url: SERVER.SERVERAPI + '/rest/reg/KttGzw/detail', | 17 | url: SERVER.SERVERAPI + '/rest/reg/KttGzw/detail', |
... | @@ -17,7 +21,11 @@ class kttGzw { | ... | @@ -17,7 +21,11 @@ class kttGzw { |
17 | } | 21 | } |
18 | }) | 22 | }) |
19 | } | 23 | } |
20 | //修改构筑物 | 24 | /** |
25 | * @description: 修改构筑物 | ||
26 | * @param {*} data | ||
27 | * @author: renchao | ||
28 | */ | ||
21 | async updateKttGzw (data) { | 29 | async updateKttGzw (data) { |
22 | return request({ | 30 | return request({ |
23 | url: SERVER.SERVERAPI + '/rest/reg/KttGzw/edit', | 31 | url: SERVER.SERVERAPI + '/rest/reg/KttGzw/edit', | ... | ... |
... | @@ -7,7 +7,11 @@ import request from '@/utils/request' | ... | @@ -7,7 +7,11 @@ import request from '@/utils/request' |
7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
8 | 8 | ||
9 | class kttZdjbxx { | 9 | class kttZdjbxx { |
10 | // 宗地基本信息 | 10 | /** |
11 | * @description: 宗地基本信息 | ||
12 | * @param {*} bsmSjsb | ||
13 | * @author: renchao | ||
14 | */ | ||
11 | async kttZdjbxxDetail (bsmSjsb) { | 15 | async kttZdjbxxDetail (bsmSjsb) { |
12 | return request({ | 16 | return request({ |
13 | url: SERVER.SERVERAPI + '/rest/reg/KttZdjbxx/detail', | 17 | url: SERVER.SERVERAPI + '/rest/reg/KttZdjbxx/detail', |
... | @@ -17,7 +21,11 @@ class kttZdjbxx { | ... | @@ -17,7 +21,11 @@ class kttZdjbxx { |
17 | } | 21 | } |
18 | }) | 22 | }) |
19 | } | 23 | } |
20 | // 宗地基本信息-修改 | 24 | /** |
25 | * @description: 宗地基本信息-修改 | ||
26 | * @param {*} data | ||
27 | * @author: renchao | ||
28 | */ | ||
21 | async updateKttZdjbxx (data) { | 29 | async updateKttZdjbxx (data) { |
22 | return request({ | 30 | return request({ |
23 | url: SERVER.SERVERAPI + '/rest/reg/KttZdjbxx/edit', | 31 | url: SERVER.SERVERAPI + '/rest/reg/KttZdjbxx/edit', | ... | ... |
... | @@ -7,7 +7,11 @@ import request from '@/utils/request' | ... | @@ -7,7 +7,11 @@ import request from '@/utils/request' |
7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
8 | 8 | ||
9 | class kttZhjbxx { | 9 | class kttZhjbxx { |
10 | //宗海基本信息 | 10 | /** |
11 | * @description: 宗海基本信息 | ||
12 | * @param {*} bsmSjsb | ||
13 | * @author: renchao | ||
14 | */ | ||
11 | async getKttZhjbxxById (bsmSjsb) { | 15 | async getKttZhjbxxById (bsmSjsb) { |
12 | return request({ | 16 | return request({ |
13 | url: SERVER.SERVERAPI + '/rest/reg/KttZhjbxx/detail', | 17 | url: SERVER.SERVERAPI + '/rest/reg/KttZhjbxx/detail', |
... | @@ -17,7 +21,11 @@ class kttZhjbxx { | ... | @@ -17,7 +21,11 @@ class kttZhjbxx { |
17 | } | 21 | } |
18 | }) | 22 | }) |
19 | } | 23 | } |
20 | //修改宗海基本信息 | 24 | /** |
25 | * @description: 修改宗海基本信息 | ||
26 | * @param {*} data | ||
27 | * @author: renchao | ||
28 | */ | ||
21 | async updateKttZhjbxx (data) { | 29 | async updateKttZhjbxx (data) { |
22 | return request({ | 30 | return request({ |
23 | url: SERVER.SERVERAPI + '/rest/reg/KttZhjbxx/edit', | 31 | url: SERVER.SERVERAPI + '/rest/reg/KttZhjbxx/edit', | ... | ... |
... | @@ -7,7 +7,11 @@ import request from '@/utils/request' | ... | @@ -7,7 +7,11 @@ import request from '@/utils/request' |
7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
8 | 8 | ||
9 | class qlfFwFdcqDzXm { | 9 | class qlfFwFdcqDzXm { |
10 | // 房地产权_项目内多幢房屋项目属性 | 10 | /** |
11 | * @description: 房地产权_项目内多幢房屋项目属性 | ||
12 | * @param {*} bsmSjsb | ||
13 | * @author: renchao | ||
14 | */ | ||
11 | async getQlfFwFdcqDzXmById (bsmSjsb) { | 15 | async getQlfFwFdcqDzXmById (bsmSjsb) { |
12 | return request({ | 16 | return request({ |
13 | url: SERVER.SERVERAPI + '/rest/reg/QlfFwFdcqDzXm/detail', | 17 | url: SERVER.SERVERAPI + '/rest/reg/QlfFwFdcqDzXm/detail', |
... | @@ -17,7 +21,11 @@ class qlfFwFdcqDzXm { | ... | @@ -17,7 +21,11 @@ class qlfFwFdcqDzXm { |
17 | } | 21 | } |
18 | }) | 22 | }) |
19 | } | 23 | } |
20 | // 房地产权_项目内多幢房屋项目属性-修改 | 24 | /** |
25 | * @description: 房地产权_项目内多幢房屋项目属性-修改 | ||
26 | * @param {*} data | ||
27 | * @author: renchao | ||
28 | */ | ||
21 | async updateQlfFwFdcqDzXm (data) { | 29 | async updateQlfFwFdcqDzXm (data) { |
22 | return request({ | 30 | return request({ |
23 | url: SERVER.SERVERAPI + '/rest/reg/QlfFwFdcqDzXm/edit', | 31 | url: SERVER.SERVERAPI + '/rest/reg/QlfFwFdcqDzXm/edit', | ... | ... |
... | @@ -7,7 +7,11 @@ import request from "@/utils/request"; | ... | @@ -7,7 +7,11 @@ import request from "@/utils/request"; |
7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
8 | 8 | ||
9 | class qlfFwFdcqQfsyq { | 9 | class qlfFwFdcqQfsyq { |
10 | // 建筑物区分所有权业主共有部分信息 | 10 | /** |
11 | * @description: 建筑物区分所有权业主共有部分信息 | ||
12 | * @param {*} data | ||
13 | * @author: renchao | ||
14 | */ | ||
11 | async getQlfFwFdcqQfsyqList (data) { | 15 | async getQlfFwFdcqQfsyqList (data) { |
12 | return request({ | 16 | return request({ |
13 | url: SERVER.SERVERAPI + "/rest/reg/QlfFwFdcqQfsyq/getDataPage", | 17 | url: SERVER.SERVERAPI + "/rest/reg/QlfFwFdcqQfsyq/getDataPage", |
... | @@ -15,7 +19,11 @@ class qlfFwFdcqQfsyq { | ... | @@ -15,7 +19,11 @@ class qlfFwFdcqQfsyq { |
15 | data, | 19 | data, |
16 | }); | 20 | }); |
17 | } | 21 | } |
18 | //建筑物区分所有权业主共有部分信息 | 22 | /** |
23 | * @description: 建筑物区分所有权业主共有部分信息 | ||
24 | * @param {*} bsmSjsb | ||
25 | * @author: renchao | ||
26 | */ | ||
19 | async getQlfFwFdcqQfsyqById (bsmSjsb) { | 27 | async getQlfFwFdcqQfsyqById (bsmSjsb) { |
20 | return request({ | 28 | return request({ |
21 | url: SERVER.SERVERAPI + "/rest/reg/QlfFwFdcqQfsyq/detail", | 29 | url: SERVER.SERVERAPI + "/rest/reg/QlfFwFdcqQfsyq/detail", |
... | @@ -25,7 +33,11 @@ class qlfFwFdcqQfsyq { | ... | @@ -25,7 +33,11 @@ class qlfFwFdcqQfsyq { |
25 | }, | 33 | }, |
26 | }); | 34 | }); |
27 | } | 35 | } |
28 | //修改建筑物区分所有权业主共有部分信息 | 36 | /** |
37 | * @description: 修改建筑物区分所有权业主共有部分信息 | ||
38 | * @param {*} data | ||
39 | * @author: renchao | ||
40 | */ | ||
29 | async updateQlfFwFdcqQfsyq (data) { | 41 | async updateQlfFwFdcqQfsyq (data) { |
30 | return request({ | 42 | return request({ |
31 | url: SERVER.SERVERAPI + "/rest/reg/QlfFwFdcqQfsyq/edit", | 43 | url: SERVER.SERVERAPI + "/rest/reg/QlfFwFdcqQfsyq/edit", | ... | ... |
... | @@ -7,7 +7,11 @@ import request from "@/utils/request"; | ... | @@ -7,7 +7,11 @@ import request from "@/utils/request"; |
7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
8 | 8 | ||
9 | class qlfQlCfdj { | 9 | class qlfQlCfdj { |
10 | // 查封登记信息 | 10 | /** |
11 | * @description: 查封登记信息 | ||
12 | * @param {*} data | ||
13 | * @author: renchao | ||
14 | */ | ||
11 | async getQlfQlCfdjList (data) { | 15 | async getQlfQlCfdjList (data) { |
12 | return request({ | 16 | return request({ |
13 | url: SERVER.SERVERAPI + "/rest/reg/QlfQlCfdj/getDataPage", | 17 | url: SERVER.SERVERAPI + "/rest/reg/QlfQlCfdj/getDataPage", |
... | @@ -15,7 +19,11 @@ class qlfQlCfdj { | ... | @@ -15,7 +19,11 @@ class qlfQlCfdj { |
15 | data, | 19 | data, |
16 | }); | 20 | }); |
17 | } | 21 | } |
18 | // 查封登记信息 | 22 | /** |
23 | * @description: | ||
24 | * @param {*} bsmSjsb | ||
25 | * @author: renchao | ||
26 | */ | ||
19 | async getQlfQlCfdjById (bsmSjsb) { | 27 | async getQlfQlCfdjById (bsmSjsb) { |
20 | return request({ | 28 | return request({ |
21 | url: SERVER.SERVERAPI + "/rest/reg/QlfQlCfdj/detail", | 29 | url: SERVER.SERVERAPI + "/rest/reg/QlfQlCfdj/detail", |
... | @@ -25,7 +33,11 @@ class qlfQlCfdj { | ... | @@ -25,7 +33,11 @@ class qlfQlCfdj { |
25 | }, | 33 | }, |
26 | }); | 34 | }); |
27 | } | 35 | } |
28 | // 查封登记信息-修改 | 36 | /** |
37 | * @description: 查封登记信息-修改 | ||
38 | * @param {*} data | ||
39 | * @author: renchao | ||
40 | */ | ||
29 | async updateQlfQlCfdj (data) { | 41 | async updateQlfQlCfdj (data) { |
30 | return request({ | 42 | return request({ |
31 | url: SERVER.SERVERAPI + "/rest/reg/QlfQlCfdj/edit", | 43 | url: SERVER.SERVERAPI + "/rest/reg/QlfQlCfdj/edit", | ... | ... |
... | @@ -7,7 +7,11 @@ import request from "@/utils/request"; | ... | @@ -7,7 +7,11 @@ import request from "@/utils/request"; |
7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
8 | 8 | ||
9 | class qlfQlDyaq { | 9 | class qlfQlDyaq { |
10 | // 抵押权登记 | 10 | /** |
11 | * @description: 抵押权登记 | ||
12 | * @param {*} data | ||
13 | * @author: renchao | ||
14 | */ | ||
11 | async getQlfQlDyaqList (data) { | 15 | async getQlfQlDyaqList (data) { |
12 | return request({ | 16 | return request({ |
13 | url: SERVER.SERVERAPI + "/rest/reg/QlfQlDyaq/getDataPage", | 17 | url: SERVER.SERVERAPI + "/rest/reg/QlfQlDyaq/getDataPage", |
... | @@ -15,7 +19,11 @@ class qlfQlDyaq { | ... | @@ -15,7 +19,11 @@ class qlfQlDyaq { |
15 | data, | 19 | data, |
16 | }); | 20 | }); |
17 | } | 21 | } |
18 | // 抵押权 | 22 | /** |
23 | * @description: 抵押权 | ||
24 | * @param {*} bsmSjsb | ||
25 | * @author: renchao | ||
26 | */ | ||
19 | async getQlfQlDyaqById (bsmSjsb) { | 27 | async getQlfQlDyaqById (bsmSjsb) { |
20 | return request({ | 28 | return request({ |
21 | url: SERVER.SERVERAPI + "/rest/reg/QlfQlDyaq/detail", | 29 | url: SERVER.SERVERAPI + "/rest/reg/QlfQlDyaq/detail", |
... | @@ -25,7 +33,11 @@ class qlfQlDyaq { | ... | @@ -25,7 +33,11 @@ class qlfQlDyaq { |
25 | }, | 33 | }, |
26 | }); | 34 | }); |
27 | } | 35 | } |
28 | // 抵押权-修改 | 36 | /** |
37 | * @description: 抵押权-修改 | ||
38 | * @param {*} data | ||
39 | * @author: renchao | ||
40 | */ | ||
29 | async updateQlfQlDyaq (data) { | 41 | async updateQlfQlDyaq (data) { |
30 | return request({ | 42 | return request({ |
31 | url: SERVER.SERVERAPI + "/rest/reg/QlfQlDyaq/edit", | 43 | url: SERVER.SERVERAPI + "/rest/reg/QlfQlDyaq/edit", | ... | ... |
... | @@ -7,7 +7,11 @@ import request from "@/utils/request"; | ... | @@ -7,7 +7,11 @@ import request from "@/utils/request"; |
7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
8 | 8 | ||
9 | class qlfQlDyiq { | 9 | class qlfQlDyiq { |
10 | // 地役权 | 10 | /** |
11 | * @description: 地役权 | ||
12 | * @param {*} data | ||
13 | * @author: renchao | ||
14 | */ | ||
11 | async getQlfQlDyiqList (data) { | 15 | async getQlfQlDyiqList (data) { |
12 | return request({ | 16 | return request({ |
13 | url: SERVER.SERVERAPI + "/rest/reg/QlfQlDyiq/getDataPage", | 17 | url: SERVER.SERVERAPI + "/rest/reg/QlfQlDyiq/getDataPage", |
... | @@ -15,7 +19,11 @@ class qlfQlDyiq { | ... | @@ -15,7 +19,11 @@ class qlfQlDyiq { |
15 | data, | 19 | data, |
16 | }); | 20 | }); |
17 | } | 21 | } |
18 | // 地役权信息 | 22 | /** |
23 | * @description: 地役权信息 | ||
24 | * @param {*} bsmSjsb | ||
25 | * @author: renchao | ||
26 | */ | ||
19 | async getQlfQlDyiqById (bsmSjsb) { | 27 | async getQlfQlDyiqById (bsmSjsb) { |
20 | return request({ | 28 | return request({ |
21 | url: SERVER.SERVERAPI + "/rest/reg/QlfQlDyiq/detail", | 29 | url: SERVER.SERVERAPI + "/rest/reg/QlfQlDyiq/detail", |
... | @@ -25,7 +33,11 @@ class qlfQlDyiq { | ... | @@ -25,7 +33,11 @@ class qlfQlDyiq { |
25 | }, | 33 | }, |
26 | }); | 34 | }); |
27 | } | 35 | } |
28 | // 地役权信息-修改 | 36 | /** |
37 | * @description: 地役权信息-修改 | ||
38 | * @param {*} data | ||
39 | * @author: renchao | ||
40 | */ | ||
29 | async updateQlfQlDyiq (data) { | 41 | async updateQlfQlDyiq (data) { |
30 | return request({ | 42 | return request({ |
31 | url: SERVER.SERVERAPI + "/rest/reg/QlfQlDyiq/edit", | 43 | url: SERVER.SERVERAPI + "/rest/reg/QlfQlDyiq/edit", | ... | ... |
... | @@ -7,7 +7,11 @@ import request from '@/utils/request' | ... | @@ -7,7 +7,11 @@ import request from '@/utils/request' |
7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
8 | 8 | ||
9 | class qlfQlGzdj { | 9 | class qlfQlGzdj { |
10 | // 更正登记信息 | 10 | /** |
11 | * @description: 更正登记信息 | ||
12 | * @param {*} bsmSjsb | ||
13 | * @author: renchao | ||
14 | */ | ||
11 | async getQlfQlGzdjById (bsmSjsb) { | 15 | async getQlfQlGzdjById (bsmSjsb) { |
12 | return request({ | 16 | return request({ |
13 | url: SERVER.SERVERAPI + '/rest/reg/QlfQlGzdj/detail', | 17 | url: SERVER.SERVERAPI + '/rest/reg/QlfQlGzdj/detail', |
... | @@ -17,7 +21,11 @@ class qlfQlGzdj { | ... | @@ -17,7 +21,11 @@ class qlfQlGzdj { |
17 | } | 21 | } |
18 | }) | 22 | }) |
19 | } | 23 | } |
20 | // 更正登记信息-修改 | 24 | /** |
25 | * @description: 更正登记信息-修改 | ||
26 | * @param {*} data | ||
27 | * @author: renchao | ||
28 | */ | ||
21 | async updateQlfQlGzdj (data) { | 29 | async updateQlfQlGzdj (data) { |
22 | return request({ | 30 | return request({ |
23 | url: SERVER.SERVERAPI + '/rest/reg/QlfQlGzdj/edit', | 31 | url: SERVER.SERVERAPI + '/rest/reg/QlfQlGzdj/edit', | ... | ... |
... | @@ -7,7 +7,11 @@ import request from "@/utils/request"; | ... | @@ -7,7 +7,11 @@ import request from "@/utils/request"; |
7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
8 | 8 | ||
9 | class qlfQlHysyq { | 9 | class qlfQlHysyq { |
10 | // 海域(含无居民海岛)使用权 | 10 | /** |
11 | * @description: 海域(含无居民海岛)使用权 | ||
12 | * @param {*} data | ||
13 | * @author: renchao | ||
14 | */ | ||
11 | async getQlfQlHysyqByConditon (data) { | 15 | async getQlfQlHysyqByConditon (data) { |
12 | return request({ | 16 | return request({ |
13 | url: SERVER.SERVERAPI + "/rest/reg/QlfQlHysyq/getDataPage", | 17 | url: SERVER.SERVERAPI + "/rest/reg/QlfQlHysyq/getDataPage", |
... | @@ -15,7 +19,11 @@ class qlfQlHysyq { | ... | @@ -15,7 +19,11 @@ class qlfQlHysyq { |
15 | data, | 19 | data, |
16 | }); | 20 | }); |
17 | } | 21 | } |
18 | //海域(含无居民海岛)使用权 | 22 | /** |
23 | * @description: 海域(含无居民海岛)使用权 | ||
24 | * @param {*} bsmSjsb | ||
25 | * @author: renchao | ||
26 | */ | ||
19 | async getQlfQlHysyqById (bsmSjsb) { | 27 | async getQlfQlHysyqById (bsmSjsb) { |
20 | return request({ | 28 | return request({ |
21 | url: SERVER.SERVERAPI + "/rest/reg/QlfQlHysyq/detail", | 29 | url: SERVER.SERVERAPI + "/rest/reg/QlfQlHysyq/detail", |
... | @@ -25,7 +33,11 @@ class qlfQlHysyq { | ... | @@ -25,7 +33,11 @@ class qlfQlHysyq { |
25 | }, | 33 | }, |
26 | }); | 34 | }); |
27 | } | 35 | } |
28 | //修改海域(含无居民海岛)使用权 | 36 | /** |
37 | * @description: 修改海域(含无居民海岛)使用权 | ||
38 | * @param {*} data | ||
39 | * @author: renchao | ||
40 | */ | ||
29 | async updateQlfQlHysyq (data) { | 41 | async updateQlfQlHysyq (data) { |
30 | return request({ | 42 | return request({ |
31 | url: SERVER.SERVERAPI + "/rest/reg/QlfQlHysyq/edit", | 43 | url: SERVER.SERVERAPI + "/rest/reg/QlfQlHysyq/edit", | ... | ... |
... | @@ -7,7 +7,11 @@ import request from "@/utils/request"; | ... | @@ -7,7 +7,11 @@ import request from "@/utils/request"; |
7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
8 | 8 | ||
9 | class qlfQlJsydsyq { | 9 | class qlfQlJsydsyq { |
10 | // 建设用地、宅基地使用权 | 10 | /** |
11 | * @description: 建设用地、宅基地使用权 | ||
12 | * @param {*} data | ||
13 | * @author: renchao | ||
14 | */ | ||
11 | async getQlfQlJsydsyqList (data) { | 15 | async getQlfQlJsydsyqList (data) { |
12 | return request({ | 16 | return request({ |
13 | url: SERVER.SERVERAPI + "/rest/reg/QlfQlJsydsyq/getDataPage", | 17 | url: SERVER.SERVERAPI + "/rest/reg/QlfQlJsydsyq/getDataPage", |
... | @@ -15,7 +19,11 @@ class qlfQlJsydsyq { | ... | @@ -15,7 +19,11 @@ class qlfQlJsydsyq { |
15 | data, | 19 | data, |
16 | }); | 20 | }); |
17 | } | 21 | } |
18 | //建设用地、宅基地使用权 | 22 | /** |
23 | * @description: 建设用地、宅基地使用权 | ||
24 | * @param {*} bsmSjsb | ||
25 | * @author: renchao | ||
26 | */ | ||
19 | async getQlfQlJsydsyqById (bsmSjsb) { | 27 | async getQlfQlJsydsyqById (bsmSjsb) { |
20 | return request({ | 28 | return request({ |
21 | url: SERVER.SERVERAPI + '/rest/reg/QlfQlJsydsyq/detail', | 29 | url: SERVER.SERVERAPI + '/rest/reg/QlfQlJsydsyq/detail', |
... | @@ -25,7 +33,11 @@ class qlfQlJsydsyq { | ... | @@ -25,7 +33,11 @@ class qlfQlJsydsyq { |
25 | } | 33 | } |
26 | }) | 34 | }) |
27 | } | 35 | } |
28 | //修改建设用地、宅基地使用权 | 36 | /** |
37 | * @description: 修改建设用地、宅基地使用权 | ||
38 | * @param {*} data | ||
39 | * @author: renchao | ||
40 | */ | ||
29 | async updateQlfQlJsydsyq (data) { | 41 | async updateQlfQlJsydsyq (data) { |
30 | return request({ | 42 | return request({ |
31 | url: SERVER.SERVERAPI + '/rest/reg/QlfQlJsydsyq/edit', | 43 | url: SERVER.SERVERAPI + '/rest/reg/QlfQlJsydsyq/edit', | ... | ... |
... | @@ -7,7 +7,11 @@ import request from "@/utils/request"; | ... | @@ -7,7 +7,11 @@ import request from "@/utils/request"; |
7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
8 | 8 | ||
9 | class qlfQlNydsyq { | 9 | class qlfQlNydsyq { |
10 | // 农用地使用权(非林地) | 10 | /** |
11 | * @description: 农用地使用权(非林地) | ||
12 | * @param {*} data | ||
13 | * @author: renchao | ||
14 | */ | ||
11 | async getQlfQlNydsyqByConditon (data) { | 15 | async getQlfQlNydsyqByConditon (data) { |
12 | return request({ | 16 | return request({ |
13 | url: SERVER.SERVERAPI + "/rest/reg/QlfQlNydsyq/getDataPage", | 17 | url: SERVER.SERVERAPI + "/rest/reg/QlfQlNydsyq/getDataPage", |
... | @@ -15,7 +19,11 @@ class qlfQlNydsyq { | ... | @@ -15,7 +19,11 @@ class qlfQlNydsyq { |
15 | data, | 19 | data, |
16 | }); | 20 | }); |
17 | } | 21 | } |
18 | //农用地使用权(非林地) | 22 | /** |
23 | * @description: 农用地使用权(非林地) | ||
24 | * @param {*} bsmSjsb | ||
25 | * @author: renchao | ||
26 | */ | ||
19 | async getQlfQlNydsyqByID (bsmSjsb) { | 27 | async getQlfQlNydsyqByID (bsmSjsb) { |
20 | return request({ | 28 | return request({ |
21 | url: SERVER.SERVERAPI + "/rest/reg/QlfQlNydsyq/detail", | 29 | url: SERVER.SERVERAPI + "/rest/reg/QlfQlNydsyq/detail", |
... | @@ -25,7 +33,11 @@ class qlfQlNydsyq { | ... | @@ -25,7 +33,11 @@ class qlfQlNydsyq { |
25 | }, | 33 | }, |
26 | }); | 34 | }); |
27 | } | 35 | } |
28 | //修改农用地使用权(非林地) | 36 | /** |
37 | * @description: 修改农用地使用权(非林地) | ||
38 | * @param {*} data | ||
39 | * @author: renchao | ||
40 | */ | ||
29 | async updateQlfQlNydsyq (data) { | 41 | async updateQlfQlNydsyq (data) { |
30 | return request({ | 42 | return request({ |
31 | url: SERVER.SERVERAPI + "/rest/reg/QlfQlNydsyq/edit", | 43 | url: SERVER.SERVERAPI + "/rest/reg/QlfQlNydsyq/edit", | ... | ... |
... | @@ -7,7 +7,11 @@ import request from '@/utils/request' | ... | @@ -7,7 +7,11 @@ import request from '@/utils/request' |
7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
8 | 8 | ||
9 | class qlfQlQtxgql { | 9 | class qlfQlQtxgql { |
10 | // 其他相关权利 | 10 | /** |
11 | * @description: 其他相关权利 | ||
12 | * @param {*} bsmSjsb | ||
13 | * @author: renchao | ||
14 | */ | ||
11 | async getQlfQlQtxgqlById (bsmSjsb) { | 15 | async getQlfQlQtxgqlById (bsmSjsb) { |
12 | return request({ | 16 | return request({ |
13 | url: SERVER.SERVERAPI + '/rest/reg/QlfQlQtxgql/detail', | 17 | url: SERVER.SERVERAPI + '/rest/reg/QlfQlQtxgql/detail', |
... | @@ -17,7 +21,11 @@ class qlfQlQtxgql { | ... | @@ -17,7 +21,11 @@ class qlfQlQtxgql { |
17 | } | 21 | } |
18 | }) | 22 | }) |
19 | } | 23 | } |
20 | // 其他相关权利-修改 | 24 | /** |
25 | * @description: 其他相关权利-修改 | ||
26 | * @param {*} data | ||
27 | * @author: renchao | ||
28 | */ | ||
21 | async updateQlfQlQtxgql (data) { | 29 | async updateQlfQlQtxgql (data) { |
22 | return request({ | 30 | return request({ |
23 | url: SERVER.SERVERAPI + '/rest/reg/QlfQlQtxgql/edit', | 31 | url: SERVER.SERVERAPI + '/rest/reg/QlfQlQtxgql/edit', | ... | ... |
... | @@ -7,7 +7,11 @@ import request from "@/utils/request"; | ... | @@ -7,7 +7,11 @@ import request from "@/utils/request"; |
7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
8 | 8 | ||
9 | class qlfQlTdsyq { | 9 | class qlfQlTdsyq { |
10 | // 土地所有权 | 10 | /** |
11 | * @description: 土地所有权 | ||
12 | * @param {*} data | ||
13 | * @author: renchao | ||
14 | */ | ||
11 | async getQlfQlTdsyqList (data) { | 15 | async getQlfQlTdsyqList (data) { |
12 | return request({ | 16 | return request({ |
13 | url: SERVER.SERVERAPI + "/rest/reg/QlfQlTdsyq/getDataPage", | 17 | url: SERVER.SERVERAPI + "/rest/reg/QlfQlTdsyq/getDataPage", |
... | @@ -16,6 +20,11 @@ class qlfQlTdsyq { | ... | @@ -16,6 +20,11 @@ class qlfQlTdsyq { |
16 | }); | 20 | }); |
17 | } | 21 | } |
18 | //土地所有权 | 22 | //土地所有权 |
23 | /** | ||
24 | * @description: 土地所有权 | ||
25 | * @param {*} bsmSjsb | ||
26 | * @author: renchao | ||
27 | */ | ||
19 | async getQlfQlTdsyqById (bsmSjsb) { | 28 | async getQlfQlTdsyqById (bsmSjsb) { |
20 | return request({ | 29 | return request({ |
21 | url: SERVER.SERVERAPI + '/rest/reg/QlfQlTdsyq/detail', | 30 | url: SERVER.SERVERAPI + '/rest/reg/QlfQlTdsyq/detail', |
... | @@ -25,7 +34,11 @@ class qlfQlTdsyq { | ... | @@ -25,7 +34,11 @@ class qlfQlTdsyq { |
25 | } | 34 | } |
26 | }) | 35 | }) |
27 | } | 36 | } |
28 | //修改土地所有权 | 37 | /** |
38 | * @description: 修改土地所有权 | ||
39 | * @param {*} data | ||
40 | * @author: renchao | ||
41 | */ | ||
29 | async updateQlfQlTdsyq (data) { | 42 | async updateQlfQlTdsyq (data) { |
30 | return request({ | 43 | return request({ |
31 | url: SERVER.SERVERAPI + '/rest/reg/QlfQlTdsyq/edit', | 44 | url: SERVER.SERVERAPI + '/rest/reg/QlfQlTdsyq/edit', | ... | ... |
... | @@ -7,7 +7,11 @@ import request from "@/utils/request"; | ... | @@ -7,7 +7,11 @@ import request from "@/utils/request"; |
7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
8 | 8 | ||
9 | class qlfQlYgdj { | 9 | class qlfQlYgdj { |
10 | // 预告登记信息 | 10 | /** |
11 | * @description: 预告登记信息 | ||
12 | * @param {*} data | ||
13 | * @author: renchao | ||
14 | */ | ||
11 | async getQlfQlYgdjList (data) { | 15 | async getQlfQlYgdjList (data) { |
12 | return request({ | 16 | return request({ |
13 | url: SERVER.SERVERAPI + "/rest/reg/QlfQlYgdj/getDataPage", | 17 | url: SERVER.SERVERAPI + "/rest/reg/QlfQlYgdj/getDataPage", |
... | @@ -15,7 +19,11 @@ class qlfQlYgdj { | ... | @@ -15,7 +19,11 @@ class qlfQlYgdj { |
15 | data, | 19 | data, |
16 | }); | 20 | }); |
17 | } | 21 | } |
18 | // 预告登记信息 | 22 | /** |
23 | * @description: 预告登记信息 | ||
24 | * @param {*} bsmSjsb | ||
25 | * @author: renchao | ||
26 | */ | ||
19 | async getQlfQlYgdjById (bsmSjsb) { | 27 | async getQlfQlYgdjById (bsmSjsb) { |
20 | return request({ | 28 | return request({ |
21 | url: SERVER.SERVERAPI + "/rest/reg/QlfQlYgdj/detail", | 29 | url: SERVER.SERVERAPI + "/rest/reg/QlfQlYgdj/detail", |
... | @@ -25,7 +33,11 @@ class qlfQlYgdj { | ... | @@ -25,7 +33,11 @@ class qlfQlYgdj { |
25 | }, | 33 | }, |
26 | }); | 34 | }); |
27 | } | 35 | } |
28 | // 预告登记信息-修改 | 36 | /** |
37 | * @description: 预告登记信息-修改 | ||
38 | * @param {*} data | ||
39 | * @author: renchao | ||
40 | */ | ||
29 | async updateQlfQlYgdj (data) { | 41 | async updateQlfQlYgdj (data) { |
30 | return request({ | 42 | return request({ |
31 | url: SERVER.SERVERAPI + "/rest/reg/QlfQlYgdj/edit", | 43 | url: SERVER.SERVERAPI + "/rest/reg/QlfQlYgdj/edit", | ... | ... |
... | @@ -7,7 +7,11 @@ import request from "@/utils/request"; | ... | @@ -7,7 +7,11 @@ import request from "@/utils/request"; |
7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
8 | 8 | ||
9 | class qlfQlYydj { | 9 | class qlfQlYydj { |
10 | // 异议登记信息 | 10 | /** |
11 | * @description: 异议登记信息 | ||
12 | * @param {*} data | ||
13 | * @author: renchao | ||
14 | */ | ||
11 | async getQlfQlYydjList (data) { | 15 | async getQlfQlYydjList (data) { |
12 | return request({ | 16 | return request({ |
13 | url: SERVER.SERVERAPI + "/rest/reg/QlfQlYydj/getDataPage", | 17 | url: SERVER.SERVERAPI + "/rest/reg/QlfQlYydj/getDataPage", |
... | @@ -15,7 +19,11 @@ class qlfQlYydj { | ... | @@ -15,7 +19,11 @@ class qlfQlYydj { |
15 | data, | 19 | data, |
16 | }); | 20 | }); |
17 | } | 21 | } |
18 | // 异议登记信息 | 22 | /** |
23 | * @description: 异议登记信息 | ||
24 | * @param {*} bsmSjsb | ||
25 | * @author: renchao | ||
26 | */ | ||
19 | async getQlfQlYydjById (bsmSjsb) { | 27 | async getQlfQlYydjById (bsmSjsb) { |
20 | return request({ | 28 | return request({ |
21 | url: SERVER.SERVERAPI + "/rest/reg/QlfQlYydj/detail", | 29 | url: SERVER.SERVERAPI + "/rest/reg/QlfQlYydj/detail", |
... | @@ -25,7 +33,11 @@ class qlfQlYydj { | ... | @@ -25,7 +33,11 @@ class qlfQlYydj { |
25 | }, | 33 | }, |
26 | }); | 34 | }); |
27 | } | 35 | } |
28 | // 异议登记信息-修改 | 36 | /** |
37 | * @description: 异议登记信息-修改 | ||
38 | * @param {*} data | ||
39 | * @author: renchao | ||
40 | */ | ||
29 | async updateQlfQlYydj (data) { | 41 | async updateQlfQlYydj (data) { |
30 | return request({ | 42 | return request({ |
31 | url: SERVER.SERVERAPI + "/rest/reg/QlfQlYydj/edit", | 43 | url: SERVER.SERVERAPI + "/rest/reg/QlfQlYydj/edit", | ... | ... |
... | @@ -7,7 +7,11 @@ import request from "@/utils/request"; | ... | @@ -7,7 +7,11 @@ import request from "@/utils/request"; |
7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
8 | 8 | ||
9 | class qlfQlZxdj { | 9 | class qlfQlZxdj { |
10 | // 注销登记 | 10 | /** |
11 | * @description: 注销登记 | ||
12 | * @param {*} data | ||
13 | * @author: renchao | ||
14 | */ | ||
11 | async getQlfQlZxdjList (data) { | 15 | async getQlfQlZxdjList (data) { |
12 | return request({ | 16 | return request({ |
13 | url: SERVER.SERVERAPI + "/rest/reg/QlfQlZxdj/getDataPage", | 17 | url: SERVER.SERVERAPI + "/rest/reg/QlfQlZxdj/getDataPage", |
... | @@ -15,7 +19,11 @@ class qlfQlZxdj { | ... | @@ -15,7 +19,11 @@ class qlfQlZxdj { |
15 | data, | 19 | data, |
16 | }); | 20 | }); |
17 | } | 21 | } |
18 | // 注销登记信息 | 22 | /** |
23 | * @description: 注销登记信息 | ||
24 | * @param {*} bsmSjsb | ||
25 | * @author: renchao | ||
26 | */ | ||
19 | async getQlfQlZxdjById (bsmSjsb) { | 27 | async getQlfQlZxdjById (bsmSjsb) { |
20 | return request({ | 28 | return request({ |
21 | url: SERVER.SERVERAPI + "/rest/reg/QlfQlZxdj/detail", | 29 | url: SERVER.SERVERAPI + "/rest/reg/QlfQlZxdj/detail", |
... | @@ -25,7 +33,11 @@ class qlfQlZxdj { | ... | @@ -25,7 +33,11 @@ class qlfQlZxdj { |
25 | }, | 33 | }, |
26 | }); | 34 | }); |
27 | } | 35 | } |
28 | //注销登记信息 - 修改 | 36 | /** |
37 | * @description: 注销登记信息-修改 | ||
38 | * @param {*} data | ||
39 | * @author: renchao | ||
40 | */ | ||
29 | async updateQlfQlZxdj (data) { | 41 | async updateQlfQlZxdj (data) { |
30 | return request({ | 42 | return request({ |
31 | url: SERVER.SERVERAPI + "/rest/reg/QlfQlZxdj/edit", | 43 | url: SERVER.SERVERAPI + "/rest/reg/QlfQlZxdj/edit", | ... | ... |
... | @@ -7,7 +7,11 @@ import request from "@/utils/request"; | ... | @@ -7,7 +7,11 @@ import request from "@/utils/request"; |
7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
8 | 8 | ||
9 | class qltFwFdcqDz { | 9 | class qltFwFdcqDz { |
10 | // 房地产权_项目内多幢房屋信息 | 10 | /** |
11 | * @description: 房地产权_项目内多幢房屋信息 | ||
12 | * @param {*} data | ||
13 | * @author: renchao | ||
14 | */ | ||
11 | async getQltFwFdcqDzList (data) { | 15 | async getQltFwFdcqDzList (data) { |
12 | return request({ | 16 | return request({ |
13 | url: SERVER.SERVERAPI + "/rest/reg/QltFwFdcqDz/getDataPage", | 17 | url: SERVER.SERVERAPI + "/rest/reg/QltFwFdcqDz/getDataPage", |
... | @@ -15,7 +19,11 @@ class qltFwFdcqDz { | ... | @@ -15,7 +19,11 @@ class qltFwFdcqDz { |
15 | data, | 19 | data, |
16 | }); | 20 | }); |
17 | } | 21 | } |
18 | //房地产权_项目内多幢房屋信息 | 22 | /** |
23 | * @description: 房地产权_项目内多幢房屋信息 | ||
24 | * @param {*} bsmSjsb | ||
25 | * @author: renchao | ||
26 | */ | ||
19 | async getQltFwFdcqDzById (bsmSjsb) { | 27 | async getQltFwFdcqDzById (bsmSjsb) { |
20 | return request({ | 28 | return request({ |
21 | url: SERVER.SERVERAPI + '/rest/reg/QltFwFdcqDz/detail', | 29 | url: SERVER.SERVERAPI + '/rest/reg/QltFwFdcqDz/detail', |
... | @@ -25,7 +33,11 @@ class qltFwFdcqDz { | ... | @@ -25,7 +33,11 @@ class qltFwFdcqDz { |
25 | } | 33 | } |
26 | }) | 34 | }) |
27 | } | 35 | } |
28 | //修改房地产权_项目内多幢房屋信息 | 36 | /** |
37 | * @description: 修改房地产权_项目内多幢房屋信息 | ||
38 | * @param {*} data | ||
39 | * @author: renchao | ||
40 | */ | ||
29 | async updateQltFwFdcqDz (data) { | 41 | async updateQltFwFdcqDz (data) { |
30 | return request({ | 42 | return request({ |
31 | url: SERVER.SERVERAPI + '/rest/reg/QltFwFdcqDz/edit', | 43 | url: SERVER.SERVERAPI + '/rest/reg/QltFwFdcqDz/edit', | ... | ... |
... | @@ -7,7 +7,11 @@ import request from "@/utils/request"; | ... | @@ -7,7 +7,11 @@ import request from "@/utils/request"; |
7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
8 | 8 | ||
9 | class qltFwFdcqYz { | 9 | class qltFwFdcqYz { |
10 | // 房地产权(独幢、层、套、间、房屋) | 10 | /** |
11 | * @description: 房地产权(独幢、层、套、间、房屋) | ||
12 | * @param {*} data | ||
13 | * @author: renchao | ||
14 | */ | ||
11 | async getQltFwFdcqYzList (data) { | 15 | async getQltFwFdcqYzList (data) { |
12 | return request({ | 16 | return request({ |
13 | url: SERVER.SERVERAPI + "/rest/reg/QltFwFdcqYz/getDataPage", | 17 | url: SERVER.SERVERAPI + "/rest/reg/QltFwFdcqYz/getDataPage", |
... | @@ -15,7 +19,11 @@ class qltFwFdcqYz { | ... | @@ -15,7 +19,11 @@ class qltFwFdcqYz { |
15 | data, | 19 | data, |
16 | }); | 20 | }); |
17 | } | 21 | } |
18 | //房地产权(独幢、层、套、间、房屋) | 22 | /** |
23 | * @description: 房地产权(独幢、层、套、间、房屋) | ||
24 | * @param {*} bsmSjsb | ||
25 | * @author: renchao | ||
26 | */ | ||
19 | async getQltFwFdcqYzById (bsmSjsb) { | 27 | async getQltFwFdcqYzById (bsmSjsb) { |
20 | return request({ | 28 | return request({ |
21 | url: SERVER.SERVERAPI + '/rest/reg/QltFwFdcqYz/detail', | 29 | url: SERVER.SERVERAPI + '/rest/reg/QltFwFdcqYz/detail', |
... | @@ -25,7 +33,11 @@ class qltFwFdcqYz { | ... | @@ -25,7 +33,11 @@ class qltFwFdcqYz { |
25 | } | 33 | } |
26 | }) | 34 | }) |
27 | } | 35 | } |
28 | //修改房地产权(独幢、层、套、间、房屋) | 36 | /** |
37 | * @description: 修改房地产权(独幢、层、套、间、房屋) | ||
38 | * @param {*} data | ||
39 | * @author: renchao | ||
40 | */ | ||
29 | async updateQltFwFdcqYz (data) { | 41 | async updateQltFwFdcqYz (data) { |
30 | return request({ | 42 | return request({ |
31 | url: SERVER.SERVERAPI + '/rest/reg/QltFwFdcqYz/edit', | 43 | url: SERVER.SERVERAPI + '/rest/reg/QltFwFdcqYz/edit', | ... | ... |
... | @@ -7,7 +7,11 @@ import request from "@/utils/request"; | ... | @@ -7,7 +7,11 @@ import request from "@/utils/request"; |
7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
8 | 8 | ||
9 | class qltQlGjzwsyq { | 9 | class qltQlGjzwsyq { |
10 | // 构(建)筑物所有权 | 10 | /** |
11 | * @description: 构(建)筑物所有权 | ||
12 | * @param {*} data | ||
13 | * @author: renchao | ||
14 | */ | ||
11 | async getQltQlGjzwsyqList (data) { | 15 | async getQltQlGjzwsyqList (data) { |
12 | return request({ | 16 | return request({ |
13 | url: SERVER.SERVERAPI + "/rest/reg/QltQlGjzwsyq/getDataPage", | 17 | url: SERVER.SERVERAPI + "/rest/reg/QltQlGjzwsyq/getDataPage", |
... | @@ -15,7 +19,11 @@ class qltQlGjzwsyq { | ... | @@ -15,7 +19,11 @@ class qltQlGjzwsyq { |
15 | data, | 19 | data, |
16 | }); | 20 | }); |
17 | } | 21 | } |
18 | // 构(建)筑物所有权 | 22 | /** |
23 | * @description: 构(建)筑物所有权 | ||
24 | * @param {*} bsmSjsb | ||
25 | * @author: renchao | ||
26 | */ | ||
19 | async getQltQlGjzwsyqById (bsmSjsb) { | 27 | async getQltQlGjzwsyqById (bsmSjsb) { |
20 | return request({ | 28 | return request({ |
21 | url: SERVER.SERVERAPI + "/rest/reg/QltQlGjzwsyq/detail", | 29 | url: SERVER.SERVERAPI + "/rest/reg/QltQlGjzwsyq/detail", |
... | @@ -25,7 +33,11 @@ class qltQlGjzwsyq { | ... | @@ -25,7 +33,11 @@ class qltQlGjzwsyq { |
25 | }, | 33 | }, |
26 | }); | 34 | }); |
27 | } | 35 | } |
28 | //构(建)筑物所有权 - 修改 | 36 | /** |
37 | * @description: 构(建)筑物所有权 - 修改 | ||
38 | * @param {*} data | ||
39 | * @author: renchao | ||
40 | */ | ||
29 | async updateQltQlGjzwsyq (data) { | 41 | async updateQltQlGjzwsyq (data) { |
30 | return request({ | 42 | return request({ |
31 | url: SERVER.SERVERAPI + "/rest/reg/QltQlGjzwsyq/edit", | 43 | url: SERVER.SERVERAPI + "/rest/reg/QltQlGjzwsyq/edit", | ... | ... |
... | @@ -7,7 +7,11 @@ import request from "@/utils/request"; | ... | @@ -7,7 +7,11 @@ import request from "@/utils/request"; |
7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
8 | 8 | ||
9 | class qltQlLq { | 9 | class qltQlLq { |
10 | // 林权 | 10 | /** |
11 | * @description: 林权 | ||
12 | * @param {*} data | ||
13 | * @author: renchao | ||
14 | */ | ||
11 | async getQltQlLqList (data) { | 15 | async getQltQlLqList (data) { |
12 | return request({ | 16 | return request({ |
13 | url: SERVER.SERVERAPI + "/rest/reg/QltQlLq/getDataPage", | 17 | url: SERVER.SERVERAPI + "/rest/reg/QltQlLq/getDataPage", |
... | @@ -15,7 +19,11 @@ class qltQlLq { | ... | @@ -15,7 +19,11 @@ class qltQlLq { |
15 | data, | 19 | data, |
16 | }); | 20 | }); |
17 | } | 21 | } |
18 | //林权 | 22 | /** |
23 | * @description: 林权 | ||
24 | * @param {*} bsmSjsb | ||
25 | * @author: renchao | ||
26 | */ | ||
19 | async getQltQlLqById (bsmSjsb) { | 27 | async getQltQlLqById (bsmSjsb) { |
20 | return request({ | 28 | return request({ |
21 | url: SERVER.SERVERAPI + "/rest/reg/QltQlLq/detail", | 29 | url: SERVER.SERVERAPI + "/rest/reg/QltQlLq/detail", |
... | @@ -25,7 +33,11 @@ class qltQlLq { | ... | @@ -25,7 +33,11 @@ class qltQlLq { |
25 | }, | 33 | }, |
26 | }); | 34 | }); |
27 | } | 35 | } |
28 | //修改林权 | 36 | /** |
37 | * @description: 修改林权 | ||
38 | * @param {*} data | ||
39 | * @author: renchao | ||
40 | */ | ||
29 | async updateQltQlLq (data) { | 41 | async updateQltQlLq (data) { |
30 | return request({ | 42 | return request({ |
31 | url: SERVER.SERVERAPI + "/rest/reg/QltQlLq/edit", | 43 | url: SERVER.SERVERAPI + "/rest/reg/QltQlLq/edit", | ... | ... |
... | @@ -10,6 +10,7 @@ let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('Ap | ... | @@ -10,6 +10,7 @@ let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('Ap |
10 | const urlHeader = SERVER.SERVERAPI + '/rest/sjsb/RecordLog/' | 10 | const urlHeader = SERVER.SERVERAPI + '/rest/sjsb/RecordLog/' |
11 | /** | 11 | /** |
12 | * @description: 登簿日志分页 | 12 | * @description: 登簿日志分页 |
13 | * @param {*} data | ||
13 | * @author: renchao | 14 | * @author: renchao |
14 | */ | 15 | */ |
15 | export function getRecordLogPage (data) { | 16 | export function getRecordLogPage (data) { | ... | ... |
... | @@ -6,7 +6,11 @@ | ... | @@ -6,7 +6,11 @@ |
6 | import request from '@/utils/request' | 6 | import request from '@/utils/request' |
7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
8 | class ruleConfig { | 8 | class ruleConfig { |
9 | // 列表查询 | 9 | /** |
10 | * @description: 列表查询 | ||
11 | * @param {*} data | ||
12 | * @author: renchao | ||
13 | */ | ||
10 | async getSysYwsjbList (data) { | 14 | async getSysYwsjbList (data) { |
11 | return request({ | 15 | return request({ |
12 | url: SERVER.SERVERAPI + '/rest/SysYwsjb/getSysYwsjbList', | 16 | url: SERVER.SERVERAPI + '/rest/SysYwsjb/getSysYwsjbList', |
... | @@ -14,7 +18,11 @@ class ruleConfig { | ... | @@ -14,7 +18,11 @@ class ruleConfig { |
14 | data | 18 | data |
15 | }) | 19 | }) |
16 | } | 20 | } |
17 | // 编辑界面列表查询 | 21 | /** |
22 | * @description: 编辑界面列表查询 | ||
23 | * @param {*} id | ||
24 | * @author: renchao | ||
25 | */ | ||
18 | async eidtConfigRule (id) { | 26 | async eidtConfigRule (id) { |
19 | return request({ | 27 | return request({ |
20 | url: SERVER.SERVERAPI + '/rest/SysYwsjb/getSysYwsjbWithSysYwsjbFieldByBsmYwsjb', | 28 | url: SERVER.SERVERAPI + '/rest/SysYwsjb/getSysYwsjbWithSysYwsjbFieldByBsmYwsjb', |
... | @@ -24,7 +32,11 @@ class ruleConfig { | ... | @@ -24,7 +32,11 @@ class ruleConfig { |
24 | } | 32 | } |
25 | }) | 33 | }) |
26 | } | 34 | } |
27 | // 编辑 | 35 | /** |
36 | * @description: 编辑 | ||
37 | * @param {*} data | ||
38 | * @author: renchao | ||
39 | */ | ||
28 | async editSysYwsjbWithSysYwsjbField (data) { | 40 | async editSysYwsjbWithSysYwsjbField (data) { |
29 | return request({ | 41 | return request({ |
30 | url: SERVER.SERVERAPI + '/rest/SysYwsjb/editSysYwsjbWithSysYwsjbField', | 42 | url: SERVER.SERVERAPI + '/rest/SysYwsjb/editSysYwsjbWithSysYwsjbField', |
... | @@ -32,7 +44,11 @@ class ruleConfig { | ... | @@ -32,7 +44,11 @@ class ruleConfig { |
32 | data | 44 | data |
33 | }) | 45 | }) |
34 | } | 46 | } |
35 | // 编辑 | 47 | /** |
48 | * @description: 编辑 | ||
49 | * @param {*} id | ||
50 | * @author: renchao | ||
51 | */ | ||
36 | async deleteSysYwsjbWithSysYwsjbFieldByBsmYwsjb (id) { | 52 | async deleteSysYwsjbWithSysYwsjbFieldByBsmYwsjb (id) { |
37 | return request({ | 53 | return request({ |
38 | url: SERVER.SERVERAPI + '/rest/SysYwsjb/deleteSysYwsjbWithSysYwsjbFieldByBsmYwsjb', | 54 | url: SERVER.SERVERAPI + '/rest/SysYwsjb/deleteSysYwsjbWithSysYwsjbFieldByBsmYwsjb', |
... | @@ -42,7 +58,11 @@ class ruleConfig { | ... | @@ -42,7 +58,11 @@ class ruleConfig { |
42 | } | 58 | } |
43 | }) | 59 | }) |
44 | } | 60 | } |
45 | // 编辑界面列表查询----根据数据表名查询 | 61 | /** |
62 | * @description: 编辑界面列表查询----根据数据表名查询 | ||
63 | * @param {*} bsmYwsjb | ||
64 | * @author: renchao | ||
65 | */ | ||
46 | async getRuleList (bsmYwsjb) { | 66 | async getRuleList (bsmYwsjb) { |
47 | return request({ | 67 | return request({ |
48 | url: SERVER.SERVERAPI + '/rest/sjsb/DataReport/getTableColumn', | 68 | url: SERVER.SERVERAPI + '/rest/sjsb/DataReport/getTableColumn', | ... | ... |
... | @@ -7,7 +7,11 @@ import request from '@/utils/request' | ... | @@ -7,7 +7,11 @@ import request from '@/utils/request' |
7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
8 | 8 | ||
9 | class sjsbFunctionOper { | 9 | class sjsbFunctionOper { |
10 | // 数据上报表头相关接口 | 10 | /** |
11 | * @description: 数据上报表头相关接口 | ||
12 | * @param {*} id | ||
13 | * @author: renchao | ||
14 | */ | ||
11 | async getQltFwFdcqYzByCondition (id) { | 15 | async getQltFwFdcqYzByCondition (id) { |
12 | return request({ | 16 | return request({ |
13 | url: '/sjsbFunctionOper/getSjsbTableInfo', | 17 | url: '/sjsbFunctionOper/getSjsbTableInfo', |
... | @@ -17,7 +21,11 @@ class sjsbFunctionOper { | ... | @@ -17,7 +21,11 @@ class sjsbFunctionOper { |
17 | } | 21 | } |
18 | }) | 22 | }) |
19 | } | 23 | } |
20 | // xml | 24 | /** |
25 | * @description: xml | ||
26 | * @param {*} id | ||
27 | * @author: renchao | ||
28 | */ | ||
21 | async queryXML (id) { | 29 | async queryXML (id) { |
22 | return request({ | 30 | return request({ |
23 | url: SERVER.SERVERAPI + '/rest/reg/sjsbFunctionOper/queryXML', | 31 | url: SERVER.SERVERAPI + '/rest/reg/sjsbFunctionOper/queryXML', | ... | ... |
... | @@ -8,7 +8,11 @@ let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('Ap | ... | @@ -8,7 +8,11 @@ let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('Ap |
8 | 8 | ||
9 | class sjsbTask { | 9 | class sjsbTask { |
10 | // 定时任务 | 10 | // 定时任务 |
11 | // 定时任务查询接口 | 11 | /** |
12 | * @description: 定时任务查询接口 | ||
13 | * @param {*} data | ||
14 | * @author: renchao | ||
15 | */ | ||
12 | async getTaskListByName (data) { | 16 | async getTaskListByName (data) { |
13 | return request({ | 17 | return request({ |
14 | url: SERVER.SERVERAPI + '/rest/schedule/getScheduleList', | 18 | url: SERVER.SERVERAPI + '/rest/schedule/getScheduleList', |
... | @@ -20,7 +24,11 @@ class sjsbTask { | ... | @@ -20,7 +24,11 @@ class sjsbTask { |
20 | } | 24 | } |
21 | }) | 25 | }) |
22 | } | 26 | } |
23 | // 定时任务新增接口 | 27 | /** |
28 | * @description: 定时任务新增接口 | ||
29 | * @param {*} data | ||
30 | * @author: renchao | ||
31 | */ | ||
24 | async sjsbTaskSave (data) { | 32 | async sjsbTaskSave (data) { |
25 | return request({ | 33 | return request({ |
26 | url: SERVER.SERVERAPI + '/rest/schedule/add', | 34 | url: SERVER.SERVERAPI + '/rest/schedule/add', |
... | @@ -28,7 +36,11 @@ class sjsbTask { | ... | @@ -28,7 +36,11 @@ class sjsbTask { |
28 | data | 36 | data |
29 | }) | 37 | }) |
30 | } | 38 | } |
31 | // 修改定时任务执行时间接口 | 39 | /** |
40 | * @description: 修改定时任务执行时间接口 | ||
41 | * @param {*} data | ||
42 | * @author: data | ||
43 | */ | ||
32 | async updateCron (data) { | 44 | async updateCron (data) { |
33 | return request({ | 45 | return request({ |
34 | url: SERVER.SERVERAPI + '/rest/schedule/update', | 46 | url: SERVER.SERVERAPI + '/rest/schedule/update', |
... | @@ -36,7 +48,11 @@ class sjsbTask { | ... | @@ -36,7 +48,11 @@ class sjsbTask { |
36 | data | 48 | data |
37 | }) | 49 | }) |
38 | } | 50 | } |
39 | // 定时任务删除接口 | 51 | /** |
52 | * @description: 定时任务删除接口 | ||
53 | * @param {*} id | ||
54 | * @author: renchao | ||
55 | */ | ||
40 | async sjsbTaskRemove (id) { | 56 | async sjsbTaskRemove (id) { |
41 | return request({ | 57 | return request({ |
42 | url: SERVER.SERVERAPI + '/rest/schedule/delete', | 58 | url: SERVER.SERVERAPI + '/rest/schedule/delete', |
... | @@ -46,7 +62,11 @@ class sjsbTask { | ... | @@ -46,7 +62,11 @@ class sjsbTask { |
46 | } | 62 | } |
47 | }) | 63 | }) |
48 | } | 64 | } |
49 | // 恢复任务接口 | 65 | /** |
66 | * @description: 恢复任务接口 | ||
67 | * @param {*} id | ||
68 | * @author: renchao | ||
69 | */ | ||
50 | async recover (id) { | 70 | async recover (id) { |
51 | return request({ | 71 | return request({ |
52 | url: SERVER.SERVERAPI + '/rest/schedule/recover', | 72 | url: SERVER.SERVERAPI + '/rest/schedule/recover', |
... | @@ -56,7 +76,11 @@ class sjsbTask { | ... | @@ -56,7 +76,11 @@ class sjsbTask { |
56 | } | 76 | } |
57 | }) | 77 | }) |
58 | } | 78 | } |
59 | // 激活任务接口 | 79 | /** |
80 | * @description: 激活任务接口 | ||
81 | * @param {*} id | ||
82 | * @author: renchao | ||
83 | */ | ||
60 | async active (id) { | 84 | async active (id) { |
61 | return request({ | 85 | return request({ |
62 | url: SERVER.SERVERAPI + '/rest/schedule/active', | 86 | url: SERVER.SERVERAPI + '/rest/schedule/active', | ... | ... |
1 | /* | 1 | /* |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-03-24 09:28:25 | 4 | * @LastEditTime: 2023-03-24 09:28:25 |
5 | */ | 5 | */ |
6 | import request from '@/utils/request' | 6 | import request from '@/utils/request' |
7 | // let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 7 | // let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
8 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 8 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
9 | // 获取用户信息 | 9 | /** |
10 | * @description: 获取用户信息 | ||
11 | * @author: renchao | ||
12 | */ | ||
10 | export function getUserInfo () { | 13 | export function getUserInfo () { |
11 | return request({ | 14 | return request({ |
12 | url: SERVER.SERVERAPI + '/rest/user/getUserInfo', | 15 | url: SERVER.SERVERAPI + '/rest/user/getUserInfo', |
... | @@ -14,7 +17,11 @@ export function getUserInfo () { | ... | @@ -14,7 +17,11 @@ export function getUserInfo () { |
14 | }) | 17 | }) |
15 | } | 18 | } |
16 | 19 | ||
17 | // 获取菜单信息 | 20 | /** |
21 | * @description: 获取菜单信息 | ||
22 | * @param {*} data | ||
23 | * @author: renchao | ||
24 | */ | ||
18 | export function getMenuInfo (data) { | 25 | export function getMenuInfo (data) { |
19 | return request({ | 26 | return request({ |
20 | url: SERVER.SERVERAPI + '/rest/user/getUserAuthorizationMenus', | 27 | url: SERVER.SERVERAPI + '/rest/user/getUserAuthorizationMenus', | ... | ... |
... | @@ -7,7 +7,11 @@ import request from '@/utils/request' | ... | @@ -7,7 +7,11 @@ import request from '@/utils/request' |
7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
8 | 8 | ||
9 | class work { | 9 | class work { |
10 | // 登记类型总量 | 10 | /** |
11 | * @description: 登记类型总量 | ||
12 | * @param {*} data | ||
13 | * @author: renchao | ||
14 | */ | ||
11 | async getDjlxtotal (data) { | 15 | async getDjlxtotal (data) { |
12 | return request({ | 16 | return request({ |
13 | url: SERVER.SERVERAPI + '/rest/reg/work/getDjlxtotal', | 17 | url: SERVER.SERVERAPI + '/rest/reg/work/getDjlxtotal', |
... | @@ -15,7 +19,11 @@ class work { | ... | @@ -15,7 +19,11 @@ class work { |
15 | data | 19 | data |
16 | }) | 20 | }) |
17 | } | 21 | } |
18 | // 登记业务量 | 22 | /** |
23 | * @description: 登记业务量 | ||
24 | * @param {*} data | ||
25 | * @author: renchao | ||
26 | */ | ||
19 | async getdjywltotal (data) { | 27 | async getdjywltotal (data) { |
20 | return request({ | 28 | return request({ |
21 | url: SERVER.SERVERAPI + '/rest/reg/work/getdjywltotal', | 29 | url: SERVER.SERVERAPI + '/rest/reg/work/getdjywltotal', |
... | @@ -23,7 +31,11 @@ class work { | ... | @@ -23,7 +31,11 @@ class work { |
23 | data | 31 | data |
24 | }) | 32 | }) |
25 | } | 33 | } |
26 | // 省厅汇交-区县接入 | 34 | /** |
35 | * @description: 省厅汇交-区县接入 | ||
36 | * @param {*} data | ||
37 | * @author: renchao | ||
38 | */ | ||
27 | async getsthjqxjrtotal (data) { | 39 | async getsthjqxjrtotal (data) { |
28 | return request({ | 40 | return request({ |
29 | url: SERVER.SERVERAPI + '/rest/reg/work/getsthjqxjrtotal', | 41 | url: SERVER.SERVERAPI + '/rest/reg/work/getsthjqxjrtotal', |
... | @@ -31,7 +43,11 @@ class work { | ... | @@ -31,7 +43,11 @@ class work { |
31 | data | 43 | data |
32 | }) | 44 | }) |
33 | } | 45 | } |
34 | // 地图区县总量统计,code区县编码,汉中为:A20 | 46 | /** |
47 | * @description: 地图区县总量统计,code区县编码,汉中为:A20 | ||
48 | * @param {*} code | ||
49 | * @author: renchao | ||
50 | */ | ||
35 | async mapViews (code) { | 51 | async mapViews (code) { |
36 | return request({ | 52 | return request({ |
37 | url: SERVER.SERVERAPI + '/rest/reg/work/mapViews', | 53 | url: SERVER.SERVERAPI + '/rest/reg/work/mapViews', |
... | @@ -41,7 +57,11 @@ class work { | ... | @@ -41,7 +57,11 @@ class work { |
41 | } | 57 | } |
42 | }) | 58 | }) |
43 | } | 59 | } |
44 | // 数据趋势 | 60 | /** |
61 | * @description: 数据趋势 | ||
62 | * @param {*} code | ||
63 | * @author: renchao | ||
64 | */ | ||
45 | async dataTrend (code) { | 65 | async dataTrend (code) { |
46 | return request({ | 66 | return request({ |
47 | url: SERVER.SERVERAPI + '/rest/reg/work/dataTrend', | 67 | url: SERVER.SERVERAPI + '/rest/reg/work/dataTrend', |
... | @@ -51,7 +71,11 @@ class work { | ... | @@ -51,7 +71,11 @@ class work { |
51 | } | 71 | } |
52 | }) | 72 | }) |
53 | } | 73 | } |
54 | // 新建国有房屋信息 | 74 | /** |
75 | * @description: 新建国有房屋信息 | ||
76 | * @param {*} code | ||
77 | * @author: renchao | ||
78 | */ | ||
55 | async addhousetotal (code) { | 79 | async addhousetotal (code) { |
56 | return request({ | 80 | return request({ |
57 | url: SERVER.SERVERAPI + '/rest/reg/work/addhousetotal', | 81 | url: SERVER.SERVERAPI + '/rest/reg/work/addhousetotal', |
... | @@ -61,7 +85,11 @@ class work { | ... | @@ -61,7 +85,11 @@ class work { |
61 | } | 85 | } |
62 | }) | 86 | }) |
63 | } | 87 | } |
64 | // 地图区县成功失败统计,code区县编码,汉中为:A20 | 88 | /** |
89 | * @description: 地图区县成功失败统计,code区县编码,汉中为:A20 | ||
90 | * @param {*} code | ||
91 | * @author: renchao | ||
92 | */ | ||
65 | async submitViews (code) { | 93 | async submitViews (code) { |
66 | return request({ | 94 | return request({ |
67 | url: SERVER.SERVERAPI + '/rest/reg/work/submitViews', | 95 | url: SERVER.SERVERAPI + '/rest/reg/work/submitViews', | ... | ... |
... | @@ -7,7 +7,11 @@ import request from '@/utils/request' | ... | @@ -7,7 +7,11 @@ import request from '@/utils/request' |
7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
8 | 8 | ||
9 | class zdK103 { | 9 | class zdK103 { |
10 | //宗地空间属性 | 10 | /** |
11 | * @description: 宗地空间属性 | ||
12 | * @param {*} bsmSjsb | ||
13 | * @author: renchao | ||
14 | */ | ||
11 | async getZdK103ById (bsmSjsb) { | 15 | async getZdK103ById (bsmSjsb) { |
12 | return request({ | 16 | return request({ |
13 | url: SERVER.SERVERAPI + '/rest/reg/ZdK103/detail', | 17 | url: SERVER.SERVERAPI + '/rest/reg/ZdK103/detail', |
... | @@ -17,7 +21,11 @@ class zdK103 { | ... | @@ -17,7 +21,11 @@ class zdK103 { |
17 | } | 21 | } |
18 | }) | 22 | }) |
19 | } | 23 | } |
20 | //修改宗地空间属性 | 24 | /** |
25 | * @description: 修改宗地空间属性 | ||
26 | * @param {*} data | ||
27 | * @author: renchao | ||
28 | */ | ||
21 | async updateZdK103 (data) { | 29 | async updateZdK103 (data) { |
22 | return request({ | 30 | return request({ |
23 | url: SERVER.SERVERAPI + '/rest/reg/ZdK103/edit', | 31 | url: SERVER.SERVERAPI + '/rest/reg/ZdK103/edit', | ... | ... |
... | @@ -7,7 +7,11 @@ import request from '@/utils/request' | ... | @@ -7,7 +7,11 @@ import request from '@/utils/request' |
7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
8 | 8 | ||
9 | class zhK105 { | 9 | class zhK105 { |
10 | // 宗海空间属性 | 10 | /** |
11 | * @description: 宗海空间属性 | ||
12 | * @param {*} bsmSjsb | ||
13 | * @author: renchao | ||
14 | */ | ||
11 | async getZhK105ById (bsmSjsb) { | 15 | async getZhK105ById (bsmSjsb) { |
12 | return request({ | 16 | return request({ |
13 | url: SERVER.SERVERAPI + '/rest/reg/ZhK105/detail', | 17 | url: SERVER.SERVERAPI + '/rest/reg/ZhK105/detail', |
... | @@ -18,7 +22,11 @@ class zhK105 { | ... | @@ -18,7 +22,11 @@ class zhK105 { |
18 | }) | 22 | }) |
19 | } | 23 | } |
20 | 24 | ||
21 | // 宗海空间属性-修改 | 25 | /** |
26 | * @description: 宗海空间属性-修改 | ||
27 | * @param {*} data | ||
28 | * @author: renchao | ||
29 | */ | ||
22 | async updateZhK105 (data) { | 30 | async updateZhK105 (data) { |
23 | return request({ | 31 | return request({ |
24 | url: SERVER.SERVERAPI + '/rest/reg/ZhK105/edit', | 32 | url: SERVER.SERVERAPI + '/rest/reg/ZhK105/edit', | ... | ... |
... | @@ -7,7 +7,11 @@ import request from "@/utils/request"; | ... | @@ -7,7 +7,11 @@ import request from "@/utils/request"; |
7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
8 | 8 | ||
9 | class zttGyQlr { | 9 | class zttGyQlr { |
10 | // 权利人 -- 业务表单 | 10 | /** |
11 | * @description: 权利人 -- 业务表单 | ||
12 | * @param {*} bsmSjsb | ||
13 | * @author: renchao | ||
14 | */ | ||
11 | async getZttGyQlrById (bsmSjsb) { | 15 | async getZttGyQlrById (bsmSjsb) { |
12 | return request({ | 16 | return request({ |
13 | url: SERVER.SERVERAPI + "/rest/reg/ZttGyQlr/detail", | 17 | url: SERVER.SERVERAPI + "/rest/reg/ZttGyQlr/detail", |
... | @@ -17,7 +21,11 @@ class zttGyQlr { | ... | @@ -17,7 +21,11 @@ class zttGyQlr { |
17 | }, | 21 | }, |
18 | }); | 22 | }); |
19 | } | 23 | } |
20 | // 权利人 -- 业务表单修改 | 24 | /** |
25 | * @description: 权利人 -- 业务表单修改 | ||
26 | * @param {*} data | ||
27 | * @author: renchao | ||
28 | */ | ||
21 | async updateZttGyQlr (data) { | 29 | async updateZttGyQlr (data) { |
22 | return request({ | 30 | return request({ |
23 | url: SERVER.SERVERAPI + "/rest/reg/ZttGyQlr/edit", | 31 | url: SERVER.SERVERAPI + "/rest/reg/ZttGyQlr/edit", | ... | ... |
... | @@ -73,6 +73,10 @@ export default { | ... | @@ -73,6 +73,10 @@ export default { |
73 | this.chart = null; | 73 | this.chart = null; |
74 | }, | 74 | }, |
75 | methods: { | 75 | methods: { |
76 | /** | ||
77 | * @description: initChart | ||
78 | * @author: renchao | ||
79 | */ | ||
76 | initChart () { | 80 | initChart () { |
77 | // 初始化echart | 81 | // 初始化echart |
78 | this.chart = this.$echarts.init(this.$el, "tdTheme"); | 82 | this.chart = this.$echarts.init(this.$el, "tdTheme"); | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-03-20 16:36:51 | 4 | * @LastEditTime: 2023-03-20 16:36:51 |
5 | --> | 5 | --> |
... | @@ -32,6 +32,10 @@ export default { | ... | @@ -32,6 +32,10 @@ export default { |
32 | this.getBreadcrumb(); | 32 | this.getBreadcrumb(); |
33 | }, | 33 | }, |
34 | methods: { | 34 | methods: { |
35 | /** | ||
36 | * @description: getBreadcrumb | ||
37 | * @author: renchao | ||
38 | */ | ||
35 | getBreadcrumb () { | 39 | getBreadcrumb () { |
36 | // only show routes with meta.title | 40 | // only show routes with meta.title |
37 | this.levelList = this.$route.matched.filter( | 41 | this.levelList = this.$route.matched.filter( |
... | @@ -41,6 +45,11 @@ export default { | ... | @@ -41,6 +45,11 @@ export default { |
41 | this.levelList = this.levelList.slice(-1) | 45 | this.levelList = this.levelList.slice(-1) |
42 | } | 46 | } |
43 | }, | 47 | }, |
48 | /** | ||
49 | * @description: isDashboard | ||
50 | * @param {*} route | ||
51 | * @author: renchao | ||
52 | */ | ||
44 | isDashboard (route) { | 53 | isDashboard (route) { |
45 | const name = route && route.name; | 54 | const name = route && route.name; |
46 | if (!name) { | 55 | if (!name) { |
... | @@ -50,6 +59,11 @@ export default { | ... | @@ -50,6 +59,11 @@ export default { |
50 | name.trim().toLocaleLowerCase() === "Dashboard".toLocaleLowerCase() | 59 | name.trim().toLocaleLowerCase() === "Dashboard".toLocaleLowerCase() |
51 | ); | 60 | ); |
52 | }, | 61 | }, |
62 | /** | ||
63 | * @description: pathCompile | ||
64 | * @param {*} path | ||
65 | * @author: renchao | ||
66 | */ | ||
53 | pathCompile (path) { | 67 | pathCompile (path) { |
54 | const { params } = this.$route; | 68 | const { params } = this.$route; |
55 | var toPath = pathToRegexp.compile(path); | 69 | var toPath = pathToRegexp.compile(path); |
... | @@ -57,4 +71,4 @@ export default { | ... | @@ -57,4 +71,4 @@ export default { |
57 | } | 71 | } |
58 | } | 72 | } |
59 | } | 73 | } |
60 | </script> | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
74 | </script> | ... | ... |
... | @@ -144,6 +144,10 @@ export default { | ... | @@ -144,6 +144,10 @@ export default { |
144 | }; | 144 | }; |
145 | }, | 145 | }, |
146 | methods: { | 146 | methods: { |
147 | /** | ||
148 | * @description: featchData | ||
149 | * @author: renchao | ||
150 | */ | ||
147 | async featchData() { | 151 | async featchData() { |
148 | try { | 152 | try { |
149 | let { result: res } = await djfDjDb.getDjfDjDbById(this.bsmSjsb); | 153 | let { result: res } = await djfDjDb.getDjfDjDbById(this.bsmSjsb); |
... | @@ -153,6 +157,10 @@ export default { | ... | @@ -153,6 +157,10 @@ export default { |
153 | this.$refs.msg.messageShow(); | 157 | this.$refs.msg.messageShow(); |
154 | } | 158 | } |
155 | }, | 159 | }, |
160 | /** | ||
161 | * @description: handleUpdateForm | ||
162 | * @author: renchao | ||
163 | */ | ||
156 | handleUpdateForm() { | 164 | handleUpdateForm() { |
157 | return new Promise(async (resolve, reject) => { | 165 | return new Promise(async (resolve, reject) => { |
158 | try { | 166 | try { | ... | ... |
... | @@ -229,6 +229,10 @@ export default { | ... | @@ -229,6 +229,10 @@ export default { |
229 | }; | 229 | }; |
230 | }, | 230 | }, |
231 | methods: { | 231 | methods: { |
232 | /** | ||
233 | * @description: featchData | ||
234 | * @author: renchao | ||
235 | */ | ||
232 | async featchData() { | 236 | async featchData() { |
233 | try { | 237 | try { |
234 | let { result: res } = await djfDjFz.getDjfDjFzDetailById(this.bsmSjsb); | 238 | let { result: res } = await djfDjFz.getDjfDjFzDetailById(this.bsmSjsb); |
... | @@ -238,6 +242,10 @@ export default { | ... | @@ -238,6 +242,10 @@ export default { |
238 | this.$refs.msg.messageShow(); | 242 | this.$refs.msg.messageShow(); |
239 | } | 243 | } |
240 | }, | 244 | }, |
245 | /** | ||
246 | * @description: handleUpdateForm | ||
247 | * @author: renchao | ||
248 | */ | ||
241 | handleUpdateForm() { | 249 | handleUpdateForm() { |
242 | return new Promise(async (resolve, reject) => { | 250 | return new Promise(async (resolve, reject) => { |
243 | try { | 251 | try { | ... | ... |
... | @@ -183,6 +183,10 @@ export default { | ... | @@ -183,6 +183,10 @@ export default { |
183 | } | 183 | } |
184 | }, | 184 | }, |
185 | methods: { | 185 | methods: { |
186 | /** | ||
187 | * @description: featchData | ||
188 | * @author: renchao | ||
189 | */ | ||
186 | async featchData () { | 190 | async featchData () { |
187 | try { | 191 | try { |
188 | let { result: res } = await djfDjGd.getDjfDjGdById(this.bsmSjsb) | 192 | let { result: res } = await djfDjGd.getDjfDjGdById(this.bsmSjsb) |
... | @@ -192,6 +196,10 @@ export default { | ... | @@ -192,6 +196,10 @@ export default { |
192 | this.$refs.msg.messageShow() | 196 | this.$refs.msg.messageShow() |
193 | } | 197 | } |
194 | }, | 198 | }, |
199 | /** | ||
200 | * @description: handleUpdateForm | ||
201 | * @author: renchao | ||
202 | */ | ||
195 | handleUpdateForm () { | 203 | handleUpdateForm () { |
196 | return new Promise(async (resolve) => { | 204 | return new Promise(async (resolve) => { |
197 | try { | 205 | try { | ... | ... |
... | @@ -251,6 +251,10 @@ export default { | ... | @@ -251,6 +251,10 @@ export default { |
251 | }; | 251 | }; |
252 | }, | 252 | }, |
253 | methods: { | 253 | methods: { |
254 | /** | ||
255 | * @description: featchData | ||
256 | * @author: renchao | ||
257 | */ | ||
254 | async featchData() { | 258 | async featchData() { |
255 | try { | 259 | try { |
256 | let { result: res } = await djfDjSf.getDjfDjSfById(this.bsmSjsb); | 260 | let { result: res } = await djfDjSf.getDjfDjSfById(this.bsmSjsb); |
... | @@ -260,6 +264,10 @@ export default { | ... | @@ -260,6 +264,10 @@ export default { |
260 | this.$refs.msg.messageShow(); | 264 | this.$refs.msg.messageShow(); |
261 | } | 265 | } |
262 | }, | 266 | }, |
267 | /** | ||
268 | * @description: handleUpdateForm | ||
269 | * @author: renchao | ||
270 | */ | ||
263 | handleUpdateForm() { | 271 | handleUpdateForm() { |
264 | return new Promise(async (resolve) => { | 272 | return new Promise(async (resolve) => { |
265 | try { | 273 | try { | ... | ... |
... | @@ -183,6 +183,11 @@ | ... | @@ -183,6 +183,11 @@ |
183 | }; | 183 | }; |
184 | }, | 184 | }, |
185 | methods: { | 185 | methods: { |
186 | /** | ||
187 | * @description: changeTraceEnd | ||
188 | * @param {*} item | ||
189 | * @author: renchao | ||
190 | */ | ||
186 | changeTraceEnd (item) { | 191 | changeTraceEnd (item) { |
187 | if (item.SHJSSJ !== null) { | 192 | if (item.SHJSSJ !== null) { |
188 | //当前值为空 也会进行判断 所以条件最好不要非空验证 | 193 | //当前值为空 也会进行判断 所以条件最好不要非空验证 |
... | @@ -196,6 +201,11 @@ | ... | @@ -196,6 +201,11 @@ |
196 | } | 201 | } |
197 | }, | 202 | }, |
198 | //跟踪API结束时间限制开始时间 | 203 | //跟踪API结束时间限制开始时间 |
204 | /** | ||
205 | * @description: 跟踪API结束时间限制开始时间 | ||
206 | * @param {*} item | ||
207 | * @author: renchao | ||
208 | */ | ||
199 | changeTraceStart (item) { | 209 | changeTraceStart (item) { |
200 | if (item.SHKSSJ !== null) { | 210 | if (item.SHKSSJ !== null) { |
201 | //当前值为空 也会进行判断 所以条件最好不要非空验证 | 211 | //当前值为空 也会进行判断 所以条件最好不要非空验证 |
... | @@ -208,6 +218,10 @@ | ... | @@ -208,6 +218,10 @@ |
208 | item.traceEnd = {}; | 218 | item.traceEnd = {}; |
209 | } | 219 | } |
210 | }, | 220 | }, |
221 | /** | ||
222 | * @description: featchData | ||
223 | * @author: renchao | ||
224 | */ | ||
211 | async featchData () { | 225 | async featchData () { |
212 | try { | 226 | try { |
213 | let { result: res } = await djfDjSh.getDjfDjShById(this.bsmSjsb); | 227 | let { result: res } = await djfDjSh.getDjfDjShById(this.bsmSjsb); |
... | @@ -217,6 +231,10 @@ | ... | @@ -217,6 +231,10 @@ |
217 | this.$refs.msg.messageShow(); | 231 | this.$refs.msg.messageShow(); |
218 | } | 232 | } |
219 | }, | 233 | }, |
234 | /** | ||
235 | * @description: handleUpdateForm | ||
236 | * @author: renchao | ||
237 | */ | ||
220 | handleUpdateForm () { | 238 | handleUpdateForm () { |
221 | return new Promise(async (resolve) => { | 239 | return new Promise(async (resolve) => { |
222 | try { | 240 | try { | ... | ... |
... | @@ -202,6 +202,10 @@ export default { | ... | @@ -202,6 +202,10 @@ export default { |
202 | }; | 202 | }; |
203 | }, | 203 | }, |
204 | methods: { | 204 | methods: { |
205 | /** | ||
206 | * @description: featchData | ||
207 | * @author: renchao | ||
208 | */ | ||
205 | async featchData() { | 209 | async featchData() { |
206 | try { | 210 | try { |
207 | let { result: res } = await djfDjSj.getDjfDjSjById(this.bsmSjsb); | 211 | let { result: res } = await djfDjSj.getDjfDjSjById(this.bsmSjsb); |
... | @@ -211,6 +215,10 @@ export default { | ... | @@ -211,6 +215,10 @@ export default { |
211 | this.$refs.msg.messageShow(); | 215 | this.$refs.msg.messageShow(); |
212 | } | 216 | } |
213 | }, | 217 | }, |
218 | /** | ||
219 | * @description: handleUpdateForm | ||
220 | * @author: renchao | ||
221 | */ | ||
214 | handleUpdateForm() { | 222 | handleUpdateForm() { |
215 | return new Promise(async (resolve) => { | 223 | return new Promise(async (resolve) => { |
216 | try { | 224 | try { | ... | ... |
... | @@ -366,6 +366,10 @@ export default { | ... | @@ -366,6 +366,10 @@ export default { |
366 | }; | 366 | }; |
367 | }, | 367 | }, |
368 | methods: { | 368 | methods: { |
369 | /** | ||
370 | * @description: featchData | ||
371 | * @author: renchao | ||
372 | */ | ||
369 | async featchData() { | 373 | async featchData() { |
370 | try { | 374 | try { |
371 | let { result: res } = await djfDjSqr.getDjfDjSqrById(this.bsmSjsb); | 375 | let { result: res } = await djfDjSqr.getDjfDjSqrById(this.bsmSjsb); |
... | @@ -375,6 +379,10 @@ export default { | ... | @@ -375,6 +379,10 @@ export default { |
375 | this.$refs.msg.messageShow(); | 379 | this.$refs.msg.messageShow(); |
376 | } | 380 | } |
377 | }, | 381 | }, |
382 | /** | ||
383 | * @description: handleUpdateForm | ||
384 | * @author: renchao | ||
385 | */ | ||
378 | handleUpdateForm() { | 386 | handleUpdateForm() { |
379 | return new Promise(async (resolve, reject) => { | 387 | return new Promise(async (resolve, reject) => { |
380 | try { | 388 | try { | ... | ... |
... | @@ -161,6 +161,10 @@ | ... | @@ -161,6 +161,10 @@ |
161 | } | 161 | } |
162 | }, | 162 | }, |
163 | methods: { | 163 | methods: { |
164 | /** | ||
165 | * @description: featchData | ||
166 | * @author: renchao | ||
167 | */ | ||
164 | async featchData () { | 168 | async featchData () { |
165 | try { | 169 | try { |
166 | let { result: res } = await djfDjSz.getDjfDjSzById(this.bsmSjsb); | 170 | let { result: res } = await djfDjSz.getDjfDjSzById(this.bsmSjsb); |
... | @@ -170,6 +174,10 @@ | ... | @@ -170,6 +174,10 @@ |
170 | this.$refs.msg.messageShow(); | 174 | this.$refs.msg.messageShow(); |
171 | } | 175 | } |
172 | }, | 176 | }, |
177 | /** | ||
178 | * @description: handleUpdateForm | ||
179 | * @author: renchao | ||
180 | */ | ||
173 | handleUpdateForm () { | 181 | handleUpdateForm () { |
174 | return new Promise(async (resolve) => { | 182 | return new Promise(async (resolve) => { |
175 | try { | 183 | try { | ... | ... |
... | @@ -268,6 +268,10 @@ export default { | ... | @@ -268,6 +268,10 @@ export default { |
268 | }; | 268 | }; |
269 | }, | 269 | }, |
270 | methods: { | 270 | methods: { |
271 | /** | ||
272 | * @description: featchData | ||
273 | * @author: renchao | ||
274 | */ | ||
271 | async featchData() { | 275 | async featchData() { |
272 | try { | 276 | try { |
273 | let { result: res } = await djtDjSlsq.getDjtDjSlsqById(this.bsmSjsb); | 277 | let { result: res } = await djtDjSlsq.getDjtDjSlsqById(this.bsmSjsb); |
... | @@ -277,6 +281,10 @@ export default { | ... | @@ -277,6 +281,10 @@ export default { |
277 | this.$refs.msg.messageShow(); | 281 | this.$refs.msg.messageShow(); |
278 | } | 282 | } |
279 | }, | 283 | }, |
284 | /** | ||
285 | * @description: handleUpdateForm | ||
286 | * @author: renchao | ||
287 | */ | ||
280 | handleUpdateForm() { | 288 | handleUpdateForm() { |
281 | return new Promise(async (resolve) => { | 289 | return new Promise(async (resolve) => { |
282 | try { | 290 | try { | ... | ... |
... | @@ -67,6 +67,10 @@ export default { | ... | @@ -67,6 +67,10 @@ export default { |
67 | } | 67 | } |
68 | }, | 68 | }, |
69 | methods: { | 69 | methods: { |
70 | /** | ||
71 | * @description: featchData | ||
72 | * @author: renchao | ||
73 | */ | ||
70 | async featchData () { | 74 | async featchData () { |
71 | try { | 75 | try { |
72 | let { result: res } = await fjF100.getFjF100ById(this.bsmSjsb) | 76 | let { result: res } = await fjF100.getFjF100ById(this.bsmSjsb) |
... | @@ -76,6 +80,10 @@ export default { | ... | @@ -76,6 +80,10 @@ export default { |
76 | this.$refs.msg.messageShow() | 80 | this.$refs.msg.messageShow() |
77 | } | 81 | } |
78 | }, | 82 | }, |
83 | /** | ||
84 | * @description: handleUpdateForm | ||
85 | * @author: renchao | ||
86 | */ | ||
79 | handleUpdateForm () { | 87 | handleUpdateForm () { |
80 | return new Promise(async (resolve) => { | 88 | return new Promise(async (resolve) => { |
81 | try { | 89 | try { | ... | ... |
... | @@ -169,6 +169,10 @@ export default { | ... | @@ -169,6 +169,10 @@ export default { |
169 | }; | 169 | }; |
170 | }, | 170 | }, |
171 | methods: { | 171 | methods: { |
172 | /** | ||
173 | * @description: featchData | ||
174 | * @author: renchao | ||
175 | */ | ||
172 | async featchData() { | 176 | async featchData() { |
173 | try { | 177 | try { |
174 | let { result: res } = await ktfQtDzdzw.getKtfQtDzdzwById(this.bsmSjsb); | 178 | let { result: res } = await ktfQtDzdzw.getKtfQtDzdzwById(this.bsmSjsb); |
... | @@ -177,6 +181,10 @@ export default { | ... | @@ -177,6 +181,10 @@ export default { |
177 | this.$refs.msg.messageShow(); | 181 | this.$refs.msg.messageShow(); |
178 | } | 182 | } |
179 | }, | 183 | }, |
184 | /** | ||
185 | * @description: handleUpdateForm | ||
186 | * @author: renchao | ||
187 | */ | ||
180 | handleUpdateForm() { | 188 | handleUpdateForm() { |
181 | return new Promise(async (resolve) => { | 189 | return new Promise(async (resolve) => { |
182 | try { | 190 | try { | ... | ... |
... | @@ -168,6 +168,10 @@ export default { | ... | @@ -168,6 +168,10 @@ export default { |
168 | }; | 168 | }; |
169 | }, | 169 | }, |
170 | methods: { | 170 | methods: { |
171 | /** | ||
172 | * @description: featchData | ||
173 | * @author: renchao | ||
174 | */ | ||
171 | async featchData() { | 175 | async featchData() { |
172 | try { | 176 | try { |
173 | let { result: res } = await ktfQtMzdzw.getKtfQtMzdzwById(this.bsmSjsb); | 177 | let { result: res } = await ktfQtMzdzw.getKtfQtMzdzwById(this.bsmSjsb); |
... | @@ -177,6 +181,10 @@ export default { | ... | @@ -177,6 +181,10 @@ export default { |
177 | this.$refs.msg.messageShow(); | 181 | this.$refs.msg.messageShow(); |
178 | } | 182 | } |
179 | }, | 183 | }, |
184 | /** | ||
185 | * @description: handleUpdateForm | ||
186 | * @author: renchao | ||
187 | */ | ||
180 | handleUpdateForm() { | 188 | handleUpdateForm() { |
181 | return new Promise(async (resolve) => { | 189 | return new Promise(async (resolve) => { |
182 | try { | 190 | try { | ... | ... |
... | @@ -169,6 +169,10 @@ export default { | ... | @@ -169,6 +169,10 @@ export default { |
169 | }; | 169 | }; |
170 | }, | 170 | }, |
171 | methods: { | 171 | methods: { |
172 | /** | ||
173 | * @description: featchData | ||
174 | * @author: renchao | ||
175 | */ | ||
172 | async featchData() { | 176 | async featchData() { |
173 | try { | 177 | try { |
174 | let { result: res } = await ktfQtXzdzw.getKtfQtXzdzwById(this.bsmSjsb); | 178 | let { result: res } = await ktfQtXzdzw.getKtfQtXzdzwById(this.bsmSjsb); |
... | @@ -178,6 +182,10 @@ export default { | ... | @@ -178,6 +182,10 @@ export default { |
178 | this.$refs.msg.messageShow(); | 182 | this.$refs.msg.messageShow(); |
179 | } | 183 | } |
180 | }, | 184 | }, |
185 | /** | ||
186 | * @description: handleUpdateForm | ||
187 | * @author: renchao | ||
188 | */ | ||
181 | handleUpdateForm() { | 189 | handleUpdateForm() { |
182 | return new Promise(async (resolve, reject) => { | 190 | return new Promise(async (resolve, reject) => { |
183 | try { | 191 | try { | ... | ... |
... | @@ -115,6 +115,10 @@ export default { | ... | @@ -115,6 +115,10 @@ export default { |
115 | }; | 115 | }; |
116 | }, | 116 | }, |
117 | methods: { | 117 | methods: { |
118 | /** | ||
119 | * @description: featchData | ||
120 | * @author: renchao | ||
121 | */ | ||
118 | async featchData() { | 122 | async featchData() { |
119 | try { | 123 | try { |
120 | let { result: res } = await ktfZdbhqk.getKtfZdbhqkById(this.bsmSjsb); | 124 | let { result: res } = await ktfZdbhqk.getKtfZdbhqkById(this.bsmSjsb); |
... | @@ -124,6 +128,10 @@ export default { | ... | @@ -124,6 +128,10 @@ export default { |
124 | this.$refs.msg.messageShow(); | 128 | this.$refs.msg.messageShow(); |
125 | } | 129 | } |
126 | }, | 130 | }, |
131 | /** | ||
132 | * @description: handleUpdateForm | ||
133 | * @author: renchao | ||
134 | */ | ||
127 | handleUpdateForm() { | 135 | handleUpdateForm() { |
128 | return new Promise(async (resolve) => { | 136 | return new Promise(async (resolve) => { |
129 | try { | 137 | try { | ... | ... |
... | @@ -97,6 +97,10 @@ export default { | ... | @@ -97,6 +97,10 @@ export default { |
97 | }; | 97 | }; |
98 | }, | 98 | }, |
99 | methods: { | 99 | methods: { |
100 | /** | ||
101 | * @description: featchData | ||
102 | * @author: renchao | ||
103 | */ | ||
100 | async featchData() { | 104 | async featchData() { |
101 | try { | 105 | try { |
102 | let { result: res } = await ktfZhYhydzb.getKtfZhYhydzbById( | 106 | let { result: res } = await ktfZhYhydzb.getKtfZhYhydzbById( |
... | @@ -108,6 +112,10 @@ export default { | ... | @@ -108,6 +112,10 @@ export default { |
108 | this.$refs.msg.messageShow(); | 112 | this.$refs.msg.messageShow(); |
109 | } | 113 | } |
110 | }, | 114 | }, |
115 | /** | ||
116 | * @description: handleUpdateForm | ||
117 | * @author: renchao | ||
118 | */ | ||
111 | handleUpdateForm() { | 119 | handleUpdateForm() { |
112 | return new Promise(async (resolve, reject) => { | 120 | return new Promise(async (resolve, reject) => { |
113 | try { | 121 | try { | ... | ... |
... | @@ -109,6 +109,10 @@ export default { | ... | @@ -109,6 +109,10 @@ export default { |
109 | }; | 109 | }; |
110 | }, | 110 | }, |
111 | methods: { | 111 | methods: { |
112 | /** | ||
113 | * @description: featchData | ||
114 | * @author: renchao | ||
115 | */ | ||
112 | async featchData() { | 116 | async featchData() { |
113 | try { | 117 | try { |
114 | let { result: res } = await ktfZhYhzk.getKtfZhYhzkById(this.bsmSjsb); | 118 | let { result: res } = await ktfZhYhzk.getKtfZhYhzkById(this.bsmSjsb); |
... | @@ -118,6 +122,10 @@ export default { | ... | @@ -118,6 +122,10 @@ export default { |
118 | this.$refs.msg.messageShow(); | 122 | this.$refs.msg.messageShow(); |
119 | } | 123 | } |
120 | }, | 124 | }, |
125 | /** | ||
126 | * @description: handleUpdateForm | ||
127 | * @author: renchao | ||
128 | */ | ||
121 | handleUpdateForm() { | 129 | handleUpdateForm() { |
122 | return new Promise(async (resolve) => { | 130 | return new Promise(async (resolve) => { |
123 | try { | 131 | try { | ... | ... |
... | @@ -103,6 +103,10 @@ export default { | ... | @@ -103,6 +103,10 @@ export default { |
103 | }; | 103 | }; |
104 | }, | 104 | }, |
105 | methods: { | 105 | methods: { |
106 | /** | ||
107 | * @description: featchData | ||
108 | * @author: renchao | ||
109 | */ | ||
106 | async featchData() { | 110 | async featchData() { |
107 | try { | 111 | try { |
108 | let { result: res } = await zhK105.getZhK105ById(this.bsmSjsb); | 112 | let { result: res } = await zhK105.getZhK105ById(this.bsmSjsb); |
... | @@ -112,6 +116,10 @@ export default { | ... | @@ -112,6 +116,10 @@ export default { |
112 | this.$refs.msg.messageShow(); | 116 | this.$refs.msg.messageShow(); |
113 | } | 117 | } |
114 | }, | 118 | }, |
119 | /** | ||
120 | * @description: handleUpdateForm | ||
121 | * @author: renchao | ||
122 | */ | ||
115 | handleUpdateForm() { | 123 | handleUpdateForm() { |
116 | return new Promise(async (resolve) => { | 124 | return new Promise(async (resolve) => { |
117 | try { | 125 | try { | ... | ... |
... | @@ -218,6 +218,10 @@ | ... | @@ -218,6 +218,10 @@ |
218 | } | 218 | } |
219 | }, | 219 | }, |
220 | methods: { | 220 | methods: { |
221 | /** | ||
222 | * @description: featchData | ||
223 | * @author: renchao | ||
224 | */ | ||
221 | async featchData () { | 225 | async featchData () { |
222 | try { | 226 | try { |
223 | let { result: res } = await kttFwC.getKttFwCById(this.bsmSjsb); | 227 | let { result: res } = await kttFwC.getKttFwCById(this.bsmSjsb); |
... | @@ -227,6 +231,10 @@ | ... | @@ -227,6 +231,10 @@ |
227 | this.$refs.msg.messageShow() | 231 | this.$refs.msg.messageShow() |
228 | } | 232 | } |
229 | }, | 233 | }, |
234 | /** | ||
235 | * @description: handleUpdateForm | ||
236 | * @author: renchao | ||
237 | */ | ||
230 | handleUpdateForm () { | 238 | handleUpdateForm () { |
231 | return new Promise(async (resolve, reject) => { | 239 | return new Promise(async (resolve, reject) => { |
232 | try { | 240 | try { | ... | ... |
... | @@ -518,6 +518,10 @@ | ... | @@ -518,6 +518,10 @@ |
518 | } | 518 | } |
519 | }, | 519 | }, |
520 | methods: { | 520 | methods: { |
521 | /** | ||
522 | * @description: featchData | ||
523 | * @author: renchao | ||
524 | */ | ||
521 | async featchData () { | 525 | async featchData () { |
522 | try { | 526 | try { |
523 | let { result: res } = await kttFwH.getKttFwHById(this.bsmSjsb); | 527 | let { result: res } = await kttFwH.getKttFwHById(this.bsmSjsb); |
... | @@ -527,6 +531,10 @@ | ... | @@ -527,6 +531,10 @@ |
527 | this.$refs.msg.messageShow(); | 531 | this.$refs.msg.messageShow(); |
528 | } | 532 | } |
529 | }, | 533 | }, |
534 | /** | ||
535 | * @description: handleUpdateForm | ||
536 | * @author: renchao | ||
537 | */ | ||
530 | handleUpdateForm () { | 538 | handleUpdateForm () { |
531 | return new Promise(async (resolve, reject) => { | 539 | return new Promise(async (resolve, reject) => { |
532 | try { | 540 | try { | ... | ... |
... | @@ -321,6 +321,10 @@ | ... | @@ -321,6 +321,10 @@ |
321 | } | 321 | } |
322 | }, | 322 | }, |
323 | methods: { | 323 | methods: { |
324 | /** | ||
325 | * @description: featchData | ||
326 | * @author: renchao | ||
327 | */ | ||
324 | async featchData () { | 328 | async featchData () { |
325 | try { | 329 | try { |
326 | let { result: res } = await kttFwLjz.getKttFwLjzById(this.bsmSjsb); | 330 | let { result: res } = await kttFwLjz.getKttFwLjzById(this.bsmSjsb); |
... | @@ -330,6 +334,10 @@ | ... | @@ -330,6 +334,10 @@ |
330 | this.$refs.msg.messageShow(); | 334 | this.$refs.msg.messageShow(); |
331 | } | 335 | } |
332 | }, | 336 | }, |
337 | /** | ||
338 | * @description: handleUpdateForm | ||
339 | * @author: renchao | ||
340 | */ | ||
333 | handleUpdateForm () { | 341 | handleUpdateForm () { |
334 | return new Promise(async (resolve, reject) => { | 342 | return new Promise(async (resolve, reject) => { |
335 | try { | 343 | try { | ... | ... |
... | @@ -371,6 +371,10 @@ | ... | @@ -371,6 +371,10 @@ |
371 | }; | 371 | }; |
372 | }, | 372 | }, |
373 | methods: { | 373 | methods: { |
374 | /** | ||
375 | * @description: featchData | ||
376 | * @author: renchao | ||
377 | */ | ||
374 | async featchData () { | 378 | async featchData () { |
375 | try { | 379 | try { |
376 | let { result: res } = await kttFwZrz.getKttFwZrzById(this.bsmSjsb); | 380 | let { result: res } = await kttFwZrz.getKttFwZrzById(this.bsmSjsb); |
... | @@ -380,6 +384,10 @@ | ... | @@ -380,6 +384,10 @@ |
380 | this.$refs.msg.messageShow(); | 384 | this.$refs.msg.messageShow(); |
381 | } | 385 | } |
382 | }, | 386 | }, |
387 | /** | ||
388 | * @description: handleUpdateForm | ||
389 | * @author: renchao | ||
390 | */ | ||
383 | handleUpdateForm () { | 391 | handleUpdateForm () { |
384 | return new Promise(async (resolve) => { | 392 | return new Promise(async (resolve) => { |
385 | try { | 393 | try { | ... | ... |
... | @@ -160,6 +160,10 @@ export default { | ... | @@ -160,6 +160,10 @@ export default { |
160 | }; | 160 | }; |
161 | }, | 161 | }, |
162 | methods: { | 162 | methods: { |
163 | /** | ||
164 | * @description: featchData | ||
165 | * @author: renchao | ||
166 | */ | ||
163 | async featchData() { | 167 | async featchData() { |
164 | try { | 168 | try { |
165 | let { result: res } = await kttGyJzd.getKttGyJzdById(this.bsmSjsb); | 169 | let { result: res } = await kttGyJzd.getKttGyJzdById(this.bsmSjsb); |
... | @@ -169,6 +173,10 @@ export default { | ... | @@ -169,6 +173,10 @@ export default { |
169 | this.$refs.msg.messageShow(); | 173 | this.$refs.msg.messageShow(); |
170 | } | 174 | } |
171 | }, | 175 | }, |
176 | /** | ||
177 | * @description: handleUpdateForm | ||
178 | * @author: renchao | ||
179 | */ | ||
172 | handleUpdateForm() { | 180 | handleUpdateForm() { |
173 | return new Promise(async (resolve) => { | 181 | return new Promise(async (resolve) => { |
174 | try { | 182 | try { | ... | ... |
... | @@ -189,6 +189,10 @@ export default { | ... | @@ -189,6 +189,10 @@ export default { |
189 | }; | 189 | }; |
190 | }, | 190 | }, |
191 | methods: { | 191 | methods: { |
192 | /** | ||
193 | * @description: featchData | ||
194 | * @author: renchao | ||
195 | */ | ||
192 | async featchData() { | 196 | async featchData() { |
193 | try { | 197 | try { |
194 | let { result: res } = await kttGyJzx.getKttGyJzxById(this.bsmSjsb); | 198 | let { result: res } = await kttGyJzx.getKttGyJzxById(this.bsmSjsb); |
... | @@ -198,6 +202,10 @@ export default { | ... | @@ -198,6 +202,10 @@ export default { |
198 | this.$refs.msg.messageShow(); | 202 | this.$refs.msg.messageShow(); |
199 | } | 203 | } |
200 | }, | 204 | }, |
205 | /** | ||
206 | * @description: handleUpdateForm | ||
207 | * @author: renchao | ||
208 | */ | ||
201 | handleUpdateForm() { | 209 | handleUpdateForm() { |
202 | return new Promise(async (resolve) => { | 210 | return new Promise(async (resolve) => { |
203 | try { | 211 | try { | ... | ... |
... | @@ -160,6 +160,10 @@ export default { | ... | @@ -160,6 +160,10 @@ export default { |
160 | }; | 160 | }; |
161 | }, | 161 | }, |
162 | methods: { | 162 | methods: { |
163 | /** | ||
164 | * @description: featchData | ||
165 | * @author: renchao | ||
166 | */ | ||
163 | async featchData() { | 167 | async featchData() { |
164 | try { | 168 | try { |
165 | let { result: res } = await kttGzw.getKttGzwById(this.bsmSjsb); | 169 | let { result: res } = await kttGzw.getKttGzwById(this.bsmSjsb); |
... | @@ -169,6 +173,10 @@ export default { | ... | @@ -169,6 +173,10 @@ export default { |
169 | this.$refs.msg.messageShow(); | 173 | this.$refs.msg.messageShow(); |
170 | } | 174 | } |
171 | }, | 175 | }, |
176 | /** | ||
177 | * @description: handleUpdateForm | ||
178 | * @author: renchao | ||
179 | */ | ||
172 | handleUpdateForm() { | 180 | handleUpdateForm() { |
173 | return new Promise(async (resolve) => { | 181 | return new Promise(async (resolve) => { |
174 | try { | 182 | try { | ... | ... |
... | @@ -445,6 +445,10 @@ export default { | ... | @@ -445,6 +445,10 @@ export default { |
445 | }; | 445 | }; |
446 | }, | 446 | }, |
447 | methods: { | 447 | methods: { |
448 | /** | ||
449 | * @description: featchData | ||
450 | * @author: renchao | ||
451 | */ | ||
448 | async featchData() { | 452 | async featchData() { |
449 | try { | 453 | try { |
450 | let { result: res } = await kttZdjbxx.kttZdjbxxDetail(this.bsmSjsb); | 454 | let { result: res } = await kttZdjbxx.kttZdjbxxDetail(this.bsmSjsb); |
... | @@ -454,6 +458,10 @@ export default { | ... | @@ -454,6 +458,10 @@ export default { |
454 | this.$refs.msg.messageShow(); | 458 | this.$refs.msg.messageShow(); |
455 | } | 459 | } |
456 | }, | 460 | }, |
461 | /** | ||
462 | * @description: handleUpdateForm | ||
463 | * @author: renchao | ||
464 | */ | ||
457 | handleUpdateForm() { | 465 | handleUpdateForm() { |
458 | return new Promise(async (resolve) => { | 466 | return new Promise(async (resolve) => { |
459 | try { | 467 | try { | ... | ... |
... | @@ -437,6 +437,10 @@ export default { | ... | @@ -437,6 +437,10 @@ export default { |
437 | }; | 437 | }; |
438 | }, | 438 | }, |
439 | methods: { | 439 | methods: { |
440 | /** | ||
441 | * @description: featchData | ||
442 | * @author: renchao | ||
443 | */ | ||
440 | async featchData() { | 444 | async featchData() { |
441 | try { | 445 | try { |
442 | let { result: res } = await kttZhjbxx.getKttZhjbxxById(this.bsmSjsb); | 446 | let { result: res } = await kttZhjbxx.getKttZhjbxxById(this.bsmSjsb); |
... | @@ -446,6 +450,10 @@ export default { | ... | @@ -446,6 +450,10 @@ export default { |
446 | this.$refs.msg.messageShow(); | 450 | this.$refs.msg.messageShow(); |
447 | } | 451 | } |
448 | }, | 452 | }, |
453 | /** | ||
454 | * @description: handleUpdateForm | ||
455 | * @author: renchao | ||
456 | */ | ||
449 | handleUpdateForm() { | 457 | handleUpdateForm() { |
450 | return new Promise(async (resolve) => { | 458 | return new Promise(async (resolve) => { |
451 | try { | 459 | try { | ... | ... |
... | @@ -164,6 +164,10 @@ export default { | ... | @@ -164,6 +164,10 @@ export default { |
164 | }; | 164 | }; |
165 | }, | 165 | }, |
166 | methods: { | 166 | methods: { |
167 | /** | ||
168 | * @description: featchData | ||
169 | * @author: renchao | ||
170 | */ | ||
167 | async featchData() { | 171 | async featchData() { |
168 | try { | 172 | try { |
169 | let { result: res } = await qlfFwFdcqDzXm.getQlfFwFdcqDzXmById( | 173 | let { result: res } = await qlfFwFdcqDzXm.getQlfFwFdcqDzXmById( |
... | @@ -175,6 +179,10 @@ export default { | ... | @@ -175,6 +179,10 @@ export default { |
175 | this.$refs.msg.messageShow(); | 179 | this.$refs.msg.messageShow(); |
176 | } | 180 | } |
177 | }, | 181 | }, |
182 | /** | ||
183 | * @description: handleUpdateForm | ||
184 | * @author: renchao | ||
185 | */ | ||
178 | handleUpdateForm() { | 186 | handleUpdateForm() { |
179 | return new Promise(async (resolve, reject) => { | 187 | return new Promise(async (resolve, reject) => { |
180 | try { | 188 | try { | ... | ... |
... | @@ -220,6 +220,10 @@ export default { | ... | @@ -220,6 +220,10 @@ export default { |
220 | }; | 220 | }; |
221 | }, | 221 | }, |
222 | methods: { | 222 | methods: { |
223 | /** | ||
224 | * @description: featchData | ||
225 | * @author: renchao | ||
226 | */ | ||
223 | async featchData() { | 227 | async featchData() { |
224 | try { | 228 | try { |
225 | let { result: res } = await qlfFwFdcqQfsyq.getQlfFwFdcqQfsyqById( | 229 | let { result: res } = await qlfFwFdcqQfsyq.getQlfFwFdcqQfsyqById( |
... | @@ -231,6 +235,10 @@ export default { | ... | @@ -231,6 +235,10 @@ export default { |
231 | this.$refs.msg.messageShow(); | 235 | this.$refs.msg.messageShow(); |
232 | } | 236 | } |
233 | }, | 237 | }, |
238 | /** | ||
239 | * @description: handleUpdateForm | ||
240 | * @author: renchao | ||
241 | */ | ||
234 | handleUpdateForm() { | 242 | handleUpdateForm() { |
235 | return new Promise(async (resolve, reject) => { | 243 | return new Promise(async (resolve, reject) => { |
236 | try { | 244 | try { | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description : 查封登记信息页面 | 2 | * @Description : 查封登记信息页面 |
3 | * @Autor : miaofang | 3 | * @Autor : miaofang |
4 | * @LastEditTime : 2023-05-17 13:52:33 | 4 | * @LastEditTime : 2023-05-17 13:52:33 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
... | @@ -311,6 +311,10 @@ export default { | ... | @@ -311,6 +311,10 @@ export default { |
311 | }; | 311 | }; |
312 | }, | 312 | }, |
313 | methods: { | 313 | methods: { |
314 | /** | ||
315 | * @description: featchData | ||
316 | * @author: renchao | ||
317 | */ | ||
314 | async featchData() { | 318 | async featchData() { |
315 | try { | 319 | try { |
316 | let { result: res } = await qlfQlCfdj.getQlfQlCfdjById(this.bsmSjsb); | 320 | let { result: res } = await qlfQlCfdj.getQlfQlCfdjById(this.bsmSjsb); |
... | @@ -320,6 +324,10 @@ export default { | ... | @@ -320,6 +324,10 @@ export default { |
320 | this.$refs.msg.messageShow(); | 324 | this.$refs.msg.messageShow(); |
321 | } | 325 | } |
322 | }, | 326 | }, |
327 | /** | ||
328 | * @description: handleUpdateForm | ||
329 | * @author: renchao | ||
330 | */ | ||
323 | handleUpdateForm() { | 331 | handleUpdateForm() { |
324 | return new Promise(async (resolve) => { | 332 | return new Promise(async (resolve) => { |
325 | try { | 333 | try { | ... | ... |
... | @@ -319,6 +319,10 @@ export default { | ... | @@ -319,6 +319,10 @@ export default { |
319 | }; | 319 | }; |
320 | }, | 320 | }, |
321 | methods: { | 321 | methods: { |
322 | /** | ||
323 | * @description: featchData | ||
324 | * @author: renchao | ||
325 | */ | ||
322 | async featchData() { | 326 | async featchData() { |
323 | try { | 327 | try { |
324 | let { result: res } = await qlfQlDyaq.getQlfQlDyaqById(this.bsmSjsb); | 328 | let { result: res } = await qlfQlDyaq.getQlfQlDyaqById(this.bsmSjsb); |
... | @@ -328,6 +332,10 @@ export default { | ... | @@ -328,6 +332,10 @@ export default { |
328 | this.$refs.msg.messageShow(); | 332 | this.$refs.msg.messageShow(); |
329 | } | 333 | } |
330 | }, | 334 | }, |
335 | /** | ||
336 | * @description: handleUpdateForm | ||
337 | * @author: renchao | ||
338 | */ | ||
331 | handleUpdateForm() { | 339 | handleUpdateForm() { |
332 | return new Promise(async (resolve, reject) => { | 340 | return new Promise(async (resolve, reject) => { |
333 | try { | 341 | try { | ... | ... |
... | @@ -340,6 +340,10 @@ export default { | ... | @@ -340,6 +340,10 @@ export default { |
340 | }; | 340 | }; |
341 | }, | 341 | }, |
342 | methods: { | 342 | methods: { |
343 | /** | ||
344 | * @description: featchData | ||
345 | * @author: renchao | ||
346 | */ | ||
343 | async featchData() { | 347 | async featchData() { |
344 | try { | 348 | try { |
345 | let { result: res } = await qlfQlDyiq.getQlfQlDyiqById(this.bsmSjsb); | 349 | let { result: res } = await qlfQlDyiq.getQlfQlDyiqById(this.bsmSjsb); |
... | @@ -349,6 +353,10 @@ export default { | ... | @@ -349,6 +353,10 @@ export default { |
349 | this.$refs.msg.messageShow(); | 353 | this.$refs.msg.messageShow(); |
350 | } | 354 | } |
351 | }, | 355 | }, |
356 | /** | ||
357 | * @description: handleUpdateForm | ||
358 | * @author: renchao | ||
359 | */ | ||
352 | handleUpdateForm() { | 360 | handleUpdateForm() { |
353 | return new Promise(async (resolve) => { | 361 | return new Promise(async (resolve) => { |
354 | try { | 362 | try { | ... | ... |
... | @@ -210,6 +210,10 @@ export default { | ... | @@ -210,6 +210,10 @@ export default { |
210 | }; | 210 | }; |
211 | }, | 211 | }, |
212 | methods: { | 212 | methods: { |
213 | /** | ||
214 | * @description: featchData | ||
215 | * @author: renchao | ||
216 | */ | ||
213 | async featchData() { | 217 | async featchData() { |
214 | try { | 218 | try { |
215 | let { result: res } = await qlfQlGzdj.getQlfQlGzdjById(this.bsmSjsb); | 219 | let { result: res } = await qlfQlGzdj.getQlfQlGzdjById(this.bsmSjsb); |
... | @@ -219,6 +223,10 @@ export default { | ... | @@ -219,6 +223,10 @@ export default { |
219 | this.$refs.msg.messageShow(); | 223 | this.$refs.msg.messageShow(); |
220 | } | 224 | } |
221 | }, | 225 | }, |
226 | /** | ||
227 | * @description: handleUpdateForm | ||
228 | * @author: renchao | ||
229 | */ | ||
222 | handleUpdateForm() { | 230 | handleUpdateForm() { |
223 | return new Promise(async (resolve) => { | 231 | return new Promise(async (resolve) => { |
224 | try { | 232 | try { | ... | ... |
... | @@ -297,6 +297,10 @@ export default { | ... | @@ -297,6 +297,10 @@ export default { |
297 | }; | 297 | }; |
298 | }, | 298 | }, |
299 | methods: { | 299 | methods: { |
300 | /** | ||
301 | * @description: featchData | ||
302 | * @author: renchao | ||
303 | */ | ||
300 | async featchData() { | 304 | async featchData() { |
301 | try { | 305 | try { |
302 | let { result: res } = await qlfQlHysyq.getQlfQlHysyqById(this.bsmSjsb); | 306 | let { result: res } = await qlfQlHysyq.getQlfQlHysyqById(this.bsmSjsb); |
... | @@ -306,6 +310,10 @@ export default { | ... | @@ -306,6 +310,10 @@ export default { |
306 | this.$refs.msg.messageShow(); | 310 | this.$refs.msg.messageShow(); |
307 | } | 311 | } |
308 | }, | 312 | }, |
313 | /** | ||
314 | * @description: handleUpdateForm | ||
315 | * @author: renchao | ||
316 | */ | ||
309 | handleUpdateForm() { | 317 | handleUpdateForm() { |
310 | return new Promise(async (resolve) => { | 318 | return new Promise(async (resolve) => { |
311 | try { | 319 | try { | ... | ... |
... | @@ -273,6 +273,10 @@ export default { | ... | @@ -273,6 +273,10 @@ export default { |
273 | }; | 273 | }; |
274 | }, | 274 | }, |
275 | methods: { | 275 | methods: { |
276 | /** | ||
277 | * @description: featchData | ||
278 | * @author: renchao | ||
279 | */ | ||
276 | async featchData() { | 280 | async featchData() { |
277 | try { | 281 | try { |
278 | let { result: res } = await qlfQlJsydsyq.getQlfQlJsydsyqById( | 282 | let { result: res } = await qlfQlJsydsyq.getQlfQlJsydsyqById( |
... | @@ -284,6 +288,10 @@ export default { | ... | @@ -284,6 +288,10 @@ export default { |
284 | this.$refs.msg.messageShow(); | 288 | this.$refs.msg.messageShow(); |
285 | } | 289 | } |
286 | }, | 290 | }, |
291 | /** | ||
292 | * @description: handleUpdateForm | ||
293 | * @author: renchao | ||
294 | */ | ||
287 | handleUpdateForm() { | 295 | handleUpdateForm() { |
288 | return new Promise(async (resolve, reject) => { | 296 | return new Promise(async (resolve, reject) => { |
289 | try { | 297 | try { | ... | ... |
... | @@ -353,6 +353,10 @@ export default { | ... | @@ -353,6 +353,10 @@ export default { |
353 | }; | 353 | }; |
354 | }, | 354 | }, |
355 | methods: { | 355 | methods: { |
356 | /** | ||
357 | * @description: featchData | ||
358 | * @author: renchao | ||
359 | */ | ||
356 | async featchData() { | 360 | async featchData() { |
357 | try { | 361 | try { |
358 | let { result: res } = await qlfQlNydsyq.getQlfQlNydsyqByID( | 362 | let { result: res } = await qlfQlNydsyq.getQlfQlNydsyqByID( |
... | @@ -364,6 +368,10 @@ export default { | ... | @@ -364,6 +368,10 @@ export default { |
364 | this.$refs.msg.messageShow(); | 368 | this.$refs.msg.messageShow(); |
365 | } | 369 | } |
366 | }, | 370 | }, |
371 | /** | ||
372 | * @description: handleUpdateForm | ||
373 | * @author: renchao | ||
374 | */ | ||
367 | handleUpdateForm() { | 375 | handleUpdateForm() { |
368 | return new Promise(async (resolve) => { | 376 | return new Promise(async (resolve) => { |
369 | try { | 377 | try { | ... | ... |
... | @@ -344,6 +344,10 @@ export default { | ... | @@ -344,6 +344,10 @@ export default { |
344 | }; | 344 | }; |
345 | }, | 345 | }, |
346 | methods: { | 346 | methods: { |
347 | /** | ||
348 | * @description: featchData | ||
349 | * @author: renchao | ||
350 | */ | ||
347 | async featchData() { | 351 | async featchData() { |
348 | try { | 352 | try { |
349 | let { result: res } = await qlfQlQtxgql.getQlfQlQtxgqlById( | 353 | let { result: res } = await qlfQlQtxgql.getQlfQlQtxgqlById( |
... | @@ -355,6 +359,10 @@ export default { | ... | @@ -355,6 +359,10 @@ export default { |
355 | this.$refs.msg.messageShow(); | 359 | this.$refs.msg.messageShow(); |
356 | } | 360 | } |
357 | }, | 361 | }, |
362 | /** | ||
363 | * @description: handleUpdateForm | ||
364 | * @author: renchao | ||
365 | */ | ||
358 | handleUpdateForm() { | 366 | handleUpdateForm() { |
359 | return new Promise(async (resolve) => { | 367 | return new Promise(async (resolve) => { |
360 | try { | 368 | try { | ... | ... |
... | @@ -310,6 +310,10 @@ export default { | ... | @@ -310,6 +310,10 @@ export default { |
310 | } | 310 | } |
311 | }, | 311 | }, |
312 | methods: { | 312 | methods: { |
313 | /** | ||
314 | * @description: featchData | ||
315 | * @author: renchao | ||
316 | */ | ||
313 | async featchData () { | 317 | async featchData () { |
314 | try { | 318 | try { |
315 | let { result: res } = await qlfQlTdsyq.getQlfQlTdsyqById(this.bsmSjsb) | 319 | let { result: res } = await qlfQlTdsyq.getQlfQlTdsyqById(this.bsmSjsb) |
... | @@ -319,6 +323,10 @@ export default { | ... | @@ -319,6 +323,10 @@ export default { |
319 | this.$refs.msg.messageShow() | 323 | this.$refs.msg.messageShow() |
320 | } | 324 | } |
321 | }, | 325 | }, |
326 | /** | ||
327 | * @description: handleUpdateForm | ||
328 | * @author: renchao | ||
329 | */ | ||
322 | handleUpdateForm () { | 330 | handleUpdateForm () { |
323 | return new Promise(async (resolve, reject) => { | 331 | return new Promise(async (resolve, reject) => { |
324 | try { | 332 | try { | ... | ... |
... | @@ -461,6 +461,10 @@ export default { | ... | @@ -461,6 +461,10 @@ export default { |
461 | }; | 461 | }; |
462 | }, | 462 | }, |
463 | methods: { | 463 | methods: { |
464 | /** | ||
465 | * @description: featchData | ||
466 | * @author: renchao | ||
467 | */ | ||
464 | async featchData() { | 468 | async featchData() { |
465 | try { | 469 | try { |
466 | let { result: res } = await qlfQlYgdj.getQlfQlYgdjById(this.bsmSjsb); | 470 | let { result: res } = await qlfQlYgdj.getQlfQlYgdjById(this.bsmSjsb); |
... | @@ -470,6 +474,10 @@ export default { | ... | @@ -470,6 +474,10 @@ export default { |
470 | this.$refs.msg.messageShow(); | 474 | this.$refs.msg.messageShow(); |
471 | } | 475 | } |
472 | }, | 476 | }, |
477 | /** | ||
478 | * @description: handleUpdateForm | ||
479 | * @author: renchao | ||
480 | */ | ||
473 | handleUpdateForm() { | 481 | handleUpdateForm() { |
474 | return new Promise(async (resolve) => { | 482 | return new Promise(async (resolve) => { |
475 | try { | 483 | try { | ... | ... |
... | @@ -212,6 +212,10 @@ export default { | ... | @@ -212,6 +212,10 @@ export default { |
212 | }; | 212 | }; |
213 | }, | 213 | }, |
214 | methods: { | 214 | methods: { |
215 | /** | ||
216 | * @description: featchData | ||
217 | * @author: renchao | ||
218 | */ | ||
215 | async featchData() { | 219 | async featchData() { |
216 | try { | 220 | try { |
217 | let { result: res } = await qlfQlYydj.getQlfQlYydjById(this.bsmSjsb); | 221 | let { result: res } = await qlfQlYydj.getQlfQlYydjById(this.bsmSjsb); |
... | @@ -221,6 +225,10 @@ export default { | ... | @@ -221,6 +225,10 @@ export default { |
221 | this.$refs.msg.messageShow(); | 225 | this.$refs.msg.messageShow(); |
222 | } | 226 | } |
223 | }, | 227 | }, |
228 | /** | ||
229 | * @description: handleUpdateForm | ||
230 | * @author: renchao | ||
231 | */ | ||
224 | handleUpdateForm() { | 232 | handleUpdateForm() { |
225 | return new Promise(async (resolve) => { | 233 | return new Promise(async (resolve) => { |
226 | try { | 234 | try { | ... | ... |
... | @@ -182,6 +182,10 @@ export default { | ... | @@ -182,6 +182,10 @@ export default { |
182 | }; | 182 | }; |
183 | }, | 183 | }, |
184 | methods: { | 184 | methods: { |
185 | /** | ||
186 | * @description: featchData | ||
187 | * @author: renchao | ||
188 | */ | ||
185 | async featchData() { | 189 | async featchData() { |
186 | try { | 190 | try { |
187 | let { result: res } = await qlfQlZxdj.getQlfQlZxdjById(this.bsmSjsb); | 191 | let { result: res } = await qlfQlZxdj.getQlfQlZxdjById(this.bsmSjsb); |
... | @@ -191,6 +195,10 @@ export default { | ... | @@ -191,6 +195,10 @@ export default { |
191 | this.$refs.msg.messageShow(); | 195 | this.$refs.msg.messageShow(); |
192 | } | 196 | } |
193 | }, | 197 | }, |
198 | /** | ||
199 | * @description: handleUpdateForm | ||
200 | * @author: renchao | ||
201 | */ | ||
194 | handleUpdateForm() { | 202 | handleUpdateForm() { |
195 | return new Promise(async (resolve) => { | 203 | return new Promise(async (resolve) => { |
196 | try { | 204 | try { | ... | ... |
... | @@ -315,6 +315,10 @@ export default { | ... | @@ -315,6 +315,10 @@ export default { |
315 | } | 315 | } |
316 | }, | 316 | }, |
317 | methods: { | 317 | methods: { |
318 | /** | ||
319 | * @description: featchData | ||
320 | * @author: renchao | ||
321 | */ | ||
318 | async featchData () { | 322 | async featchData () { |
319 | try { | 323 | try { |
320 | let { result: res } = await qltFwFdcqDz.getQltFwFdcqDzById(this.bsmSjsb) | 324 | let { result: res } = await qltFwFdcqDz.getQltFwFdcqDzById(this.bsmSjsb) |
... | @@ -324,6 +328,10 @@ export default { | ... | @@ -324,6 +328,10 @@ export default { |
324 | this.$refs.msg.messageShow() | 328 | this.$refs.msg.messageShow() |
325 | } | 329 | } |
326 | }, | 330 | }, |
331 | /** | ||
332 | * @description: handleUpdateForm | ||
333 | * @author: renchao | ||
334 | */ | ||
327 | handleUpdateForm () { | 335 | handleUpdateForm () { |
328 | return new Promise(async (resolve, reject) => { | 336 | return new Promise(async (resolve, reject) => { |
329 | try { | 337 | try { | ... | ... |
... | @@ -411,6 +411,10 @@ export default { | ... | @@ -411,6 +411,10 @@ export default { |
411 | }; | 411 | }; |
412 | }, | 412 | }, |
413 | methods: { | 413 | methods: { |
414 | /** | ||
415 | * @description: featchData | ||
416 | * @author: renchao | ||
417 | */ | ||
414 | async featchData () { | 418 | async featchData () { |
415 | try { | 419 | try { |
416 | let { result: res } = await qltFwFdcqYz.getQltFwFdcqYzById( | 420 | let { result: res } = await qltFwFdcqYz.getQltFwFdcqYzById( |
... | @@ -422,6 +426,10 @@ export default { | ... | @@ -422,6 +426,10 @@ export default { |
422 | this.$refs.msg.messageShow(); | 426 | this.$refs.msg.messageShow(); |
423 | } | 427 | } |
424 | }, | 428 | }, |
429 | /** | ||
430 | * @description: handleUpdateForm | ||
431 | * @author: renchao | ||
432 | */ | ||
425 | handleUpdateForm () { | 433 | handleUpdateForm () { |
426 | return new Promise(async (resolve) => { | 434 | return new Promise(async (resolve) => { |
427 | try { | 435 | try { | ... | ... |
... | @@ -339,6 +339,10 @@ export default { | ... | @@ -339,6 +339,10 @@ export default { |
339 | }; | 339 | }; |
340 | }, | 340 | }, |
341 | methods: { | 341 | methods: { |
342 | /** | ||
343 | * @description: featchData | ||
344 | * @author: renchao | ||
345 | */ | ||
342 | async featchData() { | 346 | async featchData() { |
343 | try { | 347 | try { |
344 | let { result: res } = await qltQlGjzwsyq.getQltQlGjzwsyqById( | 348 | let { result: res } = await qltQlGjzwsyq.getQltQlGjzwsyqById( |
... | @@ -350,6 +354,10 @@ export default { | ... | @@ -350,6 +354,10 @@ export default { |
350 | this.$refs.msg.messageShow(); | 354 | this.$refs.msg.messageShow(); |
351 | } | 355 | } |
352 | }, | 356 | }, |
357 | /** | ||
358 | * @description: handleUpdateForm | ||
359 | * @author: renchao | ||
360 | */ | ||
353 | handleUpdateForm() { | 361 | handleUpdateForm() { |
354 | return new Promise(async (resolve) => { | 362 | return new Promise(async (resolve) => { |
355 | try { | 363 | try { | ... | ... |
... | @@ -388,6 +388,10 @@ export default { | ... | @@ -388,6 +388,10 @@ export default { |
388 | }; | 388 | }; |
389 | }, | 389 | }, |
390 | methods: { | 390 | methods: { |
391 | /** | ||
392 | * @description: featchData | ||
393 | * @author: renchao | ||
394 | */ | ||
391 | async featchData() { | 395 | async featchData() { |
392 | try { | 396 | try { |
393 | let { result: res } = await qltQlLq.getQltQlLqById(this.bsmSjsb); | 397 | let { result: res } = await qltQlLq.getQltQlLqById(this.bsmSjsb); |
... | @@ -397,6 +401,10 @@ export default { | ... | @@ -397,6 +401,10 @@ export default { |
397 | this.$refs.msg.messageShow(); | 401 | this.$refs.msg.messageShow(); |
398 | } | 402 | } |
399 | }, | 403 | }, |
404 | /** | ||
405 | * @description: handleUpdateForm | ||
406 | * @author: renchao | ||
407 | */ | ||
400 | handleUpdateForm() { | 408 | handleUpdateForm() { |
401 | return new Promise(async (resolve, reject) => { | 409 | return new Promise(async (resolve, reject) => { |
402 | try { | 410 | try { | ... | ... |
... | @@ -119,6 +119,10 @@ export default { | ... | @@ -119,6 +119,10 @@ export default { |
119 | }; | 119 | }; |
120 | }, | 120 | }, |
121 | methods: { | 121 | methods: { |
122 | /** | ||
123 | * @description: featchData | ||
124 | * @author: renchao | ||
125 | */ | ||
122 | async featchData () { | 126 | async featchData () { |
123 | try { | 127 | try { |
124 | let { result: res } = await zdK103.getZdK103ById(this.bsmSjsb); | 128 | let { result: res } = await zdK103.getZdK103ById(this.bsmSjsb); |
... | @@ -128,6 +132,10 @@ export default { | ... | @@ -128,6 +132,10 @@ export default { |
128 | this.$refs.msg.messageShow(); | 132 | this.$refs.msg.messageShow(); |
129 | } | 133 | } |
130 | }, | 134 | }, |
135 | /** | ||
136 | * @description: handleUpdateForm | ||
137 | * @author: renchao | ||
138 | */ | ||
131 | handleUpdateForm () { | 139 | handleUpdateForm () { |
132 | return new Promise(async (resolve) => { | 140 | return new Promise(async (resolve) => { |
133 | try { | 141 | try { | ... | ... |
... | @@ -92,6 +92,10 @@ export default { | ... | @@ -92,6 +92,10 @@ export default { |
92 | }; | 92 | }; |
93 | }, | 93 | }, |
94 | methods: { | 94 | methods: { |
95 | /** | ||
96 | * @description: featchData | ||
97 | * @author: renchao | ||
98 | */ | ||
95 | async featchData() { | 99 | async featchData() { |
96 | try { | 100 | try { |
97 | let { result: res } = await zhK105.getZhK105ById(this.bsmSjsb); | 101 | let { result: res } = await zhK105.getZhK105ById(this.bsmSjsb); |
... | @@ -101,6 +105,10 @@ export default { | ... | @@ -101,6 +105,10 @@ export default { |
101 | this.$refs.msg.messageShow(); | 105 | this.$refs.msg.messageShow(); |
102 | } | 106 | } |
103 | }, | 107 | }, |
108 | /** | ||
109 | * @description: handleUpdateForm | ||
110 | * @author: renchao | ||
111 | */ | ||
104 | handleUpdateForm() { | 112 | handleUpdateForm() { |
105 | return new Promise(async (resolve) => { | 113 | return new Promise(async (resolve) => { |
106 | try { | 114 | try { | ... | ... |
... | @@ -447,12 +447,20 @@ | ... | @@ -447,12 +447,20 @@ |
447 | }; | 447 | }; |
448 | }, | 448 | }, |
449 | methods: { | 449 | methods: { |
450 | /** | ||
451 | * @description: featchData | ||
452 | * @author: renchao | ||
453 | */ | ||
450 | async featchData () { | 454 | async featchData () { |
451 | try { | 455 | try { |
452 | let { result: res } = await zttGyQlr.getZttGyQlrById(this.bsmSjsb); | 456 | let { result: res } = await zttGyQlr.getZttGyQlrById(this.bsmSjsb); |
453 | this.obligeeForm.obligeeList = res; | 457 | this.obligeeForm.obligeeList = res; |
454 | } catch (error) { } | 458 | } catch (error) { } |
455 | }, | 459 | }, |
460 | /** | ||
461 | * @description: handleUpdateForm | ||
462 | * @author: renchao | ||
463 | */ | ||
456 | handleUpdateForm () { | 464 | handleUpdateForm () { |
457 | return new Promise(async (resolve) => { | 465 | return new Promise(async (resolve) => { |
458 | try { | 466 | try { | ... | ... |
... | @@ -25,6 +25,11 @@ | ... | @@ -25,6 +25,11 @@ |
25 | } | 25 | } |
26 | }, | 26 | }, |
27 | methods: { | 27 | methods: { |
28 | /** | ||
29 | * @description: handleClick | ||
30 | * @param {*} evt | ||
31 | * @author: renchao | ||
32 | */ | ||
28 | handleClick (evt) { | 33 | handleClick (evt) { |
29 | this.$emit('click', evt); | 34 | this.$emit('click', evt); |
30 | } | 35 | } | ... | ... |
... | @@ -91,6 +91,10 @@ export default { | ... | @@ -91,6 +91,10 @@ export default { |
91 | } | 91 | } |
92 | }, | 92 | }, |
93 | methods: { | 93 | methods: { |
94 | /** | ||
95 | * @description: handleFullscreen | ||
96 | * @author: renchao | ||
97 | */ | ||
94 | handleFullscreen () { | 98 | handleFullscreen () { |
95 | this.fullscreen = !this.fullscreen | 99 | this.fullscreen = !this.fullscreen |
96 | if (!this.fullscreen) { | 100 | if (!this.fullscreen) { |
... | @@ -99,11 +103,19 @@ export default { | ... | @@ -99,11 +103,19 @@ export default { |
99 | this.scrollerHeight = (window.innerHeight - 120) + 'px' | 103 | this.scrollerHeight = (window.innerHeight - 120) + 'px' |
100 | } | 104 | } |
101 | }, | 105 | }, |
106 | /** | ||
107 | * @description: submitForm | ||
108 | * @author: renchao | ||
109 | */ | ||
102 | submitForm () { | 110 | submitForm () { |
103 | if (this.isButton) { | 111 | if (this.isButton) { |
104 | this.$emit('submitForm'); | 112 | this.$emit('submitForm'); |
105 | } | 113 | } |
106 | }, | 114 | }, |
115 | /** | ||
116 | * @description: closeDialog | ||
117 | * @author: renchao | ||
118 | */ | ||
107 | closeDialog () { | 119 | closeDialog () { |
108 | this.key++ | 120 | this.key++ |
109 | this.$emit('input', false) | 121 | this.$emit('input', false) | ... | ... |
... | @@ -52,6 +52,10 @@ export default { | ... | @@ -52,6 +52,10 @@ export default { |
52 | LbRender | 52 | LbRender |
53 | }, | 53 | }, |
54 | methods: { | 54 | methods: { |
55 | /** | ||
56 | * @description: setColumn | ||
57 | * @author: renchao | ||
58 | */ | ||
55 | setColumn () { | 59 | setColumn () { |
56 | if (this.column.type) { | 60 | if (this.column.type) { |
57 | this.column.renderHeader = forced[this.column.type].renderHeader | 61 | this.column.renderHeader = forced[this.column.type].renderHeader | ... | ... |
... | @@ -112,15 +112,30 @@ export default { | ... | @@ -112,15 +112,30 @@ export default { |
112 | }, | 112 | }, |
113 | methods: { | 113 | methods: { |
114 | // 单选 | 114 | // 单选 |
115 | /** | ||
116 | * @description: 单选 | ||
117 | * @param {*} row | ||
118 | * @author: renchao | ||
119 | */ | ||
115 | singleElection (row) { | 120 | singleElection (row) { |
116 | this.selected = this.data.indexOf(row); | 121 | this.selected = this.data.indexOf(row); |
117 | }, | 122 | }, |
118 | 123 | ||
124 | /** | ||
125 | * @description: tableRowClassName | ||
126 | * @param {*} row | ||
127 | * @param {*} rowIndex | ||
128 | * @author: renchao | ||
129 | */ | ||
119 | tableRowClassName ({ row, rowIndex }) { | 130 | tableRowClassName ({ row, rowIndex }) { |
120 | if (rowIndex % 2 === 1) { | 131 | if (rowIndex % 2 === 1) { |
121 | return 'interlaced'; | 132 | return 'interlaced'; |
122 | } | 133 | } |
123 | }, | 134 | }, |
135 | /** | ||
136 | * @description: getHeight | ||
137 | * @author: renchao | ||
138 | */ | ||
124 | getHeight () { | 139 | getHeight () { |
125 | if (!this.heightNumSetting) { | 140 | if (!this.heightNumSetting) { |
126 | let _this = this | 141 | let _this = this |
... | @@ -137,6 +152,12 @@ export default { | ... | @@ -137,6 +152,12 @@ export default { |
137 | } | 152 | } |
138 | } | 153 | } |
139 | }, | 154 | }, |
155 | /** | ||
156 | * @description: calcHeightx | ||
157 | * @param {*} value | ||
158 | * @param {*} wappered | ||
159 | * @author: renchao | ||
160 | */ | ||
140 | calcHeightx (value, wappered = true) { | 161 | calcHeightx (value, wappered = true) { |
141 | //项目自定义的公共header部分的高度,可忽略 | 162 | //项目自定义的公共header部分的高度,可忽略 |
142 | let header = document.querySelector(".from-clues-header").offsetHeight; | 163 | let header = document.querySelector(".from-clues-header").offsetHeight; |
... | @@ -156,36 +177,91 @@ export default { | ... | @@ -156,36 +177,91 @@ export default { |
156 | } | 177 | } |
157 | return res; | 178 | return res; |
158 | }, | 179 | }, |
180 | /** | ||
181 | * @description: clearSelection | ||
182 | * @author: renchao | ||
183 | */ | ||
159 | clearSelection () { | 184 | clearSelection () { |
160 | this.$refs.elTable.clearSelection() | 185 | this.$refs.elTable.clearSelection() |
161 | }, | 186 | }, |
187 | /** | ||
188 | * @description: toggleRowSelection | ||
189 | * @param {*} row | ||
190 | * @param {*} selected | ||
191 | * @author: renchao | ||
192 | */ | ||
162 | toggleRowSelection (row, selected) { | 193 | toggleRowSelection (row, selected) { |
163 | this.$refs.elTable.toggleRowSelection(row, selected) | 194 | this.$refs.elTable.toggleRowSelection(row, selected) |
164 | }, | 195 | }, |
196 | /** | ||
197 | * @description: toggleAllSelection | ||
198 | * @author: renchao | ||
199 | */ | ||
165 | toggleAllSelection () { | 200 | toggleAllSelection () { |
166 | this.$refs.elTable.toggleAllSelection() | 201 | this.$refs.elTable.toggleAllSelection() |
167 | }, | 202 | }, |
203 | /** | ||
204 | * @description: toggleRowExpansion | ||
205 | * @param {*} row | ||
206 | * @param {*} expanded | ||
207 | * @author: renchao | ||
208 | */ | ||
168 | toggleRowExpansion (row, expanded) { | 209 | toggleRowExpansion (row, expanded) { |
169 | this.$refs.elTable.toggleRowExpansion(row, expanded) | 210 | this.$refs.elTable.toggleRowExpansion(row, expanded) |
170 | }, | 211 | }, |
212 | /** | ||
213 | * @description: setCurrentRow | ||
214 | * @param {*} row | ||
215 | * @author: renchao | ||
216 | */ | ||
171 | setCurrentRow (row) { | 217 | setCurrentRow (row) { |
172 | this.$refs.elTable.setCurrentRow(row) | 218 | this.$refs.elTable.setCurrentRow(row) |
173 | }, | 219 | }, |
220 | /** | ||
221 | * @description: clearSort | ||
222 | * @author: renchao | ||
223 | */ | ||
174 | clearSort () { | 224 | clearSort () { |
175 | this.$refs.elTable.clearSort() | 225 | this.$refs.elTable.clearSort() |
176 | }, | 226 | }, |
227 | /** | ||
228 | * @description: clearFilter | ||
229 | * @param {*} columnKey | ||
230 | * @author: renchao | ||
231 | */ | ||
177 | clearFilter (columnKey) { | 232 | clearFilter (columnKey) { |
178 | this.$refs.elTable.clearFilter(columnKey) | 233 | this.$refs.elTable.clearFilter(columnKey) |
179 | }, | 234 | }, |
235 | /** | ||
236 | * @description: doLayout | ||
237 | * @author: renchao | ||
238 | */ | ||
180 | doLayout () { | 239 | doLayout () { |
181 | this.$refs.elTable.doLayout() | 240 | this.$refs.elTable.doLayout() |
182 | }, | 241 | }, |
242 | /** | ||
243 | * @description: sort | ||
244 | * @param {*} prop | ||
245 | * @param {*} order | ||
246 | * @author: renchao | ||
247 | */ | ||
183 | sort (prop, order) { | 248 | sort (prop, order) { |
184 | this.$refs.elTable.sort(prop, order) | 249 | this.$refs.elTable.sort(prop, order) |
185 | }, | 250 | }, |
251 | /** | ||
252 | * @description: paginationCurrentChange | ||
253 | * @param {*} val | ||
254 | * @author: renchao | ||
255 | */ | ||
186 | paginationCurrentChange (val) { | 256 | paginationCurrentChange (val) { |
187 | this.$emit('p-current-change', val) | 257 | this.$emit('p-current-change', val) |
188 | }, | 258 | }, |
259 | /** | ||
260 | * @description: getMergeArr | ||
261 | * @param {*} tableData | ||
262 | * @param {*} merge | ||
263 | * @author: renchao | ||
264 | */ | ||
189 | getMergeArr (tableData, merge) { | 265 | getMergeArr (tableData, merge) { |
190 | if (!merge) return | 266 | if (!merge) return |
191 | this.mergeLine = {} | 267 | this.mergeLine = {} |
... | @@ -208,6 +284,14 @@ export default { | ... | @@ -208,6 +284,14 @@ export default { |
208 | }) | 284 | }) |
209 | }) | 285 | }) |
210 | }, | 286 | }, |
287 | /** | ||
288 | * @description: mergeMethod | ||
289 | * @param {*} row | ||
290 | * @param {*} column | ||
291 | * @param {*} rowIndex | ||
292 | * @param {*} columnIndex | ||
293 | * @author: renchao | ||
294 | */ | ||
211 | mergeMethod ({ row, column, rowIndex, columnIndex }) { | 295 | mergeMethod ({ row, column, rowIndex, columnIndex }) { |
212 | const index = this.merge.indexOf(column.property) | 296 | const index = this.merge.indexOf(column.property) |
213 | if (index > -1) { | 297 | if (index > -1) { | ... | ... |
... | @@ -25,6 +25,12 @@ | ... | @@ -25,6 +25,12 @@ |
25 | }, | 25 | }, |
26 | }, | 26 | }, |
27 | methods: { | 27 | methods: { |
28 | /** | ||
29 | * @description: hexToRgba | ||
30 | * @param {*} hex | ||
31 | * @param {*} opacity | ||
32 | * @author: renchao | ||
33 | */ | ||
28 | hexToRgba (hex, opacity) { | 34 | hexToRgba (hex, opacity) { |
29 | let rgbaColor = ""; | 35 | let rgbaColor = ""; |
30 | let reg = /^#[\da-f]{6}$/i; | 36 | let reg = /^#[\da-f]{6}$/i; |
... | @@ -35,6 +41,11 @@ | ... | @@ -35,6 +41,11 @@ |
35 | } | 41 | } |
36 | return rgbaColor; | 42 | return rgbaColor; |
37 | }, | 43 | }, |
44 | /** | ||
45 | * @description: fontSize | ||
46 | * @param {*} res | ||
47 | * @author: renchao | ||
48 | */ | ||
38 | fontSize (res) { | 49 | fontSize (res) { |
39 | let docEl = document.documentElement, | 50 | let docEl = document.documentElement, |
40 | clientWidth = | 51 | clientWidth = | ... | ... |
... | @@ -30,6 +30,10 @@ export default { | ... | @@ -30,6 +30,10 @@ export default { |
30 | this.dataTrend() | 30 | this.dataTrend() |
31 | }, | 31 | }, |
32 | methods: { | 32 | methods: { |
33 | /** | ||
34 | * @description: dataTrend | ||
35 | * @author: renchao | ||
36 | */ | ||
33 | async dataTrend() { | 37 | async dataTrend() { |
34 | try { | 38 | try { |
35 | let { result: res } = await work.dataTrend(); | 39 | let { result: res } = await work.dataTrend(); | ... | ... |
... | @@ -25,6 +25,10 @@ | ... | @@ -25,6 +25,10 @@ |
25 | this.submitViews(); | 25 | this.submitViews(); |
26 | }, | 26 | }, |
27 | methods: { | 27 | methods: { |
28 | /** | ||
29 | * @description: submitViews | ||
30 | * @author: renchao | ||
31 | */ | ||
28 | async submitViews () { | 32 | async submitViews () { |
29 | try { | 33 | try { |
30 | let { result: res } = await work.submitViews("A20"); | 34 | let { result: res } = await work.submitViews("A20"); | ... | ... |
... | @@ -22,6 +22,10 @@ export default { | ... | @@ -22,6 +22,10 @@ export default { |
22 | this.getDjlxtotal(); | 22 | this.getDjlxtotal(); |
23 | }, | 23 | }, |
24 | methods: { | 24 | methods: { |
25 | /** | ||
26 | * @description: getDjlxtotal | ||
27 | * @author: renchao | ||
28 | */ | ||
25 | getDjlxtotal () { | 29 | getDjlxtotal () { |
26 | return new Promise(async (resolve) => { | 30 | return new Promise(async (resolve) => { |
27 | try { | 31 | try { | ... | ... |
... | @@ -176,6 +176,10 @@ export default { | ... | @@ -176,6 +176,10 @@ export default { |
176 | }, | 176 | }, |
177 | methods: { | 177 | methods: { |
178 | // 开启定时器 | 178 | // 开启定时器 |
179 | /** | ||
180 | * @description: 开启定时器 | ||
181 | * @author: renchao | ||
182 | */ | ||
179 | startInterval () { | 183 | startInterval () { |
180 | const _self = this; | 184 | const _self = this; |
181 | // 应通过接口获取配置时间,暂时写死5s | 185 | // 应通过接口获取配置时间,暂时写死5s |
... | @@ -188,6 +192,10 @@ export default { | ... | @@ -188,6 +192,10 @@ export default { |
188 | }, time); | 192 | }, time); |
189 | }, | 193 | }, |
190 | // 重新随机选中地图区域 | 194 | // 重新随机选中地图区域 |
195 | /** | ||
196 | * @description: 重新随机选中地图区域 | ||
197 | * @author: renchao | ||
198 | */ | ||
191 | reSelectMapRandomArea () { | 199 | reSelectMapRandomArea () { |
192 | const length = 9; | 200 | const length = 9; |
193 | this.$nextTick(() => { | 201 | this.$nextTick(() => { |
... | @@ -218,6 +226,10 @@ export default { | ... | @@ -218,6 +226,10 @@ export default { |
218 | } | 226 | } |
219 | }); | 227 | }); |
220 | }, | 228 | }, |
229 | /** | ||
230 | * @description: handleMapRandomSelect | ||
231 | * @author: renchao | ||
232 | */ | ||
221 | handleMapRandomSelect () { | 233 | handleMapRandomSelect () { |
222 | this.$nextTick(() => { | 234 | this.$nextTick(() => { |
223 | try { | 235 | try { | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-04-03 13:40:18 | 4 | * @LastEditTime: 2023-04-03 13:40:18 |
5 | --> | 5 | --> |
... | @@ -23,6 +23,10 @@ export default { | ... | @@ -23,6 +23,10 @@ export default { |
23 | this.mapViews(); | 23 | this.mapViews(); |
24 | }, | 24 | }, |
25 | methods: { | 25 | methods: { |
26 | /** | ||
27 | * @description: mapViews | ||
28 | * @author: renchao | ||
29 | */ | ||
26 | async mapViews () { | 30 | async mapViews () { |
27 | try { | 31 | try { |
28 | let { result: res } = await work.mapViews("A20"); | 32 | let { result: res } = await work.mapViews("A20"); | ... | ... |
... | @@ -34,6 +34,10 @@ | ... | @@ -34,6 +34,10 @@ |
34 | 34 | ||
35 | }, | 35 | }, |
36 | methods: { | 36 | methods: { |
37 | /** | ||
38 | * @description: addhousetotal | ||
39 | * @author: renchao | ||
40 | */ | ||
37 | async addhousetotal () { | 41 | async addhousetotal () { |
38 | if (this.cdata == 0) { | 42 | if (this.cdata == 0) { |
39 | this.cdata = []; | 43 | this.cdata = []; |
... | @@ -57,6 +61,11 @@ | ... | @@ -57,6 +61,11 @@ |
57 | 61 | ||
58 | }, | 62 | }, |
59 | // 处理数据方法 | 63 | // 处理数据方法 |
64 | /** | ||
65 | * @description: 处理数据方法 | ||
66 | * @param {*} delarr | ||
67 | * @author: renchao | ||
68 | */ | ||
60 | setadat (delarr) { | 69 | setadat (delarr) { |
61 | 70 | ||
62 | this.cdata = delarr.splice(0, 6); | 71 | this.cdata = delarr.splice(0, 6); | ... | ... |
... | @@ -193,6 +193,12 @@ | ... | @@ -193,6 +193,12 @@ |
193 | }; | 193 | }; |
194 | }, | 194 | }, |
195 | methods: { | 195 | methods: { |
196 | /** | ||
197 | * @description: dicStatus | ||
198 | * @param {*} val | ||
199 | * @param {*} code | ||
200 | * @author: renchao | ||
201 | */ | ||
196 | dicStatus (val, code) { | 202 | dicStatus (val, code) { |
197 | let data = this.dicData[code], | 203 | let data = this.dicData[code], |
198 | name = '' | 204 | name = '' |
... | @@ -205,8 +211,18 @@ | ... | @@ -205,8 +211,18 @@ |
205 | return name | 211 | return name |
206 | } | 212 | } |
207 | }, | 213 | }, |
214 | /** | ||
215 | * @description: handleTitleTab | ||
216 | * @param {*} val | ||
217 | * @author: renchao | ||
218 | */ | ||
208 | handleTitleTab (val) { | 219 | handleTitleTab (val) { |
209 | }, | 220 | }, |
221 | /** | ||
222 | * @description: isShow | ||
223 | * @param {*} item | ||
224 | * @author: renchao | ||
225 | */ | ||
210 | isShow (item) { | 226 | isShow (item) { |
211 | if (item.bizMsgid) { | 227 | if (item.bizMsgid) { |
212 | this.$set(this.bwoptions, 0, { | 228 | this.$set(this.bwoptions, 0, { |
... | @@ -240,6 +256,11 @@ | ... | @@ -240,6 +256,11 @@ |
240 | } | 256 | } |
241 | }, | 257 | }, |
242 | // 获取列表接口 | 258 | // 获取列表接口 |
259 | /** | ||
260 | * @description: 获取列表接口 | ||
261 | * @param {*} data | ||
262 | * @author: renchao | ||
263 | */ | ||
243 | _getList (data) { | 264 | _getList (data) { |
244 | getTabsDetail({ bsmReport: data.bsmReport || data.bsmSjsb }).then((res) => { | 265 | getTabsDetail({ bsmReport: data.bsmReport || data.bsmSjsb }).then((res) => { |
245 | if (res.code == 200) { | 266 | if (res.code == 200) { |
... | @@ -250,6 +271,11 @@ | ... | @@ -250,6 +271,11 @@ |
250 | } | 271 | } |
251 | }); | 272 | }); |
252 | }, | 273 | }, |
274 | /** | ||
275 | * @description: changeList | ||
276 | * @param {*} val | ||
277 | * @author: renchao | ||
278 | */ | ||
253 | changeList (val) { | 279 | changeList (val) { |
254 | let _index = val.index; | 280 | let _index = val.index; |
255 | if (_index > this.index) { | 281 | if (_index > this.index) { |
... | @@ -263,10 +289,19 @@ | ... | @@ -263,10 +289,19 @@ |
263 | // } | 289 | // } |
264 | // }); | 290 | // }); |
265 | }, | 291 | }, |
292 | /** | ||
293 | * @description: loadView | ||
294 | * @param {*} view | ||
295 | * @author: renchao | ||
296 | */ | ||
266 | loadView (view) { | 297 | loadView (view) { |
267 | return (r) => | 298 | return (r) => |
268 | require.ensure([], () => r(require(`@/components/Business/${view}.vue`))); | 299 | require.ensure([], () => r(require(`@/components/Business/${view}.vue`))); |
269 | }, | 300 | }, |
301 | /** | ||
302 | * @description: closeDialog | ||
303 | * @author: renchao | ||
304 | */ | ||
270 | closeDialog () { | 305 | closeDialog () { |
271 | this.dialogVisible = false; | 306 | this.dialogVisible = false; |
272 | //关闭弹框时将tabs项置空 | 307 | //关闭弹框时将tabs项置空 | ... | ... |
... | @@ -60,16 +60,36 @@ export default { | ... | @@ -60,16 +60,36 @@ export default { |
60 | this.iconList = icoNameList | 60 | this.iconList = icoNameList |
61 | }, | 61 | }, |
62 | methods: { | 62 | methods: { |
63 | /** | ||
64 | * @description: show | ||
65 | * @param {*} show | ||
66 | * @author: renchao | ||
67 | */ | ||
63 | show(show) { | 68 | show(show) { |
64 | this.visible = show | 69 | this.visible = show |
65 | }, | 70 | }, |
71 | /** | ||
72 | * @description: handleClick | ||
73 | * @param {*} tab | ||
74 | * @param {*} event | ||
75 | * @author: renchao | ||
76 | */ | ||
66 | handleClick(tab, event) { | 77 | handleClick(tab, event) { |
67 | }, | 78 | }, |
79 | /** | ||
80 | * @description: changeData | ||
81 | * @param {*} iconName | ||
82 | * @author: renchao | ||
83 | */ | ||
68 | changeData(iconName) { | 84 | changeData(iconName) { |
69 | this.visible = false | 85 | this.visible = false |
70 | // 传递图标名称给父级 | 86 | // 传递图标名称给父级 |
71 | this.$emit('iconName', iconName) | 87 | this.$emit('iconName', iconName) |
72 | }, | 88 | }, |
89 | /** | ||
90 | * @description: changeIconName | ||
91 | * @author: renchao | ||
92 | */ | ||
73 | changeIconName() { | 93 | changeIconName() { |
74 | this.visible = false | 94 | this.visible = false |
75 | // 传递图标名称给父级 | 95 | // 传递图标名称给父级 | ... | ... |
... | @@ -52,6 +52,10 @@ export default { | ... | @@ -52,6 +52,10 @@ export default { |
52 | LbRender | 52 | LbRender |
53 | }, | 53 | }, |
54 | methods: { | 54 | methods: { |
55 | /** | ||
56 | * @description: setColumn | ||
57 | * @author: renchao | ||
58 | */ | ||
55 | setColumn () { | 59 | setColumn () { |
56 | if (this.column.type) { | 60 | if (this.column.type) { |
57 | this.column.renderHeader = forced[this.column.type].renderHeader | 61 | this.column.renderHeader = forced[this.column.type].renderHeader | ... | ... |
... | @@ -125,15 +125,30 @@ export default { | ... | @@ -125,15 +125,30 @@ export default { |
125 | }, | 125 | }, |
126 | methods: { | 126 | methods: { |
127 | // 单选 | 127 | // 单选 |
128 | /** | ||
129 | * @description: 单选 | ||
130 | * @param {*} row | ||
131 | * @author: renchao | ||
132 | */ | ||
128 | singleElection (row) { | 133 | singleElection (row) { |
129 | this.selected = this.data.indexOf(row); | 134 | this.selected = this.data.indexOf(row); |
130 | }, | 135 | }, |
131 | 136 | ||
137 | /** | ||
138 | * @description: tableRowClassName | ||
139 | * @param {*} row | ||
140 | * @param {*} rowIndex | ||
141 | * @author: renchao | ||
142 | */ | ||
132 | tableRowClassName ({ row, rowIndex }) { | 143 | tableRowClassName ({ row, rowIndex }) { |
133 | if (rowIndex % 2 === 1) { | 144 | if (rowIndex % 2 === 1) { |
134 | return 'interlaced'; | 145 | return 'interlaced'; |
135 | } | 146 | } |
136 | }, | 147 | }, |
148 | /** | ||
149 | * @description: getHeight | ||
150 | * @author: renchao | ||
151 | */ | ||
137 | getHeight () { | 152 | getHeight () { |
138 | if (!this.heightNumSetting) { | 153 | if (!this.heightNumSetting) { |
139 | let _this = this | 154 | let _this = this |
... | @@ -169,6 +184,12 @@ export default { | ... | @@ -169,6 +184,12 @@ export default { |
169 | }) | 184 | }) |
170 | } | 185 | } |
171 | }, | 186 | }, |
187 | /** | ||
188 | * @description: calcHeightx | ||
189 | * @param {*} value | ||
190 | * @param {*} wappered | ||
191 | * @author: renchao | ||
192 | */ | ||
172 | calcHeightx (value, wappered = true) { | 193 | calcHeightx (value, wappered = true) { |
173 | //项目自定义的公共header部分的高度,可忽略 | 194 | //项目自定义的公共header部分的高度,可忽略 |
174 | let header = document.querySelector(".from-clues-header").offsetHeight; | 195 | let header = document.querySelector(".from-clues-header").offsetHeight; |
... | @@ -194,36 +215,91 @@ export default { | ... | @@ -194,36 +215,91 @@ export default { |
194 | } | 215 | } |
195 | return res; | 216 | return res; |
196 | }, | 217 | }, |
218 | /** | ||
219 | * @description: clearSelection | ||
220 | * @author: renchao | ||
221 | */ | ||
197 | clearSelection () { | 222 | clearSelection () { |
198 | this.$refs.elTable.clearSelection() | 223 | this.$refs.elTable.clearSelection() |
199 | }, | 224 | }, |
225 | /** | ||
226 | * @description: toggleRowSelection | ||
227 | * @param {*} row | ||
228 | * @param {*} selected | ||
229 | * @author: renchao | ||
230 | */ | ||
200 | toggleRowSelection (row, selected) { | 231 | toggleRowSelection (row, selected) { |
201 | this.$refs.elTable.toggleRowSelection(row, selected) | 232 | this.$refs.elTable.toggleRowSelection(row, selected) |
202 | }, | 233 | }, |
234 | /** | ||
235 | * @description: toggleAllSelection | ||
236 | * @author: renchao | ||
237 | */ | ||
203 | toggleAllSelection () { | 238 | toggleAllSelection () { |
204 | this.$refs.elTable.toggleAllSelection() | 239 | this.$refs.elTable.toggleAllSelection() |
205 | }, | 240 | }, |
241 | /** | ||
242 | * @description: toggleRowExpansion | ||
243 | * @param {*} row | ||
244 | * @param {*} expanded | ||
245 | * @author: renchao | ||
246 | */ | ||
206 | toggleRowExpansion (row, expanded) { | 247 | toggleRowExpansion (row, expanded) { |
207 | this.$refs.elTable.toggleRowExpansion(row, expanded) | 248 | this.$refs.elTable.toggleRowExpansion(row, expanded) |
208 | }, | 249 | }, |
250 | /** | ||
251 | * @description: setCurrentRow | ||
252 | * @param {*} row | ||
253 | * @author: renchao | ||
254 | */ | ||
209 | setCurrentRow (row) { | 255 | setCurrentRow (row) { |
210 | this.$refs.elTable.setCurrentRow(row) | 256 | this.$refs.elTable.setCurrentRow(row) |
211 | }, | 257 | }, |
258 | /** | ||
259 | * @description: clearSort | ||
260 | * @author: renchao | ||
261 | */ | ||
212 | clearSort () { | 262 | clearSort () { |
213 | this.$refs.elTable.clearSort() | 263 | this.$refs.elTable.clearSort() |
214 | }, | 264 | }, |
265 | /** | ||
266 | * @description: clearFilter | ||
267 | * @param {*} columnKey | ||
268 | * @author: renchao | ||
269 | */ | ||
215 | clearFilter (columnKey) { | 270 | clearFilter (columnKey) { |
216 | this.$refs.elTable.clearFilter(columnKey) | 271 | this.$refs.elTable.clearFilter(columnKey) |
217 | }, | 272 | }, |
273 | /** | ||
274 | * @description: doLayout | ||
275 | * @author: renchao | ||
276 | */ | ||
218 | doLayout () { | 277 | doLayout () { |
219 | this.$refs.elTable.doLayout() | 278 | this.$refs.elTable.doLayout() |
220 | }, | 279 | }, |
280 | /** | ||
281 | * @description: sort | ||
282 | * @param {*} prop | ||
283 | * @param {*} order | ||
284 | * @author: renchao | ||
285 | */ | ||
221 | sort (prop, order) { | 286 | sort (prop, order) { |
222 | this.$refs.elTable.sort(prop, order) | 287 | this.$refs.elTable.sort(prop, order) |
223 | }, | 288 | }, |
289 | /** | ||
290 | * @description: paginationCurrentChange | ||
291 | * @param {*} val | ||
292 | * @author: renchao | ||
293 | */ | ||
224 | paginationCurrentChange (val) { | 294 | paginationCurrentChange (val) { |
225 | this.$emit('p-current-change', val) | 295 | this.$emit('p-current-change', val) |
226 | }, | 296 | }, |
297 | /** | ||
298 | * @description: getMergeArr | ||
299 | * @param {*} tableData | ||
300 | * @param {*} merge | ||
301 | * @author: renchao | ||
302 | */ | ||
227 | getMergeArr (tableData, merge) { | 303 | getMergeArr (tableData, merge) { |
228 | if (!merge) return | 304 | if (!merge) return |
229 | this.mergeLine = {} | 305 | this.mergeLine = {} |
... | @@ -246,6 +322,14 @@ export default { | ... | @@ -246,6 +322,14 @@ export default { |
246 | }) | 322 | }) |
247 | }) | 323 | }) |
248 | }, | 324 | }, |
325 | /** | ||
326 | * @description: mergeMethod | ||
327 | * @param {*} row | ||
328 | * @param {*} column | ||
329 | * @param {*} rowIndex | ||
330 | * @param {*} columnIndex | ||
331 | * @author: renchao | ||
332 | */ | ||
249 | mergeMethod ({ row, column, rowIndex, columnIndex }) { | 333 | mergeMethod ({ row, column, rowIndex, columnIndex }) { |
250 | const index = this.merge.indexOf(column.property) | 334 | const index = this.merge.indexOf(column.property) |
251 | if (index > -1) { | 335 | if (index > -1) { | ... | ... |
1 | import service from './src/index'; | 1 | import service from './src/index'; |
2 | 2 | ||
3 | export default { | 3 | export default { |
4 | /** | ||
5 | * @description: install | ||
6 | * @param {*} Vue | ||
7 | * @author: renchao | ||
8 | */ | ||
4 | install (Vue) { | 9 | install (Vue) { |
5 | Vue.prototype.$loading = service; | 10 | Vue.prototype.$loading = service; |
6 | }, | 11 | }, | ... | ... |
... | @@ -20,6 +20,10 @@ let fullscreenLoading; | ... | @@ -20,6 +20,10 @@ let fullscreenLoading; |
20 | LoadingConstructor.prototype.originalPosition = ''; | 20 | LoadingConstructor.prototype.originalPosition = ''; |
21 | LoadingConstructor.prototype.originalOverflow = ''; | 21 | LoadingConstructor.prototype.originalOverflow = ''; |
22 | 22 | ||
23 | /** | ||
24 | * @description: close | ||
25 | * @author: renchao | ||
26 | */ | ||
23 | LoadingConstructor.prototype.close = function() { | 27 | LoadingConstructor.prototype.close = function() { |
24 | if (this.fullscreen) { | 28 | if (this.fullscreen) { |
25 | fullscreenLoading = undefined; | 29 | fullscreenLoading = undefined; |
... | @@ -38,6 +42,13 @@ LoadingConstructor.prototype.close = function() { | ... | @@ -38,6 +42,13 @@ LoadingConstructor.prototype.close = function() { |
38 | this.visible = false; | 42 | this.visible = false; |
39 | }; | 43 | }; |
40 | 44 | ||
45 | /** | ||
46 | * @description: addStyle | ||
47 | * @param {*} options | ||
48 | * @param {*} parent | ||
49 | * @param {*} instance | ||
50 | * @author: renchao | ||
51 | */ | ||
41 | const addStyle = (options, parent, instance) => { | 52 | const addStyle = (options, parent, instance) => { |
42 | let maskStyle = {}; | 53 | let maskStyle = {}; |
43 | if (options.fullscreen) { | 54 | if (options.fullscreen) { |
... | @@ -64,6 +75,11 @@ const addStyle = (options, parent, instance) => { | ... | @@ -64,6 +75,11 @@ const addStyle = (options, parent, instance) => { |
64 | }); | 75 | }); |
65 | }; | 76 | }; |
66 | 77 | ||
78 | /** | ||
79 | * @description: Loading | ||
80 | * @param {*} options | ||
81 | * @author: renchao | ||
82 | */ | ||
67 | const Loading = (options = {}) => { | 83 | const Loading = (options = {}) => { |
68 | if (Vue.prototype.$isServer) return; | 84 | if (Vue.prototype.$isServer) return; |
69 | options = merge({}, defaults, options); | 85 | options = merge({}, defaults, options); | ... | ... |
... | @@ -28,9 +28,18 @@ export default { | ... | @@ -28,9 +28,18 @@ export default { |
28 | }, | 28 | }, |
29 | 29 | ||
30 | methods: { | 30 | methods: { |
31 | /** | ||
32 | * @description: handleAfterLeave | ||
33 | * @author: renchao | ||
34 | */ | ||
31 | handleAfterLeave () { | 35 | handleAfterLeave () { |
32 | this.$emit('after-leave'); | 36 | this.$emit('after-leave'); |
33 | }, | 37 | }, |
38 | /** | ||
39 | * @description: setText | ||
40 | * @param {*} text | ||
41 | * @author: renchao | ||
42 | */ | ||
34 | setText (text) { | 43 | setText (text) { |
35 | this.text = text; | 44 | this.text = text; |
36 | } | 45 | } |
... | @@ -46,4 +55,4 @@ export default { | ... | @@ -46,4 +55,4 @@ export default { |
46 | height: 80px; | 55 | height: 80px; |
47 | } | 56 | } |
48 | } | 57 | } |
49 | </style> | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
58 | </style> | ... | ... |
... | @@ -43,6 +43,10 @@ const MessageBoxConstructor = Vue.extend(msgboxVue); | ... | @@ -43,6 +43,10 @@ const MessageBoxConstructor = Vue.extend(msgboxVue); |
43 | let currentMsg, instance; | 43 | let currentMsg, instance; |
44 | let msgQueue = []; | 44 | let msgQueue = []; |
45 | 45 | ||
46 | /** | ||
47 | * @description: defaultCallback | ||
48 | * @author: renchao | ||
49 | */ | ||
46 | const defaultCallback = action => { | 50 | const defaultCallback = action => { |
47 | if (currentMsg) { | 51 | if (currentMsg) { |
48 | let callback = currentMsg.callback; | 52 | let callback = currentMsg.callback; |
... | @@ -56,6 +60,10 @@ const defaultCallback = action => { | ... | @@ -56,6 +60,10 @@ const defaultCallback = action => { |
56 | } | 60 | } |
57 | }; | 61 | }; |
58 | 62 | ||
63 | /** | ||
64 | * @description: initInstance | ||
65 | * @author: renchao | ||
66 | */ | ||
59 | const initInstance = () => { | 67 | const initInstance = () => { |
60 | instance = new MessageBoxConstructor({ | 68 | instance = new MessageBoxConstructor({ |
61 | el: document.createElement('div') | 69 | el: document.createElement('div') |
... | @@ -64,6 +72,10 @@ const initInstance = () => { | ... | @@ -64,6 +72,10 @@ const initInstance = () => { |
64 | instance.callback = defaultCallback; | 72 | instance.callback = defaultCallback; |
65 | }; | 73 | }; |
66 | 74 | ||
75 | /** | ||
76 | * @description: showNextMsg | ||
77 | * @author: renchao | ||
78 | */ | ||
67 | const showNextMsg = () => { | 79 | const showNextMsg = () => { |
68 | if (!instance) { | 80 | if (!instance) { |
69 | initInstance(); | 81 | initInstance(); |
... | @@ -109,6 +121,12 @@ const showNextMsg = () => { | ... | @@ -109,6 +121,12 @@ const showNextMsg = () => { |
109 | } | 121 | } |
110 | }; | 122 | }; |
111 | 123 | ||
124 | /** | ||
125 | * @description: MessageBox | ||
126 | * @param {*} options | ||
127 | * @param {*} callback | ||
128 | * @author: renchao | ||
129 | */ | ||
112 | const MessageBox = function (options, callback) { | 130 | const MessageBox = function (options, callback) { |
113 | if (Vue.prototype.$isServer) return; | 131 | if (Vue.prototype.$isServer) return; |
114 | if (typeof options === 'string' || isVNode(options)) { | 132 | if (typeof options === 'string' || isVNode(options)) { |
... | @@ -143,10 +161,21 @@ const MessageBox = function (options, callback) { | ... | @@ -143,10 +161,21 @@ const MessageBox = function (options, callback) { |
143 | } | 161 | } |
144 | }; | 162 | }; |
145 | 163 | ||
164 | /** | ||
165 | * @description: setDefaults | ||
166 | * @author: renchao | ||
167 | */ | ||
146 | MessageBox.setDefaults = defaults => { | 168 | MessageBox.setDefaults = defaults => { |
147 | MessageBox.defaults = defaults; | 169 | MessageBox.defaults = defaults; |
148 | }; | 170 | }; |
149 | 171 | ||
172 | /** | ||
173 | * @description: alert | ||
174 | * @param {*} title | ||
175 | * @param {*} message | ||
176 | * @param {*} options | ||
177 | * @author: renchao | ||
178 | */ | ||
150 | MessageBox.alert = (title, message, options) => { | 179 | MessageBox.alert = (title, message, options) => { |
151 | if (typeof title === 'object') { | 180 | if (typeof title === 'object') { |
152 | options = title; | 181 | options = title; |
... | @@ -163,6 +192,10 @@ MessageBox.alert = (title, message, options) => { | ... | @@ -163,6 +192,10 @@ MessageBox.alert = (title, message, options) => { |
163 | }, options)); | 192 | }, options)); |
164 | }; | 193 | }; |
165 | 194 | ||
195 | /** | ||
196 | * @description: close | ||
197 | * @author: renchao | ||
198 | */ | ||
166 | MessageBox.close = () => { | 199 | MessageBox.close = () => { |
167 | instance.doClose(); | 200 | instance.doClose(); |
168 | instance.visible = false; | 201 | instance.visible = false; | ... | ... |
... | @@ -97,6 +97,10 @@ export default { | ... | @@ -97,6 +97,10 @@ export default { |
97 | }, | 97 | }, |
98 | 98 | ||
99 | methods: { | 99 | methods: { |
100 | /** | ||
101 | * @description: getSafeClose | ||
102 | * @author: renchao | ||
103 | */ | ||
100 | getSafeClose () { | 104 | getSafeClose () { |
101 | const currentId = this.uid; | 105 | const currentId = this.uid; |
102 | return () => { | 106 | return () => { |
... | @@ -105,6 +109,10 @@ export default { | ... | @@ -105,6 +109,10 @@ export default { |
105 | }); | 109 | }); |
106 | }; | 110 | }; |
107 | }, | 111 | }, |
112 | /** | ||
113 | * @description: doClose | ||
114 | * @author: renchao | ||
115 | */ | ||
108 | doClose () { | 116 | doClose () { |
109 | if (!this.visible) return; | 117 | if (!this.visible) return; |
110 | this.visible = false; | 118 | this.visible = false; |
... | @@ -122,18 +130,31 @@ export default { | ... | @@ -122,18 +130,31 @@ export default { |
122 | }); | 130 | }); |
123 | }, | 131 | }, |
124 | 132 | ||
133 | /** | ||
134 | * @description: handleWrapperClick | ||
135 | * @author: renchao | ||
136 | */ | ||
125 | handleWrapperClick () { | 137 | handleWrapperClick () { |
126 | if (this.closeOnClickModal) { | 138 | if (this.closeOnClickModal) { |
127 | this.handleAction(this.distinguishCancelAndClose ? 'close' : 'cancel'); | 139 | this.handleAction(this.distinguishCancelAndClose ? 'close' : 'cancel'); |
128 | } | 140 | } |
129 | }, | 141 | }, |
130 | 142 | ||
143 | /** | ||
144 | * @description: handleInputEnter | ||
145 | * @author: renchao | ||
146 | */ | ||
131 | handleInputEnter () { | 147 | handleInputEnter () { |
132 | if (this.inputType !== 'textarea') { | 148 | if (this.inputType !== 'textarea') { |
133 | return this.handleAction('confirm'); | 149 | return this.handleAction('confirm'); |
134 | } | 150 | } |
135 | }, | 151 | }, |
136 | 152 | ||
153 | /** | ||
154 | * @description: handleAction | ||
155 | * @param {*} action | ||
156 | * @author: renchao | ||
157 | */ | ||
137 | handleAction (action) { | 158 | handleAction (action) { |
138 | if (this.$type === 'prompt' && action === 'confirm' && !this.validate()) { | 159 | if (this.$type === 'prompt' && action === 'confirm' && !this.validate()) { |
139 | return; | 160 | return; |
... | @@ -147,6 +168,10 @@ export default { | ... | @@ -147,6 +168,10 @@ export default { |
147 | } | 168 | } |
148 | }, | 169 | }, |
149 | 170 | ||
171 | /** | ||
172 | * @description: validate | ||
173 | * @author: renchao | ||
174 | */ | ||
150 | validate () { | 175 | validate () { |
151 | if (this.$type === 'prompt') { | 176 | if (this.$type === 'prompt') { |
152 | const inputPattern = this.inputPattern; | 177 | const inputPattern = this.inputPattern; |
... | @@ -174,15 +199,27 @@ export default { | ... | @@ -174,15 +199,27 @@ export default { |
174 | removeClass(this.getInputElement(), 'invalid'); | 199 | removeClass(this.getInputElement(), 'invalid'); |
175 | return true; | 200 | return true; |
176 | }, | 201 | }, |
202 | /** | ||
203 | * @description: getFirstFocus | ||
204 | * @author: renchao | ||
205 | */ | ||
177 | getFirstFocus () { | 206 | getFirstFocus () { |
178 | const btn = this.$el.querySelector('.el-message-box__btns .el-button'); | 207 | const btn = this.$el.querySelector('.el-message-box__btns .el-button'); |
179 | const title = this.$el.querySelector('.el-message-box__btns .el-message-box__title'); | 208 | const title = this.$el.querySelector('.el-message-box__btns .el-message-box__title'); |
180 | return btn || title; | 209 | return btn || title; |
181 | }, | 210 | }, |
211 | /** | ||
212 | * @description: getInputElement | ||
213 | * @author: renchao | ||
214 | */ | ||
182 | getInputElement () { | 215 | getInputElement () { |
183 | const inputRefs = this.$refs.input.$refs; | 216 | const inputRefs = this.$refs.input.$refs; |
184 | return inputRefs.input || inputRefs.textarea; | 217 | return inputRefs.input || inputRefs.textarea; |
185 | }, | 218 | }, |
219 | /** | ||
220 | * @description: handleClose | ||
221 | * @author: renchao | ||
222 | */ | ||
186 | handleClose () { | 223 | handleClose () { |
187 | this.handleAction('close'); | 224 | this.handleAction('close'); |
188 | } | 225 | } |
... | @@ -294,4 +331,4 @@ export default { | ... | @@ -294,4 +331,4 @@ export default { |
294 | /deep/.el-message-box__content { | 331 | /deep/.el-message-box__content { |
295 | padding-top: 0; | 332 | padding-top: 0; |
296 | } | 333 | } |
297 | </style> | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
334 | </style> | ... | ... |
... | @@ -3,6 +3,10 @@ import Popup from './index.vue' | ... | @@ -3,6 +3,10 @@ import Popup from './index.vue' |
3 | const PopupBox = Vue.extend(Popup) | 3 | const PopupBox = Vue.extend(Popup) |
4 | let popuping = undefined | 4 | let popuping = undefined |
5 | 5 | ||
6 | /** | ||
7 | * @description: close | ||
8 | * @author: renchao | ||
9 | */ | ||
6 | PopupBox.prototype.close = function () { | 10 | PopupBox.prototype.close = function () { |
7 | // 如果Popup 有引用,则去掉引用 | 11 | // 如果Popup 有引用,则去掉引用 |
8 | if (popuping) { | 12 | if (popuping) { |
... | @@ -19,6 +23,14 @@ PopupBox.prototype.close = function () { | ... | @@ -19,6 +23,14 @@ PopupBox.prototype.close = function () { |
19 | }, 300) | 23 | }, 300) |
20 | } | 24 | } |
21 | 25 | ||
26 | /** | ||
27 | * @description: Popup1 | ||
28 | * @param {*} title | ||
29 | * @param {*} editItem | ||
30 | * @param {*} data | ||
31 | * @param {*} formData | ||
32 | * @author: renchao | ||
33 | */ | ||
22 | const Popup1 = (title, editItem, data, formData) => { | 34 | const Popup1 = (title, editItem, data, formData) => { |
23 | // 如果组件已渲染,则返回即可 | 35 | // 如果组件已渲染,则返回即可 |
24 | if (popuping) { | 36 | if (popuping) { | ... | ... |
... | @@ -74,9 +74,17 @@ | ... | @@ -74,9 +74,17 @@ |
74 | }, 300) | 74 | }, 300) |
75 | }, | 75 | }, |
76 | methods: { | 76 | methods: { |
77 | /** | ||
78 | * @description: onCancel | ||
79 | * @author: renchao | ||
80 | */ | ||
77 | onCancel () { | 81 | onCancel () { |
78 | Popup1().close() | 82 | Popup1().close() |
79 | }, | 83 | }, |
84 | /** | ||
85 | * @description: onConfirm | ||
86 | * @author: renchao | ||
87 | */ | ||
80 | onConfirm () { | 88 | onConfirm () { |
81 | this.loading = true | 89 | this.loading = true |
82 | let res = new Promise((resolve, reject) => { | 90 | let res = new Promise((resolve, reject) => { |
... | @@ -87,9 +95,19 @@ | ... | @@ -87,9 +95,19 @@ |
87 | this.isShow = false | 95 | this.isShow = false |
88 | } | 96 | } |
89 | }, | 97 | }, |
98 | /** | ||
99 | * @description: loadingFn | ||
100 | * @param {*} e | ||
101 | * @author: renchao | ||
102 | */ | ||
90 | loadingFn (e) { //加载状态 | 103 | loadingFn (e) { //加载状态 |
91 | this.loading = e | 104 | this.loading = e |
92 | }, | 105 | }, |
106 | /** | ||
107 | * @description: loadViewFn | ||
108 | * @param {*} view | ||
109 | * @author: renchao | ||
110 | */ | ||
93 | loadViewFn (view) { | 111 | loadViewFn (view) { |
94 | return (r) => | 112 | return (r) => |
95 | require.ensure([], () => | 113 | require.ensure([], () => | ... | ... |
... | @@ -62,10 +62,14 @@ | ... | @@ -62,10 +62,14 @@ |
62 | } | 62 | } |
63 | }, | 63 | }, |
64 | mounted () { | 64 | mounted () { |
65 | this.initHandle() | 65 | this.initHandle() |
66 | }, | 66 | }, |
67 | methods: { | 67 | methods: { |
68 | // 初始化值 | 68 | // 初始化值 |
69 | /** | ||
70 | * @description: 初始化值 | ||
71 | * @author: renchao | ||
72 | */ | ||
69 | initHandle () { | 73 | initHandle () { |
70 | if (this.valueId && this.options.length!=0) { | 74 | if (this.valueId && this.options.length!=0) { |
71 | this.valueTitle = this.$refs.selectTree.getNode(this.valueId).data[ | 75 | this.valueTitle = this.$refs.selectTree.getNode(this.valueId).data[ |
... | @@ -77,6 +81,10 @@ | ... | @@ -77,6 +81,10 @@ |
77 | this.initScroll() | 81 | this.initScroll() |
78 | }, | 82 | }, |
79 | // 初始化滚动条 | 83 | // 初始化滚动条 |
84 | /** | ||
85 | * @description: 初始化滚动条 | ||
86 | * @author: renchao | ||
87 | */ | ||
80 | initScroll () { | 88 | initScroll () { |
81 | this.$nextTick(() => { | 89 | this.$nextTick(() => { |
82 | let scrollWrap = document.querySelectorAll( | 90 | let scrollWrap = document.querySelectorAll( |
... | @@ -91,6 +99,11 @@ | ... | @@ -91,6 +99,11 @@ |
91 | }) | 99 | }) |
92 | }, | 100 | }, |
93 | // 切换选项 | 101 | // 切换选项 |
102 | /** | ||
103 | * @description: 切换选项 | ||
104 | * @param {*} node | ||
105 | * @author: renchao | ||
106 | */ | ||
94 | handleNodeClick (node) { | 107 | handleNodeClick (node) { |
95 | this.valueId = node[this.props.value] | 108 | this.valueId = node[this.props.value] |
96 | this.valueTitle = node[this.props.label] | 109 | this.valueTitle = node[this.props.label] |
... | @@ -122,6 +135,10 @@ | ... | @@ -122,6 +135,10 @@ |
122 | // return temp | 135 | // return temp |
123 | // }, | 136 | // }, |
124 | // 清除选中 | 137 | // 清除选中 |
138 | /** | ||
139 | * @description: 清除选中 | ||
140 | * @author: renchao | ||
141 | */ | ||
125 | clearHandle () { | 142 | clearHandle () { |
126 | this.valueTitle = '' | 143 | this.valueTitle = '' |
127 | this.valueId = null | 144 | this.valueId = null |
... | @@ -130,10 +147,20 @@ | ... | @@ -130,10 +147,20 @@ |
130 | this.$emit('getValue', null) | 147 | this.$emit('getValue', null) |
131 | }, | 148 | }, |
132 | /* 清空选中样式 */ | 149 | /* 清空选中样式 */ |
150 | /** | ||
151 | * @description: 清空选中样式 | ||
152 | * @author: renchao | ||
153 | */ | ||
133 | clearSelected () { | 154 | clearSelected () { |
134 | let allNode = document.querySelectorAll('#tree-option .el-tree-node') | 155 | let allNode = document.querySelectorAll('#tree-option .el-tree-node') |
135 | allNode.forEach((element) => element.classList.remove('is-current')) | 156 | allNode.forEach((element) => element.classList.remove('is-current')) |
136 | }, | 157 | }, |
158 | /** | ||
159 | * @description: filterNode | ||
160 | * @param {*} value | ||
161 | * @param {*} data | ||
162 | * @author: renchao | ||
163 | */ | ||
137 | filterNode (value, data) { | 164 | filterNode (value, data) { |
138 | if (!value) return true | 165 | if (!value) return true |
139 | return data.name.indexOf(value) !== -1 | 166 | return data.name.indexOf(value) !== -1 |
... | @@ -181,4 +208,4 @@ | ... | @@ -181,4 +208,4 @@ |
181 | padding: 0 5px; | 208 | padding: 0 5px; |
182 | box-sizing: border-box; | 209 | box-sizing: border-box; |
183 | } | 210 | } |
184 | </style> | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
211 | </style> | ... | ... |
1 | export const theme = { | 1 | export const theme = { |
2 | /** | ||
3 | * @description: bind | ||
4 | * @param {*} el | ||
5 | * @param {*} binding | ||
6 | * @param {*} vnode | ||
7 | * @author: renchao | ||
8 | */ | ||
2 | bind: function (el, binding, vnode) { | 9 | bind: function (el, binding, vnode) { |
3 | setEleStyleColorAttribute(el, binding); | 10 | setEleStyleColorAttribute(el, binding); |
4 | }, | 11 | }, |
12 | /** | ||
13 | * @description: update | ||
14 | * @param {*} el | ||
15 | * @param {*} binding | ||
16 | * @param {*} vnode | ||
17 | * @author: renchao | ||
18 | */ | ||
5 | update: function (el, binding, vnode) { | 19 | update: function (el, binding, vnode) { |
6 | setEleStyleColorAttribute(el, binding); | 20 | setEleStyleColorAttribute(el, binding); |
7 | }, | 21 | }, |
22 | /** | ||
23 | * @description: componentUpdated | ||
24 | * @param {*} el | ||
25 | * @param {*} binding | ||
26 | * @param {*} vnode | ||
27 | * @author: renchao | ||
28 | */ | ||
8 | componentUpdated: function (el, binding, vnode) { | 29 | componentUpdated: function (el, binding, vnode) { |
9 | setEleStyleColorAttribute(el, binding); | 30 | setEleStyleColorAttribute(el, binding); |
10 | } | 31 | } |
11 | } | 32 | } |
12 | 33 | ||
34 | /** | ||
35 | * @description: setEleStyleColorAttribute | ||
36 | * @param {*} el | ||
37 | * @param {*} binding | ||
38 | * @author: renchao | ||
39 | */ | ||
13 | function setEleStyleColorAttribute (el, binding) { | 40 | function setEleStyleColorAttribute (el, binding) { |
14 | const { name, value, arg, expression, modifiers } = binding; | 41 | const { name, value, arg, expression, modifiers } = binding; |
15 | const { background, font, border } = modifiers; | 42 | const { background, font, border } = modifiers; |
16 | if (background) el.style['background-color'] = value; | 43 | if (background) el.style['background-color'] = value; |
17 | if (font) el.style.color = value; | 44 | if (font) el.style.color = value; |
18 | if (border) el.style['border-color'] = value; | 45 | if (border) el.style['border-color'] = value; |
19 | } | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
46 | } | ... | ... |
... | @@ -39,6 +39,10 @@ | ... | @@ -39,6 +39,10 @@ |
39 | this.getBreadcrumb() | 39 | this.getBreadcrumb() |
40 | }, | 40 | }, |
41 | methods: { | 41 | methods: { |
42 | /** | ||
43 | * @description: getBreadcrumb | ||
44 | * @author: renchao | ||
45 | */ | ||
42 | getBreadcrumb () { | 46 | getBreadcrumb () { |
43 | // only show routes with meta.title | 47 | // only show routes with meta.title |
44 | let matched = this.$route.matched.filter(item => item.meta && item.meta.title) | 48 | let matched = this.$route.matched.filter(item => item.meta && item.meta.title) |
... | @@ -50,6 +54,11 @@ | ... | @@ -50,6 +54,11 @@ |
50 | 54 | ||
51 | this.levelList = matched.filter(item => item.meta && item.meta.title && item.meta.breadcrumb !== false) | 55 | this.levelList = matched.filter(item => item.meta && item.meta.title && item.meta.breadcrumb !== false) |
52 | }, | 56 | }, |
57 | /** | ||
58 | * @description: isDashboard | ||
59 | * @param {*} route | ||
60 | * @author: renchao | ||
61 | */ | ||
53 | isDashboard (route) { | 62 | isDashboard (route) { |
54 | const name = route && route.name | 63 | const name = route && route.name |
55 | if (!name) { | 64 | if (!name) { |
... | @@ -57,11 +66,21 @@ | ... | @@ -57,11 +66,21 @@ |
57 | } | 66 | } |
58 | return name.trim().toLocaleLowerCase() === 'Dashboard'.toLocaleLowerCase() | 67 | return name.trim().toLocaleLowerCase() === 'Dashboard'.toLocaleLowerCase() |
59 | }, | 68 | }, |
69 | /** | ||
70 | * @description: pathCompile | ||
71 | * @param {*} path | ||
72 | * @author: renchao | ||
73 | */ | ||
60 | pathCompile (path) { | 74 | pathCompile (path) { |
61 | const { params } = this.$route | 75 | const { params } = this.$route |
62 | var toPath = pathToRegexp.compile(path) | 76 | var toPath = pathToRegexp.compile(path) |
63 | return toPath(params) | 77 | return toPath(params) |
64 | }, | 78 | }, |
79 | /** | ||
80 | * @description: handleLink | ||
81 | * @param {*} item | ||
82 | * @author: renchao | ||
83 | */ | ||
65 | handleLink (item) { | 84 | handleLink (item) { |
66 | const { redirect, path } = item | 85 | const { redirect, path } = item |
67 | if (redirect) { | 86 | if (redirect) { | ... | ... |
... | @@ -32,13 +32,26 @@ export default { | ... | @@ -32,13 +32,26 @@ export default { |
32 | }, | 32 | }, |
33 | }, | 33 | }, |
34 | methods: { | 34 | methods: { |
35 | /** | ||
36 | * @description: handleDataView | ||
37 | * @author: renchao | ||
38 | */ | ||
35 | handleDataView() { | 39 | handleDataView() { |
36 | const { href } = this.$router.resolve("/dataView"); | 40 | const { href } = this.$router.resolve("/dataView"); |
37 | window.open(href, "_blank"); | 41 | window.open(href, "_blank"); |
38 | }, | 42 | }, |
43 | /** | ||
44 | * @description: themeChange | ||
45 | * @param {*} val | ||
46 | * @author: renchao | ||
47 | */ | ||
39 | themeChange(val) { | 48 | themeChange(val) { |
40 | this.$store.dispatch("app/updateTheme", val); | 49 | this.$store.dispatch("app/updateTheme", val); |
41 | }, | 50 | }, |
51 | /** | ||
52 | * @description: onCancel | ||
53 | * @author: renchao | ||
54 | */ | ||
42 | onCancel() { | 55 | onCancel() { |
43 | axios | 56 | axios |
44 | .post(window._config.services.management + "/management/logout") | 57 | .post(window._config.services.management + "/management/logout") | ... | ... |
... | @@ -10,6 +10,10 @@ export default { | ... | @@ -10,6 +10,10 @@ export default { |
10 | this.fixBugIniOS() | 10 | this.fixBugIniOS() |
11 | }, | 11 | }, |
12 | methods: { | 12 | methods: { |
13 | /** | ||
14 | * @description: fixBugIniOS | ||
15 | * @author: renchao | ||
16 | */ | ||
13 | fixBugIniOS() { | 17 | fixBugIniOS() { |
14 | const $subMenu = this.$refs.subMenu | 18 | const $subMenu = this.$refs.subMenu |
15 | if ($subMenu) { | 19 | if ($subMenu) { | ... | ... |
... | @@ -26,6 +26,11 @@ export default { | ... | @@ -26,6 +26,11 @@ export default { |
26 | } | 26 | } |
27 | }, | 27 | }, |
28 | methods: { | 28 | methods: { |
29 | /** | ||
30 | * @description: linkProps | ||
31 | * @param {*} to | ||
32 | * @author: renchao | ||
33 | */ | ||
29 | linkProps(to) { | 34 | linkProps(to) { |
30 | if (this.isExternal) { | 35 | if (this.isExternal) { |
31 | return { | 36 | return { | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-06-08 14:01:11 | 4 | * @LastEditTime: 2023-06-08 14:01:11 |
5 | --> | 5 | --> |
... | @@ -58,6 +58,12 @@ | ... | @@ -58,6 +58,12 @@ |
58 | return {} | 58 | return {} |
59 | }, | 59 | }, |
60 | methods: { | 60 | methods: { |
61 | /** | ||
62 | * @description: hasOneShowingChild | ||
63 | * @param {*} children | ||
64 | * @param {*} parent | ||
65 | * @author: renchao | ||
66 | */ | ||
61 | hasOneShowingChild (children = [], parent) { | 67 | hasOneShowingChild (children = [], parent) { |
62 | const showingChildren = children.filter(item => { | 68 | const showingChildren = children.filter(item => { |
63 | if (item.hidden) { | 69 | if (item.hidden) { |
... | @@ -81,6 +87,11 @@ | ... | @@ -81,6 +87,11 @@ |
81 | 87 | ||
82 | return false | 88 | return false |
83 | }, | 89 | }, |
90 | /** | ||
91 | * @description: resolvePath | ||
92 | * @param {*} routePath | ||
93 | * @author: renchao | ||
94 | */ | ||
84 | resolvePath (routePath) { | 95 | resolvePath (routePath) { |
85 | if (isExternal(routePath)) { | 96 | if (isExternal(routePath)) { |
86 | return routePath | 97 | return routePath | ... | ... |
... | @@ -26,14 +26,28 @@ export default { | ... | @@ -26,14 +26,28 @@ export default { |
26 | this.scrollWrapper.removeEventListener('scroll', this.emitScroll) | 26 | this.scrollWrapper.removeEventListener('scroll', this.emitScroll) |
27 | }, | 27 | }, |
28 | methods: { | 28 | methods: { |
29 | /** | ||
30 | * @description: handleScroll | ||
31 | * @param {*} e | ||
32 | * @author: renchao | ||
33 | */ | ||
29 | handleScroll (e) { | 34 | handleScroll (e) { |
30 | const eventDelta = e.wheelDelta || -e.deltaY * 40 | 35 | const eventDelta = e.wheelDelta || -e.deltaY * 40 |
31 | const $scrollWrapper = this.scrollWrapper | 36 | const $scrollWrapper = this.scrollWrapper |
32 | $scrollWrapper.scrollLeft = $scrollWrapper.scrollLeft + eventDelta / 4 | 37 | $scrollWrapper.scrollLeft = $scrollWrapper.scrollLeft + eventDelta / 4 |
33 | }, | 38 | }, |
39 | /** | ||
40 | * @description: emitScroll | ||
41 | * @author: renchao | ||
42 | */ | ||
34 | emitScroll () { | 43 | emitScroll () { |
35 | this.$emit('scroll') | 44 | this.$emit('scroll') |
36 | }, | 45 | }, |
46 | /** | ||
47 | * @description: moveToTarget | ||
48 | * @param {*} currentTag | ||
49 | * @author: renchao | ||
50 | */ | ||
37 | moveToTarget (currentTag) { | 51 | moveToTarget (currentTag) { |
38 | const $container = this.$refs.scrollContainer.$el | 52 | const $container = this.$refs.scrollContainer.$el |
39 | const $containerWidth = $container.offsetWidth | 53 | const $containerWidth = $container.offsetWidth | ... | ... |
... | @@ -58,12 +58,28 @@ | ... | @@ -58,12 +58,28 @@ |
58 | this.addTags() | 58 | this.addTags() |
59 | }, | 59 | }, |
60 | methods: { | 60 | methods: { |
61 | /** | ||
62 | * @description: isActive | ||
63 | * @param {*} route | ||
64 | * @author: renchao | ||
65 | */ | ||
61 | isActive (route) { | 66 | isActive (route) { |
62 | return route.path === this.$route.path | 67 | return route.path === this.$route.path |
63 | }, | 68 | }, |
69 | /** | ||
70 | * @description: isAffix | ||
71 | * @param {*} tag | ||
72 | * @author: renchao | ||
73 | */ | ||
64 | isAffix (tag) { | 74 | isAffix (tag) { |
65 | return tag.meta && tag.meta.affix | 75 | return tag.meta && tag.meta.affix |
66 | }, | 76 | }, |
77 | /** | ||
78 | * @description: filterAffixTags | ||
79 | * @param {*} routes | ||
80 | * @param {*} basePath | ||
81 | * @author: renchao | ||
82 | */ | ||
67 | filterAffixTags (routes, basePath = '/') { | 83 | filterAffixTags (routes, basePath = '/') { |
68 | let tags = [] | 84 | let tags = [] |
69 | routes.forEach(route => { | 85 | routes.forEach(route => { |
... | @@ -85,6 +101,10 @@ | ... | @@ -85,6 +101,10 @@ |
85 | }) | 101 | }) |
86 | return tags | 102 | return tags |
87 | }, | 103 | }, |
104 | /** | ||
105 | * @description: initTags | ||
106 | * @author: renchao | ||
107 | */ | ||
88 | initTags () { | 108 | initTags () { |
89 | const affixTags = this.affixTags = this.filterAffixTags(this.routes) | 109 | const affixTags = this.affixTags = this.filterAffixTags(this.routes) |
90 | for (const tag of affixTags) { | 110 | for (const tag of affixTags) { |
... | @@ -94,6 +114,10 @@ | ... | @@ -94,6 +114,10 @@ |
94 | } | 114 | } |
95 | } | 115 | } |
96 | }, | 116 | }, |
117 | /** | ||
118 | * @description: addTags | ||
119 | * @author: renchao | ||
120 | */ | ||
97 | addTags () { | 121 | addTags () { |
98 | const { name } = this.$route | 122 | const { name } = this.$route |
99 | if (name) { | 123 | if (name) { |
... | @@ -101,6 +125,10 @@ | ... | @@ -101,6 +125,10 @@ |
101 | } | 125 | } |
102 | return false | 126 | return false |
103 | }, | 127 | }, |
128 | /** | ||
129 | * @description: moveToCurrentTag | ||
130 | * @author: renchao | ||
131 | */ | ||
104 | moveToCurrentTag () { | 132 | moveToCurrentTag () { |
105 | const tags = this.$refs.tag | 133 | const tags = this.$refs.tag |
106 | this.$nextTick(() => { | 134 | this.$nextTick(() => { |
... | @@ -116,6 +144,11 @@ | ... | @@ -116,6 +144,11 @@ |
116 | } | 144 | } |
117 | }) | 145 | }) |
118 | }, | 146 | }, |
147 | /** | ||
148 | * @description: refreshSelectedTag | ||
149 | * @param {*} view | ||
150 | * @author: renchao | ||
151 | */ | ||
119 | refreshSelectedTag (view) { | 152 | refreshSelectedTag (view) { |
120 | this.$store.dispatch('tagsView/delCachedView', view).then(() => { | 153 | this.$store.dispatch('tagsView/delCachedView', view).then(() => { |
121 | const { fullPath } = view | 154 | const { fullPath } = view |
... | @@ -126,6 +159,11 @@ | ... | @@ -126,6 +159,11 @@ |
126 | }) | 159 | }) |
127 | }) | 160 | }) |
128 | }, | 161 | }, |
162 | /** | ||
163 | * @description: closeSelectedTag | ||
164 | * @param {*} view | ||
165 | * @author: renchao | ||
166 | */ | ||
129 | closeSelectedTag (view) { | 167 | closeSelectedTag (view) { |
130 | this.$store.dispatch('tagsView/delView', view).then(({ visitedViews }) => { | 168 | this.$store.dispatch('tagsView/delView', view).then(({ visitedViews }) => { |
131 | if (this.isActive(view)) { | 169 | if (this.isActive(view)) { |
... | @@ -133,12 +171,21 @@ | ... | @@ -133,12 +171,21 @@ |
133 | } | 171 | } |
134 | }) | 172 | }) |
135 | }, | 173 | }, |
174 | /** | ||
175 | * @description: closeOthersTags | ||
176 | * @author: renchao | ||
177 | */ | ||
136 | closeOthersTags () { | 178 | closeOthersTags () { |
137 | this.$router.push(this.selectedTag) | 179 | this.$router.push(this.selectedTag) |
138 | this.$store.dispatch('tagsView/delOthersViews', this.selectedTag).then(() => { | 180 | this.$store.dispatch('tagsView/delOthersViews', this.selectedTag).then(() => { |
139 | this.moveToCurrentTag() | 181 | this.moveToCurrentTag() |
140 | }) | 182 | }) |
141 | }, | 183 | }, |
184 | /** | ||
185 | * @description: closeAllTags | ||
186 | * @param {*} view | ||
187 | * @author: renchao | ||
188 | */ | ||
142 | closeAllTags (view) { | 189 | closeAllTags (view) { |
143 | this.$store.dispatch('tagsView/delAllViews').then(({ visitedViews }) => { | 190 | this.$store.dispatch('tagsView/delAllViews').then(({ visitedViews }) => { |
144 | if (this.affixTags.some(tag => tag.path === view.path)) { | 191 | if (this.affixTags.some(tag => tag.path === view.path)) { |
... | @@ -147,6 +194,12 @@ | ... | @@ -147,6 +194,12 @@ |
147 | this.toLastView(visitedViews, view) | 194 | this.toLastView(visitedViews, view) |
148 | }) | 195 | }) |
149 | }, | 196 | }, |
197 | /** | ||
198 | * @description: toLastView | ||
199 | * @param {*} visitedViews | ||
200 | * @param {*} view | ||
201 | * @author: renchao | ||
202 | */ | ||
150 | toLastView (visitedViews, view) { | 203 | toLastView (visitedViews, view) { |
151 | const latestView = visitedViews.slice(-1)[0] | 204 | const latestView = visitedViews.slice(-1)[0] |
152 | if (latestView) { | 205 | if (latestView) { |
... | @@ -162,6 +215,12 @@ | ... | @@ -162,6 +215,12 @@ |
162 | } | 215 | } |
163 | } | 216 | } |
164 | }, | 217 | }, |
218 | /** | ||
219 | * @description: openMenu | ||
220 | * @param {*} tag | ||
221 | * @param {*} e | ||
222 | * @author: renchao | ||
223 | */ | ||
165 | openMenu (tag, e) { | 224 | openMenu (tag, e) { |
166 | const menuMinWidth = 105 | 225 | const menuMinWidth = 105 |
167 | const offsetLeft = this.$el.getBoundingClientRect().left - 210 // container margin left | 226 | const offsetLeft = this.$el.getBoundingClientRect().left - 210 // container margin left |
... | @@ -179,9 +238,17 @@ | ... | @@ -179,9 +238,17 @@ |
179 | this.visible = true | 238 | this.visible = true |
180 | this.selectedTag = tag | 239 | this.selectedTag = tag |
181 | }, | 240 | }, |
241 | /** | ||
242 | * @description: closeMenu | ||
243 | * @author: renchao | ||
244 | */ | ||
182 | closeMenu () { | 245 | closeMenu () { |
183 | this.visible = false | 246 | this.visible = false |
184 | }, | 247 | }, |
248 | /** | ||
249 | * @description: handleScroll | ||
250 | * @author: renchao | ||
251 | */ | ||
185 | handleScroll () { | 252 | handleScroll () { |
186 | this.closeMenu() | 253 | this.closeMenu() |
187 | } | 254 | } | ... | ... |
... | @@ -27,10 +27,19 @@ export default { | ... | @@ -27,10 +27,19 @@ export default { |
27 | methods: { | 27 | methods: { |
28 | // use $_ for mixins properties | 28 | // use $_ for mixins properties |
29 | // https://vuejs.org/v2/style-guide/index.html#Private-property-names-essential | 29 | // https://vuejs.org/v2/style-guide/index.html#Private-property-names-essential |
30 | /** | ||
31 | * @description: use $_ for mixins properties | ||
32 | * https://vuejs.org/v2/style-guide/index.html#Private-property-names-essential | ||
33 | * @author: renchao | ||
34 | */ | ||
30 | $_isMobile() { | 35 | $_isMobile() { |
31 | const rect = body.getBoundingClientRect() | 36 | const rect = body.getBoundingClientRect() |
32 | return rect.width - 1 < WIDTH | 37 | return rect.width - 1 < WIDTH |
33 | }, | 38 | }, |
39 | /** | ||
40 | * @description: $_resizeHandler | ||
41 | * @author: renchao | ||
42 | */ | ||
34 | $_resizeHandler() { | 43 | $_resizeHandler() { |
35 | if (!document.hidden) { | 44 | if (!document.hidden) { |
36 | const isMobile = this.$_isMobile() | 45 | const isMobile = this.$_isMobile() | ... | ... |
... | @@ -16,8 +16,16 @@ let mixin = { | ... | @@ -16,8 +16,16 @@ let mixin = { |
16 | this.featchData() | 16 | this.featchData() |
17 | }, | 17 | }, |
18 | methods: { | 18 | methods: { |
19 | /** | ||
20 | * @description: featchData | ||
21 | * @author: renchao | ||
22 | */ | ||
19 | featchData () { | 23 | featchData () { |
20 | }, | 24 | }, |
25 | /** | ||
26 | * @description: verificationForm | ||
27 | * @author: renchao | ||
28 | */ | ||
21 | verificationForm () { | 29 | verificationForm () { |
22 | return new Promise((resolve) => { | 30 | return new Promise((resolve) => { |
23 | this.$refs['formList'].validate((valid) => { | 31 | this.$refs['formList'].validate((valid) => { |
... | @@ -29,9 +37,17 @@ let mixin = { | ... | @@ -29,9 +37,17 @@ let mixin = { |
29 | }) | 37 | }) |
30 | }) | 38 | }) |
31 | }, | 39 | }, |
40 | /** | ||
41 | * @description: changeCertificate | ||
42 | * @author: renchao | ||
43 | */ | ||
32 | changeCertificate() { | 44 | changeCertificate() { |
33 | 45 | ||
34 | }, | 46 | }, |
47 | /** | ||
48 | * @description: featchRule | ||
49 | * @author: renchao | ||
50 | */ | ||
35 | async featchRule () { | 51 | async featchRule () { |
36 | try { | 52 | try { |
37 | let { result: { sysywsjbfieldlist } } = await ruleConfig.getRuleList(this.bsmYwsjb) | 53 | let { result: { sysywsjbfieldlist } } = await ruleConfig.getRuleList(this.bsmYwsjb) |
... | @@ -75,4 +91,4 @@ let mixin = { | ... | @@ -75,4 +91,4 @@ let mixin = { |
75 | } | 91 | } |
76 | } | 92 | } |
77 | } | 93 | } |
78 | export default mixin | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
94 | export default mixin | ... | ... |
... | @@ -21,13 +21,27 @@ let mixin = { | ... | @@ -21,13 +21,27 @@ let mixin = { |
21 | }, | 21 | }, |
22 | methods: { | 22 | methods: { |
23 | // 表格索引得问题 | 23 | // 表格索引得问题 |
24 | /** | ||
25 | * @description: 表格索引得问题 | ||
26 | * @param {*} index | ||
27 | * @author: renchao | ||
28 | */ | ||
24 | indexMethod (index) { | 29 | indexMethod (index) { |
25 | return index + 1 + (this.form.currentPage - 1) * this.formData.pageSize; | 30 | return index + 1 + (this.form.currentPage - 1) * this.formData.pageSize; |
26 | }, | 31 | }, |
32 | /** | ||
33 | * @description: handleSizeChange | ||
34 | * @param {*} val | ||
35 | * @author: renchao | ||
36 | */ | ||
27 | handleSizeChange (val) { | 37 | handleSizeChange (val) { |
28 | this.formData.pageSize = val | 38 | this.formData.pageSize = val |
29 | this.featchData() | 39 | this.featchData() |
30 | }, | 40 | }, |
41 | /** | ||
42 | * @description: handleSearch | ||
43 | * @author: renchao | ||
44 | */ | ||
31 | handleSearch () { | 45 | handleSearch () { |
32 | this.form.currentPage = 1 | 46 | this.form.currentPage = 1 |
33 | this.tableData.data = [] | 47 | this.tableData.data = [] |
... | @@ -38,15 +52,29 @@ let mixin = { | ... | @@ -38,15 +52,29 @@ let mixin = { |
38 | this.queryClick() | 52 | this.queryClick() |
39 | } | 53 | } |
40 | }, | 54 | }, |
55 | /** | ||
56 | * @description: handleCurrentChange | ||
57 | * @param {*} val | ||
58 | * @author: renchao | ||
59 | */ | ||
41 | handleCurrentChange (val) { | 60 | handleCurrentChange (val) { |
42 | this.form.currentPage = val | 61 | this.form.currentPage = val |
43 | this.featchData() | 62 | this.featchData() |
44 | }, | 63 | }, |
64 | /** | ||
65 | * @description: handleSubmit | ||
66 | * @author: renchao | ||
67 | */ | ||
45 | handleSubmit () { | 68 | handleSubmit () { |
46 | this.tableData.data = [] | 69 | this.tableData.data = [] |
47 | this.featchData() | 70 | this.featchData() |
48 | }, | 71 | }, |
49 | // 详情 | 72 | // 详情 |
73 | /** | ||
74 | * @description: 详情 | ||
75 | * @param {*} row | ||
76 | * @author: renchao | ||
77 | */ | ||
50 | handleEdit (row) { | 78 | handleEdit (row) { |
51 | this.$refs.editLog.isShow(row); | 79 | this.$refs.editLog.isShow(row); |
52 | if (row.rectypeName) { | 80 | if (row.rectypeName) { |
... | @@ -70,6 +98,10 @@ let mixin = { | ... | @@ -70,6 +98,10 @@ let mixin = { |
70 | } | 98 | } |
71 | }, | 99 | }, |
72 | // 重置表单 | 100 | // 重置表单 |
101 | /** | ||
102 | * @description: 重置表单 | ||
103 | * @author: renchao | ||
104 | */ | ||
73 | resetForm () { | 105 | resetForm () { |
74 | if (!this.form) return | 106 | if (!this.form) return |
75 | Object.keys(this.form).forEach((key) => { | 107 | Object.keys(this.form).forEach((key) => { | ... | ... |
... | @@ -15,6 +15,11 @@ const mutations = { | ... | @@ -15,6 +15,11 @@ const mutations = { |
15 | } | 15 | } |
16 | 16 | ||
17 | const actions = { | 17 | const actions = { |
18 | /** | ||
19 | * @description: generateDic | ||
20 | * @param {*} commit | ||
21 | * @author: renchao | ||
22 | */ | ||
18 | generateDic ({ commit }) { | 23 | generateDic ({ commit }) { |
19 | return new Promise(async (resolve) => { | 24 | return new Promise(async (resolve) => { |
20 | let { result: res } = await getAllDict() | 25 | let { result: res } = await getAllDict() |
... | @@ -22,6 +27,11 @@ const actions = { | ... | @@ -22,6 +27,11 @@ const actions = { |
22 | resolve(true) | 27 | resolve(true) |
23 | }) | 28 | }) |
24 | }, | 29 | }, |
30 | /** | ||
31 | * @description: resetdict | ||
32 | * @param {*} commit | ||
33 | * @author: renchao | ||
34 | */ | ||
25 | resetdict ({ commit }) { | 35 | resetdict ({ commit }) { |
26 | commit('RESET_DICT') | 36 | commit('RESET_DICT') |
27 | } | 37 | } | ... | ... |
... | @@ -25,6 +25,12 @@ const mutations = { | ... | @@ -25,6 +25,12 @@ const mutations = { |
25 | } | 25 | } |
26 | const actions = { | 26 | const actions = { |
27 | // 添加全部菜单 | 27 | // 添加全部菜单 |
28 | /** | ||
29 | * @description: 添加全部菜单 | ||
30 | * @param {*} commit | ||
31 | * @param {*} getMenuInfo | ||
32 | * @author: renchao | ||
33 | */ | ||
28 | generateRoutes ({ commit }, getMenuInfo) { | 34 | generateRoutes ({ commit }, getMenuInfo) { |
29 | let Layout = r => require.ensure([], () => r(require(`@/layout`))) | 35 | let Layout = r => require.ensure([], () => r(require(`@/layout`))) |
30 | function asyncRouter (routers) { | 36 | function asyncRouter (routers) { |
... | @@ -63,11 +69,22 @@ const actions = { | ... | @@ -63,11 +69,22 @@ const actions = { |
63 | }) | 69 | }) |
64 | }, | 70 | }, |
65 | // 重置路由 | 71 | // 重置路由 |
72 | /** | ||
73 | * @description: 重置路由 | ||
74 | * @param {*} commit | ||
75 | * @author: renchao | ||
76 | */ | ||
66 | resetRoutes ({ commit }) { | 77 | resetRoutes ({ commit }) { |
67 | commit('RESET_ROUTE') | 78 | commit('RESET_ROUTE') |
68 | } | 79 | } |
69 | } | 80 | } |
70 | // 树转数组 | 81 | // 树转数组 |
82 | /** | ||
83 | * @description: 树转数组 | ||
84 | * @param {*} root | ||
85 | * @param {*} fVisit | ||
86 | * @author: renchao | ||
87 | */ | ||
71 | function dfs (root, fVisit) { | 88 | function dfs (root, fVisit) { |
72 | let stack = Array.isArray(root) ? [...root] : [root]; | 89 | let stack = Array.isArray(root) ? [...root] : [root]; |
73 | while (stack.length) { | 90 | while (stack.length) { |
... | @@ -81,6 +98,12 @@ function dfs (root, fVisit) { | ... | @@ -81,6 +98,12 @@ function dfs (root, fVisit) { |
81 | } | 98 | } |
82 | // 数组转树 | 99 | // 数组转树 |
83 | //需要插入父节点id,pid为null或'',就是找root节点,然后root节点再去找自己的子节点 | 100 | //需要插入父节点id,pid为null或'',就是找root节点,然后root节点再去找自己的子节点 |
101 | /** | ||
102 | * @description: 数组转树 | ||
103 | * @param {*} data | ||
104 | * @param {*} pid | ||
105 | * @author: renchao | ||
106 | */ | ||
84 | function array2Tree (data, pid) { | 107 | function array2Tree (data, pid) { |
85 | let res = []; | 108 | let res = []; |
86 | data.forEach(item => { | 109 | data.forEach(item => { | ... | ... |
1 | /* | 1 | /* |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-03-07 09:38:47 | 4 | * @LastEditTime: 2023-03-07 09:38:47 |
5 | */ | 5 | */ |
... | @@ -20,6 +20,11 @@ const mutations = { | ... | @@ -20,6 +20,11 @@ const mutations = { |
20 | }; | 20 | }; |
21 | 21 | ||
22 | const actions = { | 22 | const actions = { |
23 | /** | ||
24 | * @description: getUserInfo | ||
25 | * @param {*} commit | ||
26 | * @author: renchao | ||
27 | */ | ||
23 | getUserInfo ({ commit }) { | 28 | getUserInfo ({ commit }) { |
24 | return new Promise(async (resolve) => { | 29 | return new Promise(async (resolve) => { |
25 | let { result: res } = await getUserInfo(); | 30 | let { result: res } = await getUserInfo(); |
... | @@ -27,6 +32,11 @@ const actions = { | ... | @@ -27,6 +32,11 @@ const actions = { |
27 | resolve(true); | 32 | resolve(true); |
28 | }); | 33 | }); |
29 | }, | 34 | }, |
35 | /** | ||
36 | * @description: resetState | ||
37 | * @param {*} commit | ||
38 | * @author: renchao | ||
39 | */ | ||
30 | resetState ({ commit }) { | 40 | resetState ({ commit }) { |
31 | commit("RESET_USER"); | 41 | commit("RESET_USER"); |
32 | }, | 42 | }, | ... | ... |
... | @@ -3,6 +3,10 @@ | ... | @@ -3,6 +3,10 @@ |
3 | var CreatedOKLodopObject, CLodopIsLocal, CLodopJsState; | 3 | var CreatedOKLodopObject, CLodopIsLocal, CLodopJsState; |
4 | 4 | ||
5 | //==判断是否需要CLodop(那些不支持插件的浏览器):== | 5 | //==判断是否需要CLodop(那些不支持插件的浏览器):== |
6 | /** | ||
7 | * @description: ==判断是否需要CLodop(那些不支持插件的浏览器):== | ||
8 | * @author: renchao | ||
9 | */ | ||
6 | function needCLodop () { | 10 | function needCLodop () { |
7 | try { | 11 | try { |
8 | var ua = navigator.userAgent; | 12 | var ua = navigator.userAgent; |
... | @@ -45,6 +49,10 @@ function needCLodop () { | ... | @@ -45,6 +49,10 @@ function needCLodop () { |
45 | } | 49 | } |
46 | 50 | ||
47 | //==加载引用CLodop的主JS,用双端口8000和18000(以防其中一个被占):== | 51 | //==加载引用CLodop的主JS,用双端口8000和18000(以防其中一个被占):== |
52 | /** | ||
53 | * @description: ==加载引用CLodop的主JS,用双端口8000和18000(以防其中一个被占):== | ||
54 | * @author: renchao | ||
55 | */ | ||
48 | function loadCLodop () { | 56 | function loadCLodop () { |
49 | if (CLodopJsState == "loading" || CLodopJsState == "complete") return; | 57 | if (CLodopJsState == "loading" || CLodopJsState == "complete") return; |
50 | CLodopJsState = "loading"; | 58 | CLodopJsState = "loading"; |
... | @@ -63,7 +71,12 @@ function loadCLodop () { | ... | @@ -63,7 +71,12 @@ function loadCLodop () { |
63 | if (needCLodop()) { loadCLodop(); }//加载 | 71 | if (needCLodop()) { loadCLodop(); }//加载 |
64 | 72 | ||
65 | //==获取LODOP对象主过程,判断是否安装、需否升级:== | 73 | //==获取LODOP对象主过程,判断是否安装、需否升级:== |
66 | 74 | /** | |
75 | * @description: ==获取LODOP对象主过程,判断是否安装、需否升级:== | ||
76 | * @param {*} oOBJECT | ||
77 | * @param {*} oEMBED | ||
78 | * @author: renchao | ||
79 | */ | ||
67 | export function getLodop (oOBJECT, oEMBED) { | 80 | export function getLodop (oOBJECT, oEMBED) { |
68 | var strHtmInstall = "<br><font color='#FF00FF'>打印控件未安装!点击这里<a href='install_lodop32.zip' target='_self'>执行安装</a>,安装后请刷新页面或重新进入。</font>"; | 81 | var strHtmInstall = "<br><font color='#FF00FF'>打印控件未安装!点击这里<a href='install_lodop32.zip' target='_self'>执行安装</a>,安装后请刷新页面或重新进入。</font>"; |
69 | var strHtmUpdate = "<br><font color='#FF00FF'>打印控件需要升级!点击这里<a href='install_lodop32.zip' target='_self'>执行升级</a>,升级后请重新进入。</font>"; | 82 | var strHtmUpdate = "<br><font color='#FF00FF'>打印控件需要升级!点击这里<a href='install_lodop32.zip' target='_self'>执行升级</a>,升级后请重新进入。</font>"; | ... | ... |
1 | /* | 1 | /* |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-05-11 16:31:01 | 4 | * @LastEditTime: 2023-05-11 16:31:01 |
5 | */ | 5 | */ |
... | @@ -7,6 +7,11 @@ | ... | @@ -7,6 +7,11 @@ |
7 | var Layout; | 7 | var Layout; |
8 | let ApiUrl = localStorage.getItem('ApiUrl') | 8 | let ApiUrl = localStorage.getItem('ApiUrl') |
9 | Layout = r => require.ensure([], () => r(require(`@/layout1`))) | 9 | Layout = r => require.ensure([], () => r(require(`@/layout1`))) |
10 | /** | ||
11 | * @description: filterAsyncRouter | ||
12 | * @param {*} routers | ||
13 | * @author: renchao | ||
14 | */ | ||
10 | export default function filterAsyncRouter (routers) { | 15 | export default function filterAsyncRouter (routers) { |
11 | routers.forEach(item => { | 16 | routers.forEach(item => { |
12 | if (!item.children) { | 17 | if (!item.children) { |
... | @@ -27,6 +32,11 @@ export default function filterAsyncRouter (routers) { | ... | @@ -27,6 +32,11 @@ export default function filterAsyncRouter (routers) { |
27 | }) | 32 | }) |
28 | return routers | 33 | return routers |
29 | } | 34 | } |
35 | /** | ||
36 | * @description: loadView | ||
37 | * @param {*} view | ||
38 | * @author: renchao | ||
39 | */ | ||
30 | function loadView (view) { | 40 | function loadView (view) { |
31 | return r => require.ensure([], () => r(require(`@/views${view}.vue`))) | 41 | return r => require.ensure([], () => r(require(`@/views${view}.vue`))) |
32 | } | 42 | } | ... | ... |
... | @@ -28,6 +28,10 @@ export default { | ... | @@ -28,6 +28,10 @@ export default { |
28 | window.removeEventListener('resize', this.resize) | 28 | window.removeEventListener('resize', this.resize) |
29 | }, | 29 | }, |
30 | methods: { | 30 | methods: { |
31 | /** | ||
32 | * @description: calcRate | ||
33 | * @author: renchao | ||
34 | */ | ||
31 | calcRate () { | 35 | calcRate () { |
32 | const appRef = this.$refs["appRef"] | 36 | const appRef = this.$refs["appRef"] |
33 | if (!appRef) return | 37 | if (!appRef) return |
... | @@ -47,6 +51,10 @@ export default { | ... | @@ -47,6 +51,10 @@ export default { |
47 | } | 51 | } |
48 | } | 52 | } |
49 | }, | 53 | }, |
54 | /** | ||
55 | * @description: resize | ||
56 | * @author: renchao | ||
57 | */ | ||
50 | resize () { | 58 | resize () { |
51 | clearTimeout(this.drawTiming) | 59 | clearTimeout(this.drawTiming) |
52 | this.drawTiming = setTimeout(() => { | 60 | this.drawTiming = setTimeout(() => { | ... | ... |
... | @@ -2,17 +2,33 @@ import store from '@/store' | ... | @@ -2,17 +2,33 @@ import store from '@/store' |
2 | // table 内部过滤器 由于过滤器只能在模板中使用 所以 就有了 jsx内部方法过滤器 | 2 | // table 内部过滤器 由于过滤器只能在模板中使用 所以 就有了 jsx内部方法过滤器 |
3 | export default class filter { | 3 | export default class filter { |
4 | // 业务来源 | 4 | // 业务来源 |
5 | /** | ||
6 | * @description: 业务来源 | ||
7 | * @param {*} val | ||
8 | * @author: renchao | ||
9 | */ | ||
5 | busSource(val) { | 10 | busSource(val) { |
6 | let status = { 1: '办事大厅', 2: '微信小程序' } | 11 | let status = { 1: '办事大厅', 2: '微信小程序' } |
7 | return status[val] | 12 | return status[val] |
8 | } | 13 | } |
9 | 14 | ||
10 | //申请分类(1:正常申请,2:一并申请,3:补录申请) | 15 | //申请分类(1:正常申请,2:一并申请,3:补录申请) |
16 | /** | ||
17 | * @description: 申请分类(1:正常申请,2:一并申请,3:补录申请) | ||
18 | * @param {*} val | ||
19 | * @author: renchao | ||
20 | */ | ||
11 | sqfls(val) { | 21 | sqfls(val) { |
12 | let status = { 1: '正常申请', 2: '一并申请', 3: '补录申请' } | 22 | let status = { 1: '正常申请', 2: '一并申请', 3: '补录申请' } |
13 | return status[val] | 23 | return status[val] |
14 | } | 24 | } |
15 | // 字典 | 25 | // 字典 |
26 | /** | ||
27 | * @description: 字典 | ||
28 | * @param {*} val | ||
29 | * @param {*} code | ||
30 | * @author: renchao | ||
31 | */ | ||
16 | dicStatus(val, code) { | 32 | dicStatus(val, code) { |
17 | let data = store.getters.dicData[code], | 33 | let data = store.getters.dicData[code], |
18 | name = '' | 34 | name = '' |
... | @@ -25,6 +41,11 @@ export default class filter { | ... | @@ -25,6 +41,11 @@ export default class filter { |
25 | return name | 41 | return name |
26 | } | 42 | } |
27 | } | 43 | } |
44 | /** | ||
45 | * @description: stateStatus | ||
46 | * @param {*} val | ||
47 | * @author: renchao | ||
48 | */ | ||
28 | stateStatus(val) { | 49 | stateStatus(val) { |
29 | let index = val + 1; | 50 | let index = val + 1; |
30 | // -1 : 不存在 ,0 : 待激活,1:正常,2:暂停,3 : 出错, 4:阻塞 | 51 | // -1 : 不存在 ,0 : 待激活,1:正常,2:暂停,3 : 出错, 4:阻塞 | ... | ... |
1 | /* | 1 | /* |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-03-16 13:31:27 | 4 | * @LastEditTime: 2023-03-16 13:31:27 |
5 | */ | 5 | */ |
... | @@ -7,6 +7,11 @@ | ... | @@ -7,6 +7,11 @@ |
7 | import Vue from 'vue' | 7 | import Vue from 'vue' |
8 | const title = Vue.prototype.BASE_API.TITLE | 8 | const title = Vue.prototype.BASE_API.TITLE |
9 | 9 | ||
10 | /** | ||
11 | * @description: getPageTitle | ||
12 | * @param {*} pageTitle | ||
13 | * @author: renchao | ||
14 | */ | ||
10 | export default function getPageTitle (pageTitle) { | 15 | export default function getPageTitle (pageTitle) { |
11 | if (pageTitle) { | 16 | if (pageTitle) { |
12 | return `${pageTitle} - ${title}` | 17 | return `${pageTitle} - ${title}` | ... | ... |
1 | /** | 1 | /** |
2 | * @description: debounce | ||
2 | * @param {Function} fn 防抖函数 | 3 | * @param {Function} fn 防抖函数 |
3 | * @param {Number} delay 延迟时间 | 4 | * @param {Number} delay 延迟时间 |
5 | * @author: renchao | ||
4 | */ | 6 | */ |
5 | export function debounce(fn, delay) { | 7 | export function debounce(fn, delay) { |
6 | var timer; | 8 | var timer; |
... | @@ -15,8 +17,10 @@ export function debounce(fn, delay) { | ... | @@ -15,8 +17,10 @@ export function debounce(fn, delay) { |
15 | } | 17 | } |
16 | 18 | ||
17 | /** | 19 | /** |
20 | * @description: formatTime | ||
18 | * @param {date} time 需要转换的时间 | 21 | * @param {date} time 需要转换的时间 |
19 | * @param {String} fmt 需要转换的格式 如 yyyy-MM-dd、yyyy-MM-dd HH:mm:ss | 22 | * @param {String} fmt 需要转换的格式 如 yyyy-MM-dd、yyyy-MM-dd HH:mm:ss |
23 | * @author: renchao | ||
20 | */ | 24 | */ |
21 | export function formatTime(time, fmt) { | 25 | export function formatTime(time, fmt) { |
22 | if (!time) return ''; | 26 | if (!time) return ''; | ... | ... |
... | @@ -18,23 +18,41 @@ export default { | ... | @@ -18,23 +18,41 @@ export default { |
18 | } | 18 | } |
19 | }, | 19 | }, |
20 | methods: { | 20 | methods: { |
21 | /** | ||
22 | * @description: handleSizeChange | ||
23 | * @param {*} val | ||
24 | * @author: renchao | ||
25 | */ | ||
21 | handleSizeChange (val) { | 26 | handleSizeChange (val) { |
22 | this.pageData.currentPage = 1 | 27 | this.pageData.currentPage = 1 |
23 | this.pageData.pageSize = val | 28 | this.pageData.pageSize = val |
24 | this.queryClick() | 29 | this.queryClick() |
25 | }, | 30 | }, |
31 | /** | ||
32 | * @description: handleCurrentChange | ||
33 | * @param {*} val | ||
34 | * @author: renchao | ||
35 | */ | ||
26 | handleCurrentChange (val) { | 36 | handleCurrentChange (val) { |
27 | this.pageData.currentPage = val | 37 | this.pageData.currentPage = val |
28 | if (this.queryClick) { | 38 | if (this.queryClick) { |
29 | this.queryClick() | 39 | this.queryClick() |
30 | } | 40 | } |
31 | }, | 41 | }, |
42 | /** | ||
43 | * @description: handleDel | ||
44 | * @author: renchao | ||
45 | */ | ||
32 | handleDel () { | 46 | handleDel () { |
33 | let deleteAfterPage = Math.ceil((this.tableData.total - 1) / this.pageData.pageSize) | 47 | let deleteAfterPage = Math.ceil((this.tableData.total - 1) / this.pageData.pageSize) |
34 | let currentPage = this.pageData.currentPage > deleteAfterPage ? deleteAfterPage : this.pageData.currentPage | 48 | let currentPage = this.pageData.currentPage > deleteAfterPage ? deleteAfterPage : this.pageData.currentPage |
35 | this.pageData.currentPage = currentPage < 1 ? 1 : currentPage | 49 | this.pageData.currentPage = currentPage < 1 ? 1 : currentPage |
36 | }, | 50 | }, |
37 | // 重置表单 | 51 | // 重置表单 |
52 | /** | ||
53 | * @description: 重置表单 | ||
54 | * @author: renchao | ||
55 | */ | ||
38 | resetForm () { | 56 | resetForm () { |
39 | if (!this.form) return | 57 | if (!this.form) return |
40 | Object.keys(this.form).forEach((key) => { | 58 | Object.keys(this.form).forEach((key) => { | ... | ... |
1 | /* | ||
2 | * @Description: | ||
3 | * @Autor: renchao | ||
4 | * @LastEditTime: 2023-05-11 16:31:01 | ||
5 | */ | ||
1 | import { Message } from "element-ui"; | 6 | import { Message } from "element-ui"; |
7 | /** | ||
8 | * @description: removeTreeListItem | ||
9 | * @param {*} treeList | ||
10 | * @param {*} dictId | ||
11 | * @param {*} idName | ||
12 | * @author: renchao | ||
13 | */ | ||
2 | export function removeTreeListItem (treeList, dictId, idName = 'dictid') { | 14 | export function removeTreeListItem (treeList, dictId, idName = 'dictid') { |
3 | if (!treeList || !treeList.length) { | 15 | if (!treeList || !treeList.length) { |
4 | return | 16 | return |
... | @@ -12,6 +24,12 @@ export function removeTreeListItem (treeList, dictId, idName = 'dictid') { | ... | @@ -12,6 +24,12 @@ export function removeTreeListItem (treeList, dictId, idName = 'dictid') { |
12 | } | 24 | } |
13 | } | 25 | } |
14 | // 创造id | 26 | // 创造id |
27 | /** | ||
28 | * @description: 创造id | ||
29 | * @param {*} len | ||
30 | * @param {*} radix | ||
31 | * @author: renchao | ||
32 | */ | ||
15 | export function getUuid (len, radix) { | 33 | export function getUuid (len, radix) { |
16 | var chars = "0123456789abcdefghijklmnopqrstuvwxyz".split( | 34 | var chars = "0123456789abcdefghijklmnopqrstuvwxyz".split( |
17 | "" | 35 | "" |
... | @@ -34,6 +52,11 @@ export function getUuid (len, radix) { | ... | @@ -34,6 +52,11 @@ export function getUuid (len, radix) { |
34 | } | 52 | } |
35 | return uuid.join(""); | 53 | return uuid.join(""); |
36 | } | 54 | } |
55 | /** | ||
56 | * @description: judgeSort | ||
57 | * @param {*} arr | ||
58 | * @author: renchao | ||
59 | */ | ||
37 | export function judgeSort (arr) { | 60 | export function judgeSort (arr) { |
38 | if (arr.length) { | 61 | if (arr.length) { |
39 | for (let i in arr) { | 62 | for (let i in arr) { |
... | @@ -47,6 +70,13 @@ export function judgeSort (arr) { | ... | @@ -47,6 +70,13 @@ export function judgeSort (arr) { |
47 | return arr | 70 | return arr |
48 | } | 71 | } |
49 | // 上下移动 | 72 | // 上下移动 |
73 | /** | ||
74 | * @description: 上下移动 | ||
75 | * @param {*} bsmDict | ||
76 | * @param {*} operate | ||
77 | * @param {*} data | ||
78 | * @author: renchao | ||
79 | */ | ||
50 | export function realMove (bsmDict, operate, data) { | 80 | export function realMove (bsmDict, operate, data) { |
51 | function changeSort (arr, bsmDict) { | 81 | function changeSort (arr, bsmDict) { |
52 | if (arr.length) { | 82 | if (arr.length) { |
... | @@ -72,6 +102,12 @@ export function realMove (bsmDict, operate, data) { | ... | @@ -72,6 +102,12 @@ export function realMove (bsmDict, operate, data) { |
72 | data = judgeSort(changeSort(data, bsmDict)); | 102 | data = judgeSort(changeSort(data, bsmDict)); |
73 | } | 103 | } |
74 | // 获取所有父节点 | 104 | // 获取所有父节点 |
105 | /** | ||
106 | * @description: 获取所有父节点 | ||
107 | * @param {*} treeData | ||
108 | * @param {*} bsmDict | ||
109 | * @author: renchao | ||
110 | */ | ||
75 | export function findParents (treeData, bsmDict) { | 111 | export function findParents (treeData, bsmDict) { |
76 | if (treeData.length == 0) return | 112 | if (treeData.length == 0) return |
77 | for (let i = 0; i < treeData.length; i++) { | 113 | for (let i = 0; i < treeData.length; i++) { |
... | @@ -88,6 +124,12 @@ export function findParents (treeData, bsmDict) { | ... | @@ -88,6 +124,12 @@ export function findParents (treeData, bsmDict) { |
88 | } | 124 | } |
89 | } | 125 | } |
90 | // 上移下移 | 126 | // 上移下移 |
127 | /** | ||
128 | * @description: 上移下移 | ||
129 | * @param {*} index | ||
130 | * @param {*} data | ||
131 | * @author: renchao | ||
132 | */ | ||
91 | export function upward (index, data) { | 133 | export function upward (index, data) { |
92 | if (index > 0) { | 134 | if (index > 0) { |
93 | let upData = data[index - 1]; | 135 | let upData = data[index - 1]; |
... | @@ -99,6 +141,12 @@ export function upward (index, data) { | ... | @@ -99,6 +141,12 @@ export function upward (index, data) { |
99 | }); | 141 | }); |
100 | } | 142 | } |
101 | } | 143 | } |
144 | /** | ||
145 | * @description: down | ||
146 | * @param {*} index | ||
147 | * @param {*} data | ||
148 | * @author: renchao | ||
149 | */ | ||
102 | export function down (index, data) { | 150 | export function down (index, data) { |
103 | if ((index + 1) == data.length) { | 151 | if ((index + 1) == data.length) { |
104 | Message({ | 152 | Message({ |
... | @@ -111,6 +159,12 @@ export function down (index, data) { | ... | @@ -111,6 +159,12 @@ export function down (index, data) { |
111 | } | 159 | } |
112 | } | 160 | } |
113 | 161 | ||
162 | /** | ||
163 | * @description: timeFormat | ||
164 | * @param {*} date | ||
165 | * @param {*} end | ||
166 | * @author: renchao | ||
167 | */ | ||
114 | export function timeFormat (date, end) { | 168 | export function timeFormat (date, end) { |
115 | if (!date || typeof (date) === "string") { | 169 | if (!date || typeof (date) === "string") { |
116 | this.error("参数异常,请检查..."); | 170 | this.error("参数异常,请检查..."); |
... | @@ -126,6 +180,11 @@ export function timeFormat (date, end) { | ... | @@ -126,6 +180,11 @@ export function timeFormat (date, end) { |
126 | return y + "-" + m + "-" + d + ' 00:00:00'; | 180 | return y + "-" + m + "-" + d + ' 00:00:00'; |
127 | } | 181 | } |
128 | } | 182 | } |
183 | /** | ||
184 | * @description: getFirstDayOfSeason | ||
185 | * @param {*} d | ||
186 | * @author: renchao | ||
187 | */ | ||
129 | export function getFirstDayOfSeason (d) { | 188 | export function getFirstDayOfSeason (d) { |
130 | let date = d || new Date() | 189 | let date = d || new Date() |
131 | var month = date.getMonth(); | 190 | var month = date.getMonth(); | ... | ... |
1 | /* | ||
2 | * @Description: | ||
3 | * @Autor: renchao | ||
4 | * @LastEditTime: 2023-05-11 16:31:01 | ||
5 | */ | ||
1 | import Popup from '@/components/Popup/index' | 6 | import Popup from '@/components/Popup/index' |
7 | /** | ||
8 | * @description: popupDialog | ||
9 | * @param {*} title | ||
10 | * @param {*} url | ||
11 | * @param {*} params | ||
12 | * @param {*} width | ||
13 | * @param {*} height | ||
14 | * @param {*} btnShow | ||
15 | * @param {*} callback | ||
16 | * @author: renchao | ||
17 | */ | ||
2 | export function popupDialog (title, url, params, width = '75%', height, btnShow = false, callback) { | 18 | export function popupDialog (title, url, params, width = '75%', height, btnShow = false, callback) { |
3 | // Popup.install | 19 | // Popup.install |
4 | Popup(title, url, { | 20 | Popup(title, url, { |
... | @@ -15,6 +31,10 @@ export function popupDialog (title, url, params, width = '75%', height, btnShow | ... | @@ -15,6 +31,10 @@ export function popupDialog (title, url, params, width = '75%', height, btnShow |
15 | }) | 31 | }) |
16 | } | 32 | } |
17 | 33 | ||
34 | /** | ||
35 | * @description: popupCacel | ||
36 | * @author: renchao | ||
37 | */ | ||
18 | export function popupCacel () { | 38 | export function popupCacel () { |
19 | Popup1().close() | 39 | Popup1().close() |
20 | } | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
40 | } | ... | ... |
1 | /** | ||
2 | * @description: deleteDomStr | ||
3 | * @author: renchao | ||
4 | */ | ||
1 | const deleteDomStr = content => { | 5 | const deleteDomStr = content => { |
2 | return `<div class="customer-message-wrapper"><h5 class="title">您确认要执行该操作用于以下信息:</h5><p class="content">${content}</p><p class="result">执行后,数据将<span >无法恢复</span></p></div>` | 6 | return `<div class="customer-message-wrapper"><h5 class="title">您确认要执行该操作用于以下信息:</h5><p class="content">${content}</p><p class="result">执行后,数据将<span >无法恢复</span></p></div>` |
3 | } | 7 | } | ... | ... |
... | @@ -95,6 +95,11 @@ service.interceptors.response.use( | ... | @@ -95,6 +95,11 @@ service.interceptors.response.use( |
95 | } | 95 | } |
96 | ) | 96 | ) |
97 | //对错误信息的处理函数 | 97 | //对错误信息的处理函数 |
98 | /** | ||
99 | * @description: 对错误信息的处理函数 | ||
100 | * @param {*} errMes | ||
101 | * @author: renchao | ||
102 | */ | ||
98 | function handleErrorData (errMes) { | 103 | function handleErrorData (errMes) { |
99 | if (errMes.message) { | 104 | if (errMes.message) { |
100 | Message.error(errMes.message); | 105 | Message.error(errMes.message); | ... | ... |
1 | /** | ||
2 | * @description: deleteDomStr | ||
3 | * @author: renchao | ||
4 | */ | ||
1 | import Loading from '@/components/Loading/index.js'; | 5 | import Loading from '@/components/Loading/index.js'; |
2 | // 定义 loading | 6 | // 定义 loading |
3 | let loading | 7 | let loading |
4 | 8 | ||
5 | // loading开始 方法 | 9 | // loading开始 方法 |
10 | /** | ||
11 | * @description: loading开始 方法 | ||
12 | * @param {*} loadingText | ||
13 | * @author: renchao | ||
14 | */ | ||
6 | function startLoading (loadingText = '正在加载中...') { | 15 | function startLoading (loadingText = '正在加载中...') { |
7 | loading = Loading.service({ | 16 | loading = Loading.service({ |
8 | text: loadingText, | 17 | text: loadingText, |
... | @@ -13,6 +22,10 @@ function startLoading (loadingText = '正在加载中...') { | ... | @@ -13,6 +22,10 @@ function startLoading (loadingText = '正在加载中...') { |
13 | } | 22 | } |
14 | 23 | ||
15 | // loading结束 方法 | 24 | // loading结束 方法 |
25 | /** | ||
26 | * @description: loading开始 方法 | ||
27 | * @author: renchao | ||
28 | */ | ||
16 | function endLoading () { | 29 | function endLoading () { |
17 | loading.close() | 30 | loading.close() |
18 | } | 31 | } |
... | @@ -23,6 +36,13 @@ let loadingCount = 0 | ... | @@ -23,6 +36,13 @@ let loadingCount = 0 |
23 | * 调用一次startLoadingAddCount() 方法 开启Loading 并 loadingCount + 1 | 36 | * 调用一次startLoadingAddCount() 方法 开启Loading 并 loadingCount + 1 |
24 | * 调用一次endLoadingSubCount() 方法 loadingCount - 1 直到为0 关闭loading | 37 | * 调用一次endLoadingSubCount() 方法 loadingCount - 1 直到为0 关闭loading |
25 | */ | 38 | */ |
39 | /** | ||
40 | * @description: 调用一次startLoadingAddCount() 方法 开启Loading 并 loadingCount + 1 | ||
41 | * 调用一次endLoadingSubCount() 方法 loadingCount - 1 直到为0 关闭loading | ||
42 | * @param {*} LoadingText | ||
43 | * @param {*} target | ||
44 | * @author: renchao | ||
45 | */ | ||
26 | export function startLoadingAddCount (LoadingText, target) { | 46 | export function startLoadingAddCount (LoadingText, target) { |
27 | if (loadingCount === 0) { | 47 | if (loadingCount === 0) { |
28 | startLoading(LoadingText, target) | 48 | startLoading(LoadingText, target) |
... | @@ -30,9 +50,13 @@ export function startLoadingAddCount (LoadingText, target) { | ... | @@ -30,9 +50,13 @@ export function startLoadingAddCount (LoadingText, target) { |
30 | loadingCount++ | 50 | loadingCount++ |
31 | } | 51 | } |
32 | 52 | ||
53 | /** | ||
54 | * @description: endLoadingSubCount | ||
55 | * @author: renchao | ||
56 | */ | ||
33 | export function endLoadingSubCount () { | 57 | export function endLoadingSubCount () { |
34 | loadingCount-- | 58 | loadingCount-- |
35 | if (loadingCount === 0) { | 59 | if (loadingCount === 0) { |
36 | endLoading() | 60 | endLoading() |
37 | } | 61 | } |
38 | } | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
62 | } | ... | ... |
1 | /** | ||
2 | * @description: deleteDomStr | ||
3 | * @author: renchao | ||
4 | */ | ||
1 | import Vue from 'vue' | 5 | import Vue from 'vue' |
2 | 6 | ||
3 | // 下载,导出 | 7 | // 下载,导出 |
8 | /** | ||
9 | * @description: 下载,导出 | ||
10 | * @param {*} name | ||
11 | * @param {*} href | ||
12 | * @author: renchao | ||
13 | */ | ||
4 | Vue.prototype.$download = function (name, href) { | 14 | Vue.prototype.$download = function (name, href) { |
5 | var a = document.createElement('a') // 创建a标签 | 15 | var a = document.createElement('a') // 创建a标签 |
6 | var e = document.createEvent('MouseEvents') // 创建鼠标事件对象 | 16 | var e = document.createEvent('MouseEvents') // 创建鼠标事件对象 |
... | @@ -10,6 +20,12 @@ Vue.prototype.$download = function (name, href) { | ... | @@ -10,6 +20,12 @@ Vue.prototype.$download = function (name, href) { |
10 | a.dispatchEvent(e) // 给指定的元素,执行事件click事件 | 20 | a.dispatchEvent(e) // 给指定的元素,执行事件click事件 |
11 | } | 21 | } |
12 | // 导出json文件 | 22 | // 导出json文件 |
23 | /** | ||
24 | * @description: 导出json文件 | ||
25 | * @param {*} data | ||
26 | * @param {*} name | ||
27 | * @author: renchao | ||
28 | */ | ||
13 | Vue.prototype.$downloadJson = function (data, name) { | 29 | Vue.prototype.$downloadJson = function (data, name) { |
14 | // 1 生成文件的 blob 对象 | 30 | // 1 生成文件的 blob 对象 |
15 | const blobData = new Blob([JSON.stringify(data)], { | 31 | const blobData = new Blob([JSON.stringify(data)], { |
... | @@ -46,6 +62,13 @@ const validConfig = [ | ... | @@ -46,6 +62,13 @@ const validConfig = [ |
46 | } | 62 | } |
47 | ] | 63 | ] |
48 | // 校验手机号 | 64 | // 校验手机号 |
65 | /** | ||
66 | * @description: 校验手机号 | ||
67 | * @param {*} rule | ||
68 | * @param {*} value | ||
69 | * @param {*} callback | ||
70 | * @author: renchao | ||
71 | */ | ||
49 | const checkTel = (rule, value, callback) => { | 72 | const checkTel = (rule, value, callback) => { |
50 | const phoneReg = /^[1][3,4,5,6,7,8,9][0-9]{9}$/ | 73 | const phoneReg = /^[1][3,4,5,6,7,8,9][0-9]{9}$/ |
51 | const rel = /^[0]\d{2,3}-[1-9]\d{7}$/ | 74 | const rel = /^[0]\d{2,3}-[1-9]\d{7}$/ |
... | @@ -57,6 +80,13 @@ const checkTel = (rule, value, callback) => { | ... | @@ -57,6 +80,13 @@ const checkTel = (rule, value, callback) => { |
57 | }, 500) | 80 | }, 500) |
58 | } | 81 | } |
59 | // 检验系统代码 | 82 | // 检验系统代码 |
83 | /** | ||
84 | * @description: 检验系统代码 | ||
85 | * @param {*} rule | ||
86 | * @param {*} value | ||
87 | * @param {*} callback | ||
88 | * @author: renchao | ||
89 | */ | ||
60 | const checkCode = (rule, value, callback) => { | 90 | const checkCode = (rule, value, callback) => { |
61 | const rel = /^[0-9A-Z]+$/ | 91 | const rel = /^[0-9A-Z]+$/ |
62 | if (!value) return callback(new Error('请输入代码')) | 92 | if (!value) return callback(new Error('请输入代码')) |
... | @@ -84,6 +114,11 @@ const checkCode = (rule, value, callback) => { | ... | @@ -84,6 +114,11 @@ const checkCode = (rule, value, callback) => { |
84 | // } | 114 | // } |
85 | // } | 115 | // } |
86 | // 日期格式转换 "yyyy-MM-dd HH:mm:ss" | 116 | // 日期格式转换 "yyyy-MM-dd HH:mm:ss" |
117 | /** | ||
118 | * @description: 日期格式转换 "yyyy-MM-dd HH:mm:ss" | ||
119 | * @param {*} date | ||
120 | * @author: renchao | ||
121 | */ | ||
87 | Vue.prototype.$formdate = function (date) { | 122 | Vue.prototype.$formdate = function (date) { |
88 | if (!date) { | 123 | if (!date) { |
89 | return "" | 124 | return "" |
... | @@ -98,18 +133,39 @@ Vue.prototype.$formdate = function (date) { | ... | @@ -98,18 +133,39 @@ Vue.prototype.$formdate = function (date) { |
98 | return YY + MM + DD + " " + hh + mm + ss | 133 | return YY + MM + DD + " " + hh + mm + ss |
99 | } | 134 | } |
100 | // 时间格式过滤 | 135 | // 时间格式过滤 |
136 | /** | ||
137 | * @description: 时间格式过滤 | ||
138 | * @param {*} timeStr | ||
139 | * @author: renchao | ||
140 | */ | ||
101 | Vue.filter('timeFilter', function (timeStr) { | 141 | Vue.filter('timeFilter', function (timeStr) { |
102 | if (timeStr) { | 142 | if (timeStr) { |
103 | return timeStr.substring(0, 10) | 143 | return timeStr.substring(0, 10) |
104 | } | 144 | } |
105 | }) | 145 | }) |
146 | /** | ||
147 | * @description: getType | ||
148 | * @param {*} o | ||
149 | * @author: renchao | ||
150 | */ | ||
106 | export function getType (o) { | 151 | export function getType (o) { |
107 | return Object.prototype.toString.call(o).slice(8, -1) | 152 | return Object.prototype.toString.call(o).slice(8, -1) |
108 | } | 153 | } |
154 | /** | ||
155 | * @description: isKeyType | ||
156 | * @param {*} o | ||
157 | * @param {*} type | ||
158 | * @author: renchao | ||
159 | */ | ||
109 | export function isKeyType (o, type) { | 160 | export function isKeyType (o, type) { |
110 | return getType(o).toLowerCase() === type.toLowerCase() | 161 | return getType(o).toLowerCase() === type.toLowerCase() |
111 | } | 162 | } |
112 | // 深拷贝全局挂载 | 163 | // 深拷贝全局挂载 |
164 | /** | ||
165 | * @description: 深拷贝全局挂载 | ||
166 | * @param {*} sth | ||
167 | * @author: renchao | ||
168 | */ | ||
113 | Vue.prototype.$deepCopy = function (sth) { | 169 | Vue.prototype.$deepCopy = function (sth) { |
114 | // 深度复制数组 | 170 | // 深度复制数组 |
115 | // if (Object.prototype.toString.call(obj) === "[object Array]") { | 171 | // if (Object.prototype.toString.call(obj) === "[object Array]") { |
... | @@ -153,6 +209,10 @@ Vue.prototype.$deepCopy = function (sth) { | ... | @@ -153,6 +209,10 @@ Vue.prototype.$deepCopy = function (sth) { |
153 | return null | 209 | return null |
154 | } | 210 | } |
155 | // 递归处理树形数据children为空数组 | 211 | // 递归处理树形数据children为空数组 |
212 | /** | ||
213 | * @description: 递归处理树形数据children为空数组 | ||
214 | * @author: renchao | ||
215 | */ | ||
156 | Vue.prototype.$dealArrChildren = arr => { | 216 | Vue.prototype.$dealArrChildren = arr => { |
157 | if (arr.length) { | 217 | if (arr.length) { |
158 | for (const i in arr) { | 218 | for (const i in arr) { |
... | @@ -166,6 +226,10 @@ Vue.prototype.$dealArrChildren = arr => { | ... | @@ -166,6 +226,10 @@ Vue.prototype.$dealArrChildren = arr => { |
166 | return arr | 226 | return arr |
167 | } | 227 | } |
168 | // 过滤对象中为空的属性 | 228 | // 过滤对象中为空的属性 |
229 | /** | ||
230 | * @description: 过滤对象中为空的属性 | ||
231 | * @author: renchao | ||
232 | */ | ||
169 | Vue.prototype.$filterNullObj = obj => { | 233 | Vue.prototype.$filterNullObj = obj => { |
170 | if (!(typeof obj === 'object')) { | 234 | if (!(typeof obj === 'object')) { |
171 | return | 235 | return |
... | @@ -181,6 +245,10 @@ Vue.prototype.$filterNullObj = obj => { | ... | @@ -181,6 +245,10 @@ Vue.prototype.$filterNullObj = obj => { |
181 | return obj | 245 | return obj |
182 | } | 246 | } |
183 | // 递归处理树形数据可选择项 | 247 | // 递归处理树形数据可选择项 |
248 | /** | ||
249 | * @description: 递归处理树形数据可选择项 | ||
250 | * @author: renchao | ||
251 | */ | ||
184 | Vue.prototype.$dealArrNotDisabled = arr => { | 252 | Vue.prototype.$dealArrNotDisabled = arr => { |
185 | if (arr.length) { | 253 | if (arr.length) { |
186 | for (const i in arr) { | 254 | for (const i in arr) { |
... | @@ -207,6 +275,12 @@ Vue.prototype.$dealArrNotDisabled = arr => { | ... | @@ -207,6 +275,12 @@ Vue.prototype.$dealArrNotDisabled = arr => { |
207 | return arr | 275 | return arr |
208 | } | 276 | } |
209 | // 递归处理树形数据不可选择项 | 277 | // 递归处理树形数据不可选择项 |
278 | /** | ||
279 | * @description: 递归处理树形数据不可选择项 | ||
280 | * @param {*} arr | ||
281 | * @param {*} id | ||
282 | * @author: renchao | ||
283 | */ | ||
210 | Vue.prototype.$dealArrDisabled = (arr, id) => { | 284 | Vue.prototype.$dealArrDisabled = (arr, id) => { |
211 | if (arr.length) { | 285 | if (arr.length) { |
212 | for (const i in arr) { | 286 | for (const i in arr) { |
... | @@ -233,6 +307,12 @@ Vue.prototype.$dealArrDisabled = (arr, id) => { | ... | @@ -233,6 +307,12 @@ Vue.prototype.$dealArrDisabled = (arr, id) => { |
233 | return arr | 307 | return arr |
234 | } | 308 | } |
235 | // 根据子节点id递归获取子节点路径id数组 | 309 | // 根据子节点id递归获取子节点路径id数组 |
310 | /** | ||
311 | * @description: 根据子节点id递归获取子节点路径id数组 | ||
312 | * @param {*} val | ||
313 | * @param {*} id | ||
314 | * @author: renchao | ||
315 | */ | ||
236 | Vue.prototype.$getNodeRoute = (val, id) => { | 316 | Vue.prototype.$getNodeRoute = (val, id) => { |
237 | let cid_list = [] | 317 | let cid_list = [] |
238 | val.forEach((item, index) => { | 318 | val.forEach((item, index) => { |
... | @@ -279,6 +359,10 @@ Vue.prototype.$getNodeRoute = (val, id) => { | ... | @@ -279,6 +359,10 @@ Vue.prototype.$getNodeRoute = (val, id) => { |
279 | return result(cid_list) | 359 | return result(cid_list) |
280 | } | 360 | } |
281 | // 扁平化树形数组 | 361 | // 扁平化树形数组 |
362 | /** | ||
363 | * @description: 扁平化树形数组 | ||
364 | * @author: renchao | ||
365 | */ | ||
282 | Vue.prototype.$treeConvertToArr = tree => { | 366 | Vue.prototype.$treeConvertToArr = tree => { |
283 | let arrs = [] | 367 | let arrs = [] |
284 | const result = [] | 368 | const result = [] |
... | @@ -446,6 +530,11 @@ Vue.prototype.$setChildArr = ( | ... | @@ -446,6 +530,11 @@ Vue.prototype.$setChildArr = ( |
446 | } | 530 | } |
447 | } | 531 | } |
448 | // 处理localStorage获取值转换boolean为string问题 json字符串转为json | 532 | // 处理localStorage获取值转换boolean为string问题 json字符串转为json |
533 | /** | ||
534 | * @description: 对错误信息的处理函数 | ||
535 | * @param {*} errMes | ||
536 | * @author: renchao | ||
537 | */ | ||
449 | Vue.prototype.$getLocalStorage = (name, type) => { | 538 | Vue.prototype.$getLocalStorage = (name, type) => { |
450 | let data = localStorage.getItem(name) | 539 | let data = localStorage.getItem(name) |
451 | if (type === 'boolean') { | 540 | if (type === 'boolean') { | ... | ... |
1 | 1 | /** | |
2 | * @description: deleteDomStr | ||
3 | * @author: renchao | ||
4 | */ | ||
2 | import XLSX2 from "xlsx"; | 5 | import XLSX2 from "xlsx"; |
3 | import XLSX from "xlsx-style"; | 6 | import XLSX from "xlsx-style"; |
4 | /** | 7 | /** |
... | @@ -18,6 +21,11 @@ export function getType (o) { | ... | @@ -18,6 +21,11 @@ export function getType (o) { |
18 | export function isKeyType (o, type) { | 21 | export function isKeyType (o, type) { |
19 | return getType(o).toLowerCase() === type.toLowerCase(); | 22 | return getType(o).toLowerCase() === type.toLowerCase(); |
20 | } | 23 | } |
24 | /** | ||
25 | * @description: deepCopy | ||
26 | * @param {*} sth | ||
27 | * @author: renchao | ||
28 | */ | ||
21 | export function deepCopy (sth) { | 29 | export function deepCopy (sth) { |
22 | let copy; | 30 | let copy; |
23 | if (null == sth || "object" != typeof sth) return sth; | 31 | if (null == sth || "object" != typeof sth) return sth; |
... | @@ -58,7 +66,11 @@ export function hideCode (str, frontLen, endLen = 0) { | ... | @@ -58,7 +66,11 @@ export function hideCode (str, frontLen, endLen = 0) { |
58 | return str.substring(0, frontLen) + xing + str.substring(str.length - endLen); | 66 | return str.substring(0, frontLen) + xing + str.substring(str.length - endLen); |
59 | }; | 67 | }; |
60 | // 数组去重 | 68 | // 数组去重 |
61 | 69 | /** | |
70 | * @description: 数组去重 | ||
71 | * @param {*} arr | ||
72 | * @author: renchao | ||
73 | */ | ||
62 | export function unique (arr) { | 74 | export function unique (arr) { |
63 | var obj = {}; | 75 | var obj = {}; |
64 | return arr.filter(function (item, index, arr) { | 76 | return arr.filter(function (item, index, arr) { |
... | @@ -66,7 +78,12 @@ export function unique (arr) { | ... | @@ -66,7 +78,12 @@ export function unique (arr) { |
66 | }) | 78 | }) |
67 | } | 79 | } |
68 | // 创造id | 80 | // 创造id |
69 | 81 | /** | |
82 | * @description: 创造id | ||
83 | * @param {*} len | ||
84 | * @param {*} radix | ||
85 | * @author: renchao | ||
86 | */ | ||
70 | export function getUuid (len, radix) { | 87 | export function getUuid (len, radix) { |
71 | var chars = "0123456789abcdefghijklmnopqrstuvwxyz".split( | 88 | var chars = "0123456789abcdefghijklmnopqrstuvwxyz".split( |
72 | "" | 89 | "" |
... | @@ -91,6 +108,12 @@ export function getUuid (len, radix) { | ... | @@ -91,6 +108,12 @@ export function getUuid (len, radix) { |
91 | } | 108 | } |
92 | 109 | ||
93 | //js计算两个时间戳之间的时间差 (月) | 110 | //js计算两个时间戳之间的时间差 (月) |
111 | /** | ||
112 | * @description: js计算两个时间戳之间的时间差 (月) | ||
113 | * @param {*} startTime | ||
114 | * @param {*} endTime | ||
115 | * @author: renchao | ||
116 | */ | ||
94 | export function intervalTime (startTime, endTime) { | 117 | export function intervalTime (startTime, endTime) { |
95 | // var timestamp=new Date().getTime(); //计算当前时间戳 | 118 | // var timestamp=new Date().getTime(); //计算当前时间戳 |
96 | var timestamp = (Date.parse(new Date())) / 1000;//计算当前时间戳 (毫秒级) | 119 | var timestamp = (Date.parse(new Date())) / 1000;//计算当前时间戳 (毫秒级) |
... | @@ -109,12 +132,22 @@ export function intervalTime (startTime, endTime) { | ... | @@ -109,12 +132,22 @@ export function intervalTime (startTime, endTime) { |
109 | return mon | 132 | return mon |
110 | } | 133 | } |
111 | // 日期转时间戳 | 134 | // 日期转时间戳 |
135 | /** | ||
136 | * @description: 日期转时间戳 | ||
137 | * @param {*} str_time | ||
138 | * @author: renchao | ||
139 | */ | ||
112 | export function js_strto_time (str_time) { | 140 | export function js_strto_time (str_time) { |
113 | var str = str_time.replace(/-/g, '/') // 将-替换成/,因为下面这个构造函数只支持/分隔的日期字符串 | 141 | var str = str_time.replace(/-/g, '/') // 将-替换成/,因为下面这个构造函数只支持/分隔的日期字符串 |
114 | var date = new Date(str) // 构造一个日期型数据,值为传入的字符串 | 142 | var date = new Date(str) // 构造一个日期型数据,值为传入的字符串 |
115 | return date.getTime() | 143 | return date.getTime() |
116 | } | 144 | } |
117 | // 时间戳转日期 | 145 | // 时间戳转日期 |
146 | /** | ||
147 | * @description: 时间戳转日期 | ||
148 | * @param {*} timestamp | ||
149 | * @author: renchao | ||
150 | */ | ||
118 | export function timestampToTime (timestamp) { | 151 | export function timestampToTime (timestamp) { |
119 | var date = new Date(timestamp)//时间戳为10位需*1000,时间戳为13位的话不需乘1000 | 152 | var date = new Date(timestamp)//时间戳为10位需*1000,时间戳为13位的话不需乘1000 |
120 | var Y = date.getFullYear() + '-' | 153 | var Y = date.getFullYear() + '-' |
... | @@ -123,7 +156,11 @@ export function timestampToTime (timestamp) { | ... | @@ -123,7 +156,11 @@ export function timestampToTime (timestamp) { |
123 | return Y + M + D | 156 | return Y + M + D |
124 | } | 157 | } |
125 | 158 | ||
126 | 159 | /** | |
160 | * @description: formatDate | ||
161 | * @param {*} value | ||
162 | * @author: renchao | ||
163 | */ | ||
127 | function formatDate (value) { | 164 | function formatDate (value) { |
128 | var date = new Date(value); | 165 | var date = new Date(value); |
129 | var y = date.getFullYear(), | 166 | var y = date.getFullYear(), |
... | @@ -135,6 +172,11 @@ function formatDate (value) { | ... | @@ -135,6 +172,11 @@ function formatDate (value) { |
135 | return t; | 172 | return t; |
136 | } | 173 | } |
137 | 174 | ||
175 | /** | ||
176 | * @description: getCurrentDate | ||
177 | * @param {*} date | ||
178 | * @author: renchao | ||
179 | */ | ||
138 | export function getCurrentDate (date = 'firstDay') { | 180 | export function getCurrentDate (date = 'firstDay') { |
139 | var now = new Date() // 当前日期 | 181 | var now = new Date() // 当前日期 |
140 | var nowYear = now.getFullYear() //当前年 | 182 | var nowYear = now.getFullYear() //当前年 |
... | @@ -147,6 +189,11 @@ export function getCurrentDate (date = 'firstDay') { | ... | @@ -147,6 +189,11 @@ export function getCurrentDate (date = 'firstDay') { |
147 | } | 189 | } |
148 | } | 190 | } |
149 | 191 | ||
192 | /** | ||
193 | * @description: setExport2Excel | ||
194 | * @param {*} exportName | ||
195 | * @author: renchao | ||
196 | */ | ||
150 | export function setExport2Excel (exportName) { | 197 | export function setExport2Excel (exportName) { |
151 | /* generate workbook object from table */ | 198 | /* generate workbook object from table */ |
152 | var wb = XLSX2.utils.table_to_sheet(document.querySelector("#mytable"), { raw: true });//mytable为表格的id名 | 199 | var wb = XLSX2.utils.table_to_sheet(document.querySelector("#mytable"), { raw: true });//mytable为表格的id名 |
... | @@ -210,6 +257,12 @@ export function setExport2Excel (exportName) { | ... | @@ -210,6 +257,12 @@ export function setExport2Excel (exportName) { |
210 | openDownloadDialog(filedata, exportName + ".xlsx") | 257 | openDownloadDialog(filedata, exportName + ".xlsx") |
211 | } | 258 | } |
212 | //为合并项添加边框 | 259 | //为合并项添加边框 |
260 | /** | ||
261 | * @description: 为合并项添加边框 | ||
262 | * @param {*} range | ||
263 | * @param {*} ws | ||
264 | * @author: renchao | ||
265 | */ | ||
213 | function addRangeBorder (range, ws) { | 266 | function addRangeBorder (range, ws) { |
214 | let arr = ["A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"]; | 267 | let arr = ["A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"]; |
215 | 268 | ||
... | @@ -226,6 +279,12 @@ function addRangeBorder (range, ws) { | ... | @@ -226,6 +279,12 @@ function addRangeBorder (range, ws) { |
226 | return ws; | 279 | return ws; |
227 | } | 280 | } |
228 | //将一个sheet转成最终的excel文件的blob对象,然后利用URL.createObjectURL下载 | 281 | //将一个sheet转成最终的excel文件的blob对象,然后利用URL.createObjectURL下载 |
282 | /** | ||
283 | * @description: 将一个sheet转成最终的excel文件的blob对象,然后利用URL.createObjectURL下载 | ||
284 | * @param {*} sheet | ||
285 | * @param {*} sheetName | ||
286 | * @author: renchao | ||
287 | */ | ||
229 | function sheet2blob (sheet, sheetName) { | 288 | function sheet2blob (sheet, sheetName) { |
230 | sheetName = sheetName || 'sheet1'; | 289 | sheetName = sheetName || 'sheet1'; |
231 | var workbook = { | 290 | var workbook = { |
... | @@ -251,6 +310,12 @@ function sheet2blob (sheet, sheetName) { | ... | @@ -251,6 +310,12 @@ function sheet2blob (sheet, sheetName) { |
251 | } | 310 | } |
252 | return blob; | 311 | return blob; |
253 | } | 312 | } |
313 | /** | ||
314 | * @description: openDownloadDialog | ||
315 | * @param {*} url | ||
316 | * @param {*} saveName | ||
317 | * @author: renchao | ||
318 | */ | ||
254 | function openDownloadDialog (url, saveName) { | 319 | function openDownloadDialog (url, saveName) { |
255 | if (typeof url == 'object' && url instanceof Blob) { | 320 | if (typeof url == 'object' && url instanceof Blob) { |
256 | url = URL.createObjectURL(url); // 创建blob地址 | 321 | url = URL.createObjectURL(url); // 创建blob地址 |
... | @@ -267,9 +332,11 @@ function openDownloadDialog (url, saveName) { | ... | @@ -267,9 +332,11 @@ function openDownloadDialog (url, saveName) { |
267 | aLink.dispatchEvent(event); | 332 | aLink.dispatchEvent(event); |
268 | } | 333 | } |
269 | 334 | ||
270 | 335 | /** | |
271 | 336 | * @description: judgeListComplete | |
272 | 337 | * @param {*} list | |
338 | * @author: renchao | ||
339 | */ | ||
273 | export function judgeListComplete (list) { | 340 | export function judgeListComplete (list) { |
274 | function judgeObjectComplete (obj) { | 341 | function judgeObjectComplete (obj) { |
275 | let flag = false | 342 | let flag = false | ... | ... |
1 | /** | ||
2 | * @description: deleteDomStr | ||
3 | * @author: renchao | ||
4 | */ | ||
1 | import cookies from './util.cookies' | 5 | import cookies from './util.cookies' |
6 | /** | ||
7 | * @description: getUrlParam | ||
8 | * @param {*} paraName | ||
9 | * @author: renchao | ||
10 | */ | ||
2 | export function getUrlParam(paraName) { | 11 | export function getUrlParam(paraName) { |
3 | let url = document.location.toString(); | 12 | let url = document.location.toString(); |
4 | let arrObj = url.split('?'); | 13 | let arrObj = url.split('?'); |
... | @@ -21,7 +30,11 @@ export function getUrlParam(paraName) { | ... | @@ -21,7 +30,11 @@ export function getUrlParam(paraName) { |
21 | return ''; | 30 | return ''; |
22 | } | 31 | } |
23 | } | 32 | } |
24 | 33 | /** | |
34 | * @description: setToken | ||
35 | * @param {*} token | ||
36 | * @author: renchao | ||
37 | */ | ||
25 | export function setToken(token) { | 38 | export function setToken(token) { |
26 | if (token === undefined) { | 39 | if (token === undefined) { |
27 | if (process.env.NODE_ENV === 'development') { | 40 | if (process.env.NODE_ENV === 'development') { |
... | @@ -37,7 +50,10 @@ export function setToken(token) { | ... | @@ -37,7 +50,10 @@ export function setToken(token) { |
37 | } | 50 | } |
38 | } | 51 | } |
39 | } | 52 | } |
40 | 53 | /** | |
54 | * @description: getToken | ||
55 | * @author: renchao | ||
56 | */ | ||
41 | export function getToken() { | 57 | export function getToken() { |
42 | if (process.env.NODE_ENV === 'development') { | 58 | if (process.env.NODE_ENV === 'development') { |
43 | return sessionStorage.getItem('token') | 59 | return sessionStorage.getItem('token') | ... | ... |
1 | /** | 1 | /** |
2 | * @description: isExternal | ||
2 | * @param {string} path | 3 | * @param {string} path |
3 | * @returns {Boolean} | 4 | * @returns {Boolean} |
4 | */ | 5 | */ |
... | @@ -7,16 +8,37 @@ export function isExternal (path) { | ... | @@ -7,16 +8,37 @@ export function isExternal (path) { |
7 | } | 8 | } |
8 | // ex: {validator:validateCode,trigger:'blur'} | 9 | // ex: {validator:validateCode,trigger:'blur'} |
9 | // 验证code | 10 | // 验证code |
11 | /** | ||
12 | * @description: 验证code | ||
13 | * @param {*} rule | ||
14 | * @param {*} value | ||
15 | * @param {*} callback | ||
16 | * @author: renchao | ||
17 | */ | ||
10 | export const validateCode = (rule, value, callback) => { | 18 | export const validateCode = (rule, value, callback) => { |
11 | const reg = /^[A-Z]{1}[A-Za-z0-9]*$/ | 19 | const reg = /^[A-Z]{1}[A-Za-z0-9]*$/ |
12 | !reg.test(value) ? callback('字母开头、数字和字母组成') : callback() | 20 | !reg.test(value) ? callback('字母开头、数字和字母组成') : callback() |
13 | } | 21 | } |
14 | // 验证 网址 | 22 | // 验证 网址 |
23 | /** | ||
24 | * @description: 验证 网址 | ||
25 | * @param {*} rule | ||
26 | * @param {*} value | ||
27 | * @param {*} callback | ||
28 | * @author: renchao | ||
29 | */ | ||
15 | export const validateUrl = (rule, value, callback) => { | 30 | export const validateUrl = (rule, value, callback) => { |
16 | const reg = /^(((ht|f)tps?):\/\/)?[\w-]+(\.[\w-]+)+([\w.,@?^=%&:/~+#-]*[\w@?^=%&/~+#-])?$/ | 31 | const reg = /^(((ht|f)tps?):\/\/)?[\w-]+(\.[\w-]+)+([\w.,@?^=%&:/~+#-]*[\w@?^=%&/~+#-])?$/ |
17 | !reg.test(value) ? callback('URL格式不正确') : callback() | 32 | !reg.test(value) ? callback('URL格式不正确') : callback() |
18 | } | 33 | } |
19 | // 验证 电话 | 34 | // 验证 电话 |
35 | /** | ||
36 | * @description: 验证 电话 | ||
37 | * @param {*} rule | ||
38 | * @param {*} value | ||
39 | * @param {*} callback | ||
40 | * @author: renchao | ||
41 | */ | ||
20 | export const validatePhone = (rule, value, callback) => { | 42 | export const validatePhone = (rule, value, callback) => { |
21 | const phoneReg = /^[1][3,4,5,6,7,8,9][0-9]{9}$/ | 43 | const phoneReg = /^[1][3,4,5,6,7,8,9][0-9]{9}$/ |
22 | const rel = /^[0]\d{2,3}-[1-9]\d{7}$/ | 44 | const rel = /^[0]\d{2,3}-[1-9]\d{7}$/ | ... | ... |
... | @@ -182,6 +182,10 @@ | ... | @@ -182,6 +182,10 @@ |
182 | } | 182 | } |
183 | }, | 183 | }, |
184 | methods: { | 184 | methods: { |
185 | /** | ||
186 | * @description: featchData | ||
187 | * @author: renchao | ||
188 | */ | ||
185 | async featchData () { | 189 | async featchData () { |
186 | try { | 190 | try { |
187 | let { result: { list, total, pages: pageSize, pageNum: current } | 191 | let { result: { list, total, pages: pageSize, pageNum: current } | ... | ... |
... | @@ -153,6 +153,10 @@ | ... | @@ -153,6 +153,10 @@ |
153 | } | 153 | } |
154 | }, | 154 | }, |
155 | methods: { | 155 | methods: { |
156 | /** | ||
157 | * @description: featchData | ||
158 | * @author: renchao | ||
159 | */ | ||
156 | async featchData () { | 160 | async featchData () { |
157 | try { | 161 | try { |
158 | let { result: { list, total, pages: pageSize, pageNum: current } | 162 | let { result: { list, total, pages: pageSize, pageNum: current } | ... | ... |
... | @@ -158,6 +158,10 @@ | ... | @@ -158,6 +158,10 @@ |
158 | } | 158 | } |
159 | }, | 159 | }, |
160 | methods: { | 160 | methods: { |
161 | /** | ||
162 | * @description: featchData | ||
163 | * @author: renchao | ||
164 | */ | ||
161 | async featchData () { | 165 | async featchData () { |
162 | try { | 166 | try { |
163 | this.form = Object.assign(this.form, this.formData) | 167 | this.form = Object.assign(this.form, this.formData) | ... | ... |
... | @@ -154,10 +154,19 @@ | ... | @@ -154,10 +154,19 @@ |
154 | }, | 154 | }, |
155 | methods: { | 155 | methods: { |
156 | // 是否显示下拉框 | 156 | // 是否显示下拉框 |
157 | /** | ||
158 | * @description: 是否显示下拉框 | ||
159 | * @param {*} e | ||
160 | * @author: renchao | ||
161 | */ | ||
157 | isShowSelectOptions (e) { | 162 | isShowSelectOptions (e) { |
158 | if (!e) this.$refs.selectmanyQL.blur() | 163 | if (!e) this.$refs.selectmanyQL.blur() |
159 | if (!e) this.$refs.selectmanyDJ.blur() | 164 | if (!e) this.$refs.selectmanyDJ.blur() |
160 | }, | 165 | }, |
166 | /** | ||
167 | * @description: featchData | ||
168 | * @author: renchao | ||
169 | */ | ||
161 | async featchData () { | 170 | async featchData () { |
162 | try { | 171 | try { |
163 | this.form = Object.assign(this.form, this.formData) | 172 | this.form = Object.assign(this.form, this.formData) |
... | @@ -174,6 +183,12 @@ | ... | @@ -174,6 +183,12 @@ |
174 | // this.$refs.msg.messageShow() | 183 | // this.$refs.msg.messageShow() |
175 | } | 184 | } |
176 | }, | 185 | }, |
186 | /** | ||
187 | * @description: handlDatadetails | ||
188 | * @param {*} index | ||
189 | * @param {*} row | ||
190 | * @author: renchao | ||
191 | */ | ||
177 | async handlDatadetails (index, row) { | 192 | async handlDatadetails (index, row) { |
178 | let { result: res, message } = await sjsbFunctionOper.getQltFwFdcqYzByCondition(row.BSM_SJSB) | 193 | let { result: res, message } = await sjsbFunctionOper.getQltFwFdcqYzByCondition(row.BSM_SJSB) |
179 | if (res != null) { | 194 | if (res != null) { | ... | ... |
... | @@ -118,9 +118,18 @@ | ... | @@ -118,9 +118,18 @@ |
118 | }, | 118 | }, |
119 | methods: { | 119 | methods: { |
120 | // 是否显示下拉框 | 120 | // 是否显示下拉框 |
121 | /** | ||
122 | * @description: 是否显示下拉框 | ||
123 | * @param {*} e | ||
124 | * @author: renchao | ||
125 | */ | ||
121 | isShowSelectOptions (e) { | 126 | isShowSelectOptions (e) { |
122 | if (!e) this.$refs.selectshareQL.blur() | 127 | if (!e) this.$refs.selectshareQL.blur() |
123 | }, | 128 | }, |
129 | /** | ||
130 | * @description: featchData | ||
131 | * @author: renchao | ||
132 | */ | ||
124 | async featchData () { | 133 | async featchData () { |
125 | try { | 134 | try { |
126 | this.form = Object.assign(this.form, this.formData) | 135 | this.form = Object.assign(this.form, this.formData) |
... | @@ -136,6 +145,12 @@ | ... | @@ -136,6 +145,12 @@ |
136 | this.message = error | 145 | this.message = error |
137 | } | 146 | } |
138 | }, | 147 | }, |
148 | /** | ||
149 | * @description: handlDatadetails | ||
150 | * @param {*} index | ||
151 | * @param {*} row | ||
152 | * @author: renchao | ||
153 | */ | ||
139 | async handlDatadetails (index, row) { | 154 | async handlDatadetails (index, row) { |
140 | let { result: res, message } = await sjsbFunctionOper.getQltFwFdcqYzByCondition(row.BSM_SJSB) | 155 | let { result: res, message } = await sjsbFunctionOper.getQltFwFdcqYzByCondition(row.BSM_SJSB) |
141 | if (res != null) { | 156 | if (res != null) { | ... | ... |
... | @@ -186,10 +186,19 @@ | ... | @@ -186,10 +186,19 @@ |
186 | }, | 186 | }, |
187 | methods: { | 187 | methods: { |
188 | // 是否显示下拉框 | 188 | // 是否显示下拉框 |
189 | /** | ||
190 | * @description: 是否显示下拉框 | ||
191 | * @param {*} e | ||
192 | * @author: renchao | ||
193 | */ | ||
189 | isShowSelectOptions (e) { | 194 | isShowSelectOptions (e) { |
190 | if (!e) this.$refs.selectsingleQL.blur() | 195 | if (!e) this.$refs.selectsingleQL.blur() |
191 | if (!e) this.$refs.selectsingleDJ.blur() | 196 | if (!e) this.$refs.selectsingleDJ.blur() |
192 | }, | 197 | }, |
198 | /** | ||
199 | * @description: featchData | ||
200 | * @author: renchao | ||
201 | */ | ||
193 | async featchData () { | 202 | async featchData () { |
194 | try { | 203 | try { |
195 | this.form = Object.assign(this.form, this.formData) | 204 | this.form = Object.assign(this.form, this.formData) |
... | @@ -206,6 +215,12 @@ | ... | @@ -206,6 +215,12 @@ |
206 | // this.$refs.msg.messageShow() | 215 | // this.$refs.msg.messageShow() |
207 | } | 216 | } |
208 | }, | 217 | }, |
218 | /** | ||
219 | * @description: handlDatadetails | ||
220 | * @param {*} index | ||
221 | * @param {*} row | ||
222 | * @author: renchao | ||
223 | */ | ||
209 | async handlDatadetails (index, row) { | 224 | async handlDatadetails (index, row) { |
210 | let { result: res, message } = await sjsbFunctionOper.getQltFwFdcqYzByCondition(row.BSM_SJSB) | 225 | let { result: res, message } = await sjsbFunctionOper.getQltFwFdcqYzByCondition(row.BSM_SJSB) |
211 | if (res != null) { | 226 | if (res != null) { | ... | ... |
... | @@ -146,10 +146,19 @@ | ... | @@ -146,10 +146,19 @@ |
146 | }, | 146 | }, |
147 | methods: { | 147 | methods: { |
148 | // 是否显示下拉框 | 148 | // 是否显示下拉框 |
149 | /** | ||
150 | * @description: 是否显示下拉框 | ||
151 | * @param {*} e | ||
152 | * @author: renchao | ||
153 | */ | ||
149 | isShowSelectOptions (e) { | 154 | isShowSelectOptions (e) { |
150 | if (!e) this.$refs.selectownershipQL.blur() | 155 | if (!e) this.$refs.selectownershipQL.blur() |
151 | if (!e) this.$refs.selectownershipDJ.blur() | 156 | if (!e) this.$refs.selectownershipDJ.blur() |
152 | }, | 157 | }, |
158 | /** | ||
159 | * @description: featchData | ||
160 | * @author: renchao | ||
161 | */ | ||
153 | async featchData () { | 162 | async featchData () { |
154 | try { | 163 | try { |
155 | this.form = Object.assign(this.form, this.formData) | 164 | this.form = Object.assign(this.form, this.formData) | ... | ... |
... | @@ -153,10 +153,19 @@ | ... | @@ -153,10 +153,19 @@ |
153 | }, | 153 | }, |
154 | methods: { | 154 | methods: { |
155 | // 是否显示下拉框 | 155 | // 是否显示下拉框 |
156 | /** | ||
157 | * @description: 是否显示下拉框 | ||
158 | * @param {*} e | ||
159 | * @author: renchao | ||
160 | */ | ||
156 | isShowSelectOptions (e) { | 161 | isShowSelectOptions (e) { |
157 | if (!e) this.$refs.selectseaAreaQL.blur() | 162 | if (!e) this.$refs.selectseaAreaQL.blur() |
158 | if (!e) this.$refs.selectseaAreaDJ.blur() | 163 | if (!e) this.$refs.selectseaAreaDJ.blur() |
159 | }, | 164 | }, |
165 | /** | ||
166 | * @description: featchData | ||
167 | * @author: renchao | ||
168 | */ | ||
160 | async featchData () { | 169 | async featchData () { |
161 | try { | 170 | try { |
162 | this.form = Object.assign(this.form, this.formData) | 171 | this.form = Object.assign(this.form, this.formData) | ... | ... |
... | @@ -146,10 +146,19 @@ | ... | @@ -146,10 +146,19 @@ |
146 | }, | 146 | }, |
147 | methods: { | 147 | methods: { |
148 | // 是否显示下拉框 | 148 | // 是否显示下拉框 |
149 | /** | ||
150 | * @description: 是否显示下拉框 | ||
151 | * @param {*} e | ||
152 | * @author: renchao | ||
153 | */ | ||
149 | isShowSelectOptions (e) { | 154 | isShowSelectOptions (e) { |
150 | if (!e) this.$refs.selectbuildQL.blur() | 155 | if (!e) this.$refs.selectbuildQL.blur() |
151 | if (!e) this.$refs.selectbuildDJ.blur() | 156 | if (!e) this.$refs.selectbuildDJ.blur() |
152 | }, | 157 | }, |
158 | /** | ||
159 | * @description: featchData | ||
160 | * @author: renchao | ||
161 | */ | ||
153 | async featchData () { | 162 | async featchData () { |
154 | try { | 163 | try { |
155 | this.form = Object.assign(this.form, this.formData) | 164 | this.form = Object.assign(this.form, this.formData) |
... | @@ -166,6 +175,12 @@ | ... | @@ -166,6 +175,12 @@ |
166 | // this.$refs.msg.messageShow() | 175 | // this.$refs.msg.messageShow() |
167 | } | 176 | } |
168 | }, | 177 | }, |
178 | /** | ||
179 | * @description: handlDatadetails | ||
180 | * @param {*} index | ||
181 | * @param {*} row | ||
182 | * @author: renchao | ||
183 | */ | ||
169 | async handlDatadetails (index, row) { | 184 | async handlDatadetails (index, row) { |
170 | let { result: res, message } = await sjsbFunctionOper.getQltFwFdcqYzByCondition(row.BSM_SJSB) | 185 | let { result: res, message } = await sjsbFunctionOper.getQltFwFdcqYzByCondition(row.BSM_SJSB) |
171 | if (res != null) { | 186 | if (res != null) { | ... | ... |
... | @@ -141,6 +141,10 @@ | ... | @@ -141,6 +141,10 @@ |
141 | } | 141 | } |
142 | }, | 142 | }, |
143 | methods: { | 143 | methods: { |
144 | /** | ||
145 | * @description: featchData | ||
146 | * @author: renchao | ||
147 | */ | ||
144 | async featchData () { | 148 | async featchData () { |
145 | try { | 149 | try { |
146 | this.form = Object.assign(this.form, this.formData) | 150 | this.form = Object.assign(this.form, this.formData) | ... | ... |
... | @@ -147,6 +147,10 @@ | ... | @@ -147,6 +147,10 @@ |
147 | } | 147 | } |
148 | }, | 148 | }, |
149 | methods: { | 149 | methods: { |
150 | /** | ||
151 | * @description: featchData | ||
152 | * @author: renchao | ||
153 | */ | ||
150 | async featchData () { | 154 | async featchData () { |
151 | try { | 155 | try { |
152 | this.form = Object.assign(this.form, this.formData) | 156 | this.form = Object.assign(this.form, this.formData) | ... | ... |
... | @@ -142,6 +142,10 @@ | ... | @@ -142,6 +142,10 @@ |
142 | } | 142 | } |
143 | }, | 143 | }, |
144 | methods: { | 144 | methods: { |
145 | /** | ||
146 | * @description: featchData | ||
147 | * @author: renchao | ||
148 | */ | ||
145 | async featchData () { | 149 | async featchData () { |
146 | try { | 150 | try { |
147 | this.form = Object.assign(this.form, this.formData) | 151 | this.form = Object.assign(this.form, this.formData) | ... | ... |
... | @@ -145,10 +145,19 @@ | ... | @@ -145,10 +145,19 @@ |
145 | }, | 145 | }, |
146 | methods: { | 146 | methods: { |
147 | // 是否显示下拉框 | 147 | // 是否显示下拉框 |
148 | /** | ||
149 | * @description: 是否显示下拉框 | ||
150 | * @param {*} e | ||
151 | * @author: renchao | ||
152 | */ | ||
148 | isShowSelectOptions (e) { | 153 | isShowSelectOptions (e) { |
149 | if (!e) this.$refs.selectnoticeRegQL.blur() | 154 | if (!e) this.$refs.selectnoticeRegQL.blur() |
150 | if (!e) this.$refs.selectnoticeRegDJ.blur() | 155 | if (!e) this.$refs.selectnoticeRegDJ.blur() |
151 | }, | 156 | }, |
157 | /** | ||
158 | * @description: featchData | ||
159 | * @author: renchao | ||
160 | */ | ||
152 | async featchData () { | 161 | async featchData () { |
153 | try { | 162 | try { |
154 | let { result: { list, total, pages: pageSize, pageNum: current } | 163 | let { result: { list, total, pages: pageSize, pageNum: current } | ... | ... |
... | @@ -141,10 +141,19 @@ | ... | @@ -141,10 +141,19 @@ |
141 | }, | 141 | }, |
142 | methods: { | 142 | methods: { |
143 | // 是否显示下拉框 | 143 | // 是否显示下拉框 |
144 | /** | ||
145 | * @description: 是否显示下拉框 | ||
146 | * @param {*} e | ||
147 | * @author: renchao | ||
148 | */ | ||
144 | isShowSelectOptions (e) { | 149 | isShowSelectOptions (e) { |
145 | if (!e) this.$refs.selectobjectionRegQL.blur() | 150 | if (!e) this.$refs.selectobjectionRegQL.blur() |
146 | if (!e) this.$refs.selectobjectionRegDJ.blur() | 151 | if (!e) this.$refs.selectobjectionRegDJ.blur() |
147 | }, | 152 | }, |
153 | /** | ||
154 | * @description: featchData | ||
155 | * @author: renchao | ||
156 | */ | ||
148 | async featchData () { | 157 | async featchData () { |
149 | try { | 158 | try { |
150 | this.form = Object.assign(this.form, this.formData) | 159 | this.form = Object.assign(this.form, this.formData) |
... | @@ -161,6 +170,12 @@ | ... | @@ -161,6 +170,12 @@ |
161 | this.$refs.msg.messageShow() | 170 | this.$refs.msg.messageShow() |
162 | } | 171 | } |
163 | }, | 172 | }, |
173 | /** | ||
174 | * @description: handlDatadetails | ||
175 | * @param {*} index | ||
176 | * @param {*} row | ||
177 | * @author: renchao | ||
178 | */ | ||
164 | handledetails (index, row) { | 179 | handledetails (index, row) { |
165 | } | 180 | } |
166 | } | 181 | } | ... | ... |
... | @@ -129,6 +129,10 @@ | ... | @@ -129,6 +129,10 @@ |
129 | } | 129 | } |
130 | }, | 130 | }, |
131 | methods: { | 131 | methods: { |
132 | /** | ||
133 | * @description: featchData | ||
134 | * @author: renchao | ||
135 | */ | ||
132 | async featchData () { | 136 | async featchData () { |
133 | try { | 137 | try { |
134 | this.form = Object.assign(this.form, this.formData) | 138 | this.form = Object.assign(this.form, this.formData) | ... | ... |
... | @@ -19,6 +19,10 @@ export default { | ... | @@ -19,6 +19,10 @@ export default { |
19 | } | 19 | } |
20 | }, | 20 | }, |
21 | methods: { | 21 | methods: { |
22 | /** | ||
23 | * @description: nextTo | ||
24 | * @author: renchao | ||
25 | */ | ||
22 | nextTo () { | 26 | nextTo () { |
23 | this.$router.push({ | 27 | this.$router.push({ |
24 | path: this.redirect || '/', | 28 | path: this.redirect || '/', | ... | ... |
... | @@ -83,10 +83,19 @@ | ... | @@ -83,10 +83,19 @@ |
83 | ...mapGetters(["dicData"]), | 83 | ...mapGetters(["dicData"]), |
84 | }, | 84 | }, |
85 | methods: { | 85 | methods: { |
86 | /** | ||
87 | * @description: endTimeChange | ||
88 | * @param {*} val | ||
89 | * @author: renchao | ||
90 | */ | ||
86 | endTimeChange (val) { | 91 | endTimeChange (val) { |
87 | this.form.endTime = timeFormat(new Date(val), true); | 92 | this.form.endTime = timeFormat(new Date(val), true); |
88 | }, | 93 | }, |
89 | //查询各区县办件数量 | 94 | //查询各区县办件数量 |
95 | /** | ||
96 | * @description: 查询各区县办件数量 | ||
97 | * @author: renchao | ||
98 | */ | ||
90 | async getProcessCounts () { | 99 | async getProcessCounts () { |
91 | this.pieChartsData = []; | 100 | this.pieChartsData = []; |
92 | let { result: res } = await efficient.getProcessCounts( | 101 | let { result: res } = await efficient.getProcessCounts( |
... | @@ -113,6 +122,10 @@ | ... | @@ -113,6 +122,10 @@ |
113 | }); | 122 | }); |
114 | }, | 123 | }, |
115 | // 重置 | 124 | // 重置 |
125 | /** | ||
126 | * @description: 重置 | ||
127 | * @author: renchao | ||
128 | */ | ||
116 | resetForm () { | 129 | resetForm () { |
117 | this.form = { | 130 | this.form = { |
118 | startTime: getFirstDayOfSeason(), | 131 | startTime: getFirstDayOfSeason(), |
... | @@ -121,6 +134,10 @@ | ... | @@ -121,6 +134,10 @@ |
121 | this.getProcessCounts(); | 134 | this.getProcessCounts(); |
122 | }, | 135 | }, |
123 | //玫瑰图初始化 | 136 | //玫瑰图初始化 |
137 | /** | ||
138 | * @description: 玫瑰图初始化 | ||
139 | * @author: renchao | ||
140 | */ | ||
124 | echartInit () { | 141 | echartInit () { |
125 | let _this = this; | 142 | let _this = this; |
126 | // 基于准备好的dom,初始化echarts实例 | 143 | // 基于准备好的dom,初始化echarts实例 |
... | @@ -185,6 +202,11 @@ | ... | @@ -185,6 +202,11 @@ |
185 | }); | 202 | }); |
186 | }, | 203 | }, |
187 | //柱图初始化 | 204 | //柱图初始化 |
205 | /** | ||
206 | * @description: 柱图初始化 | ||
207 | * @param {*} recType | ||
208 | * @author: renchao | ||
209 | */ | ||
188 | async barChartInit (recType) { | 210 | async barChartInit (recType) { |
189 | //请求recType对应业务的各区县数据 | 211 | //请求recType对应业务的各区县数据 |
190 | let { result: res } = await efficient.getProcessDays( | 212 | let { result: res } = await efficient.getProcessDays( | ... | ... |
... | @@ -94,9 +94,18 @@ | ... | @@ -94,9 +94,18 @@ |
94 | ...mapGetters(["dicData"]), | 94 | ...mapGetters(["dicData"]), |
95 | }, | 95 | }, |
96 | methods: { | 96 | methods: { |
97 | /** | ||
98 | * @description: endTimeChange | ||
99 | * @param {*} val | ||
100 | * @author: renchao | ||
101 | */ | ||
97 | endTimeChange (val) { | 102 | endTimeChange (val) { |
98 | this.form.endTime = timeFormat(new Date(val), true) | 103 | this.form.endTime = timeFormat(new Date(val), true) |
99 | }, | 104 | }, |
105 | /** | ||
106 | * @description: getSuucessRate | ||
107 | * @author: renchao | ||
108 | */ | ||
100 | async getSuucessRate () { | 109 | async getSuucessRate () { |
101 | this.recTypeArr = []; | 110 | this.recTypeArr = []; |
102 | this.chartData = []; | 111 | this.chartData = []; |
... | @@ -120,6 +129,10 @@ | ... | @@ -120,6 +129,10 @@ |
120 | }); | 129 | }); |
121 | }, | 130 | }, |
122 | // 重置 | 131 | // 重置 |
132 | /** | ||
133 | * @description: 重置 | ||
134 | * @author: renchao | ||
135 | */ | ||
123 | resetForm () { | 136 | resetForm () { |
124 | this.form = { | 137 | this.form = { |
125 | startTime: getFirstDayOfSeason(), | 138 | startTime: getFirstDayOfSeason(), |
... | @@ -128,6 +141,10 @@ | ... | @@ -128,6 +141,10 @@ |
128 | }; | 141 | }; |
129 | this.getSuucessRate(); | 142 | this.getSuucessRate(); |
130 | }, | 143 | }, |
144 | /** | ||
145 | * @description: echartInit | ||
146 | * @author: renchao | ||
147 | */ | ||
131 | echartInit () { | 148 | echartInit () { |
132 | let _this = this; | 149 | let _this = this; |
133 | // 基于准备好的dom,初始化echarts实例 | 150 | // 基于准备好的dom,初始化echarts实例 | ... | ... |
... | @@ -137,12 +137,26 @@ | ... | @@ -137,12 +137,26 @@ |
137 | this.generateFileName() | 137 | this.generateFileName() |
138 | }, | 138 | }, |
139 | methods: { | 139 | methods: { |
140 | /** | ||
141 | * @description: handleSearch | ||
142 | * @author: renchao | ||
143 | */ | ||
140 | handleSearch () { }, | 144 | handleSearch () { }, |
141 | // 生成文件名 | 145 | // 生成文件名 |
146 | /** | ||
147 | * @description: 生成文件名 | ||
148 | * @author: renchao | ||
149 | */ | ||
142 | generateFileName () { | 150 | generateFileName () { |
143 | var reg = /(\d{4})\-(\d{2})\-(\d{2})/; | 151 | var reg = /(\d{4})\-(\d{2})\-(\d{2})/; |
144 | this.downTitle = this.BASE_API.XZQ + `不动产登记增量数据接入质量评价表(${this.form.startTime.replace(reg, "$1年$2月$3日")}至${this.form.endTime.replace(reg, "$1年$2月$3日")})` | 152 | this.downTitle = this.BASE_API.XZQ + `不动产登记增量数据接入质量评价表(${this.form.startTime.replace(reg, "$1年$2月$3日")}至${this.form.endTime.replace(reg, "$1年$2月$3日")})` |
145 | }, | 153 | }, |
154 | /** | ||
155 | * @description: headerStyle | ||
156 | * @param {*} row | ||
157 | * @param {*} rowIndex | ||
158 | * @author: renchao | ||
159 | */ | ||
146 | headerStyle ({ row, rowIndex }) { | 160 | headerStyle ({ row, rowIndex }) { |
147 | if (rowIndex == 4) { | 161 | if (rowIndex == 4) { |
148 | row[2].rowSpan = 2; | 162 | row[2].rowSpan = 2; |
... | @@ -150,6 +164,12 @@ | ... | @@ -150,6 +164,12 @@ |
150 | row[4].rowSpan = 2; | 164 | row[4].rowSpan = 2; |
151 | } | 165 | } |
152 | }, | 166 | }, |
167 | /** | ||
168 | * @description: headerStyle1 | ||
169 | * @param {*} row | ||
170 | * @param {*} rowIndex | ||
171 | * @author: renchao | ||
172 | */ | ||
153 | headerStyle1 ({ row, rowIndex }) { | 173 | headerStyle1 ({ row, rowIndex }) { |
154 | if (rowIndex == 3) { | 174 | if (rowIndex == 3) { |
155 | row[2].rowSpan = 2; | 175 | row[2].rowSpan = 2; |
... | @@ -157,6 +177,11 @@ | ... | @@ -157,6 +177,11 @@ |
157 | row[4].rowSpan = 2; | 177 | row[4].rowSpan = 2; |
158 | } | 178 | } |
159 | }, | 179 | }, |
180 | /** | ||
181 | * @description: handlesetExport2Excel | ||
182 | * @param {*} val | ||
183 | * @author: renchao | ||
184 | */ | ||
160 | handlesetExport2Excel (val) { | 185 | handlesetExport2Excel (val) { |
161 | this.disableds = true | 186 | this.disableds = true |
162 | setTimeout(() => { | 187 | setTimeout(() => { |
... | @@ -166,6 +191,10 @@ | ... | @@ -166,6 +191,10 @@ |
166 | setExport2Excel(val) | 191 | setExport2Excel(val) |
167 | }, | 192 | }, |
168 | // 初始化数据 | 193 | // 初始化数据 |
194 | /** | ||
195 | * @description: 初始化数据 | ||
196 | * @author: renchao | ||
197 | */ | ||
169 | featchDataSelf () { | 198 | featchDataSelf () { |
170 | dataReceiveQuality(this.form.startTime, this.form.endTime).then(res => { | 199 | dataReceiveQuality(this.form.startTime, this.form.endTime).then(res => { |
171 | let records = res.result | 200 | let records = res.result |
... | @@ -173,6 +202,10 @@ | ... | @@ -173,6 +202,10 @@ |
173 | }) | 202 | }) |
174 | }, | 203 | }, |
175 | // 重置 | 204 | // 重置 |
205 | /** | ||
206 | * @description: 重置 | ||
207 | * @author: renchao | ||
208 | */ | ||
176 | handleResetForm () { | 209 | handleResetForm () { |
177 | this.form.startTime = getCurrentDate() | 210 | this.form.startTime = getCurrentDate() |
178 | this.form.endTime = getCurrentDate('time') | 211 | this.form.endTime = getCurrentDate('time') | ... | ... |
... | @@ -134,14 +134,27 @@ | ... | @@ -134,14 +134,27 @@ |
134 | }, | 134 | }, |
135 | methods: { | 135 | methods: { |
136 | // 生成文件名 | 136 | // 生成文件名 |
137 | /** | ||
138 | * @description: 生成文件名 | ||
139 | * @author: renchao | ||
140 | */ | ||
137 | generateFileName () { | 141 | generateFileName () { |
138 | var reg = /(\d{4})\-(\d{2})\-(\d{2})/; | 142 | var reg = /(\d{4})\-(\d{2})\-(\d{2})/; |
139 | this.downTitle = this.BASE_API.XZQ + `不动产登记增量数据相关字段空项率统计(${this.form.startTime.replace(reg, "$1年$2月$3日")}至${this.form.endTime.replace(reg, "$1年$2月$3日")})` | 143 | this.downTitle = this.BASE_API.XZQ + `不动产登记增量数据相关字段空项率统计(${this.form.startTime.replace(reg, "$1年$2月$3日")}至${this.form.endTime.replace(reg, "$1年$2月$3日")})` |
140 | }, | 144 | }, |
145 | /** | ||
146 | * @description: handlesetExport2Excel | ||
147 | * @param {*} val | ||
148 | * @author: renchao | ||
149 | */ | ||
141 | handlesetExport2Excel (val) { | 150 | handlesetExport2Excel (val) { |
142 | setExport2Excel(val) | 151 | setExport2Excel(val) |
143 | }, | 152 | }, |
144 | // 初始化数据 | 153 | // 初始化数据 |
154 | /** | ||
155 | * @description: 初始化数据 | ||
156 | * @author: renchao | ||
157 | */ | ||
145 | featchDataSelf () { | 158 | featchDataSelf () { |
146 | nonNullSta(this.form.startTime, this.form.endTime).then(res => { | 159 | nonNullSta(this.form.startTime, this.form.endTime).then(res => { |
147 | let records = res.result | 160 | let records = res.result |
... | @@ -149,6 +162,10 @@ | ... | @@ -149,6 +162,10 @@ |
149 | }) | 162 | }) |
150 | }, | 163 | }, |
151 | // 重置 | 164 | // 重置 |
165 | /** | ||
166 | * @description: 重置 | ||
167 | * @author: renchao | ||
168 | */ | ||
152 | handleResetForm () { | 169 | handleResetForm () { |
153 | this.form.startTime = getCurrentDate() | 170 | this.form.startTime = getCurrentDate() |
154 | this.form.endTime = getCurrentDate('time') | 171 | this.form.endTime = getCurrentDate('time') | ... | ... |
... | @@ -151,15 +151,34 @@ | ... | @@ -151,15 +151,34 @@ |
151 | 151 | ||
152 | }, | 152 | }, |
153 | methods: { | 153 | methods: { |
154 | /** | ||
155 | * @description: handleSearch | ||
156 | * @author: renchao | ||
157 | */ | ||
154 | handleSearch () { }, | 158 | handleSearch () { }, |
155 | // 生成文件名 | 159 | // 生成文件名 |
160 | /** | ||
161 | * @description: 生成文件名 | ||
162 | * @author: renchao | ||
163 | */ | ||
156 | generateFileName () { | 164 | generateFileName () { |
157 | var reg = /(\d{4})\-(\d{2})\-(\d{2})/; | 165 | var reg = /(\d{4})\-(\d{2})\-(\d{2})/; |
158 | this.downTitle = this.BASE_API.XZQ + `不动产登记增量数据登簿质量评价表(${this.form.startTime.replace(reg, "$1年$2月$3日")}至${this.form.endTime.replace(reg, "$1年$2月$3日")})` | 166 | this.downTitle = this.BASE_API.XZQ + `不动产登记增量数据登簿质量评价表(${this.form.startTime.replace(reg, "$1年$2月$3日")}至${this.form.endTime.replace(reg, "$1年$2月$3日")})` |
159 | }, | 167 | }, |
168 | /** | ||
169 | * @description: handlesetExport2Excel | ||
170 | * @param {*} val | ||
171 | * @author: renchao | ||
172 | */ | ||
160 | handlesetExport2Excel (val) { | 173 | handlesetExport2Excel (val) { |
161 | setExport2Excel(val) | 174 | setExport2Excel(val) |
162 | }, | 175 | }, |
176 | /** | ||
177 | * @description: headerStyle | ||
178 | * @param {*} row | ||
179 | * @param {*} rowIndex | ||
180 | * @author: renchao | ||
181 | */ | ||
163 | headerStyle ({ row, rowIndex }) { | 182 | headerStyle ({ row, rowIndex }) { |
164 | if (rowIndex == 1) { | 183 | if (rowIndex == 1) { |
165 | row.forEach(item => { | 184 | row.forEach(item => { |
... | @@ -167,6 +186,12 @@ | ... | @@ -167,6 +186,12 @@ |
167 | }) | 186 | }) |
168 | } | 187 | } |
169 | }, | 188 | }, |
189 | /** | ||
190 | * @description: headerStyle1 | ||
191 | * @param {*} row | ||
192 | * @param {*} rowIndex | ||
193 | * @author: renchao | ||
194 | */ | ||
170 | headerStyle1 ({ row, rowIndex }) { | 195 | headerStyle1 ({ row, rowIndex }) { |
171 | if (rowIndex == 2) { | 196 | if (rowIndex == 2) { |
172 | row.forEach(item => { | 197 | row.forEach(item => { |
... | @@ -175,6 +200,10 @@ | ... | @@ -175,6 +200,10 @@ |
175 | } | 200 | } |
176 | }, | 201 | }, |
177 | // 初始化数据 | 202 | // 初始化数据 |
203 | /** | ||
204 | * @description: 初始化数据 | ||
205 | * @author: renchao | ||
206 | */ | ||
178 | featchDataSelf () { | 207 | featchDataSelf () { |
179 | registerBookQuality(this.form.startTime, this.form.endTime).then(res => { | 208 | registerBookQuality(this.form.startTime, this.form.endTime).then(res => { |
180 | let records = res.result | 209 | let records = res.result |
... | @@ -182,6 +211,10 @@ | ... | @@ -182,6 +211,10 @@ |
182 | }) | 211 | }) |
183 | }, | 212 | }, |
184 | // 重置 | 213 | // 重置 |
214 | /** | ||
215 | * @description: 重置 | ||
216 | * @author: renchao | ||
217 | */ | ||
185 | handleResetForm () { | 218 | handleResetForm () { |
186 | this.form.startTime = getCurrentDate() | 219 | this.form.startTime = getCurrentDate() |
187 | this.form.endTime = getCurrentDate('time') | 220 | this.form.endTime = getCurrentDate('time') | ... | ... |
... | @@ -93,9 +93,18 @@ | ... | @@ -93,9 +93,18 @@ |
93 | ...mapGetters(["dicData"]), | 93 | ...mapGetters(["dicData"]), |
94 | }, | 94 | }, |
95 | methods: { | 95 | methods: { |
96 | /** | ||
97 | * @description: endTimeChange | ||
98 | * @param {*} val | ||
99 | * @author: renchao | ||
100 | */ | ||
96 | endTimeChange (val) { | 101 | endTimeChange (val) { |
97 | this.form.endTime = timeFormat(new Date(val), true) | 102 | this.form.endTime = timeFormat(new Date(val), true) |
98 | }, | 103 | }, |
104 | /** | ||
105 | * @description: getProcessCounts | ||
106 | * @author: renchao | ||
107 | */ | ||
99 | async getProcessCounts () { | 108 | async getProcessCounts () { |
100 | this.chartData = []; | 109 | this.chartData = []; |
101 | let { result: res } = await efficient.getProcessCounts( | 110 | let { result: res } = await efficient.getProcessCounts( |
... | @@ -112,6 +121,10 @@ | ... | @@ -112,6 +121,10 @@ |
112 | 121 | ||
113 | }, | 122 | }, |
114 | // 重置 | 123 | // 重置 |
124 | /** | ||
125 | * @description: 重置 | ||
126 | * @author: renchao | ||
127 | */ | ||
115 | resetForm () { | 128 | resetForm () { |
116 | this.form = { | 129 | this.form = { |
117 | startTime: getFirstDayOfSeason(), | 130 | startTime: getFirstDayOfSeason(), |
... | @@ -121,6 +134,11 @@ | ... | @@ -121,6 +134,11 @@ |
121 | this.getProcessCounts(); | 134 | this.getProcessCounts(); |
122 | }, | 135 | }, |
123 | //图表渲染 | 136 | //图表渲染 |
137 | /** | ||
138 | * @description: 图表渲染 | ||
139 | * @param {*} chartArr | ||
140 | * @author: renchao | ||
141 | */ | ||
124 | echartInit (chartArr) { | 142 | echartInit (chartArr) { |
125 | // 基于准备好的dom,初始化echarts实例 | 143 | // 基于准备好的dom,初始化echarts实例 |
126 | let myChart = this.$echarts.init(document.getElementById("myChart")); | 144 | let myChart = this.$echarts.init(document.getElementById("myChart")); | ... | ... |
... | @@ -238,6 +238,11 @@ | ... | @@ -238,6 +238,11 @@ |
238 | }; | 238 | }; |
239 | }, | 239 | }, |
240 | methods: { | 240 | methods: { |
241 | /** | ||
242 | * @description: uploadRecord | ||
243 | * @param {*} file | ||
244 | * @author: renchao | ||
245 | */ | ||
241 | uploadRecord (file) { | 246 | uploadRecord (file) { |
242 | this.requested = true | 247 | this.requested = true |
243 | this.files = file; | 248 | this.files = file; |
... | @@ -253,6 +258,11 @@ | ... | @@ -253,6 +258,11 @@ |
253 | } | 258 | } |
254 | return (extension) && isLt5M | 259 | return (extension) && isLt5M |
255 | }, | 260 | }, |
261 | /** | ||
262 | * @description: fileChange | ||
263 | * @param {*} res | ||
264 | * @author: renchao | ||
265 | */ | ||
256 | fileChange (res) { | 266 | fileChange (res) { |
257 | let fd = new FormData() | 267 | let fd = new FormData() |
258 | fd.append('files', res.raw)// 文件对象 | 268 | fd.append('files', res.raw)// 文件对象 |
... | @@ -269,10 +279,19 @@ | ... | @@ -269,10 +279,19 @@ |
269 | }) | 279 | }) |
270 | }, | 280 | }, |
271 | //截止日期变化 | 281 | //截止日期变化 |
282 | /** | ||
283 | * @description: 截止日期变化 | ||
284 | * @param {*} val | ||
285 | * @author: renchao | ||
286 | */ | ||
272 | endTimeChange (val) { | 287 | endTimeChange (val) { |
273 | this.form.receiveEndTime = timeFormat(new Date(val), true) | 288 | this.form.receiveEndTime = timeFormat(new Date(val), true) |
274 | }, | 289 | }, |
275 | // 初始化数据 | 290 | // 初始化数据 |
291 | /** | ||
292 | * @description: 初始化数据 | ||
293 | * @author: renchao | ||
294 | */ | ||
276 | queryClick () { | 295 | queryClick () { |
277 | getReceiveDataReportPage({ ...this.form, ...this.formData }).then( | 296 | getReceiveDataReportPage({ ...this.form, ...this.formData }).then( |
278 | (res) => { | 297 | (res) => { |
... | @@ -286,19 +305,37 @@ | ... | @@ -286,19 +305,37 @@ |
286 | ) | 305 | ) |
287 | }, | 306 | }, |
288 | // 重置 | 307 | // 重置 |
308 | /** | ||
309 | * @description: 重置 | ||
310 | * @author: renchao | ||
311 | */ | ||
289 | resetForm () { | 312 | resetForm () { |
290 | this.$refs.ruleForm.resetFields(); | 313 | this.$refs.ruleForm.resetFields(); |
291 | this.form.currentPage = 1 | 314 | this.form.currentPage = 1 |
292 | this.queryClick(); | 315 | this.queryClick(); |
293 | }, | 316 | }, |
317 | /** | ||
318 | * @description: featchData | ||
319 | * @author: renchao | ||
320 | */ | ||
294 | featchData () { | 321 | featchData () { |
295 | this.queryClick(); | 322 | this.queryClick(); |
296 | }, | 323 | }, |
297 | // 结果 | 324 | // 结果 |
325 | /** | ||
326 | * @description: 结果 | ||
327 | * @param {*} row | ||
328 | * @author: renchao | ||
329 | */ | ||
298 | handleResult (row) { | 330 | handleResult (row) { |
299 | this.$popupDialog('响应结果', 'views/jsbwcx/components/result', row) | 331 | this.$popupDialog('响应结果', 'views/jsbwcx/components/result', row) |
300 | }, | 332 | }, |
301 | // 详情 | 333 | // 详情 |
334 | /** | ||
335 | * @description: 详情 | ||
336 | * @param {*} row | ||
337 | * @author: renchao | ||
338 | */ | ||
302 | handleDetails (row) { | 339 | handleDetails (row) { |
303 | if (row.rectypeName) { | 340 | if (row.rectypeName) { |
304 | this.title = row.rectypeName | 341 | this.title = row.rectypeName | ... | ... |
... | @@ -111,9 +111,22 @@ export default { | ... | @@ -111,9 +111,22 @@ export default { |
111 | this.initPage(); | 111 | this.initPage(); |
112 | this.userInfo.redirectUrl = localStorage.getItem("sjsb-location"); | 112 | this.userInfo.redirectUrl = localStorage.getItem("sjsb-location"); |
113 | this.reloadCaptcha() | 113 | this.reloadCaptcha() |
114 | let self = this; | ||
115 | document.onkeydown = function (e) { | ||
116 | //按下回车提交 | ||
117 | let key = window.event.keyCode; | ||
118 | //事件中keycode=13为回车事件 | ||
119 | if (key == 13) { | ||
120 | self.goHome(); | ||
121 | } | ||
122 | }; | ||
114 | }, | 123 | }, |
115 | methods: { | 124 | methods: { |
116 | // 更新验证码 | 125 | // 更新验证码 |
126 | /** | ||
127 | * @description: 更新验证码 | ||
128 | * @author: renchao | ||
129 | */ | ||
117 | reloadCaptcha(){ | 130 | reloadCaptcha(){ |
118 | axios.get(window._config.services.management + "/management/captcha?format=json").then(res => { | 131 | axios.get(window._config.services.management + "/management/captcha?format=json").then(res => { |
119 | if (res.data.status === 1) { | 132 | if (res.data.status === 1) { |
... | @@ -123,6 +136,10 @@ export default { | ... | @@ -123,6 +136,10 @@ export default { |
123 | }) | 136 | }) |
124 | }, | 137 | }, |
125 | // 初始化 | 138 | // 初始化 |
139 | /** | ||
140 | * @description: 初始化 | ||
141 | * @author: renchao | ||
142 | */ | ||
126 | initPage() { | 143 | initPage() { |
127 | let userInfo = | 144 | let userInfo = |
128 | localStorage.getItem("userInfo") && | 145 | localStorage.getItem("userInfo") && |
... | @@ -133,6 +150,10 @@ export default { | ... | @@ -133,6 +150,10 @@ export default { |
133 | } | 150 | } |
134 | }, | 151 | }, |
135 | // 登录 | 152 | // 登录 |
153 | /** | ||
154 | * @description: 登录 | ||
155 | * @author: renchao | ||
156 | */ | ||
136 | goHome() { | 157 | goHome() { |
137 | if (this.userInfo.username && this.userInfo.password) { | 158 | if (this.userInfo.username && this.userInfo.password) { |
138 | axios | 159 | axios |
... | @@ -156,13 +177,27 @@ export default { | ... | @@ -156,13 +177,27 @@ export default { |
156 | return | 177 | return |
157 | } | 178 | } |
158 | }, | 179 | }, |
180 | /** | ||
181 | * @description: selectEyes | ||
182 | * @author: renchao | ||
183 | */ | ||
159 | selectEyes() { | 184 | selectEyes() { |
160 | this.selectEye = !this.selectEye; | 185 | this.selectEye = !this.selectEye; |
161 | }, | 186 | }, |
162 | //获取焦点 | 187 | //获取焦点 |
188 | /** | ||
189 | * @description: 获取焦点 | ||
190 | * @param {*} type | ||
191 | * @author: renchao | ||
192 | */ | ||
163 | reduceBorder(type) { | 193 | reduceBorder(type) { |
164 | this.change[type] = true | 194 | this.change[type] = true |
165 | }, | 195 | }, |
196 | /** | ||
197 | * @description: addBorder | ||
198 | * @param {*} type | ||
199 | * @author: renchao | ||
200 | */ | ||
166 | addBorder(type) { | 201 | addBorder(type) { |
167 | //失去焦点 | 202 | //失去焦点 |
168 | switch (type) { | 203 | switch (type) { | ... | ... |
... | @@ -291,10 +291,19 @@ | ... | @@ -291,10 +291,19 @@ |
291 | }, | 291 | }, |
292 | methods: { | 292 | methods: { |
293 | // 关闭弹框事件 | 293 | // 关闭弹框事件 |
294 | /** | ||
295 | * @description: 关闭弹框事件 | ||
296 | * @author: renchao | ||
297 | */ | ||
294 | closeDialog () { | 298 | closeDialog () { |
295 | this.dialogVisible = false; | 299 | this.dialogVisible = false; |
296 | }, | 300 | }, |
297 | // 展示弹框 | 301 | // 展示弹框 |
302 | /** | ||
303 | * @description: 展示弹框 | ||
304 | * @param {*} item | ||
305 | * @author: renchao | ||
306 | */ | ||
298 | isShow (item) { | 307 | isShow (item) { |
299 | this.title = '登薄日志(' + item.ACCESSDATE + ')' | 308 | this.title = '登薄日志(' + item.ACCESSDATE + ')' |
300 | this.titleName = 'sjmx' | 309 | this.titleName = 'sjmx' |
... | @@ -304,6 +313,7 @@ | ... | @@ -304,6 +313,7 @@ |
304 | }, | 313 | }, |
305 | /** | 314 | /** |
306 | * @description: 获取列表接口 | 315 | * @description: 获取列表接口 |
316 | * @param {*} data | ||
307 | * @author: renchao | 317 | * @author: renchao |
308 | */ | 318 | */ |
309 | _getDetails (data) { | 319 | _getDetails (data) { |
... | @@ -325,6 +335,10 @@ | ... | @@ -325,6 +335,10 @@ |
325 | }) | 335 | }) |
326 | }, | 336 | }, |
327 | // 当日登薄详单 | 337 | // 当日登薄详单 |
338 | /** | ||
339 | * @description: 当日登薄详单 | ||
340 | * @author: renchao | ||
341 | */ | ||
328 | handleDBAdd () { | 342 | handleDBAdd () { |
329 | this.tableDBData.data.push({ | 343 | this.tableDBData.data.push({ |
330 | YWH: '', | 344 | YWH: '', |
... | @@ -340,6 +354,11 @@ | ... | @@ -340,6 +354,11 @@ |
340 | this.$set(item, 'index', index) | 354 | this.$set(item, 'index', index) |
341 | }) | 355 | }) |
342 | }, | 356 | }, |
357 | /** | ||
358 | * @description: handleDBMinus | ||
359 | * @param {*} row | ||
360 | * @author: renchao | ||
361 | */ | ||
343 | handleDBMinus (row) { | 362 | handleDBMinus (row) { |
344 | this.$confirm('此操作将删除列表, 是否继续?', '提示', { | 363 | this.$confirm('此操作将删除列表, 是否继续?', '提示', { |
345 | confirmButtonText: '确定', | 364 | confirmButtonText: '确定', |
... | @@ -362,6 +381,10 @@ | ... | @@ -362,6 +381,10 @@ |
362 | }) | 381 | }) |
363 | }, | 382 | }, |
364 | // 当日上报详单 | 383 | // 当日上报详单 |
384 | /** | ||
385 | * @description: 当日上报详单 | ||
386 | * @author: renchao | ||
387 | */ | ||
365 | handleSBAdd () { | 388 | handleSBAdd () { |
366 | this.tableSBData.data.push({ | 389 | this.tableSBData.data.push({ |
367 | YWH: '', | 390 | YWH: '', |
... | @@ -373,6 +396,11 @@ | ... | @@ -373,6 +396,11 @@ |
373 | this.$set(item, 'index', index) | 396 | this.$set(item, 'index', index) |
374 | }) | 397 | }) |
375 | }, | 398 | }, |
399 | /** | ||
400 | * @description: handleSBMinus | ||
401 | * @param {*} row | ||
402 | * @author: renchao | ||
403 | */ | ||
376 | handleSBMinus (row) { | 404 | handleSBMinus (row) { |
377 | this.$confirm('此操作将删除列表, 是否继续?', '提示', { | 405 | this.$confirm('此操作将删除列表, 是否继续?', '提示', { |
378 | confirmButtonText: '确定', | 406 | confirmButtonText: '确定', | ... | ... |
... | @@ -131,9 +131,18 @@ | ... | @@ -131,9 +131,18 @@ |
131 | }, | 131 | }, |
132 | methods: { | 132 | methods: { |
133 | //截止日期变化 | 133 | //截止日期变化 |
134 | /** | ||
135 | * @description: 截止日期变化 | ||
136 | * @param {*} val | ||
137 | * @author: renchao | ||
138 | */ | ||
134 | endTimeChange (val) { | 139 | endTimeChange (val) { |
135 | this.form.endTime = timeFormat(new Date(val), true) | 140 | this.form.endTime = timeFormat(new Date(val), true) |
136 | }, | 141 | }, |
142 | /** | ||
143 | * @description: featchData | ||
144 | * @author: renchao | ||
145 | */ | ||
137 | featchData () { | 146 | featchData () { |
138 | getRecordLogPage({ ...this.form }).then(res => { | 147 | getRecordLogPage({ ...this.form }).then(res => { |
139 | if (res.code === 200) { | 148 | if (res.code === 200) { |
... | @@ -145,12 +154,21 @@ | ... | @@ -145,12 +154,21 @@ |
145 | }) | 154 | }) |
146 | }, | 155 | }, |
147 | // 重置 | 156 | // 重置 |
157 | /** | ||
158 | * @description: 重置 | ||
159 | * @author: renchao | ||
160 | */ | ||
148 | resetForm () { | 161 | resetForm () { |
149 | this.$refs.ruleForm.resetFields(); | 162 | this.$refs.ruleForm.resetFields(); |
150 | this.form.currentPage = 1 | 163 | this.form.currentPage = 1 |
151 | this.featchData(); | 164 | this.featchData(); |
152 | }, | 165 | }, |
153 | // 编辑 | 166 | // 编辑 |
167 | /** | ||
168 | * @description: 编辑 | ||
169 | * @param {*} row | ||
170 | * @author: renchao | ||
171 | */ | ||
154 | handleEdit (row) { | 172 | handleEdit (row) { |
155 | this.$refs.editLog.isShow(row); | 173 | this.$refs.editLog.isShow(row); |
156 | this.$store.dispatch('business/setReportLogEdit') | 174 | this.$store.dispatch('business/setReportLogEdit') | ... | ... |
... | @@ -82,9 +82,17 @@ export default { | ... | @@ -82,9 +82,17 @@ export default { |
82 | } | 82 | } |
83 | }, | 83 | }, |
84 | methods: { | 84 | methods: { |
85 | /** | ||
86 | * @description: closeDialog | ||
87 | * @author: renchao | ||
88 | */ | ||
85 | closeDialog () { | 89 | closeDialog () { |
86 | this.$emit('input', false) | 90 | this.$emit('input', false) |
87 | }, | 91 | }, |
92 | /** | ||
93 | * @description: handleSubmit | ||
94 | * @author: renchao | ||
95 | */ | ||
88 | handleSubmit () { | 96 | handleSubmit () { |
89 | this.$emit('input', false) | 97 | this.$emit('input', false) |
90 | } | 98 | } | ... | ... |
... | @@ -194,10 +194,19 @@ | ... | @@ -194,10 +194,19 @@ |
194 | }, | 194 | }, |
195 | methods: { | 195 | methods: { |
196 | //截止日期变化 | 196 | //截止日期变化 |
197 | /** | ||
198 | * @description: 截止日期变化 | ||
199 | * @param {*} val | ||
200 | * @author: renchao | ||
201 | */ | ||
197 | endTimeChange (val) { | 202 | endTimeChange (val) { |
198 | this.form.exchangeEndTime = timeFormat(new Date(val), true) | 203 | this.form.exchangeEndTime = timeFormat(new Date(val), true) |
199 | }, | 204 | }, |
200 | // 初始化数据 | 205 | // 初始化数据 |
206 | /** | ||
207 | * @description: 初始化数据 | ||
208 | * @author: renchao | ||
209 | */ | ||
201 | featchData () { | 210 | featchData () { |
202 | getDataReportPage({ ...this.form }).then((res) => { | 211 | getDataReportPage({ ...this.form }).then((res) => { |
203 | if (res.code === 200) { | 212 | if (res.code === 200) { |
... | @@ -209,8 +218,17 @@ | ... | @@ -209,8 +218,17 @@ |
209 | }); | 218 | }); |
210 | }, | 219 | }, |
211 | // 上报 | 220 | // 上报 |
221 | /** | ||
222 | * @description: 上报 | ||
223 | * @author: renchao | ||
224 | */ | ||
212 | handleEscalation () { }, | 225 | handleEscalation () { }, |
213 | // 详情 | 226 | // 详情 |
227 | /** | ||
228 | * @description: 详情 | ||
229 | * @param {*} row | ||
230 | * @author: renchao | ||
231 | */ | ||
214 | handleDetail (row) { | 232 | handleDetail (row) { |
215 | this.title = row.rectypeName; | 233 | this.title = row.rectypeName; |
216 | this.$refs.editLog.isShow(row); | 234 | this.$refs.editLog.isShow(row); |
... | @@ -221,6 +239,10 @@ | ... | @@ -221,6 +239,10 @@ |
221 | } | 239 | } |
222 | }, | 240 | }, |
223 | // 重置 | 241 | // 重置 |
242 | /** | ||
243 | * @description: 重置 | ||
244 | * @author: renchao | ||
245 | */ | ||
224 | resetForm () { | 246 | resetForm () { |
225 | this.$refs.ruleForm.resetFields(); | 247 | this.$refs.ruleForm.resetFields(); |
226 | this.form.exchangeEndTime = "" | 248 | this.form.exchangeEndTime = "" | ... | ... |
... | @@ -82,9 +82,17 @@ export default { | ... | @@ -82,9 +82,17 @@ export default { |
82 | } | 82 | } |
83 | }, | 83 | }, |
84 | methods: { | 84 | methods: { |
85 | /** | ||
86 | * @description: closeDialog | ||
87 | * @author: renchao | ||
88 | */ | ||
85 | closeDialog () { | 89 | closeDialog () { |
86 | this.$emit('input', false) | 90 | this.$emit('input', false) |
87 | }, | 91 | }, |
92 | /** | ||
93 | * @description: handleSubmit | ||
94 | * @author: renchao | ||
95 | */ | ||
88 | handleSubmit () { | 96 | handleSubmit () { |
89 | this.$emit('input', false) | 97 | this.$emit('input', false) |
90 | } | 98 | } | ... | ... |
... | @@ -245,10 +245,19 @@ | ... | @@ -245,10 +245,19 @@ |
245 | }, | 245 | }, |
246 | methods: { | 246 | methods: { |
247 | //截止日期变化 | 247 | //截止日期变化 |
248 | /** | ||
249 | * @description: 截止日期变化 | ||
250 | * @param {*} val | ||
251 | * @author: renchao | ||
252 | */ | ||
248 | endTimeChange (val) { | 253 | endTimeChange (val) { |
249 | this.form.exchangeEndTime = timeFormat(new Date(val), true) | 254 | this.form.exchangeEndTime = timeFormat(new Date(val), true) |
250 | }, | 255 | }, |
251 | // 初始化数据 | 256 | // 初始化数据 |
257 | /** | ||
258 | * @description: 初始化数据 | ||
259 | * @author: renchao | ||
260 | */ | ||
252 | featchData () { | 261 | featchData () { |
253 | getSjsbReportPage({ ...this.form, ...this.formData }).then((res) => { | 262 | getSjsbReportPage({ ...this.form, ...this.formData }).then((res) => { |
254 | if (res.code === 200) { | 263 | if (res.code === 200) { |
... | @@ -260,8 +269,17 @@ | ... | @@ -260,8 +269,17 @@ |
260 | }); | 269 | }); |
261 | }, | 270 | }, |
262 | // 上报 | 271 | // 上报 |
272 | /** | ||
273 | * @description: 上报 | ||
274 | * @author: renchao | ||
275 | */ | ||
263 | handleEscalation () { }, | 276 | handleEscalation () { }, |
264 | // 详情 | 277 | // 详情 |
278 | /** | ||
279 | * @description: 详情 | ||
280 | * @param {*} row | ||
281 | * @author: renchao | ||
282 | */ | ||
265 | handleDetail (row) { | 283 | handleDetail (row) { |
266 | this.title = row.rectypeName; | 284 | this.title = row.rectypeName; |
267 | this.$refs.editLog.isShow(row); | 285 | this.$refs.editLog.isShow(row); |
... | @@ -272,12 +290,21 @@ | ... | @@ -272,12 +290,21 @@ |
272 | } | 290 | } |
273 | }, | 291 | }, |
274 | // 重置 | 292 | // 重置 |
293 | /** | ||
294 | * @description: 重置 | ||
295 | * @author: renchao | ||
296 | */ | ||
275 | resetForm () { | 297 | resetForm () { |
276 | this.$refs.ruleForm.resetFields(); | 298 | this.$refs.ruleForm.resetFields(); |
277 | this.form.exchangeEndTime = "" | 299 | this.form.exchangeEndTime = "" |
278 | this.form.currentPage = 1 | 300 | this.form.currentPage = 1 |
279 | this.featchData(); | 301 | this.featchData(); |
280 | }, | 302 | }, |
303 | /** | ||
304 | * @description: ywhClick | ||
305 | * @param {*} item | ||
306 | * @author: renchao | ||
307 | */ | ||
281 | ywhClick (item) { | 308 | ywhClick (item) { |
282 | window.open('http://192.168.2.38/bdcdj#/workFrame?bsmSlsq=4582b05a4d49c25673eb0880b5787e58&bestepid=sl&bsmBusiness=&sqywbm=A03100', '_blank') | 309 | window.open('http://192.168.2.38/bdcdj#/workFrame?bsmSlsq=4582b05a4d49c25673eb0880b5787e58&bestepid=sl&bsmBusiness=&sqywbm=A03100', '_blank') |
283 | //判断用户是否拥有该任务的权限,若有则跳转,无权限则给予提示并刷新页面 | 310 | //判断用户是否拥有该任务的权限,若有则跳转,无权限则给予提示并刷新页面 | ... | ... |
... | @@ -78,6 +78,10 @@ | ... | @@ -78,6 +78,10 @@ |
78 | } | 78 | } |
79 | }, | 79 | }, |
80 | methods: { | 80 | methods: { |
81 | /** | ||
82 | * @description: handleSubmit | ||
83 | * @author: renchao | ||
84 | */ | ||
81 | handleSubmit () { | 85 | handleSubmit () { |
82 | let _this = this | 86 | let _this = this |
83 | this.$refs['ruleForm'].validate(async (valid) => { | 87 | this.$refs['ruleForm'].validate(async (valid) => { |
... | @@ -120,6 +124,10 @@ | ... | @@ -120,6 +124,10 @@ |
120 | } | 124 | } |
121 | }) | 125 | }) |
122 | }, | 126 | }, |
127 | /** | ||
128 | * @description: handleClose | ||
129 | * @author: renchao | ||
130 | */ | ||
123 | handleClose () { | 131 | handleClose () { |
124 | this.$emit("input", false); | 132 | this.$emit("input", false); |
125 | } | 133 | } | ... | ... |
... | @@ -158,6 +158,10 @@ | ... | @@ -158,6 +158,10 @@ |
158 | } | 158 | } |
159 | }, | 159 | }, |
160 | methods: { | 160 | methods: { |
161 | /** | ||
162 | * @description: isShow | ||
163 | * @author: renchao | ||
164 | */ | ||
161 | isShow () { | 165 | isShow () { |
162 | setTimeout(() => { | 166 | setTimeout(() => { |
163 | this.ruleForm = this.ruleData | 167 | this.ruleForm = this.ruleData |
... | @@ -165,9 +169,18 @@ | ... | @@ -165,9 +169,18 @@ |
165 | }, 0) | 169 | }, 0) |
166 | this.$refs.validRule.isShow() | 170 | this.$refs.validRule.isShow() |
167 | }, | 171 | }, |
172 | /** | ||
173 | * @description: handleEdit | ||
174 | * @param {*} scope | ||
175 | * @author: renchao | ||
176 | */ | ||
168 | handleEdit (scope) { | 177 | handleEdit (scope) { |
169 | this.$set(scope.row, '_edit', true) | 178 | this.$set(scope.row, '_edit', true) |
170 | }, | 179 | }, |
180 | /** | ||
181 | * @description: handleAdd | ||
182 | * @author: renchao | ||
183 | */ | ||
171 | handleAdd () { | 184 | handleAdd () { |
172 | this.tableData.data.push({ | 185 | this.tableData.data.push({ |
173 | field: '', | 186 | field: '', |
... | @@ -177,9 +190,19 @@ | ... | @@ -177,9 +190,19 @@ |
177 | message: '' | 190 | message: '' |
178 | }) | 191 | }) |
179 | }, | 192 | }, |
193 | /** | ||
194 | * @description: handleMinus | ||
195 | * @param {*} index | ||
196 | * @param {*} row | ||
197 | * @author: renchao | ||
198 | */ | ||
180 | handleMinus (index, row) { | 199 | handleMinus (index, row) { |
181 | this.tableData.data.splice(index, 1); | 200 | this.tableData.data.splice(index, 1); |
182 | }, | 201 | }, |
202 | /** | ||
203 | * @description: handleSubmit | ||
204 | * @author: renchao | ||
205 | */ | ||
183 | async handleSubmit () { | 206 | async handleSubmit () { |
184 | this.ruleForm.sysYwsjbFieldList = this.tableData.data | 207 | this.ruleForm.sysYwsjbFieldList = this.tableData.data |
185 | try { | 208 | try { |
... | @@ -198,6 +221,10 @@ | ... | @@ -198,6 +221,10 @@ |
198 | } | 221 | } |
199 | 222 | ||
200 | }, | 223 | }, |
224 | /** | ||
225 | * @description: handleClose | ||
226 | * @author: renchao | ||
227 | */ | ||
201 | handleClose () { | 228 | handleClose () { |
202 | this.$refs['ruleForm'].resetFields(); | 229 | this.$refs['ruleForm'].resetFields(); |
203 | this.$refs.validRule.isHide() | 230 | this.$refs.validRule.isHide() | ... | ... |
... | @@ -257,6 +257,12 @@ | ... | @@ -257,6 +257,12 @@ |
257 | }, | 257 | }, |
258 | methods: { | 258 | methods: { |
259 | // 添加索引 | 259 | // 添加索引 |
260 | /** | ||
261 | * @description: 添加索引 | ||
262 | * @param {*} data | ||
263 | * @param {*} isAdd | ||
264 | * @author: renchao | ||
265 | */ | ||
260 | addIndexes (data = this.tableData, isAdd = true) { | 266 | addIndexes (data = this.tableData, isAdd = true) { |
261 | data.forEach((item, index) => { | 267 | data.forEach((item, index) => { |
262 | if (index == 0) { | 268 | if (index == 0) { |
... | @@ -278,6 +284,10 @@ | ... | @@ -278,6 +284,10 @@ |
278 | } | 284 | } |
279 | }); | 285 | }); |
280 | }, | 286 | }, |
287 | /** | ||
288 | * @description: itemShowFalse | ||
289 | * @author: renchao | ||
290 | */ | ||
281 | itemShowFalse () { | 291 | itemShowFalse () { |
282 | this.tableData.forEach((item, index) => { | 292 | this.tableData.forEach((item, index) => { |
283 | item.codeShow = false; | 293 | item.codeShow = false; |
... | @@ -286,11 +296,21 @@ | ... | @@ -286,11 +296,21 @@ |
286 | item.normnameShow = false; | 296 | item.normnameShow = false; |
287 | }); | 297 | }); |
288 | }, | 298 | }, |
299 | /** | ||
300 | * @description: handleMinus | ||
301 | * @param {*} index | ||
302 | * @param {*} row | ||
303 | * @author: renchao | ||
304 | */ | ||
289 | handleMinus (index, row) { | 305 | handleMinus (index, row) { |
290 | removeTreeListItem(this.tableData, row.dictid, 'dictid'); | 306 | removeTreeListItem(this.tableData, row.dictid, 'dictid'); |
291 | this.tableData = judgeSort(this.tableData) | 307 | this.tableData = judgeSort(this.tableData) |
292 | this.key++; | 308 | this.key++; |
293 | }, | 309 | }, |
310 | /** | ||
311 | * @description: handleSubmit | ||
312 | * @author: renchao | ||
313 | */ | ||
294 | handleSubmit () { | 314 | handleSubmit () { |
295 | editDictNode({ | 315 | editDictNode({ |
296 | dictid: this.details.rowData.dictid, | 316 | dictid: this.details.rowData.dictid, |
... | @@ -306,10 +326,19 @@ | ... | @@ -306,10 +326,19 @@ |
306 | } | 326 | } |
307 | }); | 327 | }); |
308 | }, | 328 | }, |
329 | /** | ||
330 | * @description: closeDialog | ||
331 | * @author: renchao | ||
332 | */ | ||
309 | closeDialog () { | 333 | closeDialog () { |
310 | this.$emit("input", false); | 334 | this.$emit("input", false); |
311 | }, | 335 | }, |
312 | // 增加下级 | 336 | // 增加下级 |
337 | /** | ||
338 | * @description: 增加下级 | ||
339 | * @param {*} row | ||
340 | * @author: renchao | ||
341 | */ | ||
313 | handleAddSubordinate (row) { | 342 | handleAddSubordinate (row) { |
314 | if (!row.children) { | 343 | if (!row.children) { |
315 | row.children = []; | 344 | row.children = []; |
... | @@ -327,6 +356,10 @@ | ... | @@ -327,6 +356,10 @@ |
327 | this.keyList.push(row.dictid); | 356 | this.keyList.push(row.dictid); |
328 | }, | 357 | }, |
329 | // 增加 | 358 | // 增加 |
359 | /** | ||
360 | * @description: 增加 | ||
361 | * @author: renchao | ||
362 | */ | ||
330 | handleAdd () { | 363 | handleAdd () { |
331 | this.$nextTick(() => { | 364 | this.$nextTick(() => { |
332 | let container = this.$el.querySelector(".el-table__body-wrapper"); | 365 | let container = this.$el.querySelector(".el-table__body-wrapper"); |
... | @@ -346,12 +379,24 @@ | ... | @@ -346,12 +379,24 @@ |
346 | this.key++; | 379 | this.key++; |
347 | }, | 380 | }, |
348 | // 上移下移 | 381 | // 上移下移 |
382 | /** | ||
383 | * @description: 上移下移 | ||
384 | * @param {*} index | ||
385 | * @param {*} row | ||
386 | * @author: renchao | ||
387 | */ | ||
349 | moveUpward (index, row) { | 388 | moveUpward (index, row) { |
350 | realMove(row.dictid, "UP", this.tableData); | 389 | realMove(row.dictid, "UP", this.tableData); |
351 | let id = findParents(this.tableData, row.dictid); | 390 | let id = findParents(this.tableData, row.dictid); |
352 | this.keyList = id; | 391 | this.keyList = id; |
353 | this.key++; | 392 | this.key++; |
354 | }, | 393 | }, |
394 | /** | ||
395 | * @description: moveDown | ||
396 | * @param {*} index | ||
397 | * @param {*} row | ||
398 | * @author: renchao | ||
399 | */ | ||
355 | moveDown (index, row) { | 400 | moveDown (index, row) { |
356 | realMove(row.dictid, "DOWN", this.tableData); | 401 | realMove(row.dictid, "DOWN", this.tableData); |
357 | let id = findParents(this.tableData, row.dictid); | 402 | let id = findParents(this.tableData, row.dictid); | ... | ... |
... | @@ -83,6 +83,10 @@ | ... | @@ -83,6 +83,10 @@ |
83 | }, | 83 | }, |
84 | methods: { | 84 | methods: { |
85 | // 初始化数据 | 85 | // 初始化数据 |
86 | /** | ||
87 | * @description: 初始化数据 | ||
88 | * @author: renchao | ||
89 | */ | ||
86 | queryClick () { | 90 | queryClick () { |
87 | getQlxxDictList({ ...this.ruleForm, ...this.pageData }).then(res => { | 91 | getQlxxDictList({ ...this.ruleForm, ...this.pageData }).then(res => { |
88 | let { records, total } = res.result | 92 | let { records, total } = res.result |
... | @@ -90,11 +94,19 @@ | ... | @@ -90,11 +94,19 @@ |
90 | this.tableData.total = total ? total : 0 | 94 | this.tableData.total = total ? total : 0 |
91 | }) | 95 | }) |
92 | }, | 96 | }, |
97 | /** | ||
98 | * @description: handleSearch | ||
99 | * @author: renchao | ||
100 | */ | ||
93 | handleSearch () { | 101 | handleSearch () { |
94 | this.pageData.currentPage = 1 | 102 | this.pageData.currentPage = 1 |
95 | this.tableData.data = [] | 103 | this.tableData.data = [] |
96 | this.queryClick() | 104 | this.queryClick() |
97 | }, | 105 | }, |
106 | /** | ||
107 | * @description: handleRefresh | ||
108 | * @author: renchao | ||
109 | */ | ||
98 | handleRefresh () { | 110 | handleRefresh () { |
99 | this.$confirm('是否确认刷新', '提示', { | 111 | this.$confirm('是否确认刷新', '提示', { |
100 | confirmButtonText: '确定', | 112 | confirmButtonText: '确定', |
... | @@ -120,6 +132,12 @@ | ... | @@ -120,6 +132,12 @@ |
120 | }); | 132 | }); |
121 | }); | 133 | }); |
122 | }, | 134 | }, |
135 | /** | ||
136 | * @description: editClick | ||
137 | * @param {*} row | ||
138 | * @param {*} val | ||
139 | * @author: renchao | ||
140 | */ | ||
123 | editClick (row, val) { | 141 | editClick (row, val) { |
124 | this.details.rowData = row | 142 | this.details.rowData = row |
125 | this.details.isenable = val | 143 | this.details.isenable = val | ... | ... |
... | @@ -103,14 +103,26 @@ | ... | @@ -103,14 +103,26 @@ |
103 | } | 103 | } |
104 | }, | 104 | }, |
105 | methods: { | 105 | methods: { |
106 | /** | ||
107 | * @description: handleAdd | ||
108 | * @author: renchao | ||
109 | */ | ||
106 | handleAdd () { | 110 | handleAdd () { |
107 | this.taskData = null | 111 | this.taskData = null |
108 | this.isDialog = true | 112 | this.isDialog = true |
109 | }, | 113 | }, |
114 | /** | ||
115 | * @description: resetSe | ||
116 | * @author: renchao | ||
117 | */ | ||
110 | resetSe () { | 118 | resetSe () { |
111 | this.form.jobName = '' | 119 | this.form.jobName = '' |
112 | this.featchData() | 120 | this.featchData() |
113 | }, | 121 | }, |
122 | /** | ||
123 | * @description: featchData | ||
124 | * @author: renchao | ||
125 | */ | ||
114 | async featchData () { | 126 | async featchData () { |
115 | try { | 127 | try { |
116 | this.form = Object.assign(this.form, this.formData) | 128 | this.form = Object.assign(this.form, this.formData) |
... | @@ -121,6 +133,11 @@ | ... | @@ -121,6 +133,11 @@ |
121 | this.message = error | 133 | this.message = error |
122 | } | 134 | } |
123 | }, | 135 | }, |
136 | /** | ||
137 | * @description: recover | ||
138 | * @param {*} row | ||
139 | * @author: renchao | ||
140 | */ | ||
124 | recover (row) { | 141 | recover (row) { |
125 | this.$confirm('此操将进行恢复操作, 是否继续?', '提示', { | 142 | this.$confirm('此操将进行恢复操作, 是否继续?', '提示', { |
126 | confirmButtonText: '确定', | 143 | confirmButtonText: '确定', |
... | @@ -153,6 +170,11 @@ | ... | @@ -153,6 +170,11 @@ |
153 | }) | 170 | }) |
154 | }, | 171 | }, |
155 | 172 | ||
173 | /** | ||
174 | * @description: handleActive | ||
175 | * @param {*} row | ||
176 | * @author: renchao | ||
177 | */ | ||
156 | handleActive (row) { | 178 | handleActive (row) { |
157 | this.$confirm('此操将进行激活操作, 是否继续?', '提示', { | 179 | this.$confirm('此操将进行激活操作, 是否继续?', '提示', { |
158 | confirmButtonText: '确定', | 180 | confirmButtonText: '确定', |
... | @@ -185,6 +207,11 @@ | ... | @@ -185,6 +207,11 @@ |
185 | }) | 207 | }) |
186 | }, | 208 | }, |
187 | // 暂停 | 209 | // 暂停 |
210 | /** | ||
211 | * @description: 暂停 | ||
212 | * @param {*} row | ||
213 | * @author: renchao | ||
214 | */ | ||
188 | handleSuspend (row) { | 215 | handleSuspend (row) { |
189 | this.$confirm('此操将进行暂停操作, 是否继续?', '提示', { | 216 | this.$confirm('此操将进行暂停操作, 是否继续?', '提示', { |
190 | confirmButtonText: '确定', | 217 | confirmButtonText: '确定', |
... | @@ -216,10 +243,20 @@ | ... | @@ -216,10 +243,20 @@ |
216 | }) | 243 | }) |
217 | }) | 244 | }) |
218 | }, | 245 | }, |
246 | /** | ||
247 | * @description: handleEdit | ||
248 | * @param {*} row | ||
249 | * @author: renchao | ||
250 | */ | ||
219 | handleEdit (row) { | 251 | handleEdit (row) { |
220 | this.taskData = row | 252 | this.taskData = row |
221 | this.isDialog = true | 253 | this.isDialog = true |
222 | }, | 254 | }, |
255 | /** | ||
256 | * @description: handleDel | ||
257 | * @param {*} row | ||
258 | * @author: renchao | ||
259 | */ | ||
223 | handleDel (row) { | 260 | handleDel (row) { |
224 | this.$confirm('此操将进行删除操作, 是否继续?', '提示', { | 261 | this.$confirm('此操将进行删除操作, 是否继续?', '提示', { |
225 | confirmButtonText: '确定', | 262 | confirmButtonText: '确定', | ... | ... |
-
Please register or sign in to post a comment