diff --git a/src/pages/details/otherBussStandardDetails/index.vue b/src/pages/details/otherBussStandardDetails/index.vue
index 99f3d6e89..4bb1ef841 100644
--- a/src/pages/details/otherBussStandardDetails/index.vue
+++ b/src/pages/details/otherBussStandardDetails/index.vue
@@ -4,6 +4,7 @@
@@ -1778,6 +1779,15 @@ export default {
}, e => {
})
+ //刷新动态评价总平均分和质量评价总平均分
+ this.$http.get('sarEnterpriseStandardEvaluation/quality-evaluation/getScore', {lawId:standId}, {
+ _this: this
+ }, res => {
+ this.qualityCommentScore = res.data.quality.toFixed(3)/2
+ this.dynamicCommentScore = res.data.dynamic.toFixed(3)/2
+
+ }, e => {
+ })
}
}, e => {
})
@@ -2858,7 +2868,17 @@ export default {
// }
},
async mounted () {
+ //查询动态评价总平均分和质量评价总平均分
let standId = this.$route.params.id
+ this.$http.get('sarEnterpriseStandardEvaluation/quality-evaluation/getScore', {lawId:standId}, {
+ _this: this
+ }, res => {
+ this.qualityCommentScore = res.data.quality.toFixed(3)/2
+ this.dynamicCommentScore = res.data.dynamic.toFixed(3)/2
+
+ }, e => {
+ })
+ //查询评价人表
const qualityRequest = {
lawId: standId,
evaluationType: 'quality'