|
@@ -13,10 +13,28 @@
|
|
|
@keyup.enter.native="handleQuery"
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="归属门店:" prop="merchantName">
|
|
|
+ <el-form-item label="酒店名称:" prop="merchantName">
|
|
|
<el-input
|
|
|
v-model="queryParams.merchantName"
|
|
|
- placeholder="请输入归属门店"
|
|
|
+ placeholder="请输入酒店名称"
|
|
|
+ clearable
|
|
|
+ style="width: 240px"
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="房型名称:" prop="merchantName">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.merchantName"
|
|
|
+ placeholder="请输入房型名称"
|
|
|
+ clearable
|
|
|
+ style="width: 240px"
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="联系人:" prop="merchantName">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.merchantName"
|
|
|
+ placeholder="请输入联系人"
|
|
|
clearable
|
|
|
style="width: 240px"
|
|
|
@keyup.enter.native="handleQuery"
|
|
@@ -114,26 +132,29 @@
|
|
|
<el-table v-loading="loading" :data="tableList" @selection-change="handleSelectionChange">
|
|
|
<el-table-column type="index" label="序号" align="center" />
|
|
|
<el-table-column label="订单编号" align="center" key="id" prop="id" v-if="columns[0].visible" :show-overflow-tooltip="true" />
|
|
|
- <el-table-column label="归属门店" align="center" key="merchantName" prop="merchantName" v-if="columns[1].visible" :show-overflow-tooltip="true" />
|
|
|
- <el-table-column label="实付金额(元)" align="center" key="realPrice" prop="realPrice" v-if="columns[2].visible" :show-overflow-tooltip="true" />
|
|
|
- <el-table-column label="支付状态" align="center" key="payStatus" prop="payStatus" v-if="columns[3].visible" :show-overflow-tooltip="true">
|
|
|
+ <el-table-column label="酒店名称" align="center" key="merchantName" prop="merchantName" v-if="columns[1].visible" :show-overflow-tooltip="true" />
|
|
|
+ <el-table-column label="房型名称" align="center" key="merchantName" prop="merchantName" v-if="columns[2].visible" :show-overflow-tooltip="true" />
|
|
|
+ <el-table-column label="预定房间数(间)" align="center" key="merchantName" prop="merchantName" v-if="columns[3].visible" :show-overflow-tooltip="true" />
|
|
|
+ <el-table-column label="实付金额(元)" align="center" key="realPrice" prop="realPrice" v-if="columns[4].visible" :show-overflow-tooltip="true" />
|
|
|
+ <el-table-column label="支付状态" align="center" key="payStatus" prop="payStatus" v-if="columns[5].visible" :show-overflow-tooltip="true">
|
|
|
<template slot-scope="scope">
|
|
|
<dict-tag :options="dict.type.tourism_ticketOrders_payStatus" :value="scope.row.payStatus"/>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="支付方式" align="center" key="payWay" prop="payWay" v-if="columns[4].visible" :show-overflow-tooltip="true">
|
|
|
+ <el-table-column label="支付方式" align="center" key="payWay" prop="payWay" v-if="columns[6].visible" :show-overflow-tooltip="true">
|
|
|
<template slot-scope="scope">
|
|
|
<dict-tag :options="dict.type.tourism_ticketOrders_payWay" :value="scope.row.payWay"/>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="联系电话" align="center" key="memberMobile" prop="memberMobile" v-if="columns[5].visible"></el-table-column>
|
|
|
- <el-table-column label="下单时间" align="center" key="createTime" prop="createTime" v-if="columns[6].visible"></el-table-column>
|
|
|
- <el-table-column label="订单来源" align="center" key="source" prop="source" v-if="columns[7].visible">
|
|
|
+ <el-table-column label="联系人" align="center" key="memberMobile" prop="memberMobile" v-if="columns[7].visible"></el-table-column>
|
|
|
+ <el-table-column label="联系电话" align="center" key="memberMobile" prop="memberMobile" v-if="columns[8].visible"></el-table-column>
|
|
|
+ <el-table-column label="下单时间" align="center" key="createTime" prop="createTime" v-if="columns[9].visible"></el-table-column>
|
|
|
+ <el-table-column label="订单来源" align="center" key="source" prop="source" v-if="columns[10].visible">
|
|
|
<template slot-scope="scope">
|
|
|
<dict-tag :options="dict.type.tourism_ticketOrders_source" :value="scope.row.source"/>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="订单状态" align="center" key="orderStatus" prop="orderStatus" v-if="columns[8].visible">
|
|
|
+ <el-table-column label="订单状态" align="center" key="orderStatus" prop="orderStatus" v-if="columns[11].visible">
|
|
|
<template slot-scope="scope">
|
|
|
<dict-tag :options="dict.type.tourism_ticketOrders_status" :value="scope.row.orderStatus"/>
|
|
|
</template>
|
|
@@ -243,10 +264,13 @@
|
|
|
// 控制列表是否显示
|
|
|
columns: [
|
|
|
{ key: 0, label: `订单编号`, visible: true },
|
|
|
- { key: 2, label: `归属门店`, visible: true },
|
|
|
+ { key: 1, label: `酒店名称`, visible: true },
|
|
|
+ { key: 2.1, label: `房型名称`, visible: true },
|
|
|
+ { key: 2.2, label: `预定房间数`, visible: true },
|
|
|
{ key: 3.5, label: `实付金额(元)`, visible: true },
|
|
|
{ key: 3, label: `支付状态`, visible: true },
|
|
|
{ key: 4, label: `支付方式`, visible: true },
|
|
|
+ { key: 5.5, label: `联系人`, visible: true },
|
|
|
{ key: 5, label: `联系电话`, visible: true },
|
|
|
{ key: 6, label: `下单时间`, visible: true },
|
|
|
{ key: 7, label: `订单来源`, visible: true },
|