积分明细

This commit is contained in:
shijingjing
2022-06-20 14:25:33 +08:00
parent dd9394b9eb
commit c378806112
3 changed files with 22 additions and 5 deletions

View File

@@ -81,9 +81,9 @@
</el-form>
</ai-dialog>
</template>
<template #footer>
<template #footer v-if="info.auditStatus === '0'">
<el-button @click="cancel">取消</el-button>
<el-button type="primary" @click="isShow = true" v-if="info.auditStatus === '0'">审核</el-button>
<el-button type="primary" @click="isShow = true">审核</el-button>
</template>
</ai-detail>
</template>
@@ -121,7 +121,7 @@ export default {
opinion: '',
pass: ''
},
ruleList: []
ruleList: [],
}
},
@@ -138,10 +138,16 @@ export default {
},
created() {
let loading = this.$loading({
text: 'Loading',
});
if (this.params && this.params.id) {
this.id = this.params.id
this.dict.load(['atWillReportType', 'auditStatus']).then(() => {
this.getInfo(this.params.id)
this.$nextTick(() => {
loading.close()
})
})
}
},