You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

233 lines
6.9 KiB

4 years ago
<template>
<div class="container">
<!-- 查询配置 -->
<div style="padding: 0px 20px">
<div ref="lxHeader">
4 years ago
<LxHeader icon="md-apps" text="车位预约" style="margin-bottom: 10px; border: 0px; margin-top: 15px">
4 years ago
<div slot="content"></div>
<slot>
<div>
4 years ago
<Input style="width: 200px; margin-right: 10px" v-model="searchFields.name" placeholder="关键字搜索" />
4 years ago
<Button type="primary" @click="load" style="margin-left: 10px">查询</Button>
</div>
</slot>
</LxHeader>
</div>
<div class="table-tree">
<el-table :data="tableData" :height="tableHeight" style="width: 100%">
<el-table-column type="index" width="50" align="center" label="序号"> </el-table-column>
<el-table-column :prop="column.field" :align="column.align" v-for="(column,index) in columns"
:label="column.title" :width="column.width">
<template slot-scope="scope">
<div v-if="column.type=='opt'">
4 years ago
<Button ghost size="small" @click="show(scope.row)" type="primary"
style="margin-left: 10px;">查看</Button>
4 years ago
</div>
<div v-else-if="column.type=='type'">
<div v-if="scope.row[column.field]==1"></div>
<div v-if="scope.row[column.field]==2"></div>
<div v-if="scope.row[column.field]==3"></div>
4 years ago
</div>
<div v-else>{{scope.row[column.field]}}</div>
</template>
</el-table-column>
4 years ago
</el-table>
<div class="pagination">
<el-pagination @current-change="handleCurrentChange" :current-page="paginations.page"
:page-size="paginations.page_size" background layout="prev, pager, next" :total="paginations.total">
</el-pagination>
4 years ago
</div>
4 years ago
</div>
</div>
4 years ago
<el-dialog title="预约信息查看" :visible.sync="dialogViewVisible" width="60%">
<div class="dialogConcent">
<el-scrollbar style="flex: 1">
<el-form :model="form" ref="form" label-position="right" :label-width="formLabelWidth">
<el-form-item label="预约时间" prop="time">
<div>
{{form.time}}
</div>
</el-form-item>
<el-form-item label="车牌号" prop="plate">
<div>
{{form.plate}}
</div>
</el-form-item>
<el-form-item label="联系方式" prop="mobile">
<div>
{{form.mobile}}
</div>
</el-form-item>
<el-form-item label="预约类型" prop="type">
<div v-if="form.type==1">
小车位
</div>
<div v-if="form.type==2">
大车位
4 years ago
</div>
<div v-if="form.type==3">
残疾人车位
4 years ago
</div>
</el-form-item>
<el-form-item label="车辆类型" prop="car_type">
<div v-if="form.car_type==1">
普通车
</div>
<div v-if="form.car_type==2">
新能源车
</div>
</el-form-item>
</el-form>
</el-scrollbar>
</div>
<div slot="footer" class="dialog-footer">
<el-button @click="resetForm('form')"> </el-button>
</div>
</el-dialog>
4 years ago
</div>
</template>
<script>
import LxHeader from "@/components/LxHeader/index.vue";
import {
4 years ago
listparkorder,
4 years ago
get
} from "../../api/order/parkorder.js";
4 years ago
export default {
components: {
4 years ago
LxHeader
4 years ago
},
data() {
return {
4 years ago
dialogViewVisible: false,
4 years ago
formLabelWidth: "120px",
parameters: {
4 years ago
parkType: [{
id: 1,
value: "小车位"
}, {
id: 2,
value: "大车位"
}],
carType: [{
id: 1,
value: "普通车"
}, {
id: 2,
value: "新能源车"
4 years ago
}]
4 years ago
},
tableHeight: 0,
clientHeight: 0,
//查询条件字段
searchFields: {
name: ""
},
tableData: [],
paginations: {
page: 1,
page_size: 15,
total: 0
4 years ago
},
form: {
4 years ago
time: "",
car_park_id: "",
4 years ago
plate: "",
type: "",
car_type: "",
4 years ago
mobile: "",
4 years ago
},
4 years ago
columns: [{
field: "time",
title: "预约时间",
type: "string",
},
{
field: "plate",
title: "车牌号",
type: "string",
4 years ago
},
{
field: "type",
title: "车位类型",
type: "type",
4 years ago
},
{
field: "mobile",
title: "联系方式",
type: "string",
4 years ago
},
{
field: "操作",
title: "操作",
width: 220,
type: "opt",
}
4 years ago
]
4 years ago
}
},
4 years ago
created() {
this.initLoad();
this.load();
},
mounted() {},
4 years ago
methods: {
initLoad() {
var that = this;
var clientHeight = document.documentElement.clientHeight
var lxHeader_height = 96.5; //查询 头部
var paginationHeight = 37; //分页的高度
var topHeight = 50; //页面 头部
let tableHeight = clientHeight - lxHeader_height - topHeight - paginationHeight - 20;
that.tableHeight = tableHeight;
},
load() {
4 years ago
var that = this;
var query = this.$route.query;
let carId = ""
if (query.car_park_id)
carId = query.car_park_id
listparkorder({
page: this.paginations.page,
page_size: this.paginations.page_size,
car_park_id: carId
}).then(res => {
this.tableData = res.data;
this.paginations.total = res.total
}).catch(error => {
})
4 years ago
4 years ago
},
show(obj) {
this.clientHeight = document.documentElement.clientHeight - 84 - 110;
this.dialogViewVisible = true;
this.info(obj);
},
info(obj) {
var that = this;
4 years ago
get(obj.id).then(res => {
let result = Object.assign(that.form, res);
that.form = result;
}).catch(error => {
//reject(error)
4 years ago
})
4 years ago
},
resetForm(formName) {
var that = this;
that.dialogViewVisible = false;
this.$refs[formName].resetFields();
},
handleCurrentChange(page) {
this.paginations.page = page;
this.load();
4 years ago
}
4 years ago
}
};
</script>