|
|
|
@ -11,13 +11,13 @@
|
|
|
|
|
<a-collapse v-model="activeKey"> |
|
|
|
|
<a-collapse-panel v-for="(value, index) in activeKeyAll" :header="filterDictText(dictOptions,value)||'未分类'" :key="value"> |
|
|
|
|
<a-list :grid="{ gutter: 10,column:4}" :dataSource="processDataMap[value]"> |
|
|
|
|
<a-list-item slot="renderItem" slot-scope="item"> |
|
|
|
|
<a-card hoverable @click="chooseProcess(item)"> |
|
|
|
|
<a-list-item slot="renderItem" slot-scope="item" > |
|
|
|
|
<a-card hoverable @click="chooseProcess(item)" class="forRadius" :style="{'background-color':item.color}"> |
|
|
|
|
<div slot="title"> |
|
|
|
|
<a-row style="text-align: center;"> |
|
|
|
|
<!-- <a-col span="12" :title="item.name">{{item.name}} </a-col>--> |
|
|
|
|
<!--<a-col span="12" style="text-align: center;">--> |
|
|
|
|
<a href="javascript:void (0)">{{item.name}}</a> |
|
|
|
|
<a href="javascript:void (0)" style="color: white">{{item.name}}</a> |
|
|
|
|
<!-- <a href="javascript:void (0)" @click="chooseProcess(item)">{{item.name}}</a>--> |
|
|
|
|
<!--</a-col>--> |
|
|
|
|
</a-row> |
|
|
|
@ -105,6 +105,7 @@
|
|
|
|
|
pictrueId:'', |
|
|
|
|
procInstId:'' |
|
|
|
|
}, |
|
|
|
|
colors:["#175CFF","#FFC542","#00C18B","#0DCCFF","#C449EA","#f56c6c","#00e1cd","#ff4562","#f9d500","#7191e4","#8759ff","#fc7798","#00bf50","#b7d264"] |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
computed:{ |
|
|
|
@ -146,10 +147,22 @@
|
|
|
|
|
result = _.filter(result, function(o) { return o.name.indexOf(searchProcessKey)>-1; }); |
|
|
|
|
} |
|
|
|
|
this.processDataMap = _.groupBy(result,'categoryId'); |
|
|
|
|
// console.log("111111111111",this.categoryId) |
|
|
|
|
// console.log("===================",this.processDataMap,"=====================") |
|
|
|
|
//14种颜色的循环 |
|
|
|
|
let n = 0 |
|
|
|
|
for (let i in this.processDataMap){ |
|
|
|
|
for (let j in this.processDataMap[i]){ |
|
|
|
|
this.$set(this.processDataMap[i][j],'color',this.colors[n%14]) |
|
|
|
|
n++ |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
// console.log("=======",this.processDataMap.wuzi) |
|
|
|
|
for (const categoryId in this.processDataMap) { |
|
|
|
|
this.activeKeyAll.push(categoryId) |
|
|
|
|
} |
|
|
|
|
this.activeKey = this.activeKeyAll; |
|
|
|
|
// console.log("=====================",this.activeKey) |
|
|
|
|
} |
|
|
|
|
this.processModalVisible = true; |
|
|
|
|
}else { |
|
|
|
@ -192,4 +205,8 @@
|
|
|
|
|
</script> |
|
|
|
|
<style scoped> |
|
|
|
|
@import '~@assets/less/common.less'; |
|
|
|
|
|
|
|
|
|
.forRadius { |
|
|
|
|
border-radius: 5px; |
|
|
|
|
} |
|
|
|
|
</style> |