访客项目展示人员详情
This commit is contained in:
parent
ad026ef8d5
commit
7ee76ff1ea
|
@ -225,7 +225,7 @@ export default {
|
|||
};
|
||||
},
|
||||
mounted() {
|
||||
this.getBltList();
|
||||
// this.getBltList();
|
||||
},
|
||||
methods: {
|
||||
//人员证书添加
|
||||
|
@ -358,7 +358,7 @@ export default {
|
|||
|
||||
getBltList() {
|
||||
let that = this;
|
||||
that.$API.third.tdevice.list.req({ type: 30, page: 0 }).then((res) => {
|
||||
that.$API.third.tdevice.list.req({ type: 30, page: 0, state: 'unused'}).then((res) => {
|
||||
that.tdevice = res;
|
||||
that.bltList = res.filter((item) => {
|
||||
return item.employee_ === null;
|
||||
|
|
|
@ -1,11 +1,6 @@
|
|||
<template>
|
||||
<el-drawer
|
||||
title="查看"
|
||||
v-model="visible"
|
||||
:size="1000"
|
||||
destroy-on-close
|
||||
@closed="$emit('closed')"
|
||||
>
|
||||
<el-drawer title="查看" v-model="visible" :size="1000" destroy-on-close @closed="$emit('closed')"
|
||||
:close-on-click-modal="false">
|
||||
<el-container v-loading="loading">
|
||||
<el-main>
|
||||
<el-card shadow="hover">
|
||||
|
@ -21,21 +16,9 @@
|
|||
</el-descriptions>
|
||||
</el-card>
|
||||
<el-card style="margin-top:8px" shadow="hover">
|
||||
<scTable
|
||||
ref="fileTable"
|
||||
:data="rpjFileList"
|
||||
row-key="id"
|
||||
hidePagination
|
||||
stripe
|
||||
hideDo
|
||||
style="height:200px"
|
||||
>
|
||||
<el-table-column
|
||||
label="#"
|
||||
fixed="left"
|
||||
type="index"
|
||||
width="50"
|
||||
></el-table-column>
|
||||
<scTable ref="fileTable" :data="rpjFileList" row-key="id" hidePagination stripe hideDo
|
||||
style="height:200px">
|
||||
<el-table-column label="#" fixed="left" type="index" width="50"></el-table-column>
|
||||
<el-table-column label="资质内容" prop="name">
|
||||
<template #default="scope">
|
||||
{{ scope.row.file_cate_.name }}
|
||||
|
@ -44,22 +27,15 @@
|
|||
<el-table-column label="文件资料" prop="name">
|
||||
<template #default="scope">
|
||||
<div v-for="item in scope.row.files_" :key="item.id">
|
||||
<el-link style="font-size:12px" type="primary" :href="item.path" target="_blank">{{item.name}}</el-link>
|
||||
<el-link style="font-size:12px" type="primary" :href="item.path" target="_blank">
|
||||
{{ item.name }}</el-link>
|
||||
</div>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</scTable>
|
||||
</el-card>
|
||||
<el-card style="margin-top:8px" shadow="hover">
|
||||
<scTable
|
||||
ref="table"
|
||||
:data="memeberList"
|
||||
row-key="id"
|
||||
height='auto'
|
||||
stripe
|
||||
hideDo
|
||||
hidePagination
|
||||
>
|
||||
<scTable ref="table" :data="memeberList" row-key="id" height='auto' stripe hideDo hidePagination>
|
||||
<el-table-column label="#" fixed="left" type="index" width="50"></el-table-column>
|
||||
<el-table-column label="姓名" prop="remployee_.name">
|
||||
<template #default="scope">
|
||||
|
@ -69,12 +45,8 @@
|
|||
<el-table-column label="工作职责" prop="duty"></el-table-column>
|
||||
<el-table-column label="证书" prop="rcertificates">
|
||||
<template #default="scope">
|
||||
<el-tag
|
||||
v-for="item in scope.row.rcertificates_"
|
||||
:key="item.number"
|
||||
:label="item.name"
|
||||
:value="item.number"
|
||||
>{{ item.name }}
|
||||
<el-tag v-for="item in scope.row.rcertificates_" :key="item.number" :label="item.name"
|
||||
:value="item.number">{{ item.name }}
|
||||
</el-tag>
|
||||
</template>
|
||||
</el-table-column>
|
||||
|
@ -86,22 +58,16 @@
|
|||
</el-table-column>
|
||||
<el-table-column label="操作" width="60">
|
||||
<template #default="scope">
|
||||
<el-button link
|
||||
v-if="scope.row.blt_==null"
|
||||
type="primary"
|
||||
size="small"
|
||||
@click="bindCard(scope.row,10)"
|
||||
v-auth="'blt_bind.create'"
|
||||
>绑卡
|
||||
<el-button link v-if="scope.row.blt_ == null" type="primary" size="small"
|
||||
@click="bindCard(scope.row, 10)" v-auth="'blt_bind.create'">绑卡
|
||||
</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</scTable>
|
||||
</el-card>
|
||||
</el-main>
|
||||
<ScBind v-model="showBindBlt" :bindBtl="bindBtl"
|
||||
:bindType="bindType" :bindName="bindName" :bindEmployee="bindEmployee"
|
||||
@success="showBindBltSuccess" @closed="showBindBltClose"></ScBind>
|
||||
<ScBind v-model="showBindBlt" :bindBtl="bindBtl" :bindType="bindType" :bindName="bindName"
|
||||
:bindEmployee="bindEmployee" @success="showBindBltSuccess" @closed="showBindBltClose"></ScBind>
|
||||
</el-container>
|
||||
</el-drawer>
|
||||
</template>
|
||||
|
|
|
@ -1,11 +1,6 @@
|
|||
<template>
|
||||
<el-drawer
|
||||
:title="titleMap[mode]"
|
||||
v-model="visible"
|
||||
:size="1000"
|
||||
destroy-on-close
|
||||
@closed="$emit('closed')"
|
||||
>
|
||||
<el-drawer :title="titleMap[mode]" v-model="visible" :size="1000" destroy-on-close @closed="$emit('closed')"
|
||||
:close-on-click-modal="false">
|
||||
<el-container v-loading="loading">
|
||||
<el-main>
|
||||
<el-card header="基本信息" shadow="hover">
|
||||
|
@ -20,12 +15,7 @@
|
|||
<el-tag size="small">{{ form.count_people }}人</el-tag>
|
||||
</el-descriptions-item>
|
||||
<el-descriptions-item label="来访人员:">
|
||||
<el-tag
|
||||
size="small"
|
||||
v-for="item in form.visitors_"
|
||||
:key="item.id"
|
||||
>{{ item.visitor_.name }}</el-tag
|
||||
>
|
||||
<el-tag size="small" v-for="item in form.visitors_" :key="item.id">{{ item.visitor_.name }}</el-tag>
|
||||
</el-descriptions-item>
|
||||
<el-descriptions-item label="状态:">{{
|
||||
state_[form.state]
|
||||
|
@ -49,63 +39,56 @@
|
|||
</el-descriptions>
|
||||
</el-card>
|
||||
<el-card style="margin-top: 8px" shadow="hover" header="访客信息">
|
||||
<scTable
|
||||
ref="table"
|
||||
:data="peoplelist"
|
||||
row-key="id"
|
||||
height="auto"
|
||||
stripe
|
||||
hideDo
|
||||
hidePagination
|
||||
>
|
||||
<el-table-column
|
||||
label="#"
|
||||
fixed="left"
|
||||
type="index"
|
||||
width="50"
|
||||
></el-table-column>
|
||||
|
||||
<el-table-column
|
||||
label="访客姓名"
|
||||
prop="visitor_.name"
|
||||
></el-table-column>
|
||||
<el-table-column
|
||||
label="访客手机号"
|
||||
prop="visitor_.phone"
|
||||
></el-table-column>
|
||||
<el-table-column
|
||||
label="访客身份证号"
|
||||
prop="visitor_.id_number"
|
||||
></el-table-column>
|
||||
<scTable ref="table" :data="peoplelist" row-key="id" height="auto" stripe hideDo hidePagination>
|
||||
<el-table-column label="#" type="expand">
|
||||
<template #default="scope">
|
||||
<el-descriptions :column="3" style="margin-left:8px">
|
||||
<el-descriptions-item label="返乡时间:">{{ scope.row.return_date }}</el-descriptions-item>
|
||||
<el-descriptions-item label="来源地:">{{ scope.row.come_place }}</el-descriptions-item>
|
||||
<el-descriptions-item label="行程轨迹:">{{ scope.row.trip_desc }}</el-descriptions-item>
|
||||
<el-descriptions-item label="管控措施:">{{ scope.row.measure }}</el-descriptions-item>
|
||||
<el-descriptions-item label="核酸检测日期:">{{ scope.row.test_date }}</el-descriptions-item>
|
||||
<el-descriptions-item label="是否报备:">
|
||||
<el-space v-if="scope.row.is_reported == true">是</el-space>
|
||||
<el-space v-else>否</el-space>
|
||||
</el-descriptions-item>
|
||||
<el-descriptions-item label="健康码:">
|
||||
<el-image style="width: 100px; height: 100px" :src="scope.row.health_code"
|
||||
:preview-src-list="[scope.row.health_code]" fit="cover" />
|
||||
</el-descriptions-item>
|
||||
<el-descriptions-item label="行程码:">
|
||||
<el-image style="width: 100px; height: 100px" :src="scope.row.travel_code"
|
||||
:preview-src-list="[scope.row.travel_code]" fit="cover" />
|
||||
</el-descriptions-item>
|
||||
<el-descriptions-item label="核酸报告:">
|
||||
<el-image style="width: 100px; height: 100px" :src="scope.row.test_report"
|
||||
:preview-src-list="[scope.row.test_report]" fit="cover" />
|
||||
</el-descriptions-item>
|
||||
</el-descriptions>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="访客姓名" prop="visitor_.name"></el-table-column>
|
||||
<el-table-column label="访客手机号" prop="visitor_.phone"></el-table-column>
|
||||
<el-table-column label="访客身份证号" prop="visitor_.id_number"></el-table-column>
|
||||
<el-table-column label="是否重要访客" prop="is_main">
|
||||
<template #default="scope"
|
||||
><el-space v-if="scope.row.is_main == true">是</el-space>
|
||||
<template #default="scope">
|
||||
<el-space v-if="scope.row.is_main == true">是</el-space>
|
||||
<el-space v-else>否</el-space>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
label="创建时间"
|
||||
prop="create_time"
|
||||
></el-table-column>
|
||||
<el-table-column label="创建时间" prop="create_time"></el-table-column>
|
||||
<el-table-column label="操作" width="60">
|
||||
<template #default="scope">
|
||||
<el-button link
|
||||
v-if="scope.row.blt_==null"
|
||||
type="primary"
|
||||
size="small"
|
||||
@click="bindCard(scope.row,10)"
|
||||
v-auth="'blt_bind.create'"
|
||||
>绑卡
|
||||
<el-button link v-if="scope.row.blt_ == null" type="primary" size="small"
|
||||
@click="bindCard(scope.row, 10)" v-auth="'blt_bind.create'">绑卡
|
||||
</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</scTable>
|
||||
</el-card>
|
||||
</el-main>
|
||||
<ScBind v-model="showBindBlt" :bindBtl="bindBtl"
|
||||
:bindType="bindType" :bindName="bindName"
|
||||
:bindEmployee="bindEmployee"
|
||||
@success="showBindBltSuccess" @closed="showBindBltClose"></ScBind>
|
||||
<ScBind v-model="showBindBlt" :bindBtl="bindBtl" :bindType="bindType" :bindName="bindName"
|
||||
:bindEmployee="bindEmployee" @success="showBindBltSuccess" @closed="showBindBltClose"></ScBind>
|
||||
</el-container>
|
||||
</el-drawer>
|
||||
</template>
|
||||
|
@ -162,6 +145,7 @@
|
|||
30: "待入厂",
|
||||
40: "进行中",
|
||||
50: "已完成",
|
||||
60: "已关闭",
|
||||
},
|
||||
receptionistoptions: [],
|
||||
peoplelist: [],
|
||||
|
|
Loading…
Reference in New Issue