| | |
| | | <el-table :data="zhuHuInfoArr" style="width: 100%" |
| | | :header-cell-style="{ 'text-align': 'center', 'background-color': '#203c60', 'borderColor': '#324e75' }" |
| | | :cell-style="{ 'text-align': 'center', 'borderColor': '#324e75', 'cursor': 'default' }"> |
| | | <el-table-column :show-overflow-tooltip="true" prop="xm" label="姓名"></el-table-column> |
| | | <el-table-column :show-overflow-tooltip="true" prop="xbdm_dic" label="性别"></el-table-column> |
| | | <el-table-column :show-overflow-tooltip="true" prop="xm" label="姓名" width="100"></el-table-column> |
| | | <el-table-column :show-overflow-tooltip="true" prop="xbdm_dic" label="性别" width="60"></el-table-column> |
| | | <el-table-column :show-overflow-tooltip="true" prop="zjhm" label="身份证号"></el-table-column> |
| | | <el-table-column :show-overflow-tooltip="true" prop="lxdh" label="联系电话" width="130"></el-table-column> |
| | | <el-table-column label="旅客地址" align="center"> |
| | | <el-table-column :show-overflow-tooltip="true" label="旅客地址" align="center" width="240"> |
| | | <template slot-scope="scope"> |
| | | <div>{{ scope.row.dzmc == null ? '' : scope.row.dzmc }}</div> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column :show-overflow-tooltip="true" prop="rz_fjh" label="入住房间号"></el-table-column> |
| | | <el-table-column :show-overflow-tooltip="true" prop="rz_rqsj" label="入住时间"></el-table-column> |
| | | <el-table-column label="住宿天数" align="center"> |
| | | <el-table-column :show-overflow-tooltip="true" label="住宿天数" align="center"> |
| | | <template slot-scope="scope"> |
| | | <div>{{ scope.row.zhus_ts01 == null ? '' : scope.row.zhus_ts01 }}</div> |
| | | </template> |
| | |
| | | zhuHuInfoClick (row) { |
| | | this.zhuHuInfoPopupShow = true |
| | | this.zhuHuInfoPopupTitle = row.hotelName + '入住信息' |
| | | this.zhuHuInfoPage.currentPage = 1 |
| | | this.chooseZhuHuInfoCode = row.hotelCode |
| | | getCheckInInfo({ lddm: this.chooseZhuHuInfoCode }).then(res => { |
| | | this.zhuHuInfoArr = res.data.data.records |
| | | this.zhuHuInfoPage.total = res.data.data.total |
| | | }) |
| | | }, |
| | | |
| | | // 实有楼栋---酒店--住户信息弹窗搜索 |
| | | searchZhuHuInfoDetail () { |
| | | this.zhuHuInfoPage.currentPage = 1 |
| | | getCheckInInfo({ lddm: this.chooseZhuHuInfoCode, xm: this.zhuHuInfoName, zjhm: this.zhuHuInfoID, startTime: this.zhuHuInfoDate[0], endTime: this.zhuHuInfoDate[1] }).then(res => { |
| | | this.zhuHuInfoArr = res.data.data.records |
| | | this.zhuHuInfoPage.total = res.data.data.total |
| | | }) |
| | | }, |
| | | |
| | |
| | | this.zhuHuInfoName = '' |
| | | this.zhuHuInfoID = '' |
| | | this.zhuHuInfoDate = '' |
| | | this.zhuHuInfoPage.currentPage = 1 |
| | | getCheckInInfo({ lddm: this.chooseZhuHuInfoCode, xm: this.zhuHuInfoName, zjhm: this.zhuHuInfoID, startTime: this.zhuHuInfoDate[0], endTime: this.zhuHuInfoDate[1] }).then(res => { |
| | | this.zhuHuInfoArr = res.data.data.records |
| | | this.zhuHuInfoPage.total = res.data.data.total |
| | | }) |
| | | }, |
| | | |
| | |
| | | this.zhuHuInfoDate = '' |
| | | }, |
| | | |
| | | // 实有楼栋---酒店--住户信息弹窗分页事件 |
| | | handleZhuHuInfoPageChange (currentPage) { |
| | | this.zhuHuInfoPage.currentPage = currentPage |
| | | getCheckInInfo({ current: currentPage, lddm: this.chooseZhuHuInfoCode, xm: this.zhuHuInfoName, zjhm: this.zhuHuInfoID, startTime: this.zhuHuInfoDate[0], endTime: this.zhuHuInfoDate[1] }).then(res => { |
| | | this.zhuHuInfoArr = res.data.data.records |
| | | this.zhuHuInfoPage.total = res.data.data.total |
| | | }) |
| | | }, |
| | | |
| | | // 实有楼栋分页事件 |
| | | handleSyldPageChange (current) { |