阿拉蕾 1 年之前
父節點
當前提交
435610f05a

+ 9 - 0
src/api/store/storeOrder.js

@@ -8,6 +8,15 @@ export function listStoreOrder(query) {
     params: query
   })
 }
+
+// 查询尾款订单列表
+export function listPayRemainOrder(query) {
+  return request({
+    url: '/store/storeOrder/payRemainList',
+    method: 'get',
+    params: query
+  })
+}
 // 查询推广订单列表
 export function listPromotionOrder(query) {
   return request({

+ 1 - 1
src/views/company/schedule/statistics.vue

@@ -93,7 +93,7 @@
     </el-row>
 
      <!-- :span-method="objectSpanMethod"  -->
-    <el-table  v-loading="loading" border :data="tcmScheduleReportList" @selection-change="handleSelectionChange">
+    <el-table  v-loading="loading" height="652" border :data="tcmScheduleReportList" @selection-change="handleSelectionChange">
       <!-- <el-table-column label="id"  width="50" align="center" prop="id" /> -->
       <el-table-column fixed label="档期" align="center" prop="scheduleName" />
       <el-table-column fixed label="公司名称" width="100px" align="center" prop="companyName" />

+ 2 - 2
src/views/store/storeOrder/payRemainList.vue

@@ -159,7 +159,7 @@
 </template>
 
 <script>
-import {  listStoreOrder,exportStorePayRemainOrder } from "@/api/store/storeOrder";
+import {  listPayRemainOrder,exportStorePayRemainOrder } from "@/api/store/storeOrder";
 import productOrder from "../components/productOrder";
 import { getCompanyList } from "@/api/company/company";
 export default {
@@ -308,7 +308,7 @@ export default {
       else{
         this.queryParams.createTimeRange=null;
       }
-      listStoreOrder(this.queryParams).then(response => {
+      listPayRemainOrder(this.queryParams).then(response => {
         this.storeOrderList = response.rows;
         this.total = response.total;
         this.loading = false;