|
@@ -8,7 +8,9 @@
|
|
|
fill="#1890FF26"
|
|
fill="#1890FF26"
|
|
|
@change="handleClick"
|
|
@change="handleClick"
|
|
|
>
|
|
>
|
|
|
- <el-radio-button v-for="item in tabContent" :label="item.name" :value="item.value" />
|
|
|
|
|
|
|
+ <el-radio-button v-for="item in tabContent" :value="item.value" :key="item.value">{{
|
|
|
|
|
+ item.name
|
|
|
|
|
+ }}</el-radio-button>
|
|
|
</el-radio-group>
|
|
</el-radio-group>
|
|
|
<div class="search-input">
|
|
<div class="search-input">
|
|
|
<el-input
|
|
<el-input
|
|
@@ -24,7 +26,7 @@
|
|
|
>
|
|
>
|
|
|
<div class="problem-list"
|
|
<div class="problem-list"
|
|
|
><singleProblem
|
|
><singleProblem
|
|
|
- v-for="(item,index) in feedbackList"
|
|
|
|
|
|
|
+ v-for="(item, index) in feedbackList"
|
|
|
:key="index"
|
|
:key="index"
|
|
|
:problem-data="item"
|
|
:problem-data="item"
|
|
|
:is-handle="item.problemStatus === STATUS.unhandled"
|
|
:is-handle="item.problemStatus === STATUS.unhandled"
|