|
|
|
@ -108,9 +108,9 @@ |
|
|
|
width="50" |
|
|
|
> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<img :src="red" width="25" height="25" v-if="scope.row.isRemind == '1'"/> |
|
|
|
<img :src="yellow" width="25" height="25" v-if="scope.row.isRemind == '2'"/> |
|
|
|
<img :src="green" width="25" height="25" v-if="scope.row.isRemind == '3' ||scope.row.itemState == '10'"/> |
|
|
|
<img :src="red" width="25" height="25" v-if="scope.row.itemState == '0' && scope.row.isRemind == '1'"/> |
|
|
|
<img :src="yellow" width="25" height="25" v-if="scope.row.itemState == '0' && scope.row.isRemind == '2'"/> |
|
|
|
<img :src="green" width="25" height="25" v-if="scope.row.isRemind == '3' || scope.row.itemState == '10'"/> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column |
|
|
|
|