刘翔宇-旅管家 3 years ago
parent 822b943581
commit 4c3a0a7dd0

@ -13,7 +13,7 @@
style="margin-left: 10px;"> style="margin-left: 10px;">
</el-date-picker> </el-date-picker>
<el-select style="margin-left: 10px;" v-model="searchFields.type" placeholder="请选择类型"> <el-select style="margin-left: 10px;margin-right: 10px;" v-model="searchFields.type" placeholder="请选择类型">
<el-option value=""> <el-option value="">
</el-option> </el-option>
<el-option v-for="item in parameters.parkType" :key="item.id" :label="item.value" :value="item.id"> <el-option v-for="item in parameters.parkType" :key="item.id" :label="item.value" :value="item.id">
@ -35,9 +35,9 @@
</div> </div>
<div class="table-tree"> <div class="table-tree">
<el-table :data="tableData" class="v-table" :height="tableHeight" style="width: 100%"> <el-table :data="tableData" class="v-table" :height="tableHeight" style="width: 100%">
<el-table-column type="index" width="50" align="center" label="序号"> </el-table-column> <el-table-column type="index" width="50" align="center" fixed="left" label="序号"> </el-table-column>
<el-table-column :prop="column.field" :align="column.align" v-for="(column,index) in columns" <el-table-column :prop="column.field" :align="column.align" v-for="(column,index) in columns"
:label="column.title" :width="column.width"> :label="column.title" :width="column.width" :fixed="column.fixed">
<template slot-scope="scope"> <template slot-scope="scope">
<div v-if="column.type=='opt'"> <div v-if="column.type=='opt'">
<Button ghost size="small" @click="show(scope.row)" type="primary" <Button ghost size="small" @click="show(scope.row)" type="primary"
@ -192,22 +192,26 @@
field: "time", field: "time",
title: "预约时间", title: "预约时间",
type: "string", type: "string",
width: 220,
}, },
{ {
field: "plate", field: "plate",
title: "车牌号", title: "车牌号",
type: "string", type: "string",
width: 120,
}, },
{ {
field: "type", field: "type",
title: "车位类型", title: "车位类型",
type: "type", type: "type",
width: 120,
}, },
{ {
field: "mobile", field: "mobile",
title: "联系方式", title: "联系方式",
type: "string", type: "string",
width: 120,
}, },
{ {
field: "orderType", field: "orderType",
@ -223,11 +227,13 @@
field: "in_date", field: "in_date",
title: "入场时间", title: "入场时间",
type: "string", type: "string",
width: 220,
}, },
{ {
field: "out_date", field: "out_date",
title: "出场时间", title: "出场时间",
type: "string", type: "string",
width: 220,
}, },
{ {
field: "teamunit", field: "teamunit",

@ -15,7 +15,7 @@
</LxHeader> </LxHeader>
</div> </div>
<div class="table-tree"> <div class="table-tree">
<el-table :data="tableData" :height="tableHeight" style="width: 100%"> <el-table :data="tableData" class="v-table" :height="tableHeight" style="width: 100%">
<el-table-column type="index" width="50" align="center" label="序号"> </el-table-column> <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" <el-table-column :prop="column.field" :align="column.align" v-for="(column,index) in columns"
:label="column.title" :width="column.width"> :label="column.title" :width="column.width">
@ -105,8 +105,13 @@
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="8"> <el-col :span="8">
<el-form-item label="大车位数" prop="big_park_total"> <el-form-item label="大车位数(09:00至12:00)" prop="big_park_total">
<el-input v-model="form.big_park_total" placeholder="请填写大车位数" autocomplete="off"></el-input> <el-input v-model="form.big_park_total" placeholder="请填写大车位数(09:00至12:00)" autocomplete="off"></el-input>
</el-form-item>
</el-col>
<el-col :span="8">
<el-form-item label="大车位数(13:00至16:00)" prop="big_park_total">
<el-input v-model="form.big_park_total2" placeholder="请填写大车位数(13:00至16:00)" autocomplete="off"></el-input>
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="8"> <el-col :span="8">
@ -171,6 +176,7 @@
charge_total: "", charge_total: "",
small_park_total: "", small_park_total: "",
big_park_total: "", big_park_total: "",
big_park_total2: "",
special_park_total:"", special_park_total:"",
longitude: "", longitude: "",
latitude: "", latitude: "",
@ -208,7 +214,14 @@
}, },
{ {
field: "big_park_total", field: "big_park_total",
title: "大车位数", title: "大车位数上午",
type: "string",
align: "center",
width: 120
},
{
field: "big_park_total2",
title: "大车位数下午",
type: "string", type: "string",
align: "center", align: "center",
width: 120 width: 120

Loading…
Cancel
Save