This commit is contained in:
熊成强 2020-11-16 15:13:48 +08:00
parent 99c44a9738
commit 73af53097b

View File

@ -13,7 +13,7 @@
:options="timeOptions"
@change="handleChange"
></el-cascader>
<div class="performance-content-title">
<div v-if="!isNoList" class="performance-content-title">
<InfoHeader :obj="{
src:obj.avatar || '',
name:obj.staffName,
@ -23,7 +23,7 @@
<UseButton :resultRecordId='resultRecordId' v-if="isShow" :formList='formList' :tableInfo.sync='tableInfo'/>
</div>
</div>
<div class="performance-content-center">
<div v-if="!isNoList" class="performance-content-center">
<div
class="performance-content-center-item commonFont"
:class="{
@ -78,7 +78,7 @@
</el-tooltip>
</div>
</div>
<div class="performance-content-bottom">
<div v-if="!isNoList" class="performance-content-bottom">
<tables
:tableAuth='formList.auth'
:tableInfo.sync='tableInfo'
@ -86,6 +86,7 @@
:obj='obj'
/>
</div>
<div v-if="!isNoList">
<div v-if="formList.resultCommentList.length !== 0 " class="performance-content-jilu">
<div class="performance-content-jilu-title commonFont">
记录
@ -112,6 +113,8 @@
</div>
</div>
</div>
</div>
<popup-right
v-if="right.showRight"
@cancel='handleCancel'
@ -164,6 +167,7 @@ export default {
},
data () {
return {
isNoList: false,
key: 0,
startIds: '',
timeOptions: [{
@ -256,6 +260,7 @@ export default {
this.$loadingStart()
let res = await apiResultGetDetail(params)
this.$loadingEnd()
this.isNoList = res.code !== 200
if (res.code !== 200) {
this.resultRecordId = ''
return this.$message.error(res.msg)