@yxhl/specter-pui-vtk 1.0.69 → 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 +9 -6
- package/dist/specter-pui.es.js +815 -809
- package/dist/specter-pui.es.js.map +1 -1
- package/dist/specter-pui.umd.js +1 -1
- package/dist/specter-pui.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/commons/index.js +2 -2
- package/src/commons/{filters/appParams.js → location.js} +27 -12
- package/src/index.js +3 -3
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.
|
|
335
|
+
const url1 = await proxy.$vtk.location.appendAppParams(
|
|
335
336
|
"1226652a-3245-11ec-ad84-506b4bfd2204",
|
|
336
|
-
"",
|
|
337
|
-
|
|
337
|
+
{ name: "xiong" },
|
|
338
|
+
"fwez"
|
|
338
339
|
);
|
|
339
340
|
|
|
340
|
-
const url2 = await proxy.$vtk.
|
|
341
|
+
const url2 = await proxy.$vtk.location.appendAppParams(
|
|
341
342
|
"https://mis.hzcl.org.cn/test#/page",
|
|
342
|
-
"",
|
|
343
|
-
|
|
343
|
+
{ name: "xiong" },
|
|
344
|
+
"fwez"
|
|
344
345
|
);
|
|
346
|
+
|
|
347
|
+
const stoken = proxy.$vtk.location.GetQueryString("stoken");
|
|
345
348
|
```
|
|
346
349
|
|
|
347
350
|
当前逻辑:
|