snow 7 月之前
父节点
当前提交
30862e1d14

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


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


二进制
dist/static/css/app.9a2d4ce5.css.gz → dist/static/css/app.cb55dd0e.css.gz


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


二进制
dist/static/js/app.4a97752d.js.gz


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


二进制
dist/static/js/app.768871dd.js.gz


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

@@ -405,14 +405,14 @@ export default {
       const currentTotalTip = Number(multiplication(currentDay, oneDay)).toFixed(2);
       const currentTotalTip = Number(multiplication(currentDay, oneDay)).toFixed(2);
       return Number(currentTotalTip) > Number(current) ? 'color: red' : '';
       return Number(currentTotalTip) > Number(current) ? 'color: red' : '';
     },
     },
-    setCellClassName({ column, row }) {
+    setCellClassName({ column, row, columnIndex }) {
+      console.log(columnIndex)
 
 
       const { label } = column;
       const { label } = column;
       let base = ''
       let base = ''
 
 
-      // console.log(label === '', row.order_type)
       if(
       if(
-        (label === '' && row.order_type === '自营订单' || row.order_type === undefined) &&
+        (columnIndex === 0  && (row.order_type === '自营订单' || row.order_type === undefined)) &&
         row.companyName !== this.lastSupportCompany
         row.companyName !== this.lastSupportCompany
       ) {
       ) {
          base += 'no-border-bottom '
          base += 'no-border-bottom '

+ 0 - 1
src/pages/newEarningReport.vue

@@ -116,7 +116,6 @@ export default {
       const openid = getOpenid()
       const openid = getOpenid()
       const code = getParameterByName('code')
       const code = getParameterByName('code')
       const result = await userRequest.userinfo({ ...(openid ? { openid } : { code }) })
       const result = await userRequest.userinfo({ ...(openid ? { openid } : { code }) })
-
       //  const result = {
       //  const result = {
       //  "code": 0,
       //  "code": 0,
       //  "message": "获取成功",
       //  "message": "获取成功",

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