| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246 |
- <template>
- <a-card :bordered="false">
- <!-- 查询区域 -->
- <div class="table-page-search-wrapper">
- <a-form layout="inline" @keyup.enter.native="searchQuery">
- <a-row :gutter="24">
- <a-col :span="3">
- <a-form-item label="">
- <a-input placeholder="姓名" v-model="queryParam.userName"></a-input>
- </a-form-item>
- </a-col>
- <a-col :span="6">
- <a-form-item label="">
- <a-range-picker
- format="YYYY-MM-DD"
- :placeholder="['租借开始日期', '租借结束日期']"
- @change="onChange"
- v-model="datetime"
- :allowClear="false"
- />
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="8">
- <span
- style="float: left; overflow: hidden"
- class="table-page-search-submitButtons"
- >
- <a-button type="primary" @click="searchQuery" icon="search"
- >查询</a-button
- >
- <!-- <a-button
- type="primary"
- @click="searchReset"
- icon="reload"
- style="margin-left: 8px"
- >重置</a-button
- > -->
- </span>
- </a-col>
- </a-row>
- </a-form>
- </div>
- <!-- 查询区域-END -->
- <!-- 操作按钮区域 -->
- <div class="table-operator">
- <a-button @click="handleAdd" type="primary" icon="plus">新增</a-button>
- </div>
- <!-- table区域-begin -->
- <div>
- <a-table
- ref="table"
- size="middle"
- :scroll="{ x: true }"
- bordered
- rowKey="id"
- :columns="columns"
- :dataSource="dataSource"
- :pagination="ipagination"
- :loading="loading"
- :rowSelection="{
- selectedRowKeys: selectedRowKeys,
- onChange: onSelectChange,
- }"
- class="j-table-force-nowrap"
- @change="handleTableChange"
- >
- <template slot="htmlSlot" slot-scope="text">
- <div v-html="text"></div>
- </template>
- <template slot="imgSlot" slot-scope="text, record">
- <span v-if="!text" style="font-size: 12px; font-style: italic"
- >无图片</span
- >
- <img
- v-else
- :src="getImgView(text)"
- :preview="record.id"
- height="25px"
- alt=""
- style="max-width: 80px; font-size: 12px; font-style: italic"
- />
- </template>
- <template slot="fileSlot" slot-scope="text">
- <span v-if="!text" style="font-size: 12px; font-style: italic"
- >无文件</span
- >
- <a-button
- v-else
- :ghost="true"
- type="primary"
- icon="download"
- size="small"
- @click="downloadFile(text)"
- >
- 下载
- </a-button>
- </template>
- <span slot="action" slot-scope="text, record">
- <template v-if="!record.revertDate">
- <a @click="handleEdit(record)">编辑</a>
- <a-divider type="vertical"
- /></template>
- <a @click="handleDelete(record.id)">删除</a>
- <template v-if="!record.revertDate">
- <a-divider type="vertical" />
- <a @click="handleRevert(record.id)">归还</a></template
- >
- </span>
- </a-table>
- </div>
- <ces-order-lease-goods-modal
- ref="modalForm"
- @ok="modalFormOk"
- ></ces-order-lease-goods-modal>
- </a-card>
- </template>
- <script>
- import "@/assets/less/TableExpand.less";
- import { mixinDevice } from "@/utils/mixin";
- import { JeecgListMixin } from "@/mixins/JeecgListMixin";
- import CesOrderLeaseGoodsModal from "./modules/leasegoods/CesOrderLeaseGoodsModal";
- import { httpAction, postAction, getAction } from "@/api/manage";
- export default {
- name: "租借物品",
- mixins: [JeecgListMixin, mixinDevice],
- components: {
- CesOrderLeaseGoodsModal,
- },
- data() {
- return {
- description: "客单",
- // 表头
- columns: [
- {
- title: "单号",
- align: "center",
- dataIndex: "orderNo",
- },
- {
- title: "房号",
- align: "center",
- dataIndex: "roomNo",
- },
- {
- title: "姓名",
- align: "center",
- dataIndex: "userName",
- },
- {
- title: "物品",
- align: "center",
- dataIndex: "goodsId",
- },
- {
- title: "数量",
- align: "center",
- dataIndex: "num",
- },
- {
- title: "押金",
- align: "center",
- dataIndex: "deposit",
- },
- {
- title: "租借时间",
- align: "center",
- dataIndex: "createDate",
- },
- {
- title: "归还时间",
- align: "center",
- dataIndex: "revertDate",
- },
- {
- title: "操作",
- dataIndex: "action",
- align: "center",
- fixed: "right",
- width: 147,
- scopedSlots: { customRender: "action" },
- },
- ],
- url: {
- list: "/order/cesOrderLeaseGoods/list",
- delete: "/order/cesOrderLeaseGoods/delete",
- deleteBatch: "/order/cesOrderLeaseGoods/deleteBatch",
- exportXlsUrl: "/order/cesOrderLeaseGoods/exportXls",
- importExcelUrl: "order/cesOrderLeaseGoods/importExcel",
- },
- dictOptions: {},
- superFieldList: [],
- hotelList: [],
- datetime: [],
- };
- },
- created() {},
- computed: {
- importExcelUrl: function () {
- return `${window._CONFIG["domianURL"]}/${this.url.importExcelUrl}`;
- },
- },
- methods: {
- onChange(e, dateString) {
- this.queryParam.startTime = dateString[0];
- this.queryParam.endTime = dateString[1];
- },
- handleRevert(id) {
- var that = this;
- postAction("/order/cesOrderLeaseGoods/revert", { id: id }).then((res) => {
- if (res.success) {
- that.$message.success(res.message);
- that.loadData();
- } else {
- that.$message.warning(res.message);
- }
- });
- },
- initDictConfig() {},
- getSuperFieldList() {
- let fieldList = [];
- fieldList.push({ type: "string", value: "tenantId", text: "关联租户" });
- fieldList.push({ type: "string", value: "hotelId", text: "关联酒店" });
- fieldList.push({ type: "int", value: "userId", text: "用户ID" });
- fieldList.push({
- type: "int",
- value: "messageType",
- text: "留言类型 1 投诉 2建议",
- });
- fieldList.push({ type: "string", value: "images", text: "图片逗号分隔" });
- fieldList.push({ type: "string", value: "contentBody", text: "内容" });
- fieldList.push({ type: "string", value: "userName", text: "姓名" });
- fieldList.push({ type: "string", value: "userMobile", text: "手机号" });
- fieldList.push({ type: "string", value: "roomNo", text: "房号" });
- fieldList.push({ type: "date", value: "createDate", text: "创建时间" });
- this.superFieldList = fieldList;
- },
- },
- };
- </script>
- <style scoped>
- @import "~@assets/less/common.less";
- </style>
|