|
|
|
@ -251,24 +251,23 @@ export default {
|
|
|
|
|
DJYTenantParamGet({ pageNo: 1, pageSize: 999 }).then(res => {
|
|
|
|
|
this.TypeData = res.data
|
|
|
|
|
let data = []
|
|
|
|
|
let type = ''
|
|
|
|
|
let num = -1
|
|
|
|
|
res.data.forEach(item => {
|
|
|
|
|
if (type != item.type) {
|
|
|
|
|
num = num + 1
|
|
|
|
|
type = item.type
|
|
|
|
|
if (data.length) {
|
|
|
|
|
let type2 = false
|
|
|
|
|
data.forEach((item2, index2) => {
|
|
|
|
|
if (item.type == item2[0].type) {
|
|
|
|
|
item2.push(item)
|
|
|
|
|
type2 = true
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
if (!type2) {
|
|
|
|
|
data[data.length] = [item]
|
|
|
|
|
}
|
|
|
|
|
// if (data.length == 0) {
|
|
|
|
|
if (data[num]) {
|
|
|
|
|
data[num].push(item)
|
|
|
|
|
} else {
|
|
|
|
|
data[num] = []
|
|
|
|
|
data[num].push(item)
|
|
|
|
|
data[0] = [item]
|
|
|
|
|
}
|
|
|
|
|
// }
|
|
|
|
|
})
|
|
|
|
|
this.WTypeData = data
|
|
|
|
|
console.log(data)
|
|
|
|
|
})
|
|
|
|
|
SysTenantPage({ pageNo: 1, pageSize: 9999, name: '' }).then(res => {
|
|
|
|
|
this.TenantData = res.data.rows
|
|
|
|
|