snow 7 月之前
父节点
当前提交
4d42a6e729

文件差异内容过多而无法显示
+ 0 - 0
dist/index.html


文件差异内容过多而无法显示
+ 0 - 0
dist/static/css/app.36bfc9fe.css


二进制
dist/static/css/app.f1f7c76b.css.gz → dist/static/css/app.36bfc9fe.css.gz


文件差异内容过多而无法显示
+ 0 - 0
dist/static/js/app.57c47288.js


文件差异内容过多而无法显示
+ 0 - 0
dist/static/js/app.d49247d9.js


二进制
dist/static/js/app.57c47288.js.gz → dist/static/js/app.d49247d9.js.gz


+ 2 - 3
src/components/newEarningReport/supplier.vue

@@ -219,7 +219,7 @@ export default {
       if (item.label === '北京泰文创供应链管理有限公司') { label = '平台公司: 泰文创' }
       if (item.label === '北京元隆雅图文化传播股份有限公司') { label = '预订单E企购' }
       if (item.label === '结算单E企购') { label = '结算单E企购' }
-      if (item.label === "普润&锦兴&知事") label = `业务公司: 普润&锦兴&知事`
+      if (item.label === "普润&锦兴&知事") { label = `业务公司: 普润&锦兴&知事` }
       if (label === '') label = `业务公司: ${mapCompany2[item.label]}`;
       return ({ ...item, label })
     })
@@ -269,7 +269,6 @@ export default {
         const currentDay = dayjs(this.daytime).date();
         const currentTotalTip = Number(multiplication(currentDay, oneDay)).toFixed(2);
         return Number(currentTotalTip) > Number(current) ? 'color: red' : '';
-
     },
     getTotalRateStyle(row, prop) {
         const days = dayjs(this.daytime).daysInMonth();
@@ -278,7 +277,6 @@ export default {
         const currentTotalTip = Number(multiplication(currentDay, oneDay)).toFixed(2);
         const current = this.calcAmount(prop,row.companyNo)
         return Number(currentTotalTip) > Number(current) ? 'color:red' : ''
-      
     },
     getCurrentRateStyle(current) {
       const days = dayjs(this.daytime).daysInMonth();
@@ -484,6 +482,7 @@ export default {
     setHeaderClassName({ column }) {
       const { label } = column;
       if (label === "营收目标") { return "bg__success" }
+
       if ((label.indexOf('营业') !== -1 || label.indexOf('营收') !== -1) && label !== '当日营业收入'){
          return "bg__success_1"
       }

+ 1 - 2
src/pages/index.vue

@@ -22,7 +22,7 @@ export default {
         {label:'6.库存情况', link:'?path=newStock'},
         {label:'1.业绩报表(2023版)', link: '/?path=results'},
         {label: '测试', link: '/?path=newResultInfo'},
-        {label: '7.', link: '/?path=newEarningReport'},
+        {label: '7.预定单报表', link: '/?path=newEarningReport'}
       ]
     }
   },
@@ -32,7 +32,6 @@ export default {
   methods:{
     goRouter(e,link){
       e.stopPropagation()
-      // window.location.hash = link
       window.open(link)
     }
   }

部分文件因为文件数量过多而无法显示