|
|
@@ -7,24 +7,8 @@
|
|
|
<a-col :span="3">
|
|
|
<a-form-item label="">
|
|
|
<j-input
|
|
|
- placeholder="入住单号"
|
|
|
- v-model="queryParam.tableNo"
|
|
|
- ></j-input>
|
|
|
- </a-form-item>
|
|
|
- </a-col>
|
|
|
- <a-col :span="3">
|
|
|
- <a-form-item label="">
|
|
|
- <j-input
|
|
|
- placeholder="房间号"
|
|
|
- v-model="queryParam.tableNo"
|
|
|
- ></j-input>
|
|
|
- </a-form-item>
|
|
|
- </a-col>
|
|
|
- <a-col :span="3">
|
|
|
- <a-form-item label="">
|
|
|
- <j-input
|
|
|
- placeholder="姓名"
|
|
|
- v-model="queryParam.tableNo"
|
|
|
+ placeholder="入住单号/房间号/姓名"
|
|
|
+ v-model="queryParam.keyw"
|
|
|
></j-input>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
@@ -127,28 +111,31 @@ export default {
|
|
|
{
|
|
|
title: "房间",
|
|
|
align: "center",
|
|
|
- dataIndex: "tableNo",
|
|
|
+ dataIndex: "roomName",
|
|
|
},
|
|
|
{
|
|
|
title: "名字",
|
|
|
align: "center",
|
|
|
- dataIndex: "id",
|
|
|
+ dataIndex: "customerName",
|
|
|
},
|
|
|
{
|
|
|
title: "单号",
|
|
|
align: "center",
|
|
|
- dataIndex: "code",
|
|
|
+ dataIndex: "livingOrderNo",
|
|
|
},
|
|
|
{
|
|
|
title: "状态",
|
|
|
align: "center",
|
|
|
- dataIndex: "couponMoney",
|
|
|
- },
|
|
|
- {
|
|
|
- title: "金额",
|
|
|
- align: "center",
|
|
|
- dataIndex: "payMoney",
|
|
|
+ dataIndex: "customerId",
|
|
|
+ customRender(text) {
|
|
|
+ return "正常入住";
|
|
|
+ },
|
|
|
},
|
|
|
+ // {
|
|
|
+ // title: "金额",
|
|
|
+ // align: "center",
|
|
|
+ // dataIndex: "payMoney",
|
|
|
+ // },
|
|
|
{
|
|
|
title: "操作",
|
|
|
dataIndex: "action",
|
|
|
@@ -159,7 +146,7 @@ export default {
|
|
|
},
|
|
|
],
|
|
|
url: {
|
|
|
- list: "/pos/posOrderGoods/list?status=0",
|
|
|
+ list: "/business/busRoomBookingOrders/living-orders?status=-1",
|
|
|
delete: "/business/busMemberCard/delete",
|
|
|
deleteBatch: "/business/busMemberCard/deleteBatch",
|
|
|
exportXlsUrl: "/business/busMemberCard/exportXls",
|
|
|
@@ -179,7 +166,7 @@ export default {
|
|
|
},
|
|
|
methods: {
|
|
|
handleSelect(row) {
|
|
|
- this.$emit("ok",row);
|
|
|
+ this.$emit("ok", row);
|
|
|
},
|
|
|
},
|
|
|
};
|