Ver código fonte

优化质控审核接口

gaohaiyong 9 meses atrás
pai
commit
b2f64100d6

+ 3 - 1
src/views/recordsRoom/qc/components/CaseQualityBox2.vue

@@ -107,6 +107,7 @@
          * */ 
         let str
         const { score } = this.data
+        console.log(score)
         if (score > 90) {
           str = '甲'
         } else if (score < 75) {
@@ -131,11 +132,12 @@
     methods: {
       getTableData(){
         let data = this.data.data;
+        console.log(data)
+
         for(let i=0; i<data.length; i++) {
           data[i].show = true;
         }
         this.tableData = data;
-        console.log(this.tableData)
       },
       onScroll(index) {
         const el = this.$el.querySelector(`.category${index}`);