hookehuyr

fix

...@@ -772,6 +772,7 @@ export default { ...@@ -772,6 +772,7 @@ export default {
772 const getVersionList = async () => { 772 const getVersionList = async () => {
773 const { code, data } = await flowVersionAPI({ form_id }); 773 const { code, data } = await flowVersionAPI({ form_id });
774 if (code) { 774 if (code) {
775 + state.reloadLoading = false;
775 state.version_list = data;// 流程版本列表 776 state.version_list = data;// 流程版本列表
776 let flow_id = getFlowId(); // 流程id,如果是新的流程,则为空 777 let flow_id = getFlowId(); // 流程id,如果是新的流程,则为空
777 if (state.version_list.length) { // 从外部页面第一次跳到流程编辑页面时,flow_id不存在 778 if (state.version_list.length) { // 从外部页面第一次跳到流程编辑页面时,flow_id不存在
......