|
@@ -91,14 +91,16 @@
|
|
|
<template slot-scope="scope">
|
|
|
<div>
|
|
|
<!-- {{scope.row.project_code}} -->
|
|
|
- {{scope.row.customCode}}
|
|
|
+ <span style="color: #cacaca" v-if="scope.row.customCode == '——'">{{scope.row.customCode}}</span>
|
|
|
+ <span v-else>{{scope.row.customCode}}</span>
|
|
|
</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="project_name" label="项目名称" width="200">
|
|
|
<template slot-scope="scope" >
|
|
|
<!-- {{scope.row.project_name}} -->
|
|
|
- {{scope.row.customName}}
|
|
|
+ <span style="color: #cacaca" v-if="scope.row.customName == '——'">{{scope.row.customName}}</span>
|
|
|
+ <span v-else>{{scope.row.customName}}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="name" label="任务名称" width="300">
|