许可证添加流程进度
This commit is contained in:
parent
49e8368eaf
commit
b6fd672062
|
@ -49,6 +49,10 @@
|
||||||
</el-descriptions-item>
|
</el-descriptions-item>
|
||||||
</el-descriptions>
|
</el-descriptions>
|
||||||
</el-card>
|
</el-card>
|
||||||
|
<p class="tables-title">进度流程</p>
|
||||||
|
<el-card shadow="hover">
|
||||||
|
<work-step v-if="ticketDetail.state" ref="workStep" :ticket="ticketDetail"></work-step>
|
||||||
|
</el-card>
|
||||||
<p class="tables-title">许可证信息</p>
|
<p class="tables-title">许可证信息</p>
|
||||||
<el-card shadow="hover">
|
<el-card shadow="hover">
|
||||||
<el-descriptions column=2 id="opl__opre">
|
<el-descriptions column=2 id="opl__opre">
|
||||||
|
@ -109,7 +113,7 @@
|
||||||
<el-image
|
<el-image
|
||||||
v-for = "item in form.create_imgs_"
|
v-for = "item in form.create_imgs_"
|
||||||
:key = "item.id"
|
:key = "item.id"
|
||||||
style="margin-right: 8px;height: 146px;height:146px;"
|
style="margin-right: 8px;height: 120px;"
|
||||||
:src="item.path"
|
:src="item.path"
|
||||||
:preview-src-list="[item.path]"
|
:preview-src-list="[item.path]"
|
||||||
fit="cover"
|
fit="cover"
|
||||||
|
@ -127,10 +131,6 @@
|
||||||
</el-descriptions-item>
|
</el-descriptions-item>
|
||||||
</el-descriptions>
|
</el-descriptions>
|
||||||
</el-card>
|
</el-card>
|
||||||
<!-- <p class="tables-title" v-if="ticketDetailState">进度流程</p>
|
|
||||||
<el-card shadow="hover" v-if="ticketDetailState">
|
|
||||||
<work-step v-if="ticketDetail.state" ref="workStep" :ticket="ticketDetail"></work-step>
|
|
||||||
</el-card> -->
|
|
||||||
<p class="tables-title">作业人员</p>
|
<p class="tables-title">作业人员</p>
|
||||||
<table class="tables" cellspacing="0">
|
<table class="tables" cellspacing="0">
|
||||||
<tr class="tableTh tableThS">
|
<tr class="tableTh tableThS">
|
||||||
|
@ -241,7 +241,6 @@
|
||||||
cate: "",
|
cate: "",
|
||||||
risks_checked: [],
|
risks_checked: [],
|
||||||
},
|
},
|
||||||
ticketDetailState:false,
|
|
||||||
oplcateCode: 'fire',
|
oplcateCode: 'fire',
|
||||||
operationId: "",
|
operationId: "",
|
||||||
oplId: "",
|
oplId: "",
|
||||||
|
@ -310,12 +309,7 @@
|
||||||
exportDiv.style.width = "100%"
|
exportDiv.style.width = "100%"
|
||||||
|
|
||||||
},
|
},
|
||||||
// handleExport(){
|
|
||||||
// let bdHtml = window.document.body.innerHTML;
|
|
||||||
// document.body.innerHTML = document.getElementById('exportDiv').innerHTML;
|
|
||||||
// window.print();
|
|
||||||
// location.reload();
|
|
||||||
// },
|
|
||||||
//根据oplId,查许可证
|
//根据oplId,查许可证
|
||||||
getOplData() {
|
getOplData() {
|
||||||
let that = this;
|
let that = this;
|
||||||
|
@ -326,6 +320,10 @@
|
||||||
that.oplcateCode = res.cate_code;
|
that.oplcateCode = res.cate_code;
|
||||||
that.ticketId = res.ticket;
|
that.ticketId = res.ticket;
|
||||||
that.operationId = res.operation; //zuoyeID
|
that.operationId = res.operation; //zuoyeID
|
||||||
|
that.$API.wf.ticket.ticketItem.req(that.ticketId).then((ress) => {
|
||||||
|
that.ticketDetail = ress;
|
||||||
|
that.ticketDetailState = true;
|
||||||
|
}).catch(e=>{});
|
||||||
that.getOperation();
|
that.getOperation();
|
||||||
res.create_imgs_.forEach(item=>{
|
res.create_imgs_.forEach(item=>{
|
||||||
console.log(item)
|
console.log(item)
|
||||||
|
@ -379,9 +377,15 @@
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
|
|
||||||
.el-drawer__header {
|
.el-drawer__header {
|
||||||
margin-bottom: 0px;
|
margin-bottom: 0px;
|
||||||
}
|
}
|
||||||
|
.el-step__title {
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
.btnState{
|
.btnState{
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
padding: 0 9px;
|
padding: 0 9px;
|
||||||
|
|
Loading…
Reference in New Issue