Browse Source

去除部分console.log

liusungtsun 1 year ago
parent
commit
07b2f26436

+ 0 - 2
src/views/ENTERPRISESCREENDATA/index.vue

@@ -298,7 +298,6 @@ export default {
       this.userData = res.data;
       listDept().then((data) => {
         this.deptList = data.data;
-        console.log(this.deptList);
       });
     });
   },
@@ -377,7 +376,6 @@ export default {
     },
     /** 提交按钮 */
     submitForm() {
-      console.log(this.form, "---");
       this.$refs["form"].validate((valid) => {
         // this.form.deptId = this.userData.deptId;
         if (valid) {

+ 0 - 1
src/views/GARDENTRADEDATA/edit.vue

@@ -305,7 +305,6 @@ export default {
         this.form = response.data;
         this.form.cbId = +this.form.cbId;
         this.$set(this.form,"dateValue",this.form.year + '-' + this.form.month)
-        console.log(this.form);
       });
     } else {
       //如果没传ID过来那就是新增,需要获取当前用户deptId

+ 0 - 1
src/views/GATHER/importFile.vue

@@ -54,7 +54,6 @@ export default {
     },
   },
   created() {
-    console.log(this.param);
   },
   methods: {
     AvatarUpload(file) {

+ 0 - 1
src/views/RANK/index.vue

@@ -245,7 +245,6 @@ export default {
     /** 查询广西保税区排名列表 */
     getList() {
       this.loading = true;
-      console.log(this.queryParams);
       listRANK(this.queryParams).then(response => {
         this.RANKList = response.rows;
         this.total = response.total;

+ 0 - 4
src/views/news/edit.vue

@@ -134,7 +134,6 @@ export default {
         if (valid) {
           this.form.status = 1;
           if (this.form.id != null && type == "add") {
-            console.log(1);
             updateAndex(this.form).then((response) => {
               this.$modal.msgSuccess("修改成功");
               this.$layer.close(this.layerid);
@@ -142,7 +141,6 @@ export default {
             });
           } else {
             if (this.form.id != null && type == "draft") {
-            console.log(2);
               this.form.status = 0;
               updateNEWS(this.form).then((response) => {
                 this.$modal.msgSuccess("修改成功");
@@ -150,14 +148,12 @@ export default {
                 this.$parent.getList();
               });
             } else if (type == "add") {
-            console.log(3);
               addNEWS(this.form).then((response) => {
                 this.$modal.msgSuccess("新增成功");
                 this.$layer.close(this.layerid);
                 this.$parent.getList();
               });
             } else if (type == "draft") {
-            console.log(4);
               this.form.status = 0;
               addNEWS(this.form).then((response) => {
                 this.$modal.msgSuccess("操作成功");

+ 0 - 4
src/views/norm/formula.vue

@@ -214,7 +214,6 @@
       },
       // 指标元素下拉框的改变方法
       metadataSelect(val) {
-        console.log("111111111",val)
         let metadataCode = ''
         let metadataName = ''
         let metadataId = ''
@@ -242,7 +241,6 @@
       },
       // 新增选择下拉框对应的按钮方法
       cell(data) {
-        console.log("22222222",data)
         // 拿到对应的编码
         let select_data_code = ''
         // 拿到对应的名称
@@ -276,9 +274,7 @@
         this.$refs['add_metadata_form'].validate(valid => {
           if (valid) {
             // 拿到下拉框的全部数据
-            console.log("33333",this.addMetadataSelect)
             //拿到输入框的数据
-            console.log("444444",this.no_show_number_input,"555555",this.id)
             updateFormulaById({formula: this.no_show_number_input, id: this.id}).then((response) => {
               this.$emit("dataFormulaHandler",this.normId);
               this.$modal.msgSuccess("修改成功");

+ 0 - 2
src/views/norm/index.vue

@@ -222,7 +222,6 @@ export default {
     // 多选框选中数据
     handleSelectionChange(selection) {
       this.delList=selection;
-      console.log(selection);
       this.ids = selection.map(item => item.id);
       this.single = selection.length !== 1;
       this.multiple = !selection.length;
@@ -315,7 +314,6 @@ export default {
     // 表格行点击事件处理
     tableBdClick(row) {
       this.normId = row.id;
-      // console.log(this.normId);
       listNORMFEE({ normId: row.id, ...this.pageParams }).then(res => {
         res.rows.forEach((item, index) => {
           res.rows[index].status = item.status == 0 ? false : true;

+ 0 - 2
src/views/norm/quotaBonded.vue

@@ -519,7 +519,6 @@ export default {
         dataList = res.data;
       })
       getQUOTABONDED(id).then((response) => {
-        console.log(response,'response');
         this.form = response.data;
         this.basicInfo = false;
         this.isShowBtn = true;
@@ -584,7 +583,6 @@ export default {
 
     // 文件上传成功处理
     handleFileSuccess(index, response, file, fileList) {
-      console.log("success");
       let linkUrls = [];
       let fileNames = [];
       fileList.forEach((item) => {