yuanrf 5 miesięcy temu
rodzic
commit
4300fd68a3
1 zmienionych plików z 6 dodań i 5 usunięć
  1. 6 5
      src/components/Finance/Overspend.vue

+ 6 - 5
src/components/Finance/Overspend.vue

@@ -62,7 +62,7 @@
                     </el-table-column>
                     <el-table-column prop="supervisorConfirmStr" label="OP主管退费确认" width="100">
                         <template slot-scope="scope">
-                            <span v-if=" scope.row.supervisorConfirmStr!='已确认'">
+                            <span v-if="scope.row.supervisorConfirmStr != '已确认'">
                                 -
                             </span>
                             <span style="color: green;font-size:20px;" v-else>
@@ -72,7 +72,7 @@
                     </el-table-column>
                     <el-table-column prop="sYsupervisorConfirmStr" label="商邀主管退费确认" width="100">
                         <template slot-scope="scope">
-                            <span v-if="scope.row.sYsupervisorConfirmStr!='已确认'">
+                            <span v-if="scope.row.sYsupervisorConfirmStr != '已确认'">
                                 -
                             </span>
                             <span style="color: green;font-size:20px;" v-else>
@@ -82,7 +82,7 @@
                     </el-table-column>
                     <el-table-column prop="managerConfirmStr" label="经理退费确认" width="100">
                         <template slot-scope="scope">
-                            <span v-if="scope.row.managerConfirmStr!='已确认'">
+                            <span v-if="scope.row.managerConfirmStr != '已确认'">
                                 -
                             </span>
                             <span style="color: green;font-size:20px;" v-else>
@@ -92,7 +92,7 @@
                     </el-table-column>
                     <el-table-column prop="isAuditGMStr" label="是否审核" width="100">
                         <template slot-scope="scope">
-                            <span v-if="scope.row.isAuditGMStr!='已通过'">
+                            <span v-if="scope.row.isAuditGMStr != '已通过'">
                                 -
                             </span>
                             <span style="color: green;font-size:20px;" v-else>
@@ -172,7 +172,8 @@ export default {
             headtitle: {},
             priceNameExists: [
                 '退餐费(地接导入)',
-                '车超时费用(地接导入)'
+                '车超时费用(地接导入)',
+                '酒店超支费用-酒店导入'
             ]
         }
     },