소스 검색

报表 与 稽核

sunyize 2 년 전
부모
커밋
22d4accccd
3개의 변경된 파일269개의 추가작업 그리고 657개의 파일을 삭제
  1. 259 651
      src/components/layouts/stock/AuditTable.vue
  2. 2 2
      src/views/truckCheck/modules/TaskCheckAudit.vue
  3. 8 4
      src/views/warningList/TaskCheckList.vue

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 259 - 651
src/components/layouts/stock/AuditTable.vue


+ 2 - 2
src/views/truckCheck/modules/TaskCheckAudit.vue

@@ -4779,7 +4779,7 @@ export default {
               });
             }
             if ((that.infoModel.commitmentRemark ==='' || that.infoModel.commitmentRemark ===null)&&
-              (that.infoModel.commitment  ==='' || that.infoModel.commitment  ===null || that.infoModel.commitment  ==='[{}]' &&  that.checkState !== 4 )){
+              (that.infoModel.commitmentInfo  ==='0'  &&  that.checkState !== 4 )){
               for (var i = 0; i <this.steps.stepsNow.length; i++) {
                 if (that.steps.stepsNow[i].id==='commitment'){
                   that.steps.stepsNow.splice(i, 1);
@@ -4885,7 +4885,7 @@ export default {
 
         for (var i in this.steps.stepsNow) {
           if (this.checkState===2){
-            debugger
+            
             if (this.steps.stepsNow[i].status === "wait"  || this.steps.stepsNow[i].status===undefined  || this.steps.stepsNow[i].status===''|| this.steps.stepsNow[i].status===null ) {
                 if (this.steps.stepsNow[i].type!=='solution'){
                   this.$message.warn( this.steps.stepsNow[i].title +"未进行稽核...");

+ 8 - 4
src/views/warningList/TaskCheckList.vue

@@ -353,7 +353,7 @@ export default {
       dataSource:[],
       url: {
         queryTask: "/smsCheck/task/queryById",
-        lists: "/smsCheck/customerInfo/warningList",
+        list: "/smsCheck/customerInfo/warningList",
         count: "/smsCheck/customerInfo/WarningCount",
         delete: "/smsCheck/customerInfo/delete",
         edit: "/smsCheck/customerInfo/edit",
@@ -367,11 +367,13 @@ export default {
     }
   },
   created() {
-    this.task.id = this.$route.query.id;
+
+    this.loadData(null);
+
     this.queryTaskById(this.task.id);
     this.queryParam.taskId = this.task.id;
 
-    this.selectList();
+   // this.selectList();
     this.loadTabNumber(this.task.id);
   },
   computed: {
@@ -447,7 +449,9 @@ export default {
         userNo: this.queryParam.userNo,
         checkState:this.currentCheckState,
         staffNo: this.queryParam.staffNo,
-        type: this.queryParam.type
+        type: this.queryParam.type,
+        pageNo: this.ipagination.current,
+        pageSize : this.ipagination.pageSize,
       }
       getAction(this.url.lists, params).then((res) => {
         if (res.success) {

이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.