6e8368d8 by 蔡俊立

按钮表单名称

1 parent 3eafb84c
...@@ -149,6 +149,8 @@ export default { ...@@ -149,6 +149,8 @@ export default {
149 }, 149 },
150 //流程环节操作按钮 150 //流程环节操作按钮
151 operation (index, item) { 151 operation (index, item) {
152 //按钮 B1:流程图 B2:材料分屏 B3:材料导入 B4:登记簿 B5:证书预览 B6:打印申请书
153 //操作按钮 登簿:record 转件:transfer 退回:back 退出:signout
152 let that = this; 154 let that = this;
153 switch (item.value) { 155 switch (item.value) {
154 case "B1": 156 case "B1":
...@@ -157,10 +159,10 @@ export default { ...@@ -157,10 +159,10 @@ export default {
157 this.myValue = true 159 this.myValue = true
158 }) 160 })
159 break; 161 break;
160 case "zsyl": 162 case "B5":
161 this.zsylFlag = true; 163 this.zsylFlag = true;
162 break; 164 break;
163 case "clfp": //材料分屏按钮 165 case "B2": //材料分屏按钮
164 this.splitScreen = this.splitScreen ? false : true; 166 this.splitScreen = this.splitScreen ? false : true;
165 this.$store.dispatch('app/settScreen', this.splitScreen) 167 this.$store.dispatch('app/settScreen', this.splitScreen)
166 if (this.splitScreen) { 168 if (this.splitScreen) {
...@@ -174,9 +176,9 @@ export default { ...@@ -174,9 +176,9 @@ export default {
174 this.tabList.splice(this.clxxIndex, 1, this.clxxTab); 176 this.tabList.splice(this.clxxIndex, 1, this.clxxTab);
175 } 177 }
176 break; 178 break;
177 case "th": //退回按钮 179 case "back": //退回按钮
178 break; 180 break;
179 case "zc": //转件按钮 181 case "transfer": //转件按钮
180 getNextLinkInfo({ 182 getNextLinkInfo({
181 bsmSlsq: this.bsmSlsq, 183 bsmSlsq: this.bsmSlsq,
182 bestepid: this.bestepid, 184 bestepid: this.bestepid,
...@@ -187,10 +189,10 @@ export default { ...@@ -187,10 +189,10 @@ export default {
187 }); 189 });
188 // this.$alert(res.result); 190 // this.$alert(res.result);
189 break; 191 break;
190 case "tc": 192 case "signout":
191 window.close(); 193 window.close();
192 break; 194 break;
193 case "db": 195 case "record":
194 var formdata = new FormData(); 196 var formdata = new FormData();
195 formdata.append("bsmSlsq", this.bsmSlsq); 197 formdata.append("bsmSlsq", this.bsmSlsq);
196 formdata.append("bestepid", this.bestepid); 198 formdata.append("bestepid", this.bestepid);
......