优化
This commit is contained in:
parent
164b7c6833
commit
4a89a13c94
@ -202,10 +202,13 @@ export default {
|
||||
watch: {
|
||||
'showChooseList': function (newVal, oldVal) {
|
||||
if (newVal) {
|
||||
console.log('newVal: ', newVal)
|
||||
this.$nextTick(res => {
|
||||
if (this.oldSelectedList.length > 0) {
|
||||
this.oldSelectedList.forEach((row) => {
|
||||
this.$refs.popupMultipleTable.toggleRowSelection(row, true)
|
||||
this.oldSelectedList.map(i => {
|
||||
this.popupData.tableList.map(j => {
|
||||
if (j.id === i.id) this.$refs.popupMultipleTable.toggleRowSelection(j, true)
|
||||
})
|
||||
})
|
||||
}
|
||||
})
|
||||
|
||||
@ -57,6 +57,24 @@
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div v-if="item.detailDtos.length ===0 && item.name !=='总分'" class="table-content-right-item">
|
||||
<div class="name">
|
||||
</div>
|
||||
<div class="kaohe">
|
||||
</div>
|
||||
<div class='jieguo' v-if="tableInfo.result || tableAuth.showResult">
|
||||
</div>
|
||||
<div class="quanzhomng " style="flex:none;">
|
||||
</div>
|
||||
<div style="padding:10px;flex:none;width:130px;" v-if="tableInfo.score || tableAuth.showScore">
|
||||
|
||||
</div>
|
||||
<div class="quanzhomng" style="flex:none;" v-if="tableInfo.score || tableAuth.showScore">
|
||||
|
||||
</div>
|
||||
<div style="padding:10px;" v-if="tableInfo.score || tableAuth.showScore">
|
||||
</div>
|
||||
</div>
|
||||
<div v-if="item.name==='总分'" class="table-content-right-item">
|
||||
<div class="name">
|
||||
</div>
|
||||
|
||||
@ -338,7 +338,7 @@
|
||||
v-for="item in popupFromSub.assessmentList"
|
||||
:key="item.id"
|
||||
closable
|
||||
@close="handlePopupCloseAssessment"
|
||||
@close="handlePopupCloseAssessment(item)"
|
||||
size="small"
|
||||
>
|
||||
{{item.name}}
|
||||
@ -725,7 +725,7 @@ export default {
|
||||
console.log('特定考评组选择 ', val, this.dialogVisibleTeamFilter)
|
||||
},
|
||||
handlePopupCloseAssessment (item) {
|
||||
this.popupFromSub.assessmentList.splice(this.popupFromSub.assessmentList.indexOf(item), 1)
|
||||
this.popupFromSub.assessmentList = this.popupFromSub.assessmentList.filter(i => i !== item)
|
||||
},
|
||||
handleGetSetPageInfo () {
|
||||
let rqDic = {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user