谢杰标 2 years ago
parent
commit
9d6a3fdce0

+ 0 - 23
src/views/financed/accountsPayable/components/dislogOrderList.vue

@@ -58,9 +58,6 @@
             >审核不通过</el-button
             >审核不通过</el-button
           >
           >
         </template>
         </template>
-        <!-- <el-button v-else @click="batchExport" type="info" plain>
-          导出excel
-        </el-button> -->
       </template>
       </template>
       <template slot="predictPayTime" slot-scope="props">
       <template slot="predictPayTime" slot-scope="props">
         <span v-if="props.scope.row.creditStatus == 1">已结清</span>
         <span v-if="props.scope.row.creditStatus == 1">已结清</span>
@@ -75,9 +72,6 @@
           {{ props.scope.row.predictPayDay || "--" }}
           {{ props.scope.row.predictPayDay || "--" }}
         </span>
         </span>
       </template>
       </template>
-      <template slot="divideCheckStatus" slot-scope="props">
-        <div>{{ props.scope.row.checkStatus > 0 ? "已通过" : "未通过" }}</div>
-      </template>
       <template slot="btn" slot-scope="props">
       <template slot="btn" slot-scope="props">
         <el-button type="text" @click="handelDetail(props.scope.row)">
         <el-button type="text" @click="handelDetail(props.scope.row)">
           详情
           详情
@@ -229,14 +223,6 @@ export default {
           // width: 100,
           // width: 100,
           scope: "formatPrice",
           scope: "formatPrice",
         },
         },
-        // {
-        //   label: "审核状态",
-        //   prop: "divideCheckStatus",
-        //   hidden: true,
-        //   // width: 100,
-        //   scope: "solt",
-        //   soltName: "divideCheckStatus",
-        // },
       ],
       ],
       tableData: [],
       tableData: [],
       total: 0,
       total: 0,
@@ -355,15 +341,6 @@ export default {
     },
     },
     formList() {
     formList() {
       return [
       return [
-        {
-          prop: "checkStatus",
-          placeholder: "审核状态",
-          scope: "select",
-          options: [
-            { label: "待审核", value: 0 },
-            { label: "已通过", value: 1 },
-          ],
-        },
         {
         {
           prop: "orderType",
           prop: "orderType",
           placeholder: "分成类型",
           placeholder: "分成类型",

+ 6 - 1
src/views/financed/accountsPayable/components/dislogPrint.vue

@@ -296,8 +296,13 @@ export default {
           },
           },
           { label: "订单金额", prop: "orderPrice", scope: "formatPrice" },
           { label: "订单金额", prop: "orderPrice", scope: "formatPrice" },
           { label: "税前佣金", prop: "pretaxBrokerage", scope: "formatPrice" },
           { label: "税前佣金", prop: "pretaxBrokerage", scope: "formatPrice" },
-          { label: "应付分成", prop: "payMoney", scope: "formatPrice" },
+          {
+            label: "应付分成",
+            prop: this.type == 1 ? "divideCompanyMoney" : "divideSellerMoney",
+            scope: "formatPrice",
+          },
         ];
         ];
+        console.log(tableSet,789)
         if (this.type == 1) {
         if (this.type == 1) {
           tableSet.splice(3, 2);
           tableSet.splice(3, 2);
         }
         }