Merge branch 'dev' of http://yun.pashanhoo.com:9090/bdc/bdcdj-web into dev
Showing
2 changed files
with
7 additions
and
1 deletions
... | @@ -45,6 +45,9 @@ export default { | ... | @@ -45,6 +45,9 @@ export default { |
45 | var formdata = new FormData(); | 45 | var formdata = new FormData(); |
46 | formdata.append("bsmSlsq", this.bsmSlsq); | 46 | formdata.append("bsmSlsq", this.bsmSlsq); |
47 | formdata.append("bestepid", this.bestepid); | 47 | formdata.append("bestepid", this.bestepid); |
48 | if (this.type) { | ||
49 | formdata.append("type", "READ_ONLY"); | ||
50 | } | ||
48 | stepExpandInfo(formdata).then((res) => { | 51 | stepExpandInfo(formdata).then((res) => { |
49 | if (res.code === 200) { | 52 | if (res.code === 200) { |
50 | this.leftButtonList = res.result.button; | 53 | this.leftButtonList = res.result.button; | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-05-24 15:50:38 | 4 | * @LastEditTime: 2023-06-09 16:55:31 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="container"> | 7 | <div class="container"> |
... | @@ -79,6 +79,8 @@ | ... | @@ -79,6 +79,8 @@ |
79 | bsmSlsq: this.$route.query.bsmSlsq, | 79 | bsmSlsq: this.$route.query.bsmSlsq, |
80 | //当前流程所在环节 | 80 | //当前流程所在环节 |
81 | bestepid: this.$route.query.bestepid, | 81 | bestepid: this.$route.query.bestepid, |
82 | // 判断类型 | ||
83 | type: "READ_ONLY", | ||
82 | //设置那个表单选中 | 84 | //设置那个表单选中 |
83 | tabName: "", | 85 | tabName: "", |
84 | //表单集合 | 86 | //表单集合 |
... | @@ -105,6 +107,7 @@ | ... | @@ -105,6 +107,7 @@ |
105 | }, | 107 | }, |
106 | //申请单元点击事件 | 108 | //申请单元点击事件 |
107 | stepForm (index) { | 109 | stepForm (index) { |
110 | this.currentSelectProps.type = "READ_ONLY" | ||
108 | getStepFormInfo(this.currentSelectProps).then((res) => { | 111 | getStepFormInfo(this.currentSelectProps).then((res) => { |
109 | if (res.code === 200) { | 112 | if (res.code === 200) { |
110 | this.fresh++; | 113 | this.fresh++; | ... | ... |
-
Please register or sign in to post a comment