Parcourir la source

删除console.log

wucl il y a 6 mois
Parent
commit
8e0f6a1d36

+ 0 - 2
src/components/FileUpload.vue

@@ -241,8 +241,6 @@
         var checkFile = false;
         const fileNameSuffix = file.name.substring(file.name.lastIndexOf("."));
         const allowFileTypes = that.allowFileTypes.split("|");
-        console.log("fileNameSuffix"+fileNameSuffix)
-        console.log("allowFileTypes"+allowFileTypes.length)
         const isLt2M = file.size / 1024 / 1024 < 20;
         if (allowFileTypes && allowFileTypes.length > 0) {
           for (var i = 0; i < allowFileTypes.length; i++) {

+ 0 - 1
src/components/roundProgress.vue

@@ -67,7 +67,6 @@
       }
     },
     created() {
-      console.log(this.plan)
     }
   }
 </script>

+ 5 - 0
src/views/finance/invoiceCheck.vue

@@ -195,6 +195,11 @@
                 <span>{{ row.type }}</span>
               </template>
             </el-table-column>
+            <el-table-column label="发票号" align="center">
+              <template slot-scope="{row}">
+                <span>{{ row.ticketNo }}</span>
+              </template>
+            </el-table-column>
             <el-table-column label="已开金额" align="center" prop="planAmount">
               <template slot-scope="{row}">
                 <span>{{ row.planAmount }}</span>

+ 0 - 2
src/views/market/team/list.vue

@@ -311,7 +311,6 @@
       },
       selectionChange(val){
         this.multipleSelection = val;
-        console.log('arr', val)
       },
       addMembers(){
         const members = this.multipleSelection;
@@ -420,7 +419,6 @@
       getList() {
         const that = this
         this.listLoading = true
-        // console.log(that.listQuery)
         const key = {}
         key[this.listQueryKey] = this.listQuery.description;
         this.$api.team

+ 0 - 1
src/views/personal/order.vue

@@ -791,7 +791,6 @@
           })
         },
         'personal.terminalClienteleType'(nv,ov){
-            console.log(nv)
             if (nv=='企业'){
               this.getCustomerCompany(1);
               let simpleAll = new Object();

+ 0 - 1
src/views/personal/readonlyDetail.vue

@@ -1539,7 +1539,6 @@ export default {
             const url = window.URL.createObjectURL(blob);
             const link = document.createElement('a');
             link.href = url;
-            console.log(blob)
             link.setAttribute('download',fileName+'产品包.zip');
             document.body.appendChild(link);
             link.click();

+ 0 - 3
src/views/personal/todoDetail.vue

@@ -2649,9 +2649,7 @@ export default {
       const currentDate = new Date();
       const currentYear = currentDate.getFullYear();
       let month = currentDate.getMonth();
-      console.log(month)
       this.compareList.analysisData[3].target.valueA = new Date(currentYear,month,2);
-      console.log(new Date(currentYear,month,2))
       if (month==1){
         this.compareList.analysisData[3].compareC.valueA = new Date(currentYear-1,12,2)
         this.compareList.analysisData[3].compareB.valueA = new Date(currentYear-1,11,2)
@@ -2737,7 +2735,6 @@ export default {
             const url = window.URL.createObjectURL(blob);
             const link = document.createElement('a');
             link.href = url;
-            console.log(blob)
             link.setAttribute('download',fileName+'产品包.zip');
             document.body.appendChild(link);
             link.click();

+ 0 - 1
src/views/personal/todoList.vue

@@ -355,7 +355,6 @@ export default {
   watch: {
     orderKeyword: {
       handler(nv, ov) {
-        console.log(nv)
         this.allotOrderQuery.keyword = nv;
         this.getAllotOrderList();
       },

+ 0 - 1
src/views/print/printCode.vue

@@ -12,7 +12,6 @@ export default {
         }
     },
     created() {
-        console.log(this.$route.query.path)
         this.path = this.$route.query.path;
         
     },

+ 0 - 1
src/views/reports/land/risk.vue

@@ -227,7 +227,6 @@ export default {
             var a = document.createElement('a');
             var event = new MouseEvent('click');
             a.download = title+".docx";
-            console.log(a.download)
             a.href = url;//路径前拼上前缀,完整路径
             a.dispatchEvent(event);
         },