BUG 29505

This commit is contained in:
aixianling
2022-05-05 16:25:17 +08:00
parent 6d3984654c
commit 7d99c2fb5f
8 changed files with 16 additions and 16 deletions

View File

@@ -123,7 +123,7 @@ export default {
methods: {
beforeSelectTree() {
this.treeObj.checkedKeys = [];
this.instance.post(`/app/appgirdinfo/listAll`).then((res) => {
this.instance.post(`/app/appgirdinfo/listAllByTop`).then((res) => {
if (res.code == 0) {
this.treeObj.treeList = this.format(res.data)
if (this.form.girdInfoList.length) {

View File

@@ -134,7 +134,7 @@ export default {
}
}
}
let IdNumberPass = (rule, value, callback) => {
if (value) {
if (this.idCardNoUtil.checkIdCardNo(value)) {
@@ -315,7 +315,7 @@ export default {
},
getGridList() {
this.instance.post(`/app/appgirdinfo/listAll`).then((res) => {
this.instance.post(`/app/appgirdinfo/listAllByTop`).then((res) => {
if (res.code == 0) {
this.treeObj.treeList = this.format(res.data)
if (this.formData.girdId) {

View File

@@ -134,7 +134,7 @@ export default {
}
}
}
let IdNumberPass = (rule, value, callback) => {
if (value) {
if (this.idCardNoUtil.checkIdCardNo(value)) {
@@ -146,7 +146,7 @@ export default {
callback(new Error('请输入身份证号'))
}
}
let regIcome = (rule, value, callback) => {
if (value) {
const reg = /^([0-9]{1,5})(\.[0-9]{1,3}){0,1}$/
@@ -325,7 +325,7 @@ export default {
},
getGridList() {
this.instance.post(`/app/appgirdinfo/listAll`).then((res) => {
this.instance.post(`/app/appgirdinfo/listAllByTop`).then((res) => {
if (res.code == 0) {
this.treeObj.treeList = this.format(res.data)
if (this.formData.girdId) {

View File

@@ -134,7 +134,7 @@ export default {
}
}
}
let IdNumberPass = (rule, value, callback) => {
if (value) {
if (this.idCardNoUtil.checkIdCardNo(value)) {
@@ -324,7 +324,7 @@ export default {
},
getGridList() {
this.instance.post(`/app/appgirdinfo/listAll`).then((res) => {
this.instance.post(`/app/appgirdinfo/listAllByTop`).then((res) => {
if (res.code == 0) {
this.treeObj.treeList = this.format(res.data)
if (this.formData.girdId) {

View File

@@ -134,7 +134,7 @@ export default {
}
}
}
let IdNumberPass = (rule, value, callback) => {
if (value) {
if (this.idCardNoUtil.checkIdCardNo(value)) {
@@ -316,7 +316,7 @@ export default {
},
getGridList() {
this.instance.post(`/app/appgirdinfo/listAll`).then((res) => {
this.instance.post(`/app/appgirdinfo/listAllByTop`).then((res) => {
if (res.code == 0) {
this.treeObj.treeList = this.format(res.data)
if (this.formData.girdId) {

View File

@@ -134,7 +134,7 @@ export default {
}
}
}
let IdNumberPass = (rule, value, callback) => {
if (value) {
if (this.idCardNoUtil.checkIdCardNo(value)) {
@@ -335,7 +335,7 @@ export default {
},
getGridList() {
this.instance.post(`/app/appgirdinfo/listAll`).then((res) => {
this.instance.post(`/app/appgirdinfo/listAllByTop`).then((res) => {
if (res.code == 0) {
this.treeObj.treeList = this.format(res.data)
if (this.formData.girdId) {

View File

@@ -22,7 +22,7 @@
:filter-node-method="filterNode"
default-expand-all
highlight-current>
<span class="custom-tree-node" :title="node.label" style="" slot-scope="{ node, data }">{{ node.label }}</span>
</el-tree>
</div>
@@ -100,7 +100,7 @@
return data.girdName.indexOf(value) !== -1;
},
getTreeList() {
return this.instance.post(`/app/appgirdinfo/listAll`).then((res) => {
return this.instance.post(`/app/appgirdinfo/listAllByTop`).then((res) => {
if (res.code == 0) {
this.treeObj.treeList = res.data;
@@ -140,7 +140,7 @@
return false
}
this.instance.post(`/app/appgirdinfo/queryChildGirdInfoByGirdId?girdId=${val.id}`).then((res) => {
if (res?.data) {
const arr = res.data.map(v => {

View File

@@ -401,7 +401,7 @@ export default {
},
beforeSelectTree() {
this.treeObj.checkedKeys = [];
this.instance.post(`/app/appgirdinfo/listAll`, null, null).then((res) => {
this.instance.post(`/app/appgirdinfo/listAllByTop`, null, null).then((res) => {
if (res.code == 0) {
this.treeObj.treeList = res.data;
this.forms.girdInfoList.map((e) => {