|
@@ -1,7 +1,7 @@
|
|
<template>
|
|
<template>
|
|
<div>
|
|
<div>
|
|
<div class="bgbugTa" style="background-color:#F2F3F6;display:flex;align-items: center;justify-content: center;">
|
|
<div class="bgbugTa" style="background-color:#F2F3F6;display:flex;align-items: center;justify-content: center;">
|
|
- <el-container @click.native="listenClick()">
|
|
|
|
|
|
+ <el-container>
|
|
<div v-if="isHeadShow" style="width:98%;margin:1% auto 0 auto;height:53px;background:rgba(255,255,255,1);border-radius:7px;color:#F56C6C;font-size:16px;display: flex;align-items: center;">
|
|
<div v-if="isHeadShow" style="width:98%;margin:1% auto 0 auto;height:53px;background:rgba(255,255,255,1);border-radius:7px;color:#F56C6C;font-size:16px;display: flex;align-items: center;">
|
|
<i class="el-icon-warning-outline" style="margin-left: 20px;" />
|
|
<i class="el-icon-warning-outline" style="margin-left: 20px;" />
|
|
<span style="margin-left: 4px;">请将排期事件里的排期填写完整,否则无法判断任务健康状态,健康状态会显示未知。</span>
|
|
<span style="margin-left: 4px;">请将排期事件里的排期填写完整,否则无法判断任务健康状态,健康状态会显示未知。</span>
|
|
@@ -274,7 +274,7 @@
|
|
<el-table-column prop="bugName" label="缺陷标题" min-width="180" align="left" show-overflow-tooltip>
|
|
<el-table-column prop="bugName" label="缺陷标题" min-width="180" align="left" show-overflow-tooltip>
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
<span style=" color: #A7AEBC; font-size; 12px;">{{ 'BUG-' + scope.row.id }}</span><br>
|
|
<span style=" color: #A7AEBC; font-size; 12px;">{{ 'BUG-' + scope.row.id }}</span><br>
|
|
- <span class="bugNameSty" @click="click_bugName(scope.row.id)">{{ scope.row.bugName }}</span>
|
|
|
|
|
|
+ <span class="bugNameSty" @click.stop="click_bugName(scope.row.id)">{{ scope.row.bugName }}</span>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column prop="bizName" label="业务线" align="center" />
|
|
<el-table-column prop="bizName" label="业务线" align="center" />
|
|
@@ -532,8 +532,9 @@
|
|
:with-header="false"
|
|
:with-header="false"
|
|
size="50%"
|
|
size="50%"
|
|
class="bug_manage_drawer"
|
|
class="bug_manage_drawer"
|
|
|
|
+ @click.stop
|
|
>
|
|
>
|
|
- <div>
|
|
|
|
|
|
+ <div @click.stop>
|
|
<bug-details :id="bugId + ''" ref="bugDetails" :init-count="initCount + ''" :type="'drawer'" @close="drawerShow = false" @delete="drawerShow = false;bug_list(codeCache)" @update="bug_list(codeCache)" />
|
|
<bug-details :id="bugId + ''" ref="bugDetails" :init-count="initCount + ''" :type="'drawer'" @close="drawerShow = false" @delete="drawerShow = false;bug_list(codeCache)" @update="bug_list(codeCache)" />
|
|
</div>
|
|
</div>
|
|
</el-drawer>
|
|
</el-drawer>
|
|
@@ -705,23 +706,10 @@ export default {
|
|
this.get_echarts()
|
|
this.get_echarts()
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
- listenClick() {
|
|
|
|
- this.isBugNameClick = false
|
|
|
|
- setTimeout(() => {
|
|
|
|
- if (this.isBugNameClick) {
|
|
|
|
- this.drawerShow = true
|
|
|
|
- } else {
|
|
|
|
- this.drawerShow = false
|
|
|
|
- // this.$store.state.data.status = true
|
|
|
|
- }
|
|
|
|
- }, 500)
|
|
|
|
- },
|
|
|
|
click_bugName(id) {
|
|
click_bugName(id) {
|
|
this.bugId = id
|
|
this.bugId = id
|
|
this.initCount++
|
|
this.initCount++
|
|
- setTimeout(() => {
|
|
|
|
- this.isBugNameClick = true
|
|
|
|
- }, 300)
|
|
|
|
|
|
+ this.drawerShow = true
|
|
},
|
|
},
|
|
test2(item, e) {
|
|
test2(item, e) {
|
|
// 获取团队人员信息
|
|
// 获取团队人员信息
|