|
@@ -4,6 +4,13 @@
|
|
|
<div class="search-bar">
|
|
<div class="search-bar">
|
|
|
<el-form :inline="true" class="search-form" ref="searchForm" :model="searchForm" label-width="auto" size="small">
|
|
<el-form :inline="true" class="search-form" ref="searchForm" :model="searchForm" label-width="auto" size="small">
|
|
|
<div class="input-row">
|
|
<div class="input-row">
|
|
|
|
|
+ <el-form-column label="打印渠道" class="search-form-item">
|
|
|
|
|
+ <el-select v-model="searchForm.status" clearable>
|
|
|
|
|
+ <el-option key="KuaiYin" label="快印" value="KuaiYin"></el-option>
|
|
|
|
|
+ <el-option key="GSART" label="广森" value="GSART"></el-option>
|
|
|
|
|
+ <el-option key="WoNiu" label="蜗牛" value="WoNiu"></el-option>
|
|
|
|
|
+ </el-select>
|
|
|
|
|
+ </el-form-column>
|
|
|
<el-form-item label="订单号" class="search-form-item">
|
|
<el-form-item label="订单号" class="search-form-item">
|
|
|
<el-input type="text" clearable v-model="searchForm.orderNumber" placeholder="订单号"></el-input>
|
|
<el-input type="text" clearable v-model="searchForm.orderNumber" placeholder="订单号"></el-input>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
@@ -48,6 +55,12 @@
|
|
|
row-class-name="table-row"
|
|
row-class-name="table-row"
|
|
|
style="width: 100%">
|
|
style="width: 100%">
|
|
|
<!-- 订单号 -->
|
|
<!-- 订单号 -->
|
|
|
|
|
+ <el-table-column label="打印渠道" prop="printChannel" align="center">
|
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
|
+ <span v-if="scope.row.printChannel === 'KuaiYin'">快印</span>
|
|
|
|
|
+ <span v-if="scope.row.printChannel === 'GSART'">广森</span>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="订单号" prop="orderNumber" align="center">
|
|
<el-table-column label="订单号" prop="orderNumber" align="center">
|
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
|
<span>{{ scope.row.orderNumber}}</span>
|
|
<span>{{ scope.row.orderNumber}}</span>
|
|
@@ -189,7 +202,8 @@ export default {
|
|
|
deliveryNo: this.searchForm.deliveryNo,
|
|
deliveryNo: this.searchForm.deliveryNo,
|
|
|
receiverInfo: this.searchForm.receiverInfo,
|
|
receiverInfo: this.searchForm.receiverInfo,
|
|
|
status: this.searchForm.status,
|
|
status: this.searchForm.status,
|
|
|
- isPayed: this.searchForm.isPayed
|
|
|
|
|
|
|
+ isPayed: this.searchForm.isPayed,
|
|
|
|
|
+ printChannel: this.searchForm.printChannel
|
|
|
},
|
|
},
|
|
|
this.searchForm
|
|
this.searchForm
|
|
|
)
|
|
)
|