wangting
2024-11-19 83e67ff491fd9a789cfecd5b271a83602a134469
Source/plt-web/plt-web-ui/src/components/actions/base/ViewAction.js
@@ -57,20 +57,23 @@
    const name="查看【"+replaceFreeMarker(paramVOS.showname,options.dataStore,options.sourceData)+"】";
    paramVOS.title=name;
  }
  const params= {
    options:options,
    paramVOS:paramVOS,
    saveCallback:callback
    options: {
      sourceData: options.sourceData,
      dataStore: options.dataStore,
      paramVOS: paramVOS
    },
    saveCallback: callback,
    title: paramVOS.title
  }
  store.dispatch("setViewtabparams", params);
  router.push({
    name: "查看详情",
    params:params,
    query:{
      name:paramVOS.title
      name:params.title
    }
    //params:params //加参数后页面刷新时会多一个选项卡
  });
}