gjy 2 rokov pred
rodič
commit
750b7d192e

+ 1 - 3
src/global.js

@@ -25,9 +25,7 @@ export default {
         alert('当前浏览器不支持websocket')
       }
   },
-  allRoles:function(){
-    console.log(localStorage.getItem('winseaview-userInfo'))
-  },
+ 
   initWebSocket: function() {
     // 连接错误
     this.websocket.onerror =evt => {

+ 32 - 7
src/views/contractManagement/purchaseContract.vue

@@ -154,12 +154,18 @@
       </el-table-column>
       <el-table-column width='130' prop="goodsNames" label="已开发票 (元)">
         <template slot-scope="scope">
-          {{scope.row.goodsNames}}
-          <img width="18" height="20" style="vertical-align: text-top; position: relative; top: -1px"
-            src="../../../public/img/fujian.png" @click="invoiceUploade(scope.row)" alt="" />
-          <span v-if="scope.row.invoiceUrl != null">
-            {{ scope.row.invoiceUrl? scope.row.invoiceUrl.split(",").length : "" }}
-          </span>
+          <div v-if="!scope.row.editgoodsNames" style="display:inline-block;">
+            <span @dblclick="scope.row.editgoodsNames=true">{{ scope.row.invoiced?scope.row.invoiced:0 }}</span>
+            <img width="18" height="20" style="vertical-align: text-top; position: relative; top: -1px"
+              src="../../../public/img/fujian.png" @click="invoiceUploade(scope.row)" alt="" />
+            <span v-if="scope.row.invoiceUrl != null">
+              {{ scope.row.invoiceUrl ? scope.row.invoiceUrl.split(",").length : "" }}
+            </span>
+          </div>
+          <div v-if="scope.row.editgoodsNames">
+            <el-input class="goodsnamesinput" v-model="scope.row.invoiced" placeholder="输入累计开票金额" ></el-input>
+            <i @click="submitgoodsNames(scope.row)" class="el-icon-check"></i>
+          </div>
         </template>
       </el-table-column>
       <el-table-column prop="addressUrl" label="附件">
@@ -434,6 +440,25 @@ export default {
     this.persionXiaLa()
   },
   methods: {
+    submitgoodsNames(row){
+      console.log(row)
+      if(row.invoiced<0){
+        this.$notify.warning({
+            title: '警告',
+            message: '发票金额输入错误',
+          })
+      }
+      var dataobj={}
+      dataobj.id=row.id
+      dataobj.flag=3
+      dataobj.invoiced=row.invoiced
+      editInfo(dataobj)
+            .toPromise()
+            .then((response) => {
+              this.$message.success('修改成功')
+              this.getList()
+            })
+    },
     persionXiaLa() {
       getstafffind({
         roles: 'b96299bb5dcf461e916b72b64c6943b0'
@@ -1188,4 +1213,4 @@ export default {
   color: #8890b1;
   width: 100%;
 }
-</style>
+</style>

+ 38 - 12
src/views/contractManagement/salesContract.vue

@@ -162,25 +162,27 @@
           </span>
         </template>
       </el-table-column>
-      <el-table-column width='120' prop="goodsNames" label="已开发票 (元)">
+      <el-table-column width='190' prop="goodsNames" label="已开发票 (元)">
         <template slot-scope="scope">
-          {{ scope.row.goodsNames }}
-          <img width="18" height="20" style="vertical-align: text-top; position: relative; top: -1px"
-            src="../../../public/img/fujian.png" @click="invoiceUploade(scope.row)" alt="" />
-          <span v-if="scope.row.invoiceUrl != null">
-            {{ scope.row.invoiceUrl ? scope.row.invoiceUrl.split(",").length : "" }}
-          </span>
+          <div v-if="!scope.row.editgoodsNames" style="display:inline-block;">
+            <span @dblclick="scope.row.editgoodsNames=true">{{ scope.row.invoiced?scope.row.invoiced:0 }}</span>
+            <img width="18" height="20" style="vertical-align: text-top; position: relative; top: -1px"
+              src="../../../public/img/fujian.png" @click="invoiceUploade(scope.row)" alt="" />
+            <span v-if="scope.row.invoiceUrl != null">
+              {{ scope.row.invoiceUrl ? scope.row.invoiceUrl.split(",").length : "" }}
+            </span>
+          </div>
+          <div v-if="scope.row.editgoodsNames">
+            <el-input class="goodsnamesinput" v-model="scope.row.invoiced" placeholder="输入累计开票金额" ></el-input>
+            <i @click="submitgoodsNames(scope.row)" class="el-icon-check"></i>
+          </div>
         </template>
       </el-table-column>
       <el-table-column prop="addressUrl" label="附件">
         <template slot-scope="scope">
           <img width="18" height="20" style="vertical-align: text-top; position: relative; top: -1px"
             src="../../../public/img/fujian.png" @click="fujian(scope.row)" alt="" />
-          <span v-if="scope.row.addressUrlArray != null">{{
-              scope.row.addressUrlArray.length == 0
-                ? ''
-                : scope.row.addressUrlArray.length
-          }}</span>
+          <span v-if="scope.row.addressUrlArray != null">{{scope.row.addressUrlArray.length == 0? '' : scope.row.addressUrlArray.length}}</span>
           <!-- <i @click="fujian(scope.row)" class="el-icon-paperclip iconCss"></i> -->
         </template>
       </el-table-column>
@@ -463,6 +465,25 @@ export default {
     this.persionXiaLa()
   },
   methods: {
+    submitgoodsNames(row){
+      console.log(row)
+      if(row.invoiced<0){
+        this.$notify.warning({
+            title: '警告',
+            message: '发票金额输入错误',
+          })
+      }
+      var dataobj={}
+      dataobj.id=row.id
+      dataobj.flag=3
+      dataobj.invoiced=row.invoiced
+      editInfo(dataobj)
+            .toPromise()
+            .then((response) => {
+              this.$message.success('修改成功')
+              this.getList()
+            })
+    },
     persionXiaLa() {
       getstafffind({
         roles: 'b96299bb5dcf461e916b72b64c6943b0'
@@ -677,6 +698,7 @@ export default {
             if (response.records[i].status) {
               response.records[i].currectstatus = response.records[i].status
             }
+            response.records[i].editgoodsNames=false
             if (response.records[i].collectionDeadline) {
               response.records[i].date = new Date(response.records[i].collectionDeadline).getTime()
               console.log(response.records[i].date, parseInt(date) + (5 * 24 * 3600 * 1000))
@@ -1302,4 +1324,8 @@ export default {
   color: #8890b1;
   width: 100%;
 }
+.el-table .cell .goodsnamesinput.el-input
+{
+width:80%;
+}
 </style>

+ 41 - 2
src/views/houseSelfCollect/newWeighingManagement.vue

@@ -495,6 +495,21 @@
         }, {
           value: '厦门建发物产有限公司',
           label: '厦门建发物产有限公司'
+        },{
+          value: '黑龙江谷香粮食贸易有限公司',
+          label: '黑龙江谷香粮食贸易有限公司'
+        },{
+          value: '黑龙江秋收有限公司',
+          label: '黑龙江秋收有限公司'
+        }, {
+          value: '黑龙江欣洋粮食贸易有限公司',
+          label: '黑龙江欣洋粮食贸易有限公司'
+        }, {
+          value: '黑龙江益储益运粮食贸易有限公司',
+          label: '黑龙江益储益运粮食贸易有限公司'
+        }, {
+          value: '黑龙江启兴粮食贸易有限公司',
+          label: '黑龙江启兴粮食贸易有限公司'
         }],
         companyNameOptions: [{
           value: '黑龙江中天昊元贸易有限公司',
@@ -511,7 +526,23 @@
         }, {
           value: '榆树市保寿镇保寿村民胜粮食加工有限公司',
           label: '榆树市保寿镇保寿村民胜粮食加工有限公司'
-        }, ],
+        },
+        {
+          value: '黑龙江谷香粮食贸易有限公司',
+          label: '黑龙江谷香粮食贸易有限公司'
+        },{
+          value: '黑龙江秋收有限公司',
+          label: '黑龙江秋收有限公司'
+        }, {
+          value: '黑龙江欣洋粮食贸易有限公司',
+          label: '黑龙江欣洋粮食贸易有限公司'
+        }, {
+          value: '黑龙江益储益运粮食贸易有限公司',
+          label: '黑龙江益储益运粮食贸易有限公司'
+        }, {
+          value: '黑龙江启兴粮食贸易有限公司',
+          label: '黑龙江启兴粮食贸易有限公司'
+        } ],
         companyNameEWOptions: [{
           value: '厦门建发物产有限公司',
           label: '厦门建发物产有限公司'
@@ -538,7 +569,15 @@
       if(localStorage.getItem('compNameoptions')){
         var company=JSON.parse(localStorage.getItem('compNameoptions'))
         var extra=company.filter((item)=>{
-          return item!='黑龙江中天昊元贸易有限公司'&&item!='黑龙江利润元粮食贸易有限公司'&&item!= '黑龙江众利合粮食贸易有限公司'&&item!='黑龙江鑫满仓粮食贸易有限公司'
+          return item!='黑龙江中天昊元贸易有限公司'
+          &&item!='黑龙江利润元粮食贸易有限公司'
+          &&item!= '黑龙江众利合粮食贸易有限公司'
+          &&item!='黑龙江鑫满仓粮食贸易有限公司'
+          &&item!='黑龙江谷香粮食贸易有限公司'
+          &&item!='黑龙江秋收有限公司'
+          &&item!= '黑龙江欣洋粮食贸易有限公司'
+          &&item!='黑龙江益储益运粮食贸易有限公司'
+          &&item!='黑龙江启兴粮食贸易有限公司'
         })
         if(extra.length>0){
           this.ewCustomerOptions=[]

+ 39 - 4
src/views/houseSelfCollect/weightCheckRecord.vue

@@ -270,6 +270,21 @@
         },{
           value: '厦门建发物产有限公司',
           label: '厦门建发物产有限公司'
+        },{
+          value: '黑龙江谷香粮食贸易有限公司',
+          label: '黑龙江谷香粮食贸易有限公司'
+        },{
+          value: '黑龙江秋收有限公司',
+          label: '黑龙江秋收有限公司'
+        }, {
+          value: '黑龙江欣洋粮食贸易有限公司',
+          label: '黑龙江欣洋粮食贸易有限公司'
+        }, {
+          value: '黑龙江益储益运粮食贸易有限公司',
+          label: '黑龙江益储益运粮食贸易有限公司'
+        }, {
+          value: '黑龙江启兴粮食贸易有限公司',
+          label: '黑龙江启兴粮食贸易有限公司'
         }],
         companyNameOptions: [{
           value: '黑龙江中天昊元贸易有限公司',
@@ -283,6 +298,21 @@
         }, {
           value: '黑龙江鑫满仓粮食贸易有限公司',
           label: '黑龙江鑫满仓粮食贸易有限公司'
+        },{
+          value: '黑龙江谷香粮食贸易有限公司',
+          label: '黑龙江谷香粮食贸易有限公司'
+        },{
+          value: '黑龙江秋收有限公司',
+          label: '黑龙江秋收有限公司'
+        }, {
+          value: '黑龙江欣洋粮食贸易有限公司',
+          label: '黑龙江欣洋粮食贸易有限公司'
+        }, {
+          value: '黑龙江益储益运粮食贸易有限公司',
+          label: '黑龙江益储益运粮食贸易有限公司'
+        }, {
+          value: '黑龙江启兴粮食贸易有限公司',
+          label: '黑龙江启兴粮食贸易有限公司'
         }],
         companyNameEWOptions: [{
           value: '厦门建发物产有限公司',
@@ -315,7 +345,15 @@
       if(localStorage.getItem('compNameoptions')){
         var company=JSON.parse(localStorage.getItem('compNameoptions'))
         var extra=company.filter((item)=>{
-          return item!='黑龙江中天昊元贸易有限公司'&&item!='黑龙江利润元粮食贸易有限公司'&&item!= '黑龙江众利合粮食贸易有限公司'&&item!='黑龙江鑫满仓粮食贸易有限公司'
+          return item!='黑龙江中天昊元贸易有限公司'
+          &&item!='黑龙江利润元粮食贸易有限公司'
+          &&item!= '黑龙江众利合粮食贸易有限公司'
+          &&item!='黑龙江鑫满仓粮食贸易有限公司'
+          &&item!='黑龙江谷香粮食贸易有限公司'
+          &&item!='黑龙江秋收有限公司'
+          &&item!= '黑龙江欣洋粮食贸易有限公司'
+          &&item!='黑龙江益储益运粮食贸易有限公司'
+          &&item!='黑龙江启兴粮食贸易有限公司'
         })
         if(extra.length>0){
           this.ewCustomerOptions=[]
@@ -330,9 +368,6 @@
             this.companyNameEWOptions.push({value: extra[i],label:extra[i]})
           }
         }
-        console.log( this.ewCustomerOptions,
-            this.companyNameOptions,
-            this.companyNameEWOptions)
       }
       selectWarehouseSelf({
           compId: localStorage.getItem('ws-pf_compId'),

+ 33 - 1
src/views/outboundManagement/weighingManagementNew.vue

@@ -543,6 +543,18 @@
         },{
           value: '黑龙江欣洋粮食贸易有限公司',
           label: '黑龙江欣洋粮食贸易有限公司'
+        },,{
+          value: '黑龙江谷香粮食贸易有限公司',
+          label: '黑龙江谷香粮食贸易有限公司'
+        },{
+          value: '黑龙江秋收有限公司',
+          label: '黑龙江秋收有限公司'
+        },  {
+          value: '黑龙江益储益运粮食贸易有限公司',
+          label: '黑龙江益储益运粮食贸易有限公司'
+        }, {
+          value: '黑龙江启兴粮食贸易有限公司',
+          label: '黑龙江启兴粮食贸易有限公司'
         }],
        companyNameOptions: [
          {
@@ -560,6 +572,18 @@
         },{
           value: '黑龙江欣洋粮食贸易有限公司',
           label: '黑龙江欣洋粮食贸易有限公司'
+        },{
+          value: '黑龙江谷香粮食贸易有限公司',
+          label: '黑龙江谷香粮食贸易有限公司'
+        },{
+          value: '黑龙江秋收有限公司',
+          label: '黑龙江秋收有限公司'
+        },  {
+          value: '黑龙江益储益运粮食贸易有限公司',
+          label: '黑龙江益储益运粮食贸易有限公司'
+        }, {
+          value: '黑龙江启兴粮食贸易有限公司',
+          label: '黑龙江启兴粮食贸易有限公司'
         }],
         
         companyName: '黑龙江中天昊元贸易有限公司',
@@ -620,7 +644,15 @@
       if(localStorage.getItem('compNameoptions')){
         var company=JSON.parse(localStorage.getItem('compNameoptions'))
         var extra=company.filter((item)=>{
-          return item!='黑龙江中天昊元贸易有限公司'&&item!='黑龙江利润元粮食贸易有限公司'&&item!= '黑龙江众利合粮食贸易有限公司'&&item!='黑龙江鑫满仓粮食贸易有限公司'
+          return item!='黑龙江中天昊元贸易有限公司'
+          &&item!='黑龙江利润元粮食贸易有限公司'
+          &&item!= '黑龙江众利合粮食贸易有限公司'
+          &&item!='黑龙江鑫满仓粮食贸易有限公司'
+          &&item!='黑龙江谷香粮食贸易有限公司'
+          &&item!='黑龙江秋收有限公司'
+          &&item!= '黑龙江欣洋粮食贸易有限公司'
+          &&item!='黑龙江益储益运粮食贸易有限公司'
+          &&item!='黑龙江启兴粮食贸易有限公司'
         })
         if(extra.length>0){
           this.ewCustomerOptions=[]

+ 33 - 1
src/views/outboundManagement/weighingManagementrecord.vue

@@ -267,6 +267,18 @@
         },{
           value: '黑龙江欣洋粮食贸易有限公司',
           label: '黑龙江欣洋粮食贸易有限公司'
+        },{
+          value: '黑龙江谷香粮食贸易有限公司',
+          label: '黑龙江谷香粮食贸易有限公司'
+        },{
+          value: '黑龙江秋收有限公司',
+          label: '黑龙江秋收有限公司'
+        }, {
+          value: '黑龙江益储益运粮食贸易有限公司',
+          label: '黑龙江益储益运粮食贸易有限公司'
+        }, {
+          value: '黑龙江启兴粮食贸易有限公司',
+          label: '黑龙江启兴粮食贸易有限公司'
         }],
         companyNameOptions: [
           {
@@ -284,6 +296,18 @@
         },{
           value: '黑龙江欣洋粮食贸易有限公司',
           label: '黑龙江欣洋粮食贸易有限公司'
+        },{
+          value: '黑龙江谷香粮食贸易有限公司',
+          label: '黑龙江谷香粮食贸易有限公司'
+        },{
+          value: '黑龙江秋收有限公司',
+          label: '黑龙江秋收有限公司'
+        },  {
+          value: '黑龙江益储益运粮食贸易有限公司',
+          label: '黑龙江益储益运粮食贸易有限公司'
+        }, {
+          value: '黑龙江启兴粮食贸易有限公司',
+          label: '黑龙江启兴粮食贸易有限公司'
         }],
         companyNameEWOptions: [{
           value: '黑龙江中天昊元贸易有限公司',
@@ -320,7 +344,15 @@
       if(localStorage.getItem('compNameoptions')){
         var company=JSON.parse(localStorage.getItem('compNameoptions'))
         var extra=company.filter((item)=>{
-          return item!='黑龙江中天昊元贸易有限公司'&&item!='黑龙江利润元粮食贸易有限公司'&&item!= '黑龙江众利合粮食贸易有限公司'&&item!='黑龙江鑫满仓粮食贸易有限公司'
+          return item!='黑龙江中天昊元贸易有限公司'
+          &&item!='黑龙江利润元粮食贸易有限公司'
+          &&item!= '黑龙江众利合粮食贸易有限公司'
+          &&item!='黑龙江鑫满仓粮食贸易有限公司'
+          &&item!='黑龙江谷香粮食贸易有限公司'
+          &&item!='黑龙江秋收有限公司'
+          &&item!= '黑龙江欣洋粮食贸易有限公司'
+          &&item!='黑龙江益储益运粮食贸易有限公司'
+          &&item!='黑龙江启兴粮食贸易有限公司'
         })
         if(extra.length>0){
           this.ewCustomerOptions=[]

+ 0 - 1
src/views/profitable/contractinventory.vue

@@ -182,7 +182,6 @@
               }
             }
             this.tableData = response.records
-            
            this.deptBudgetTotal = response.total
           })
       },

+ 20 - 1
src/views/tranManagement/tranManagementReceivingFeedback.vue

@@ -1,10 +1,15 @@
 //收货反馈
 <template>
   <div>
-    <BaseHeaderLayout :leftSpan="8">
+    <BaseHeaderLayout :leftSpan="6">
       <template slot="left"> </template>
       <!-- 接单开始 -->
       <template slot="right">
+        <ws-select v-if="nqstatus" v-model="filterFlag" placeholder="" class="typeselect" @change="selectfilterFlag"
+          :value="searchType">
+          <ws-option  key="我的反馈" label="我的反馈" value="1" style="color: #8890b1" />
+          <ws-option  key="全部反馈" label="全部反馈" value="" style="color: #8890b1" />
+        </ws-select>
         <span style="width: 142px; display: inline-block; color: #8890b1">状态:</span>
         <ws-select v-model="searchTypeText" placeholder="" class="typeselect" @change="selecttaskType"
           :value="searchType">
@@ -127,6 +132,7 @@
   import {
     downloadFile
   } from '@/utils/batchDown'
+  import { allRoles } from '@/utils/util'
   import Pagination from '@/components/Pagination'
   import WsUpload from '@/components/WsUpload'
   import {
@@ -166,6 +172,8 @@
         pageSize: 10,
         feedbackFlag: 4,
         searchType: 1,
+        // filterFlag:'我的反馈',
+        filterFlag:'1',
         searchTypeText: '执行中',
         tranTypeKey: 5,
         tranTypeKeyText: '全部',
@@ -225,13 +233,23 @@
             return time.getTime() > Date.now()
           },
         },
+        nqstatus:false,
         accessoryTFs: false,
       }
     },
     mounted() {
+      var roles=allRoles()
+      // console.log(roles)
+      if(roles.roleName.indexOf('销售内勤')!=-1||roles.roleName.indexOf('采购内勤')!=-1){
+        this.nqstatus=true
+      }
       this.getList()
     },
     methods: {
+      selectfilterFlag(e){
+
+        this.getList()
+      },
       //接口
       getList() {
         shippingList({
@@ -243,6 +261,7 @@
             startDate: this.startDate,
             endDate: this.endDate,
             searchKeyWord: this.searchKeyWord,
+            filterFlag:this.filterFlag
           })
           .toPromise()
           .then((response) => {

+ 16 - 0
src/views/tranManagement/tranManagementTransporHairRespond.vue

@@ -5,6 +5,11 @@
       <template slot="left"> </template>
       <!-- 接单开始 -->
       <template slot="right">
+        <ws-select v-if="nqstatus" v-model="filterFlag" placeholder="" class="typeselect" @change="selectfilterFlag"
+          :value="searchType">
+          <ws-option  key="我的反馈" label="我的反馈" value="1" style="color: #8890b1" />
+          <ws-option  key="全部反馈" label="全部反馈" value="" style="color: #8890b1" />
+        </ws-select>
         <span style="width: 160px; display: inline-block; color: #8890b1">状态:</span>
         <ws-select v-model="searchTypeText" placeholder="" class="typeselect" @change="selecttaskType"
           :value="searchType">
@@ -122,6 +127,7 @@
   import {
     downloadFile
   } from '@/utils/batchDown'
+  import { allRoles } from '@/utils/util'
   import Pagination from '@/components/Pagination'
   import WsUpload from '@/components/WsUpload'
   import {
@@ -215,19 +221,28 @@
         tranManagementList: [],
         deptBudgetList: {},
         historyList: [],
+        filterFlag:'1',
         pickerBeginDateBefore: {
           disabledDate: (time) => {
             return time.getTime() > Date.now()
           },
         },
+        nqstatus:false,
         accessoryTFs: false,
       }
     },
     activated() {
+      var roles=allRoles()
+      if(roles.roleName.indexOf('销售内勤')!=-1||roles.roleName.indexOf('采购内勤')!=-1){
+        this.nqstatus=true
+      }
       this.getList()
       this.showType = this.isShow
     },
     methods: {
+      selectfilterFlag(){
+        this.getList()
+      },
       getSpanArr(data) {
         let that = this
         //页面展示的数据,不一定是全部的数据,所以每次都清空之前存储的 保证遍历的数据是最新的数据。以免造成数据渲染混乱
@@ -374,6 +389,7 @@
             startDate: this.startDate,
             endDate: this.endDate,
             searchKeyWord: this.searchKeyWord,
+            filterFlag:this.filterFlag
           })
           .toPromise()
           .then((response) => {

+ 30 - 30
src/views/universalityAudit/component/routers/route.js

@@ -1,36 +1,36 @@
 import Layout from '@/layout/index';
 
-const profitableRouter = {
-  path: '/aduitmanagement',
-  component: Layout,
-  redirect: '/aduitmanagement',
-  name: 'aduitmanagement',
-  alwaysShow: true, // will always show the root menu
-  meta: {
-    title: 'aduitmanagement',
-    module: 'generalAudit',
-    icon: '-caigouguanli'
-  },
-  children: [
+// const profitableRouter = {
+//   path: '/aduitmanagement',
+//   component: Layout,
+//   redirect: '/aduitmanagement',
+//   name: 'aduitmanagement',
+//   alwaysShow: true, // will always show the root menu
+//   meta: {
+//     title: 'aduitmanagement',
+//     module: 'generalAudit',
+//     icon: '-caigouguanli'
+//   },
+//   children: [
    
-      {
-        path: 'audit',
-        component: () =>
-          import(/* webpackChunkName: "applDetail" */ '@/views/universalityAudit/audit'),
-        name: 'audit',
-        meta: {
-          title: 'universalityaudit',
-          shortcutEntrance: 'profitable',
-          module: 'generalAudit',
-          permissicon: [],
-          keepAlive: true,
-          _title:'通用审核'
-          // module: 'procurement.sparepart.applDetail'
-        }
-      },  
+//       {
+//         path: 'audit',
+//         component: () =>
+//           import(/* webpackChunkName: "applDetail" */ '@/views/universalityAudit/audit'),
+//         name: 'audit',
+//         meta: {
+//           title: 'universalityaudit',
+//           shortcutEntrance: 'profitable',
+//           module: 'generalAudit',
+//           permissicon: [],
+//           keepAlive: true,
+//           _title:'通用审核'
+//           // module: 'procurement.sparepart.applDetail'
+//         }
+//       },  
     
-  ],
+//   ],
 
-};
+// };
 
-export default profitableRouter;
+// export default profitableRouter;

+ 1 - 1
src/views/warehousenew/warehousingOrder.vue

@@ -2131,4 +2131,4 @@ export default {
 // /deep/.el-table .cell{
 //   padding:0;
 // }
-</style>
+</style>

+ 0 - 2
src/views/workNotification/components/MessageItem.vue

@@ -136,7 +136,6 @@ export default {
       if (!url) {
         EventBus.$emit('error', this.$t('workNotification.noRelatedType'))
       } else {
-        console.log(2222222222)
         if (
           url == 'certificateDetailSecond' ||
           url == 'certificateDetailThird'
@@ -163,7 +162,6 @@ export default {
             query: { status:1 }
           })
         } else {
-          console.log(id,title,111111111)
           this.$router.push({
             name: url,
             query: { id: id, title: title, code: this.info.businessCode }