|
@@ -188,6 +188,15 @@
|
|
|
@keyup.enter.native="handleQuery"
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
+ <el-form-item label="OTA订单号" label-width="100px">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.otaOrderId"
|
|
|
+ placeholder="请输入OTA订单号"
|
|
|
+ clearable
|
|
|
+ style="width: 240px;"
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
<el-form-item>
|
|
|
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
|
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
|
@@ -295,6 +304,11 @@
|
|
|
<span>{{ scope.row.remark }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column label="OTA订单号" align="center" prop="otaOrderId">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span>{{ scope.row.otaOrderId||'-' }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="操作" align="center" width="100" class-name="small-padding fixed-width">
|
|
|
<template slot-scope="scope">
|
|
|
<el-button
|
|
@@ -509,6 +523,7 @@ export default {
|
|
|
this.dateRange = [];
|
|
|
this.$set(this.queryParams, 'paymentId', '');
|
|
|
this.$set(this.queryParams, 'orderId', '');
|
|
|
+ this.$set(this.queryParams, 'otaOrderId', '');
|
|
|
this.$set(this.queryParams, 'status', '');
|
|
|
this.$set(this.queryParams, 'memberMobile', '');
|
|
|
this.$set(this.queryParams, 'source', '');
|