feat: There is no way the,
This commit is contained in:
@@ -678,6 +678,17 @@ export default {
|
||||
...mapGetters(['userInfo'])
|
||||
},
|
||||
methods: {
|
||||
assemble(ids,names){
|
||||
let list= new Array();
|
||||
if(ids && ids !== '' && names && names !== ''){
|
||||
let idArray=ids.split(',');
|
||||
let nameArray=names.split(',');
|
||||
for(let i=0; i<idArray.length; i++){
|
||||
list.push({id:idArray[i],name:nameArray[i]});
|
||||
}
|
||||
}
|
||||
return list;
|
||||
},
|
||||
detail(row){
|
||||
this.showDrawerTitle = '查看'
|
||||
this.showDrawer = true
|
||||
|
||||
Reference in New Issue
Block a user