|
@@ -8,7 +8,7 @@
|
|
|
</el-breadcrumb>
|
|
|
<template v-for="item in system">
|
|
|
<template v-for="i in item">
|
|
|
- <span v-for="(j,index) in i.DefClass" v-if="j.show" class="select">{{j.AliasName}}
|
|
|
+ <span v-for="(j,index) in i.DefClass" v-if="j.show" class="select">{{j.AliasName}}
|
|
|
<i class="el-icon-close" @click="deleteCurrent(index)"></i></span>
|
|
|
<span class="total poa">共<b>{{total}}</b>件相关产品</span>
|
|
|
</template>
|
|
@@ -16,7 +16,7 @@
|
|
|
|
|
|
</div>
|
|
|
<template v-for="(item,index) in system">
|
|
|
- <div class="device-sys" v-for="(i,index) in item">
|
|
|
+ <div class="device-sys" v-for="(i,idx) in item" :key="index">
|
|
|
<div class="left">{{i.AliasName}}:</div>
|
|
|
<div class="main">
|
|
|
<ul>
|
|
@@ -124,7 +124,7 @@
|
|
|
this.limitSys = 18
|
|
|
}
|
|
|
},
|
|
|
- currentSys(index, val) {
|
|
|
+ currentSys(index,val) {
|
|
|
for (let i = 0; i < this.system.length; i++) {
|
|
|
for (let j = 0; j < this.system[i].length; j++) {
|
|
|
let def = this.system[i][j].DefClass
|