heyang 2 年之前
父节点
当前提交
ac4129431a

+ 6 - 8
src/views/comprehensive/laboratoryManagement/subject/admissionConfiguration.vue

@@ -167,8 +167,8 @@
           </el-table-column>
         </el-table>
         <pagination :page-sizes="[20, 30, 40, 50]"
-                    v-show="total>0"
-                    :total="total"
+                    v-show="total2>0"
+                    :total="total2"
                     :page.sync="dialogForm.pageNum"
                     :limit.sync="dialogForm.pageSize"
                     @pagination="getUserList"
@@ -237,6 +237,7 @@
             endTime:null,
           },
           total:0,
+          total2:0,
           tableData:[],
           dateRange:[],
           dialogForm:{
@@ -322,7 +323,6 @@
         },
         //监听关联记录弹窗关闭
         handleClose(){
-          console.log('弹窗关闭');
           this.$refs.multipleTable.clearSelection();
           this.dialogForm.searchValue='';
           this.dialogForm.pageNum=1;
@@ -369,7 +369,7 @@
             this.dialogForm.userType=22
             listUser(this.addDateRange(this.dialogForm)).then(response => {
                 this.dialogTable = response.rows;
-                this.total = response.total;
+                this.total2 = response.total;
                 this.loading = false;
                 this.dialogTable.forEach(function(item) {
                   item.authType='2'
@@ -380,7 +380,7 @@
             this.dialogForm.userType=11
             listUser(this.addDateRange(this.dialogForm)).then(response => {
                 this.dialogTable = response.rows;
-                this.total = response.total;
+                this.total2 = response.total;
                 this.loading = false;
                 this.dialogTable.forEach(function(item) {
                   item.authType='2'
@@ -395,7 +395,6 @@
           getSignTypeList().then(response => {
             if(response.code==200){
               this.verifyWayList=response.rows
-              console.log(this.verifyWayList)
             }
           });
         },
@@ -509,8 +508,7 @@
           let _this=this;
           if(doType=='delete'){//删除
             let _this=this
-            console.log(row)
-            this.$confirm('是否确认删除['+row.userName+']门禁授权?', "警告", {
+            this.$confirm('是否确认删除['+row.userName+']?', "警告", {
               confirmButtonText: "确定",
               cancelButtonText: "取消",
               type: "warning"

+ 0 - 8
src/views/comprehensive/laboratoryManagement/subject/associationConfiguration.vue

@@ -222,8 +222,6 @@
         this.$set(this.form,'checkCount',0)
       }
       /** 检查项信息-巡查人员*/
-      console.log('巡查人员')
-      console.log(this.subjectData)
 
       if(this.subjectData.inspectCheckIn){
         let list = this.subjectData.inspectCheckIn.split(",");
@@ -262,13 +260,11 @@
     methods:{
       //删除选中危险源
       delHazard(index){
-        console.log(index);
         this.form.hazardRelations.splice(index, 1);
         this.$forceUpdate();
       },
       //危险源选中事件
       hazardClick(e){
-        console.log("e",e);
         let self = this;
         for(let i=0;i<self.hazardList.length;i++){
           if(e == self.hazardList[i].id){
@@ -277,10 +273,8 @@
               anotherName:self.hazardList[i].anotherName,
               anotherCode:self.hazardList[i].anotherCode
             });
-            console.log("self.hazardList[i]",self.hazardList[i])
           }
         }
-        console.log("self.hazardList[i]",self.form.hazardRelations)
         this.$forceUpdate();
       },
       radioChange(){
@@ -350,13 +344,11 @@
         }
       },
       addNumOne(){
-        console.log("1")
         if(this.form.signTime<99){
           this.form.signTime++
         }
       },
       reduceNumOne(){
-        console.log("2")
         if(this.form.signTime>2){
           this.form.signTime--
         }

+ 0 - 1
src/views/comprehensive/laboratoryManagement/subject/deviceList.vue

@@ -944,7 +944,6 @@ export default {
       let obj = {
         subjectId:this.subjectData.id
       };
-      console.log("obj",obj)
       listBySubjectId(obj).then(response => {
         this.$set(this,'listCgq',response.data.listCgq);
         this.$set(this,'listYtj',response.data.listYtj);

+ 0 - 3
src/views/safetyInfo/safetyInfoConfig/safetyInfoConfig.vue

@@ -173,7 +173,6 @@ export default {
   },
   methods: {
       handleTabClick(tab){
-        console.log(tab.name)
         this.queryParams.infoClassifyId=tab.name;
         this.getList()
       },
@@ -230,7 +229,6 @@ export default {
         this.form.infoContent='';
         this.categoryList.forEach(function(item) {
           if(item.id==_this.form.infoClassifyId){
-              console.log(item)
             _this.form.infoTypeName=item.classifyType==1?'文字':'图片';
             _this.form.infoType=item.classifyType;
           }
@@ -272,7 +270,6 @@ export default {
       },
       //上传
       handleAvatarSuccess(res, file) {
-        console.log(res.data.url);
         this.form.infoContent = res.data.url;
         this.$forceUpdate()
       },