BUG 29505

This commit is contained in:
aixianling
2022-05-05 18:22:27 +08:00
parent 84954bcc84
commit 55e3ab0612
8 changed files with 24 additions and 25 deletions

View File

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

View File

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

View File

@@ -325,7 +325,7 @@ export default {
},
getGridList() {
this.instance.post(`/app/appgirdinfo/listAllByTop`).then((res) => {
this.instance.post(`/app/appgirdinfo/listAll`).then((res) => {
if (res.code == 0) {
this.treeObj.treeList = this.format(res.data)
if (this.formData.girdId) {

View File

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

View File

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

View File

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

View File

@@ -143,7 +143,6 @@ export default {
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/listAllByTop`, null, null).then((res) => {
this.instance.post(`/app/appgirdinfo/listAll`, null, null).then((res) => {
if (res.code == 0) {
this.treeObj.treeList = res.data;
this.forms.girdInfoList.map((e) => {