从ticketdetail中打开查看作业详情
This commit is contained in:
parent
578f4a5e7c
commit
52476e76c1
|
@ -259,6 +259,7 @@
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
let that = this;
|
let that = this;
|
||||||
|
console.log(1, that.id, 2, that.wfId)
|
||||||
that.oplId = that.id; //许可证ID
|
that.oplId = that.id; //许可证ID
|
||||||
that.operationId = that.wfId; //zuoyeID
|
that.operationId = that.wfId; //zuoyeID
|
||||||
this.$nextTick(()=>{
|
this.$nextTick(()=>{
|
||||||
|
|
|
@ -196,7 +196,6 @@ export default {
|
||||||
getDept() {
|
getDept() {
|
||||||
this.$API.system.dept.list.req({ page: 0 , type__in: 'dept'}).then((res) => {
|
this.$API.system.dept.list.req({ page: 0 , type__in: 'dept'}).then((res) => {
|
||||||
this.deptoptions = genTree(res);
|
this.deptoptions = genTree(res);
|
||||||
|
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
@ -211,7 +211,7 @@
|
||||||
</div>
|
</div>
|
||||||
</el-dialog>
|
</el-dialog>
|
||||||
<el-drawer :size="'50%'" v-model="showLimited" title="作业许可证详情" :close-on-click-modal="false">
|
<el-drawer :size="'50%'" v-model="showLimited" title="作业许可证详情" :close-on-click-modal="false">
|
||||||
<sc-fire :id="projectId"></sc-fire>
|
<sc-fire :id="projectId" :wfId="operationId"></sc-fire>
|
||||||
</el-drawer>
|
</el-drawer>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
@ -381,6 +381,7 @@
|
||||||
this.$API.opm.opl.read.req(this.projectId).then((res) => {
|
this.$API.opm.opl.read.req(this.projectId).then((res) => {
|
||||||
debugger;
|
debugger;
|
||||||
this.oplDetail = res;
|
this.oplDetail = res;
|
||||||
|
this.operationId = res.operation;
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
showMoreInfo() {
|
showMoreInfo() {
|
||||||
|
|
Loading…
Reference in New Issue