Bladeren bron

【新增】 仓库认证 新家 搜索条件

howie 2 jaren geleden
bovenliggende
commit
1643bb799c
2 gewijzigde bestanden met toevoegingen van 30 en 7 verwijderingen
  1. 2 0
      src/views/finance/receivable_list.vue
  2. 28 7
      src/views/supply/pickup/check.vue

+ 2 - 0
src/views/finance/receivable_list.vue

@@ -114,6 +114,8 @@
               </template>
             </el-table-column>
             <el-table-column align="left" label="项目费用名称" prop="projectName" min-width="160" show-overflow-tooltip></el-table-column>
+            <el-table-column align="left" label="审核人" prop="examineBy" min-width="160" show-overflow-tooltip></el-table-column>
+            <el-table-column align="left" label="审核时间" prop="examineTime" min-width="160" show-overflow-tooltip></el-table-column>
 
             <el-table-column align="center" label="操作" min-width="160" show-overflow-tooltip fixed="right">
               <template slot-scope="scope">

+ 28 - 7
src/views/supply/pickup/check.vue

@@ -203,7 +203,25 @@
           </el-row>
         </el-form>
       </div>
+      <div>
+        <el-form :model="screenForm" ref="form"  label-width="120px"  size="mini">
+          <el-row :gutter="20">
+            <el-col :xs="24" :sm="8" :lg="8">
 
+          <el-form-item label="申请发货单号">
+            <el-input v-model="screenForm.invoiceId" clearable></el-input>
+          </el-form-item>
+          </el-col>
+            <el-col :xs="24" :sm="8" :lg="8">
+              <el-button size="mini" type="primary" @click="getList"
+                >查 询</el-button
+              >
+            </el-col>
+          </el-row>
+
+        </el-form>
+
+      </div>
       <div class="main-title">
         <div class="title">提货单</div>
         <div class="fr">
@@ -455,19 +473,19 @@
           </el-table>
         </div>
       </div>
-      <!-- <div class="pagination clearfix">
+      <div class="pagination clearfix">
         <div class="fr">
           <el-pagination
             @size-change="handleSizeChange"
             @current-change="handleCurrentChange"
             :current-page="currentPage"
-            :page-sizes="[10, 20, 30, 50]"
+            :page-sizes="[200, 300, 500]"
             :page-size="10"
             layout="total, sizes, prev, pager, next, jumper"
             :total="listTotal">
           </el-pagination>
         </div>
-      </div> -->
+      </div>
 
       <div class="page-footer">
         <div class="footer">
@@ -579,7 +597,8 @@ export default {
         warehouse: "",
         customerId: "",
         logisticsId:"",
-        storeId:""
+        storeId:"",
+        invoiceId:''
       },
       statusList: [
         { label: "未打单", value: 0 },
@@ -643,6 +662,7 @@ export default {
       this.screenForm.customerId = ''
       this.screenForm.logisticsId =''
       this.screenForm.warehouse = ''
+      this.screenForm.invoiceId = ''
       this.screenForm.status = '0'
       this.dataList = [];
         this.listTotal = 0;
@@ -776,15 +796,16 @@ export default {
       this.listLoading = true;
 
       let params = {
-        pageNum: 1,
-        pageSize: -1,
+        pageNum: this.currentPage,
+        pageSize: 200,
         // takerId: this.screenForm.manId,
         status: this.screenForm.status,
         takerPhone: this.screenForm.phone,
         // customerName:this.screenForm.customerName,
         correspondId: this.screenForm.warehouse,
         customerId: this.screenForm.customerId,
-        logisticsId:this.screenForm.logisticsId
+        logisticsId:this.screenForm.logisticsId,
+        invoiceId:this.screenForm.invoiceId
       };
       getPickupList(params).then((res) => {
         this.dataList = res.data.records;