|
|
@@ -63,7 +63,9 @@
|
|
|
<div style="padding:20px 50px;display:flex" class="fixed-btn">
|
|
|
<el-button @click="$router.go(-1)">返回</el-button>
|
|
|
<div style="flex-grow:1"></div>
|
|
|
- <el-button type="primary" v-if="submitList.length !== 0" @click="saveExpertScore" :loading="saving">最终评分</el-button>
|
|
|
+ <el-button type="primary" v-if="submitList.length !== 0" @click="saveExpertScore">
|
|
|
+ 最终评分
|
|
|
+ </el-button>
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
|
@@ -83,8 +85,7 @@ export default {
|
|
|
tableHeight1: 620,
|
|
|
rateList: [],
|
|
|
info: {},
|
|
|
- form: {},
|
|
|
- saving: false
|
|
|
+ form: {}
|
|
|
};
|
|
|
},
|
|
|
computed: {
|
|
|
@@ -117,7 +118,6 @@ export default {
|
|
|
},
|
|
|
methods: {
|
|
|
saveExpertScore() {
|
|
|
- this.saving = true;
|
|
|
this.$http
|
|
|
.post('/rateExpertAudit/batchSave', {
|
|
|
audits: JSON.stringify(this.submitList)
|
|
|
@@ -129,7 +129,6 @@ export default {
|
|
|
})
|
|
|
.then(res => {
|
|
|
this.$message.success('评审完成');
|
|
|
- this.saving = false;
|
|
|
this.getGride();
|
|
|
});
|
|
|
},
|