@yxhl/specter-pui-vtk 1.0.70 → 1.0.71

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -98,6 +98,7 @@ const { proxy } = getCurrentInstance();
98
98
  proxy.$vtk.request;
99
99
  proxy.$vtk.storage;
100
100
  proxy.$vtk.message;
101
+ proxy.$vtk.location;
101
102
  proxy.$vtk.Validation;
102
103
  proxy.$vtk.filters;
103
104
  ```
@@ -331,17 +332,19 @@ proxy.$vtk.filters.idcard("330101199001011234");
331
332
  ```js
332
333
  const { proxy } = getCurrentInstance();
333
334
 
334
- const url1 = await proxy.$vtk.filters.appendAppParams(
335
+ const url1 = await proxy.$vtk.location.appendAppParams(
335
336
  "1226652a-3245-11ec-ad84-506b4bfd2204",
336
- "",
337
- { stoken: "123", name: "xiong" }
337
+ { name: "xiong" },
338
+ "fwez"
338
339
  );
339
340
 
340
- const url2 = await proxy.$vtk.filters.appendAppParams(
341
+ const url2 = await proxy.$vtk.location.appendAppParams(
341
342
  "https://mis.hzcl.org.cn/test#/page",
342
- "",
343
- { stoken: "123" }
343
+ { name: "xiong" },
344
+ "fwez"
344
345
  );
346
+
347
+ const stoken = proxy.$vtk.location.GetQueryString("stoken");
345
348
  ```
346
349
 
347
350
  当前逻辑: