1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
import Api from '~/service/Api';
import commonFunctions from '~/mixin/commonFunctions.js';
export default {
mixins: [commonFunctions],
methods: {
sfzsqywChange() {
if (this.model.limchg.lim.sfzsqyw != '1') {
this.model.limchg.lim.mgskhbh = "";
}
},
sffgsywChange() {
if (this.model.limchg.lim.sffgsyw != '1') {
this.model.limchg.lim.zgskhbh = "";
}
},
othmflgChange() {
if (this.model.limchg.lim.othmflg != '1') {
this.model.limchg.lim.othmgs = "";
}
},
othextkeyChange() {
if (this.model.limchg.othextkey == "" || this.model.limchg.othextkey == null) {
this.model.limchg.lim.othmflg = "0";
this.model.limchg.lim.othmgs = "";
}
},
othfflgChange() {
if (this.model.limchg.lim.othfflg != '1') {
this.model.limchg.lim.othzgs = "";
}
},
async othSearch() {
let data = {
extkey: this.model.limchg.othextkey,
}
const loading = this.loading();
let res = await Api.post('/Domlc/ditzsqSearch/othsearch', data);
loading.close();
if (res.respCode === SUCCESS) {
this.model.limchg.lim.othmgs = res.data;
}
},
async wrkSearch() {
let data = {
extkey: this.model.limchg.ptyextkey,
}
const loading = this.loading();
let res = await Api.post('/Domlc/ditzsqSearch/othsearch', data);
loading.close();
if (res.respCode === SUCCESS) {
this.model.limchg.lim.mgskhbh = res.data;
}
},
async zgskhbhSearch(){
let data = {
extkey: this.model.limchg.ptyextkey,
}
const loading = this.loading();
let res = await Api.post('/Domlc/ditzsqSearch/othsearch', data);
loading.close();
if (res.respCode === SUCCESS) {
this.model.limchg.lim.zgskhbh = res.data;
}
},
async othzgsSearch(){
let data = {
extkey: this.model.limchg.othextkey,
}
const loading = this.loading();
let res = await Api.post('/Domlc/ditzsqSearch/othsearch', data);
loading.close();
if (res.respCode === SUCCESS) {
this.model.limchg.lim.othzgs = res.data;
}
}
}
}