|
@@ -300,7 +300,15 @@
|
|
|
@keyup.enter.native="handleQuery"
|
|
@keyup.enter.native="handleQuery"
|
|
|
/>
|
|
/>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
-
|
|
|
|
|
|
|
+ <el-form-item label="溯源码" prop="verifyCode">
|
|
|
|
|
+ <el-input
|
|
|
|
|
+ v-model="queryParams.verifyCodes"
|
|
|
|
|
+ clearable
|
|
|
|
|
+ placeholder="请输入溯源码"
|
|
|
|
|
+ size="small"
|
|
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
|
|
+ />
|
|
|
|
|
+ </el-form-item>
|
|
|
<el-form-item>
|
|
<el-form-item>
|
|
|
<el-button icon="el-icon-search" size="mini" type="cyan" @click="handleQuery">搜索</el-button>
|
|
<el-button icon="el-icon-search" size="mini" type="cyan" @click="handleQuery">搜索</el-button>
|
|
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
|
@@ -398,6 +406,7 @@
|
|
|
<el-table v-loading="loading" :data="storeOrderList" border height="500" @selection-change="handleSelectionChange">
|
|
<el-table v-loading="loading" :data="storeOrderList" border height="500" @selection-change="handleSelectionChange">
|
|
|
<el-table-column align="center" type="selection" width="55"/>
|
|
<el-table-column align="center" type="selection" width="55"/>
|
|
|
<el-table-column align="center" label="订单号" prop="orderCode" width="200px"/>
|
|
<el-table-column align="center" label="订单号" prop="orderCode" width="200px"/>
|
|
|
|
|
+ <el-table-column label="溯源码" align="center" prop="verifyCodes" width="200px" />
|
|
|
<el-table-column align="center" label="店铺名称" prop="storeName" width="150px">
|
|
<el-table-column align="center" label="店铺名称" prop="storeName" width="150px">
|
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
|
<span>{{ scope.row.storeName }} </span>
|
|
<span>{{ scope.row.storeName }} </span>
|
|
@@ -885,6 +894,7 @@ export default {
|
|
|
isDel: null,
|
|
isDel: null,
|
|
|
cost: null,
|
|
cost: null,
|
|
|
verifyCode: null,
|
|
verifyCode: null,
|
|
|
|
|
+ verifyCodes:null,
|
|
|
storeId: null,
|
|
storeId: null,
|
|
|
shippingType: null,
|
|
shippingType: null,
|
|
|
isChannel: null,
|
|
isChannel: null,
|
|
@@ -1147,6 +1157,7 @@ export default {
|
|
|
/** 重置按钮操作 */
|
|
/** 重置按钮操作 */
|
|
|
resetQuery() {
|
|
resetQuery() {
|
|
|
this.resetForm('queryForm')
|
|
this.resetForm('queryForm')
|
|
|
|
|
+ this.queryParams.verifyCodes = null;
|
|
|
this.handleQuery()
|
|
this.handleQuery()
|
|
|
},
|
|
},
|
|
|
// 多选框选中数据
|
|
// 多选框选中数据
|