|
@@ -103,7 +103,16 @@
|
|
<el-table-column label="需求名称" min-width="250" show-overflow-tooltip>
|
|
<el-table-column label="需求名称" min-width="250" show-overflow-tooltip>
|
|
<template v-slot="scope">
|
|
<template v-slot="scope">
|
|
<div class="table-project-name" @click="clickRequiredName(scope.row.id)">
|
|
<div class="table-project-name" @click="clickRequiredName(scope.row.id)">
|
|
- <span class="id">{{ scope.row.requirementDisplayId }} <img v-if="scope.row.type === 1" :src="extraUrgent" style="height: 17px;padding: 0 10px;"></span>
|
|
|
|
|
|
+ <span class="id">
|
|
|
|
+ {{ scope.row.requirementDisplayId }}
|
|
|
|
+ <img v-if="scope.row.type === 1" :src="extraUrgent" style="height: 17px;padding: 0 10px;">
|
|
|
|
+ <div
|
|
|
|
+ v-if="scope.row.optionsObject && scope.row.optionsObject.tagsType !==-1 && scope.row.optionsObject.remindTags && scope.row.status !== -2"
|
|
|
|
+ :class="'tag-tip'+scope.row.optionsObject.tagsType"
|
|
|
|
+ >{{ scope.row.optionsObject.remindTags }}
|
|
|
|
+ </div>
|
|
|
|
+ <div v-if="scope.row.status === -2" class="tag-tip1">hold</div>
|
|
|
|
+ </span>
|
|
<span class="public_Jump">{{ scope.row.name }}</span>
|
|
<span class="public_Jump">{{ scope.row.name }}</span>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
@@ -353,6 +362,22 @@ export default {
|
|
border:1px solid #DCDFE6;
|
|
border:1px solid #DCDFE6;
|
|
cursor: pointer;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
+.tag-tip0,.tag-tip1 {
|
|
|
|
+ margin-left: 5px;
|
|
|
|
+ display: inline-block;
|
|
|
|
+ padding: 0 5px;
|
|
|
|
+ border-radius: 8px;
|
|
|
|
+ height: 16px;
|
|
|
|
+ line-height: 16px;
|
|
|
|
+}
|
|
|
|
+.tag-tip0 {
|
|
|
|
+ background: rgba(255,137,82,0.15);
|
|
|
|
+ color: rgba(255,137,82,1);
|
|
|
|
+}
|
|
|
|
+.tag-tip1{
|
|
|
|
+ background: rgba(245,108,108,0.17);
|
|
|
|
+ color: rgba(245,108,108,1);
|
|
|
|
+}
|
|
/deep/ .el-table__expand-icon{
|
|
/deep/ .el-table__expand-icon{
|
|
font-size: 14px;
|
|
font-size: 14px;
|
|
.el-icon{
|
|
.el-icon{
|