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.

293 lines
10 KiB

4 years ago
<template>
<div class="container">
<!-- 查询配置 -->
<div style="padding: 0px 20px">
<div ref="lxHeader">
<LxHeader icon="md-apps" text="活动预约" style="margin-bottom: 10px; border: 0px; margin-top: 15px">
<div slot="content"></div>
<slot>
<div>
<Input style="width: 200px; margin-right: 10px" v-model.number="searchFields.Name" placeholder="关键字搜索" />
<Button type="primary" @click="load" style="margin-left: 10px">查询</Button>
<Button type="primary" @click="edit()" 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'">
<Button ghost size="small" @click="edit(scope.row)" type="primary"
style="margin-left: 10px;">编辑</Button>
<Button ghost size="small" type="error" @click="del(scope.row)" style="margin-left: 10px;">删除</Button>
</div>
<div v-else-if="column.type=='type'" v-for="item in parameters.orderRule">
<div v-if="item.id==scope.row[column.field]">
{{item.value}}
</div>
</div>
<div v-else>{{scope.row[column.field]}}</div>
</template>
</el-table-column>
</el-table>
</div>
</div>
<el-dialog title="详情编辑" :visible.sync="dialogFormVisible" fullscreen width="90%">
<el-form :model="form" :rules="rules" ref="form" label-position="right" :label-width="formLabelWidth">
<el-form-item label="名称" prop="name">
<el-input v-model="form.name" placeholder="请填写名称" autocomplete="off"></el-input>
</el-form-item>
<el-row>
<el-col :span="10">
<el-form-item label="预约时间" prop="date">
<el-date-picker
style="width:100%"
v-model="form.date"
type="datetime"
placeholder="选择开始时间">
</el-date-picker>
</el-form-item>
</el-col>
<el-col :span="10" :offset="4">
<el-form-item label="类型" prop="type">
<el-select v-model="form.type" placeholder="请选择类型" style="width:100%">
<el-option v-for="item in parameters.orderRule" :key="item.value" :label="item.value" :value="item.id">
</el-option>
</el-select>
</el-form-item>
</el-col>
</el-row>
<el-form-item label="预约人数" prop="name">
<el-input v-model="form.num" placeholder="请填写预约人数" autocomplete="off"></el-input>
</el-form-item>
<div style="padding: 20px 0px;" class="form-sub-title">
<span>预约人信息
</span>
</div>
<div class="table-tree tableswidth">
<div style="display: flex;justify-content: flex-end;margin-right: 20px;margin-bottom: 10px;">
<Button type="primary" @click="addRow()" size="small" style="margin-left: 10px;" ghost>新增</Button>
</div>
<el-table :data="form.people_list" height="400" class="v-table" style="width: 100%;margin-bottom: 20px;">
<el-table-column type="index" align="center">
</el-table-column>
<el-table-column prop="name" label="姓名">
<template slot-scope="scope">
<el-input v-model="scope.row.name" placeholder="请填写姓名" autocomplete="off"></el-input>
</template>
</el-table-column>
<el-table-column prop="card" label="证件号">
<template slot-scope="scope">
<el-input v-model="scope.row.card" placeholder="请填写证件号" autocomplete="off"></el-input>
</template>
</el-table-column>
<el-table-column prop="tel" label="联系方式">
<template slot-scope="scope">
<el-input v-model="scope.row.tel" placeholder="请填写联系方式" autocomplete="off"></el-input>
</template>
</el-table-column>
<el-table-column label="操作" width="120px" align="center">
<template slot-scope="scope">
<Button type="error" @click="delRow(scope.$index)" size="small" style="margin-left: 10px;"
ghost>删除</Button>
</template>
</el-table-column>
</el-table>
</div>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button @click="resetForm('form')"> </el-button>
<el-button type="primary" @click="submitForm('form')"> </el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import LxHeader from "@/components/LxHeader/index.vue";
import {
} from "../../api/resource/visit.js";
import {
getparameteritem
} from "../../api/system/dictionary.js"
export default {
components: {
LxHeader
},
data() {
return {
dialogFormVisible: false,
formLabelWidth: "120px",
parameters: {
orderRule: []
},
form: {
name: "苏州市党性教育实训基地停车场",
date: "2022",
type: "1",
people_list: [{
name: "",
card:"",
tel:""
}]
},
columns: [{
field: "name",
title: "名称",
type: "string",
},
{
field: "type",
title: "类型",
type: "type",
},
{
field: "date",
title: "预约时间",
type: "string",
width:300
},
{
field: "操作",
title: "操作",
width: 220,
type: "opt",
}
],
rules: {
name: [{
required: true,
message: '请输入参观须知',
trigger: 'blur'
}]
},
tableHeight: 0,
//查询条件字段
searchFields: {
KeyWord: ""
},
tableData: [{
name: "苏州市党性教育实训基地停车场",
date: "2022-05-07 10:20",
type: 24,
people_list: [{
name: "",
card:"",
tel:""
}]
}]
}
},
created() {
this.initLoad();
this.load();
},
mounted() {},
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;
//加载自定义参数
getparameteritem("order-rule").then(res => {
this.parameters.orderRule = res.detail;
});
},
load() {
var that = this;
},
show(obj) {
this.clientHeight = document.documentElement.clientHeight - 84 - 110;
this.dialogViewVisible = true;
this.info(obj);
},
info(obj) {
var that = this;
},
edit(obj) {
this.form = this.$options.data().form;
this.clientHeight = document.documentElement.clientHeight - 84 - 110;
if (obj) {
var that = this;
that.info(obj);
} else {}
this.dialogFormVisible = true;
},
submitForm(formName) {
var that = this;
this.$refs[formName].validate((valid) => {
if (valid) {
if (that.form.id) {
save(that.form).then(response => {
console.log(response)
this.$Message.success('操作成功');
that.dialogFormVisible = false;
that.load();
}).catch(error => {})
} else {
store(that.form).then(response => {
console.log(response)
this.$Message.success('操作成功');
that.dialogFormVisible = false;
that.load();
}).catch(error => {})
}
} else {
this.$Message.error('数据校验失败');
return false;
}
});
},
resetForm(formName) {
var that = this;
this.$refs[formName].resetFields();
that.dialogFormVisible = false;
},
del(obj) {
var that = this;
if (obj) {
this.$Modal.confirm({
title: '确认要删除数据?',
onOk: () => {
del(obj.id).then(response => {
this.$Message.success('操作成功');
that.load();
}).catch(error => {
console.log(error)
reject(error)
})
},
onCancel: () => {
//this.$Message.info('Clicked cancel');
}
});
}
},
addRow() {
var len = this.form.people_list.length;
this.form.people_list.push({
name: "",
card:"",
tel:""
});
},
delRow(index) {
this.form.people_list.splice(index, 1);
},
}
};
</script>