添加权利性质,土地用途,土地等级字典数据
Showing
2 changed files
with
6 additions
and
0 deletions
... | @@ -9,6 +9,9 @@ Vue.use(Vuex); | ... | @@ -9,6 +9,9 @@ Vue.use(Vuex); |
9 | const store = new Vuex.Store({ | 9 | const store = new Vuex.Store({ |
10 | state: sessionStorage.getItem('state') ? JSON.parse(sessionStorage.getItem('state')) : { | 10 | state: sessionStorage.getItem('state') ? JSON.parse(sessionStorage.getItem('state')) : { |
11 | zdbsm: '', | 11 | zdbsm: '', |
12 | tdytList:[], | ||
13 | tddjList:[], | ||
14 | qlxzList:[], | ||
12 | qllxList:[], | 15 | qllxList:[], |
13 | zdtzmList:[], | 16 | zdtzmList:[], |
14 | qlsdfsList:[], | 17 | qlsdfsList:[], | ... | ... |
... | @@ -255,6 +255,9 @@ export default { | ... | @@ -255,6 +255,9 @@ export default { |
255 | s.zdtzmList = s.zdtzmList.length == 0 ?await this.getDicData("宗地(宗海)特征码") : s.sshyList; | 255 | s.zdtzmList = s.zdtzmList.length == 0 ?await this.getDicData("宗地(宗海)特征码") : s.sshyList; |
256 | s.qlsdfsList = s.qlsdfsList.length == 0 ?await this.getDicData("权利设定方式") : s.qlsdfsList; | 256 | s.qlsdfsList = s.qlsdfsList.length == 0 ?await this.getDicData("权利设定方式") : s.qlsdfsList; |
257 | s.gyfsList = s.gyfsList.length == 0 ?await this.getDicData("共有方式") : s.gyfsList; | 257 | s.gyfsList = s.gyfsList.length == 0 ?await this.getDicData("共有方式") : s.gyfsList; |
258 | s.qlxzList = s.qlxzList.length == 0 ?await this.getDicData("权利性质") : s.qlxzList; | ||
259 | s.tdytList = s.tdytList.length == 0 ?await this.getDicData("土地用途") : s.tdytList; | ||
260 | s.tddjList = s.tddjList.length == 0 ?await this.getDicData("土地等级") : s.tddjList; | ||
258 | }, | 261 | }, |
259 | async getDicData(name) { | 262 | async getDicData(name) { |
260 | return await getDdicByMC(name).then((res)=> { | 263 | return await getDdicByMC(name).then((res)=> { | ... | ... |
-
Please register or sign in to post a comment