This commit is contained in:
shijing 2022-10-26 13:43:57 +08:00
commit f9766e1a80
13 changed files with 307 additions and 336 deletions

View File

@ -35,7 +35,7 @@
</el-select> </el-select>
</el-col> --> </el-col> -->
<!-- <el-col :md="8" :sm="24"> <!-- <el-col :md="8" :sm="24">
<el-cascader style="width:90%" v-model="query.depts" :options="deptdata" clearable placeholder="部门/单位" @change="handleQuery" :show-all-levels="false" :props="{emitPath:false}"/> <el-cascader style="width:90%" v-model="query.depts" :options="deptdata" clearable placeholder="部门/单位" @change="handleQuery" :show-all-levels="false" :props="{emitPath:false,checkStrictly: true}"/>
</el-col> </el-col>
<el-col :md="8" :sm="24"> <el-col :md="8" :sm="24">
<el-cascader style="width:90%" v-model="query.posts" :options="postdata" clearable placeholder="岗位" @change="handleQuery" :show-all-levels="false" :props="{emitPath:false}"/> <el-cascader style="width:90%" v-model="query.posts" :options="postdata" clearable placeholder="岗位" @change="handleQuery" :show-all-levels="false" :props="{emitPath:false}"/>

View File

@ -35,7 +35,7 @@
</el-select> </el-select>
</el-col> </el-col>
<el-col :md="6" :sm="24"> <el-col :md="6" :sm="24">
<el-cascader style="width:90%" v-model="query.depts" :options="deptdata" clearable placeholder="部门/单位" @change="handleQuery" :show-all-levels="false" :props="{emitPath:false}"/> <el-cascader style="width:90%" v-model="query.depts" :options="deptdata" clearable placeholder="部门/单位" @change="handleQuery" :show-all-levels="false" :props="{emitPath:false,checkStrictly: true}"/>
</el-col> </el-col>
<el-col :md="6" :sm="24"> <el-col :md="6" :sm="24">
<el-cascader style="width:90%" v-model="query.posts" :options="postdata" clearable placeholder="岗位" @change="handleQuery" :show-all-levels="false" :props="{emitPath:false}"/> <el-cascader style="width:90%" v-model="query.posts" :options="postdata" clearable placeholder="岗位" @change="handleQuery" :show-all-levels="false" :props="{emitPath:false}"/>
@ -291,7 +291,7 @@ export default {
}, },
// //
async getDept() { async getDept() {
let res = await this.$API.system.dept.list.req({ page: 0 }); let res = await this.$API.system.dept.list.req({ page: 0, type__in:'dept, rparty' });
this.deptdata = genTree(res); this.deptdata = genTree(res);
}, },
// //

View File

@ -75,11 +75,8 @@
methods: { methods: {
getBltList() { getBltList() {
let that = this; 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', query: '{id, code}'}).then((res) => {
that.tdevice = res; that.bltList = res;
that.bltList = res.filter((item) => {
return item.employee_ === null;
});
}); });
}, },

View File

@ -96,21 +96,19 @@
@closed="closeDrawer" @closed="closeDrawer"
> >
<el-form ref="dialogForm" :model="form" label-width="120px"> <el-form ref="dialogForm" :model="form" label-width="120px">
<el-form-item label="卡号"> <!-- <el-form-item label="卡号">
{{ form.blt }} {{ form.blt }}
</el-form-item> </el-form-item> -->
<el-form-item label="mac"> <el-form-item label="mac">
{{ bindBltMac }} {{ bindBltMac }}
</el-form-item> </el-form-item>
<el-form-item label="绑定员工"> <el-form-item label="绑定员工" v-if="dis==false">
<el-select v-model="form.employee" style="width: 100%" :disabled="dis"> <el-input
<el-option v-model="form.employee_name"
v-for="item in employeeList" style="width:200px"
:key="item.id" disabled
:label="item.name" ></el-input>
:value="item.id" <ehsUserSelect :multiple="false" @submit="getEmployee"/>
/>
</el-select>
</el-form-item> </el-form-item>
</el-form> </el-form>
<template #footer> <template #footer>
@ -149,12 +147,11 @@ export default {
form: { form: {
type: 10, type: 10,
blt: "", blt: "",
employee: "", employee: null,
}, },
}; };
}, },
mounted() { mounted() {
this.getEmployeeList();
}, },
methods: { methods: {
// //
@ -168,15 +165,10 @@ export default {
this.$refs.table.refresh(); this.$refs.table.refresh();
this.syncLoading = false; this.syncLoading = false;
}, },
getEmployeeList() { getEmployee(data) {
let that = this; this.form.employee=data.id;
that.$API.hrm.employee.list this.form.employee_name=data.name
.req({ job_state: 10, page: 0 }) },
.then((res) => {
that.tdevice = res;
that.employeeList = res;
});
},
handleBindBlt(type, row) { handleBindBlt(type, row) {
this.dis = false; this.dis = false;
this.form.blt = row.id; this.form.blt = row.id;

View File

@ -46,13 +46,16 @@
<el-table-column label="#" type="index" width="50"></el-table-column> <el-table-column label="#" type="index" width="50"></el-table-column>
<el-table-column label="人员类型" prop="type"> <el-table-column label="人员类型" prop="type">
<template #default="scope"> <template #default="scope">
<span v-if="scope.row.type=='employee'||scope.row.type=='remployee'">[{{jobOptions[scope.row.job_state]}}] </span>
<span>{{ userTypeOptions[scope.row.type] }}</span> <span>{{ userTypeOptions[scope.row.type] }}</span>
<span v-if="scope.row.type=='employee' && scope.row.is_atwork" style="color:green;font-weight:bold"> <span v-if="scope.row.type=='employee' && scope.row.is_atwork" style="color:green;font-weight:bold">
在岗 在岗
</span> </span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="姓名" prop="name"></el-table-column> <el-table-column label="姓名" prop="name">
</el-table-column>
<el-table-column label="证件照" prop="photo"> <el-table-column label="证件照" prop="photo">
<template #default="scope"> <template #default="scope">
<el-avatar :size="50" :src="scope.row.photo" shape="square"/> <el-avatar :size="50" :src="scope.row.photo" shape="square"/>
@ -209,6 +212,10 @@ export default {
visitor: "访客", visitor: "访客",
driver: "货车司机" driver: "货车司机"
}, },
jobOptions: {
10: "在职",
20: "离职",
},
typeOptions: [ typeOptions: [
{label:"正式员工", value:"employee"}, {label:"正式员工", value:"employee"},
{label:"相关方", value:"remployee"}, {label:"相关方", value:"remployee"},
@ -218,7 +225,7 @@ export default {
}; };
}, },
mounted() { mounted() {
this.getBltList(); // this.getBltList();
}, },
methods: { methods: {
// //
@ -351,7 +358,7 @@ export default {
getBltList() { getBltList() {
let that = this; 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.tdevice = res;
that.bltList = res.filter((item) => { that.bltList = res.filter((item) => {
return item.employee_ === null; return item.employee_ === null;

View File

@ -124,6 +124,13 @@
<span v-if="form.door_range">{{form.door_range[0]}} {{form.door_range[1]}}</span> <span v-if="form.door_range">{{form.door_range[0]}} {{form.door_range[1]}}</span>
</el-form-item> </el-form-item>
</el-row> </el-row>
<el-row>
<el-form-item label="最近定位信息">
<span v-if="form.location">{{form.location.area_fix_name}}-
<span v-if="form.location.xx_detail">经纬度({{form.location.xx_detail.longitude}}, {{form.location.xx_detail.latitude}})</span>
</span>
</el-form-item>
</el-row>
</el-form> </el-form>
</el-main> </el-main>
<el-footer v-if="mode!=='show'"> <el-footer v-if="mode!=='show'">

View File

@ -7,7 +7,7 @@
icon="el-icon-plus" icon="el-icon-plus"
@click="add" @click="add"
v-auth="'rpj.create'" v-auth="'rpj.create'"
></el-button> >新建项目</el-button>
<el-select <el-select
v-model="query.state" v-model="query.state"
placeholder="项目状态" placeholder="项目状态"

View File

@ -17,7 +17,7 @@
> >
<el-row> <el-row>
<el-col :md="24" :sm="12" :xs="24"> <el-col :md="24" :sm="12" :xs="24">
<el-form-item label="名称"> <el-form-item label="名称" required>
<el-input <el-input
v-model="form.name" v-model="form.name"
type="text" type="text"
@ -27,7 +27,7 @@
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :md="24" :sm="12" :xs="24"> <el-col :md="24" :sm="12" :xs="24">
<el-form-item label="项目类型"> <el-form-item label="项目类型" required>
<el-select v-model="form.type" style="width: 100%"> <el-select v-model="form.type" style="width: 100%">
<el-option <el-option
v-for="item in typeOptions" v-for="item in typeOptions"
@ -48,7 +48,7 @@
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :md="24" :sm="12" :xs="24"> <el-col :md="24" :sm="12" :xs="24">
<el-form-item label="进厂时间"> <el-form-item label="进厂时间" required>
<el-date-picker <el-date-picker
v-model="form.come_time" v-model="form.come_time"
type="datetime" type="datetime"
@ -57,7 +57,7 @@
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :md="24" :sm="12" :xs="24"> <el-col :md="24" :sm="12" :xs="24">
<el-form-item label="离厂时间"> <el-form-item label="离厂时间" required>
<el-date-picker <el-date-picker
v-model="form.leave_time" v-model="form.leave_time"
type="datetime" type="datetime"
@ -85,7 +85,7 @@
</el-col> </el-col>
<el-col :md="24" :sm="12" :xs="24" v-if="rparty_show"> <el-col :md="24" :sm="12" :xs="24" v-if="rparty_show">
<el-form-item label="相关方"> <el-form-item label="相关方" required>
<el-select v-model="form.rparty" style="width: 100%"> <el-select v-model="form.rparty" style="width: 100%">
<el-option <el-option
v-for="item in rpartyOptions" v-for="item in rpartyOptions"

View File

@ -1,41 +1,24 @@
<template> <template>
<el-drawer <el-drawer title="查看" v-model="visible" :size="1000" destroy-on-close @closed="$emit('closed')"
title="查看" :close-on-click-modal="false">
v-model="visible"
:size="1000"
destroy-on-close
@closed="$emit('closed')"
>
<el-container v-loading="loading"> <el-container v-loading="loading">
<el-main> <el-main>
<el-card shadow="hover"> <el-card shadow="hover">
<el-descriptions :column="3" title="基本信息"> <el-descriptions :column="3" title="基本信息">
<el-descriptions-item label="入厂项目:">{{form.name }}</el-descriptions-item> <el-descriptions-item label="入厂项目:">{{ form.name }}</el-descriptions-item>
<el-descriptions-item label="项目类型:">{{types_[form.type]}}</el-descriptions-item> <el-descriptions-item label="项目类型:">{{ types_[form.type] }}</el-descriptions-item>
<el-descriptions-item label="合同编号:">{{form.contract_number}}</el-descriptions-item> <el-descriptions-item label="合同编号:">{{ form.contract_number }}</el-descriptions-item>
<el-descriptions-item label="状态:">{{state_[form.state]}}</el-descriptions-item> <el-descriptions-item label="状态:">{{ state_[form.state] }}</el-descriptions-item>
<el-descriptions-item label="进厂时间:">{{form.come_time}}</el-descriptions-item> <el-descriptions-item label="进厂时间:">{{ form.come_time }}</el-descriptions-item>
<el-descriptions-item label="离厂时间:">{{form.leave_time}}</el-descriptions-item> <el-descriptions-item label="离厂时间:">{{ form.leave_time }}</el-descriptions-item>
<el-descriptions-item label="所属部门:">{{form.belong_dept_name}}</el-descriptions-item> <el-descriptions-item label="所属部门:">{{ form.belong_dept_name }}</el-descriptions-item>
<el-descriptions-item label="相关方:">{{form.rparty_name}}</el-descriptions-item> <el-descriptions-item label="相关方:">{{ form.rparty_name }}</el-descriptions-item>
</el-descriptions> </el-descriptions>
</el-card> </el-card>
<el-card style="margin-top:8px" shadow="hover"> <el-card style="margin-top:8px" shadow="hover">
<scTable <scTable ref="fileTable" :data="rpjFileList" row-key="id" hidePagination stripe hideDo
ref="fileTable" style="height:200px">
:data="rpjFileList" <el-table-column label="#" fixed="left" type="index" width="50"></el-table-column>
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"> <el-table-column label="资质内容" prop="name">
<template #default="scope"> <template #default="scope">
{{ scope.row.file_cate_.name }} {{ scope.row.file_cate_.name }}
@ -44,22 +27,15 @@
<el-table-column label="文件资料" prop="name"> <el-table-column label="文件资料" prop="name">
<template #default="scope"> <template #default="scope">
<div v-for="item in scope.row.files_" :key="item.id"> <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">
</div> {{ item.name }}</el-link>
</div>
</template> </template>
</el-table-column> </el-table-column>
</scTable> </scTable>
</el-card> </el-card>
<el-card style="margin-top:8px" shadow="hover"> <el-card style="margin-top:8px" shadow="hover">
<scTable <scTable ref="table" :data="memeberList" row-key="id" height='auto' stripe hideDo hidePagination>
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="#" fixed="left" type="index" width="50"></el-table-column>
<el-table-column label="姓名" prop="remployee_.name"> <el-table-column label="姓名" prop="remployee_.name">
<template #default="scope"> <template #default="scope">
@ -69,12 +45,8 @@
<el-table-column label="工作职责" prop="duty"></el-table-column> <el-table-column label="工作职责" prop="duty"></el-table-column>
<el-table-column label="证书" prop="rcertificates"> <el-table-column label="证书" prop="rcertificates">
<template #default="scope"> <template #default="scope">
<el-tag <el-tag v-for="item in scope.row.rcertificates_" :key="item.number" :label="item.name"
v-for="item in scope.row.rcertificates_" :value="item.number">{{ item.name }}
:key="item.number"
:label="item.name"
:value="item.number"
>{{ item.name }}
</el-tag> </el-tag>
</template> </template>
</el-table-column> </el-table-column>
@ -86,132 +58,126 @@
</el-table-column> </el-table-column>
<el-table-column label="操作" width="60"> <el-table-column label="操作" width="60">
<template #default="scope"> <template #default="scope">
<el-button link <el-button link v-if="scope.row.blt_ == null" type="primary" size="small"
v-if="scope.row.blt_==null" @click="bindCard(scope.row, 10)" v-auth="'blt_bind.create'">绑卡
type="primary" </el-button>
size="small"
@click="bindCard(scope.row,10)"
v-auth="'blt_bind.create'"
>绑卡
</el-button>
</template> </template>
</el-table-column> </el-table-column>
</scTable> </scTable>
</el-card> </el-card>
</el-main> </el-main>
<ScBind v-model="showBindBlt" :bindBtl="bindBtl" <ScBind v-model="showBindBlt" :bindBtl="bindBtl" :bindType="bindType" :bindName="bindName"
:bindType="bindType" :bindName="bindName" :bindEmployee="bindEmployee" :bindEmployee="bindEmployee" @success="showBindBltSuccess" @closed="showBindBltClose"></ScBind>
@success="showBindBltSuccess" @closed="showBindBltClose"></ScBind>
</el-container> </el-container>
</el-drawer> </el-drawer>
</template> </template>
<script> <script>
import ScBind from "@/components/scBind/index.vue"; import ScBind from "@/components/scBind/index.vue";
export default { export default {
emits: ["success", "closed"], emits: ["success", "closed"],
props: { props: {
rpjId: { rpjId: {
type: String, type: String,
default: "" default: ""
} }
}, },
components: { components: {
ScBind ScBind
}, },
data() { data() {
return { return {
loading: false, loading: false,
visible: false, visible: false,
isSaveing: false, isSaveing: false,
showBindBlt:false, showBindBlt: false,
state_: { state_: {
10: "创建中", 10: "创建中",
20: "审批中", 20: "审批中",
30: "待入厂", 30: "待入厂",
40: "进行中", 40: "进行中",
50: "已完成", 50: "已完成",
}, },
types_: { types_: {
10: "建筑施工", 10: "建筑施工",
20: "设备设施检维修", 20: "设备设施检维修",
30: "保安保洁服务", 30: "保安保洁服务",
40: "其他", 40: "其他",
}, },
form:{}, form: {},
bindName: "", bindName: "",
bindType:10, bindType: 10,
bindBtl:null, bindBtl: null,
bindEmployee:'', bindEmployee: '',
rpjFileList: [], rpjFileList: [],
memeberList: [], memeberList: [],
}; };
}, },
mounted() { mounted() {
/* this.getRpjfileList(); /* this.getRpjfileList();
this.getMemberList();*/ this.getMemberList();*/
}, },
methods: { methods: {
//访 //访
bindCard(row,type){ bindCard(row, type) {
debugger;
if (row.remployee == null) {
this.$message.success("请审批通过后再进行绑卡操作");
} else {
debugger; debugger;
if(row.remployee==null){ this.bindName = row.remployee_.name;
this.$message.success("请审批通过后再进行绑卡操作"); this.bindType = type;
}else{ this.bindEmployee = row.remployee;
debugger;
this.bindName = row.remployee_.name;
this.bindType = type;
this.bindEmployee = row.remployee;
if (type === 20) { if (type === 20) {
this.bindBtl = row.blt_.mac; this.bindBtl = row.blt_.mac;
} }
this.showBindBlt = true; this.showBindBlt = true;
} }
},
showBindBltSuccess(data){
debugger;
this.showBindBlt = data
this.$refs.table.refresh();
},
showBindBltClose(data){
debugger;
this.showBindBlt = data
},
//
open() {
this.visible = true;
return this;
},
//
setData(data) {
this.loading = true
this.$API.rpm.rpj.item.req(data.id).then((res) => {
this.loading = false
this.form = res;
this.getRpjfileList();
this.getMemberList();
this.visible = true;
}).catch(e=>{this.loading=false});
},
//
getRpjfileList() {
this.$API.rpm.rpjfile.list.req({page: 0, rpj: this.form.id}).then((res) => {
this.rpjFileList = res;
});
},
//
getMemberList() {
this.$API.rpm.member.list.req({rpj: this.form.id, page: 0}).then((res) => {
this.memeberList = res;
console.log(res);
});
},
}, },
}; showBindBltSuccess(data) {
debugger;
this.showBindBlt = data
this.$refs.table.refresh();
},
showBindBltClose(data) {
debugger;
this.showBindBlt = data
},
//
open() {
this.visible = true;
return this;
},
//
setData(data) {
this.loading = true
this.$API.rpm.rpj.item.req(data.id).then((res) => {
this.loading = false
this.form = res;
this.getRpjfileList();
this.getMemberList();
this.visible = true;
}).catch(e => { this.loading = false });
},
//
getRpjfileList() {
this.$API.rpm.rpjfile.list.req({ page: 0, rpj: this.form.id }).then((res) => {
this.rpjFileList = res;
});
},
//
getMemberList() {
this.$API.rpm.member.list.req({ rpj: this.form.id, page: 0 }).then((res) => {
this.memeberList = res;
console.log(res);
});
},
},
};
</script> </script>
<style scoped> <style scoped>
.el-transfer { .el-transfer {
--el-transfer-panel-width: 345px !important; --el-transfer-panel-width: 345px !important;
} }
</style> </style>

View File

@ -1,46 +1,36 @@
<template> <template>
<el-drawer <el-drawer :title="titleMap[mode]" v-model="visible" :size="1000" destroy-on-close @closed="$emit('closed')"
:title="titleMap[mode]" :close-on-click-modal="false">
v-model="visible"
:size="1000"
destroy-on-close
@closed="$emit('closed')"
>
<el-container v-loading="loading"> <el-container v-loading="loading">
<el-main> <el-main>
<el-card header="基本信息" shadow="hover"> <el-card header="基本信息" shadow="hover">
<el-descriptions :column="2"> <el-descriptions :column="2">
<el-descriptions-item label="来访概述:">{{ <el-descriptions-item label="来访概述:">{{
form.name form.name
}}</el-descriptions-item> }}</el-descriptions-item>
<el-descriptions-item label="来访单位:">{{ <el-descriptions-item label="来访单位:">{{
form.company form.company
}}</el-descriptions-item> }}</el-descriptions-item>
<el-descriptions-item label="来访人数:"> <el-descriptions-item label="来访人数:">
<el-tag size="small">{{ form.count_people }}</el-tag> <el-tag size="small">{{ form.count_people }}</el-tag>
</el-descriptions-item> </el-descriptions-item>
<el-descriptions-item label="来访人员:"> <el-descriptions-item label="来访人员:">
<el-tag <el-tag size="small" v-for="item in form.visitors_" :key="item.id">{{ item.visitor_.name }}</el-tag>
size="small"
v-for="item in form.visitors_"
:key="item.id"
>{{ item.visitor_.name }}</el-tag
>
</el-descriptions-item> </el-descriptions-item>
<el-descriptions-item label="状态:">{{ <el-descriptions-item label="状态:">{{
state_[form.state] state_[form.state]
}}</el-descriptions-item> }}</el-descriptions-item>
<el-descriptions-item label="来访时间:">{{ <el-descriptions-item label="来访时间:">{{
form.visit_time form.visit_time
}}</el-descriptions-item> }}</el-descriptions-item>
<el-descriptions-item label="离开时间:">{{ <el-descriptions-item label="离开时间:">{{
form.leave_time form.leave_time
}}</el-descriptions-item> }}</el-descriptions-item>
<el-descriptions-item label="来访事由:">{{ <el-descriptions-item label="来访事由:">{{
purpose_[form.purpose] purpose_[form.purpose]
}}</el-descriptions-item> }}</el-descriptions-item>
<el-descriptions-item label="来访详述:">{{ <el-descriptions-item label="来访详述:">{{
form.description form.description
}}</el-descriptions-item> }}</el-descriptions-item>
<el-descriptions-item label="接待人:" v-if="form.receptionist_"> <el-descriptions-item label="接待人:" v-if="form.receptionist_">
@ -49,70 +39,63 @@
</el-descriptions> </el-descriptions>
</el-card> </el-card>
<el-card style="margin-top: 8px" shadow="hover" header="访客信息"> <el-card style="margin-top: 8px" shadow="hover" header="访客信息">
<scTable <scTable ref="table" :data="peoplelist" row-key="id" height="auto" stripe hideDo hidePagination>
ref="table" <el-table-column label="#" type="expand">
:data="peoplelist" <template #default="scope">
row-key="id" <el-descriptions :column="3" style="margin-left:8px">
height="auto" <el-descriptions-item label="返乡时间:">{{ scope.row.return_date }}</el-descriptions-item>
stripe <el-descriptions-item label="来源地:">{{ scope.row.come_place }}</el-descriptions-item>
hideDo <el-descriptions-item label="行程轨迹:">{{ scope.row.trip_desc }}</el-descriptions-item>
hidePagination <el-descriptions-item label="管控措施:">{{ scope.row.measure }}</el-descriptions-item>
> <el-descriptions-item label="核酸检测日期:">{{ scope.row.test_date }}</el-descriptions-item>
<el-table-column <el-descriptions-item label="是否报备:">
label="#" <el-space v-if="scope.row.is_reported == true"></el-space>
fixed="left" <el-space v-else></el-space>
type="index" </el-descriptions-item>
width="50" <el-descriptions-item label="健康码:">
></el-table-column> <el-image style="width: 100px; height: 100px" :src="scope.row.health_code"
:preview-src-list="[scope.row.health_code]" fit="cover" />
<el-table-column </el-descriptions-item>
label="访客姓名" <el-descriptions-item label="行程码:">
prop="visitor_.name" <el-image style="width: 100px; height: 100px" :src="scope.row.travel_code"
></el-table-column> :preview-src-list="[scope.row.travel_code]" fit="cover" />
<el-table-column </el-descriptions-item>
label="访客手机号" <el-descriptions-item label="核酸报告:">
prop="visitor_.phone" <el-image style="width: 100px; height: 100px" :src="scope.row.test_report"
></el-table-column> :preview-src-list="[scope.row.test_report]" fit="cover" />
<el-table-column </el-descriptions-item>
label="访客身份证号" </el-descriptions>
prop="visitor_.id_number" </template>
></el-table-column> </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"> <el-table-column label="是否重要访客" prop="is_main">
<template #default="scope" <template #default="scope">
><el-space v-if="scope.row.is_main == true"></el-space> <el-space v-if="scope.row.is_main == true"></el-space>
<el-space v-else></el-space> <el-space v-else></el-space>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column label="创建时间" prop="create_time"></el-table-column>
label="创建时间"
prop="create_time"
></el-table-column>
<el-table-column label="操作" width="60"> <el-table-column label="操作" width="60">
<template #default="scope"> <template #default="scope">
<el-button link <el-button link v-if="scope.row.blt_ == null" type="primary" size="small"
v-if="scope.row.blt_==null" @click="bindCard(scope.row, 10)" v-auth="'blt_bind.create'">绑卡
type="primary" </el-button>
size="small" </template>
@click="bindCard(scope.row,10)" </el-table-column>
v-auth="'blt_bind.create'"
>绑卡
</el-button>
</template>
</el-table-column>
</scTable> </scTable>
</el-card> </el-card>
</el-main> </el-main>
<ScBind v-model="showBindBlt" :bindBtl="bindBtl" <ScBind v-model="showBindBlt" :bindBtl="bindBtl" :bindType="bindType" :bindName="bindName"
:bindType="bindType" :bindName="bindName" :bindEmployee="bindEmployee" @success="showBindBltSuccess" @closed="showBindBltClose"></ScBind>
:bindEmployee="bindEmployee"
@success="showBindBltSuccess" @closed="showBindBltClose"></ScBind>
</el-container> </el-container>
</el-drawer> </el-drawer>
</template> </template>
<script> <script>
import ScBind from "@/components/scBind/index.vue"; import ScBind from "@/components/scBind/index.vue";
export default { export default {
emits: ["success", "closed"], emits: ["success", "closed"],
components: { components: {
ScBind ScBind
@ -136,12 +119,12 @@
level: [{ required: true, message: "请输入" }], level: [{ required: true, message: "请输入" }],
}, },
bindName: "", bindName: "",
bindType:10, bindType: 10,
bindBtl:null, bindBtl: null,
bindEmployee:'', bindEmployee: '',
visible: false, visible: false,
isSaveing: false, isSaveing: false,
showBindBlt:false, showBindBlt: false,
selectionFilters: [], selectionFilters: [],
setFiltersVisible: false, setFiltersVisible: false,
purposeoptions: [ purposeoptions: [
@ -162,6 +145,7 @@
30: "待入厂", 30: "待入厂",
40: "进行中", 40: "进行中",
50: "已完成", 50: "已完成",
60: "已关闭",
}, },
receptionistoptions: [], receptionistoptions: [],
peoplelist: [], peoplelist: [],
@ -170,41 +154,41 @@
mounted() { mounted() {
}, },
methods: { methods: {
// //
open(mode = "add") { open(mode = "add") {
this.mode = mode; this.mode = mode;
this.visible = true; this.visible = true;
return this; return this;
}, },
//访 //访
bindCard(row,type){ bindCard(row, type) {
debugger; debugger;
if(row.visitor_.employee==null){ if (row.visitor_.employee == null) {
this.$message.success("请审批通过后再进行绑卡操作"); this.$message.success("请审批通过后再进行绑卡操作");
}else{ } else {
debugger; debugger;
this.bindName = row.visitor_.name; this.bindName = row.visitor_.name;
this.bindType = type; this.bindType = type;
this.bindEmployee = row.visitor_.employee; this.bindEmployee = row.visitor_.employee;
if (type === 20) { if (type === 20) {
this.bindBtl = row.blt_.mac; this.bindBtl = row.blt_.mac;
} }
this.showBindBlt = true; this.showBindBlt = true;
} }
}, },
showBindBltSuccess(data){ showBindBltSuccess(data) {
debugger; debugger;
this.showBindBlt = data this.showBindBlt = data
this.$refs.table.refresh(); this.$refs.table.refresh();
}, },
showBindBltClose(data){ showBindBltClose(data) {
debugger; debugger;
this.showBindBlt = false; this.showBindBlt = false;
}, },
//访 //访
// //
@ -213,7 +197,7 @@
this.$API.vm.visit.read.req(data.id).then((res) => { this.$API.vm.visit.read.req(data.id).then((res) => {
this.loading = false this.loading = false
this.form = res; this.form = res;
}).catch(e=>{this.loading = false}); }).catch(e => { this.loading = false });
this.$API.vm.people.list.req({ visit: data.id, page: 0 }).then((res) => { this.$API.vm.people.list.req({ visit: data.id, page: 0 }).then((res) => {
this.peoplelist = res; this.peoplelist = res;

View File

@ -166,6 +166,7 @@ export default {
this.$API.wf.ticket.retryScript.req(row.id).then(res => { this.$API.wf.ticket.retryScript.req(row.id).then(res => {
this.$message.success("任务执行下发成功"); this.$message.success("任务执行下发成功");
this.$refs.table.refresh();
}); });
}, },
handleQuery() { handleQuery() {

View File

@ -9,36 +9,24 @@
height="400" height="400"
highlight-current-row highlight-current-row
> >
<el-table-column label="工单标题" min-width="100"> <!-- <el-table-column label="工单标题" min-width="100">
<template #default="scope"> <template #default="scope">
<span v-if="scope.row.ticket_data.title">{{ <span v-if="scope.row.ticket_data.title">{{
scope.row.ticket_data.title scope.row.ticket_data.title
}}</span> }}</span>
</template> </template>
</el-table-column> </el-table-column> -->
<el-table-column label="进行状态" min-width="100"> <el-table-column label="进行状态">
<template #default="scope"> <template #default="scope">
<span>{{ scope.row.state_.name }}</span> <span>{{ scope.row.state_.name }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="操作属性" min-width="100"> <el-table-column label="操作类型">
<template #default="scope">
<el-tag type="success" v-if="scope.row.transition_attribute == 1"
>同意</el-tag
>
<el-tag
type="success"
v-else-if="scope.row.transition_attribute == 2"
>拒绝</el-tag
>
</template>
</el-table-column>
<el-table-column label="操作类型" min-width="100">
<template #default="scope"> <template #default="scope">
<span>{{ interveneTypeOptions[scope.row.intervene_type] }}</span> <span>{{ interveneTypeOptions[scope.row.intervene_type] }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="操作人" min-width="100"> <el-table-column label="操作人">
<template #default="scope"> <template #default="scope">
<el-span v-if="scope.row.participant_">{{ <el-span v-if="scope.row.participant_">{{
scope.row.participant_.name scope.row.participant_.name
@ -48,9 +36,21 @@
}}</el-span> }}</el-span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="操作意见" min-width="100" prop="suggestion"> <el-table-column label="操作属性">
<template #default="scope">
<el-tag type="success" v-if="scope.row.transition_attribute == 1"
>同意</el-tag
>
<el-tag
type="danger"
v-else-if="scope.row.transition_attribute == 2"
>拒绝</el-tag
>
</template>
</el-table-column> </el-table-column>
<el-table-column label="更新时间" min-width="100" prop="update_time"> <el-table-column label="操作意见" prop="suggestion" :show-overflow-tooltip="true">
</el-table-column>
<el-table-column label="更新时间" prop="update_time">
</el-table-column> </el-table-column>
</el-table> </el-table>
</el-main> </el-main>

View File

@ -7,21 +7,37 @@
class="ticketRetry" class="ticketRetry"
v-if="!ticketDetail.script_run_last_result" v-if="!ticketDetail.script_run_last_result"
@click="reStart" @click="reStart"
type="primary" type="warning"
> >
重新执行 重新执行
</el-button> </el-button>
</el-card> </el-card>
<el-card style="margin-top: 8px" v-if="cateType==='visit'"> <el-card style="margin-top: 4px">
<el-descriptions title="来访信息" :column="3"> <el-descriptions title="工单信息" :column="3">
<el-descriptions-item label="工单流水号:"> <el-descriptions-item label="工单流水号:">
{{ticketDetail.sn }} {{ticketDetail.sn }}
</el-descriptions-item> </el-descriptions-item>
<el-descriptions-item label="所属流程:">
<span v-if="ticketDetail.workflow">{{ticketDetail.workflow_.name }}</span>
</el-descriptions-item>
<el-descriptions-item label="创建时间:">
{{ticketDetail.create_time }}
</el-descriptions-item>
<el-descriptions-item label="工单标题:" :span="3">
{{ticketDetail.title }}
</el-descriptions-item>
</el-descriptions>
</el-card>
<el-card style="margin-top: 4px" v-if="cateType==='visit'">
<el-descriptions title="来访信息" :column="3">
<el-descriptions-item label="来访概述:"> <el-descriptions-item label="来访概述:">
{{visitDetail.name }} {{visitDetail.name }}
</el-descriptions-item> </el-descriptions-item>
<el-descriptions-item label="来访单位:"> <el-descriptions-item label="来访级别:">
{{visitDetail.company }} {{visitDetail.name }}
</el-descriptions-item>
<el-descriptions-item label="来访事由:">
{{purpose_[visitDetail.purpose] }}
</el-descriptions-item> </el-descriptions-item>
<el-descriptions-item label="来访人数:"> <el-descriptions-item label="来访人数:">
<el-tag size="small">{{ visitDetail.count_people }}</el-tag> <el-tag size="small">{{ visitDetail.count_people }}</el-tag>
@ -37,25 +53,20 @@
<el-descriptions-item label="来访时间:"> <el-descriptions-item label="来访时间:">
{{visitDetail.visit_time }} {{visitDetail.visit_time }}
</el-descriptions-item> </el-descriptions-item>
<el-descriptions-item label="离时间:"> <el-descriptions-item label="离访时间:">
{{visitDetail.leave_time }} {{visitDetail.leave_time }}
</el-descriptions-item> </el-descriptions-item>
<el-descriptions-item label="来访事由:">
{{purpose_[visitDetail.purpose] }}
</el-descriptions-item>
<el-descriptions-item label="来访详述:">
{{visitDetail.description }}
</el-descriptions-item>
<el-descriptions-item label="接待人:" v-if="visitDetail.receptionist_"> <el-descriptions-item label="接待人:" v-if="visitDetail.receptionist_">
{{ visitDetail.receptionist_.name }} {{ visitDetail.receptionist_.name }}
</el-descriptions-item> </el-descriptions-item>
</el-descriptions> </el-descriptions>
<div style="text-align: center">
<el-link type="primary" @click="showMoreVisit"> 更多信息</el-link>
</div>
<visit-dialog v-if="visitShow" ref="visitDialog"></visit-dialog>
</el-card> </el-card>
<el-card style="margin-top: 8px" v-if="cateType==='rpj'"> <el-card style="margin-top: 4px" v-if="cateType==='rpj'">
<el-descriptions title="入厂项目" :column="3"> <el-descriptions title="入厂项目" :column="3">
<el-descriptions-item label="工单流水号:">
{{ticketDetail.sn }}
</el-descriptions-item>
<el-descriptions-item label="相关方:"> <el-descriptions-item label="相关方:">
{{rpjDetail.rparty_name}} {{rpjDetail.rparty_name}}
</el-descriptions-item> </el-descriptions-item>
@ -86,11 +97,8 @@
</div> </div>
<show-dialog v-if="rpjShow" ref="showDialog"></show-dialog> <show-dialog v-if="rpjShow" ref="showDialog"></show-dialog>
</el-card> </el-card>
<el-card style="margin-top: 8px" v-if="cateType==='opl'"> <el-card style="margin-top: 4px" v-if="cateType==='opl'">
<el-descriptions title="作业许可证" :column="3"> <el-descriptions title="作业许可证" :column="3">
<el-descriptions-item label="工单流水号:">
{{ticketDetail.sn }}
</el-descriptions-item>
<el-descriptions-item label="所属作业:"> <el-descriptions-item label="所属作业:">
<span v-if="oplDetail.operation">{{oplDetail.operation_.name }}</span> <span v-if="oplDetail.operation">{{oplDetail.operation_.name }}</span>
</el-descriptions-item> </el-descriptions-item>
@ -119,7 +127,7 @@
<show-dialog v-if="rpjShow" ref="showDialog"></show-dialog> <show-dialog v-if="rpjShow" ref="showDialog"></show-dialog>
</el-card> </el-card>
<el-card style="margin-top: 8px" v-if="type!=='show'"> <el-card style="margin-top: 4px" v-if="type!=='show'">
<scTitle title="处理"></scTitle> <scTitle title="处理"></scTitle>
<el-form :model="form" ref="addForm" label-width="100px" label-position="left"> <el-form :model="form" ref="addForm" label-width="100px" label-position="left">
<el-form-item label="作业情况:" v-if="ticketDetail.state_&&ticketDetail.state_.key==='opl_close'"> <el-form-item label="作业情况:" v-if="ticketDetail.state_&&ticketDetail.state_.key==='opl_close'">
@ -166,7 +174,7 @@
</div> </div>
</div> </div>
</el-card> </el-card>
<el-card style="margin-top: 8px" header="处理日志"> <el-card style="margin-top: 4px" header="处理日志">
<work-details ref="workDetails" :ticket="ticketId"></work-details> <work-details ref="workDetails" :ticket="ticketId"></work-details>
</el-card> </el-card>
</el-main> </el-main>
@ -202,7 +210,7 @@
<el-button class="filter-item" type="primary" @click="deliverNodeHandler('1')">确定</el-button> <el-button class="filter-item" type="primary" @click="deliverNodeHandler('1')">确定</el-button>
</div> </div>
</el-dialog> </el-dialog>
<el-drawer :size="'50%'" v-model="showLimited" title="作业许可证详情"> <el-drawer :size="'50%'" v-model="showLimited" title="作业许可证详情" :close-on-click-modal="false">
<sc-fire :id="projectId"></sc-fire> <sc-fire :id="projectId"></sc-fire>
</el-drawer> </el-drawer>
</template> </template>
@ -211,12 +219,14 @@
import workDetails from "./details.vue"; import workDetails from "./details.vue";
import workStep from "./steps.vue"; import workStep from "./steps.vue";
import showDialog from "../rpm/rpj_show.vue"; import showDialog from "../rpm/rpj_show.vue";
import visitDialog from "../vm/visit_detial.vue";
export default { export default {
components: { components: {
workDetails, workDetails,
workStep, workStep,
showDialog showDialog,
visitDialog
}, },
name: "ticketdetail", name: "ticketdetail",
data() { data() {
@ -245,6 +255,7 @@
target_user: '', target_user: '',
}, },
rpjShow: false, rpjShow: false,
visitShow: false,
limitedAdd: false, limitedAdd: false,
showLimited: false, showLimited: false,
limitedDeliver: false, limitedDeliver: false,
@ -322,6 +333,12 @@
this.$refs.showDialog.open().setData({id: this.projectId}); this.$refs.showDialog.open().setData({id: this.projectId});
}) })
}, },
showMoreVisit() {
this.visitShow = true;
this.$nextTick(() => {
this.$refs.visitDialog.open('show').setData({id: this.projectId});
})
},
// //
getticketItem() { getticketItem() {
this.mainLoading = true this.mainLoading = true