1ae926cc by renchao@pashanhoo.com

Merge branch 'dev'

2 parents 07b56b16 29929fe8
/*
* @Description:workFramezu.vue组件的方法 头部按钮弹框方法
* @Autor: miaofang
* @LastEditTime: 2023-12-19 10:02:20
* @LastEditTime: 2024-01-31 17:09:45
*/
import { getPrintTemplateByCode } from "@/api/print";
import { getQllxByBdcdyid } from "@/api/djbDetail.js";
......@@ -85,10 +85,7 @@ export default {
let that = this;
switch (item.value) {
case "B0":
// this.openDialog()
this.$alert('此功能正在开发', '提示', {
confirmButtonText: '确定',
})
this.openDialog()
break;
case "B1":
getWorkFlowImage(this.bsmSlsq, this.bestepid ? this.bestepid : '').then(res => {
......
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-10-10 09:07:29
* @LastEditTime: 2024-01-31 17:10:22
-->
<template>
<div class="container">
......@@ -286,6 +286,16 @@
.catch((res) => {
console.log("错", res)
})
},
openDialog () {
let data = JSON.parse(localStorage.getItem('ywbl'))
let title = ''
if (data?.sqywmc) {
title = "申请业务:" + data?.sqywmc
} else {
title = "申请业务:" + data?.djywmc
}
this.$popupDialog(title, "ywbl/ywsq/selectBdc", { 'sqywInfo': data }, "90%", true)
}
}
}
......
/*
* @Description:
* @Autor: renchao
* @LastEditTime: 2024-01-23 09:57:51
* @LastEditTime: 2024-01-31 16:52:43
*/
import Vue from 'vue'
import { getPrintTemplateByCode } from "@/api/print";
......@@ -81,10 +81,7 @@ export default {
let that = this;
switch (item.value) {
case "B0":
// this.openDialog()
this.$alert('此功能正在开发', '提示', {
confirmButtonText: '确定',
})
this.openDialog()
break;
case "B1":
getWorkFlowImage(this.bsmSlsq, this.bestepid ? this.bestepid : '').then(res => {
......
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2024-01-23 10:25:51
* @LastEditTime: 2024-01-31 16:59:27
-->
<template>
<div class="container">
......@@ -290,6 +290,16 @@
if (p) {
this.ableOperation = this.tabList[a.index].ableOperation;
}
},
openDialog () {
let data = JSON.parse(localStorage.getItem('ywbl'))
let title = ''
if (data?.sqywmc) {
title = "申请业务:" + data?.sqywmc
} else {
title = "申请业务:" + data?.djywmc
}
this.$popupDialog(title, "ywbl/ywsq/selectBdc", { 'sqywInfo': data }, "90%", true)
}
}
}
......