zl-lcyq 1.2.1 → 1.2.2
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/lib/zl-lcyq.es.js +28 -1
- package/lib/zl-lcyq.umd.js +107 -103
- package/package.json +1 -1
package/lib/zl-lcyq.es.js
CHANGED
@@ -29483,6 +29483,32 @@ function dialog(type2, options) {
|
|
29483
29483
|
maskClosable
|
29484
29484
|
});
|
29485
29485
|
}
|
29486
|
+
/*!
|
29487
|
+
* vue-router v4.5.0
|
29488
|
+
* (c) 2024 Eduardo San Martin Morote
|
29489
|
+
* @license MIT
|
29490
|
+
*/
|
29491
|
+
var NavigationType;
|
29492
|
+
(function(NavigationType2) {
|
29493
|
+
NavigationType2["pop"] = "pop";
|
29494
|
+
NavigationType2["push"] = "push";
|
29495
|
+
})(NavigationType || (NavigationType = {}));
|
29496
|
+
var NavigationDirection;
|
29497
|
+
(function(NavigationDirection2) {
|
29498
|
+
NavigationDirection2["back"] = "back";
|
29499
|
+
NavigationDirection2["forward"] = "forward";
|
29500
|
+
NavigationDirection2["unknown"] = "";
|
29501
|
+
})(NavigationDirection || (NavigationDirection = {}));
|
29502
|
+
var NavigationFailureType;
|
29503
|
+
(function(NavigationFailureType2) {
|
29504
|
+
NavigationFailureType2[NavigationFailureType2["aborted"] = 4] = "aborted";
|
29505
|
+
NavigationFailureType2[NavigationFailureType2["cancelled"] = 8] = "cancelled";
|
29506
|
+
NavigationFailureType2[NavigationFailureType2["duplicated"] = 16] = "duplicated";
|
29507
|
+
})(NavigationFailureType || (NavigationFailureType = {}));
|
29508
|
+
const routeLocationKey = Symbol("");
|
29509
|
+
function useRoute(_name) {
|
29510
|
+
return inject(routeLocationKey);
|
29511
|
+
}
|
29486
29512
|
function bind$4(fn, thisArg) {
|
29487
29513
|
return function wrap() {
|
29488
29514
|
return fn.apply(thisArg, arguments);
|
@@ -33765,6 +33791,7 @@ const _sfc_main$b = defineComponent({
|
|
33765
33791
|
},
|
33766
33792
|
emits: ["ok"],
|
33767
33793
|
setup(__props, { expose: __expose, emit: __emit }) {
|
33794
|
+
const route = useRoute();
|
33768
33795
|
const { warning: warning2, error: error2 } = useMessage$1();
|
33769
33796
|
const dialog2 = useDialog();
|
33770
33797
|
const props = __props;
|
@@ -33859,7 +33886,7 @@ const _sfc_main$b = defineComponent({
|
|
33859
33886
|
}
|
33860
33887
|
}
|
33861
33888
|
function variableCommon() {
|
33862
|
-
_axios.get(expressionConfig.value.api.commonApi).then((res) => {
|
33889
|
+
_axios.get(expressionConfig.value.api.commonApi, { params: { app_id: route.query.id, app_version_id: route.query.app_version_id } }).then((res) => {
|
33863
33890
|
var _a;
|
33864
33891
|
variableList.value = res.d.map((v, index2) => {
|
33865
33892
|
return {
|