|
@@ -2,7 +2,7 @@
|
|
|
<el-container>
|
|
|
<div v-if="showHeader === false" class="Layout_space_between" style="padding: 9px 0;border-bottom:1px solid rgba(242,243,246,1);">
|
|
|
<div class="Layout_flex_start" style="width: 90%">
|
|
|
- <el-checkbox v-model="checkAlls" style="margin-left: 60px;" @change="toggleSelection" />
|
|
|
+ <el-checkbox v-model="checkAlls" style="margin-left: 53px;" @change="toggleSelection" />
|
|
|
<div style="margin: 0 8% 0 10px" class="startCheck"> 已选择 {{ selectedData.length }} 个</div>
|
|
|
<div class="iterationCode" @click="dialogVisibleDelete = true"><img class="iterationImage" src="@/assets/建立档案@2x.png"> 移出迭代</div>
|
|
|
<div style="margin: 0 5%" class="iterationCode"><img class="iterationImage" src="@/assets/建立档案@2x.png">
|
|
@@ -58,6 +58,7 @@
|
|
|
</div>
|
|
|
<el-table
|
|
|
ref="topicTable"
|
|
|
+ v-loading="loading"
|
|
|
:data="RequirementSet"
|
|
|
row-key="id"
|
|
|
:show-header="showHeader"
|
|
@@ -177,6 +178,7 @@ export default {
|
|
|
requiredArray: [], // 需求状态
|
|
|
showHeader: true, // 是否显示表头
|
|
|
checkAll: [],
|
|
|
+ loading: true,
|
|
|
searchResult: [], // 变更迭代下的数据
|
|
|
SearchIterationValue: '',
|
|
|
checkAlls: false,
|
|
@@ -204,6 +206,7 @@ export default {
|
|
|
this.RequirementSet = listRequire.data.right.list
|
|
|
this.requiredArray = requiredstatus.data.requirementStatus
|
|
|
this.checkAll = this.RequirementSet
|
|
|
+ this.loading = false
|
|
|
},
|
|
|
|
|
|
SearchIteration(e) { // 筛选change
|