49644b17 by tianhaohao@pashanhoo.com

Merge branch 'dev' of http://yun.pashanhoo.com:9090/bdc/bdcdj-web into dev

2 parents 14cfb545 8afd95f3
......@@ -45,6 +45,9 @@ export default {
var formdata = new FormData();
formdata.append("bsmSlsq", this.bsmSlsq);
formdata.append("bestepid", this.bestepid);
if (this.type) {
formdata.append("type", "READ_ONLY");
}
stepExpandInfo(formdata).then((res) => {
if (res.code === 200) {
this.leftButtonList = res.result.button;
......
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-05-24 15:50:38
* @LastEditTime: 2023-06-09 16:55:31
-->
<template>
<div class="container">
......@@ -79,6 +79,8 @@
bsmSlsq: this.$route.query.bsmSlsq,
//当前流程所在环节
bestepid: this.$route.query.bestepid,
// 判断类型
type: "READ_ONLY",
//设置那个表单选中
tabName: "",
//表单集合
......@@ -105,6 +107,7 @@
},
//申请单元点击事件
stepForm (index) {
this.currentSelectProps.type = "READ_ONLY"
getStepFormInfo(this.currentSelectProps).then((res) => {
if (res.code === 200) {
this.fresh++;
......