|
|
@ -12,7 +12,7 @@ |
|
|
|
<a-collapse-panel v-for="(value, index) in activeKeyAll" :header="filterDictText(dictOptions,value)||'未分类'" :key="value"> |
|
|
|
<a-collapse-panel v-for="(value, index) in activeKeyAll" :header="filterDictText(dictOptions,value)||'未分类'" :key="value"> |
|
|
|
<a-list :grid="{ gutter: 20,column:4}" :dataSource="processDataMap[value]"> |
|
|
|
<a-list :grid="{ gutter: 20,column:4}" :dataSource="processDataMap[value]"> |
|
|
|
<a-list-item slot="renderItem" slot-scope="item" > |
|
|
|
<a-list-item slot="renderItem" slot-scope="item" > |
|
|
|
<a-card hoverable @click="chooseProcess(item)" class="forRadius" :style="{'background-color':item.color,'border-radius':'12px'}"> |
|
|
|
<a-card hoverable @click="chooseProcess(item)" class="forRadius" :style="{'background-color':item.color,'border-radius':'12px'}" :headStyle="{'border-radius':'12px'}"> |
|
|
|
<div slot="title"> |
|
|
|
<div slot="title"> |
|
|
|
<a-row style="text-align: center;"> |
|
|
|
<a-row style="text-align: center;"> |
|
|
|
<!-- <a-col span="12" :title="item.name">{{item.name}} </a-col>--> |
|
|
|
<!-- <a-col span="12" :title="item.name">{{item.name}} </a-col>--> |
|
|
@ -148,6 +148,11 @@ |
|
|
|
if (res.success) { |
|
|
|
if (res.success) { |
|
|
|
var result = res.result||[]; |
|
|
|
var result = res.result||[]; |
|
|
|
if (result.length>0){ |
|
|
|
if (result.length>0){ |
|
|
|
|
|
|
|
console.log("====================",result); |
|
|
|
|
|
|
|
//14种颜色的循环 |
|
|
|
|
|
|
|
for (let i in result){ |
|
|
|
|
|
|
|
this.$set(result[i],'color',this.colors[i%14]) |
|
|
|
|
|
|
|
} |
|
|
|
let searchProcessKey = this.searchProcessKey; |
|
|
|
let searchProcessKey = this.searchProcessKey; |
|
|
|
if (searchProcessKey){ //过滤条件 |
|
|
|
if (searchProcessKey){ //过滤条件 |
|
|
|
result = _.filter(result, function(o) { return o.name.indexOf(searchProcessKey)>-1; }); |
|
|
|
result = _.filter(result, function(o) { return o.name.indexOf(searchProcessKey)>-1; }); |
|
|
@ -155,14 +160,7 @@ |
|
|
|
this.processDataMap = _.groupBy(result,'categoryId'); |
|
|
|
this.processDataMap = _.groupBy(result,'categoryId'); |
|
|
|
// console.log("111111111111",this.categoryId) |
|
|
|
// console.log("111111111111",this.categoryId) |
|
|
|
// console.log("===================",this.processDataMap,"=====================") |
|
|
|
// 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) |
|
|
|
// console.log("=======",this.processDataMap.wuzi) |
|
|
|
for (const categoryId in this.processDataMap) { |
|
|
|
for (const categoryId in this.processDataMap) { |
|
|
|
this.activeKeyAll.push(categoryId) |
|
|
|
this.activeKeyAll.push(categoryId) |
|
|
|