|
|
|
@ -65,6 +65,10 @@ |
|
|
|
</font> |
|
|
|
<el-button v-else @click="showMenu" type="plian">选需求</el-button> |
|
|
|
</el-col> |
|
|
|
<el-col :span="24" style="padding-top:5px;"> |
|
|
|
<font class="more-label-font">缺陷编号:</font> |
|
|
|
<el-input v-model="filters.id"></el-input> |
|
|
|
</el-col> |
|
|
|
<el-col :span="24" class="hidden-lg-and-up" style="padding-top:12px;"> |
|
|
|
<el-select v-model="filters.priority" placeholder="请选择优先级" clearable @change="changePriority"> |
|
|
|
<el-option v-for="(b,index) in dicts['priority']" :value="b.id" :key="index" :label="b.name">{{b.name}} |
|
|
|
@ -313,6 +317,7 @@ |
|
|
|
hisHandler:null, |
|
|
|
hisHandleStatus:null, |
|
|
|
tags:[], |
|
|
|
id:'', |
|
|
|
|
|
|
|
}, |
|
|
|
xmQuestions: [],//查询结果 |
|
|
|
@ -486,6 +491,9 @@ |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
if(this.filters.id){ |
|
|
|
params.id=this.filters.id |
|
|
|
} |
|
|
|
if(this.filters.hisHandleStatus){ |
|
|
|
if(this.filters.hisHandler){ |
|
|
|
params.hisHandleStatus=this.filters.hisHandleStatus |
|
|
|
|