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.

270 lines
8.9 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>
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>
4 years ago
<div v-else-if="column.type=='type'" v-for="item in parameters.visitType">
4 years ago
<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>
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>
</div>
4 years ago
</div>
</div>
4 years ago
<el-dialog title="预约信息查看" :visible.sync="dialogViewVisible" fullscreen>
<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="type">
<el-tag v-if="form.type==1" type="" effect="dark" >
团体
</el-tag>
<el-tag v-if="form.type==2" type="" effect="dark" >
个人
</el-tag>
</el-form-item>
<el-form-item label="联系方式" prop="mobile">
<div>
{{form.mobile}}
</div>
</el-form-item>
<div v-if="form.type==1">
<el-form-item label="单位名称" prop="unit">
<div>
{{form.unit}}
</div>
</el-form-item>
<el-form-item label="领队人" prop="leader">
<div>
{{form.leader}}
</div>
</el-form-item>
<el-form-item label="证件类型" prop="card_type">
<div v-if="form.card_type==1">
身份证
</div>
<div v-if="form.card_type==2">
护照
</div>
</el-form-item>
<el-form-item label="证件号" prop="idcard">
<div>
{{form.idcard}}
</div>
</el-form-item>
<el-form-item label="总人数" prop="total">
<div>
{{form.total}}
</div>
</el-form-item>
<div style="padding: 20px 0px;" class="form-sub-title">
<span>详细人员资料
</span>
</div>
<div v-if="form.details_list.length>0" class="table-tree tableswidth">
<el-table :data="form.details_list" class="v-table" style="width: 100%;margin-bottom: 20px;">
<el-table-column type="index" label="序号" align="center">
</el-table-column>
<el-table-column width="200px" prop="name" label="姓名">
<template slot-scope="scope">
{{scope.row.name}}
</template>
</el-table-column>
<el-table-column prop="mobile" label="联系方式">
<template slot-scope="scope">
{{scope.row.mobile}}
</template>
</el-table-column>
<el-table-column prop="card_type" label="证件类型">
<template slot-scope="scope">
<div v-if="scope.row.card_type==1">
身份证
</div>
<div v-if="scope.row.card_type==2">
护照
</div>
</template>
</el-table-column>
<el-table-column prop="idcard" label="证件号">
<template slot-scope="scope">
{{scope.row.idcard}}
</template>
</el-table-column>
</el-table>
</div>
</div>
</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
listactiveorder,
get
} from "../../api/order/activeorder.js";
4 years ago
export default {
components: {
LxHeader
},
data() {
return {
4 years ago
dialogViewVisible: false,
4 years ago
formLabelWidth: "120px",
parameters: {
4 years ago
visitType:[{
id:1,
value:"团体"
},{
id:2,
value:"个人"
}],
cardType:[{
id:1,
value:"身份证"
},{
id:2,
value:"护照"
}]
},
tableHeight: 0,
clientHeight:0,
//查询条件字段
searchFields: {
name: ""
},
tableData: [],
paginations: {
page: 1,
page_size: 15,
total: 0
4 years ago
},
form: {
4 years ago
card_type: "",
rule_id: "",
unit: "",
card_type:"",
leader:"",
idcard: "",
total: "",
mobile: "",
type:"",
details_list: []
4 years ago
},
4 years ago
columns: [
4 years ago
{
4 years ago
field: "type",
title: "类型",
type: "type",
4 years ago
},
{
field: "操作",
title: "操作",
width: 220,
type: "opt",
}
4 years ago
]
4 years ago
}
},
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;
},
load() {
4 years ago
var that = this;
var query=this.$route.query;
let activityId = query.activity_id;
if(activityId){
listactiveorder({
page: this.paginations.page,
page_size: this.paginations.page_size,
activity_id: activityId
}).then(res => {
this.tableData = res.data;
this.paginations.total = res.total
}).catch(error => {
})
}else{
this.$Message.error('请在活动管理页选择要查询的活动!');
setTimeout(function(){
window.location.href='/#/active/activity'
},2000)
}
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;
that.for.details_list = result.details;
}).catch(error => {
//reject(error)
})
},
resetForm(formName) {
var that = this;
that.dialogViewVisible = false;
this.$refs[formName].resetFields();
},
handleCurrentChange(page) {
this.paginations.page = page;
this.load();
}
4 years ago
}
};
</script>