This commit is contained in:
parent
59f356fa2e
commit
a1348e5e7d
|
@ -1,8 +1,8 @@
|
||||||
let BASE_URL
|
let BASE_URL
|
||||||
import store from "@/store/index.js"
|
import store from "@/store/index.js"
|
||||||
// 环境
|
// 环境
|
||||||
let env = "dev"
|
// let env = "dev"
|
||||||
// let env = "prod"
|
let env = "prod"
|
||||||
|
|
||||||
|
|
||||||
let HTTP_REQUEST_URL
|
let HTTP_REQUEST_URL
|
||||||
|
@ -10,7 +10,7 @@ let HEADER
|
||||||
if (env == 'dev') {
|
if (env == 'dev') {
|
||||||
BASE_URL = 'http://ceshi-suyuan.lihaink.cn/'
|
BASE_URL = 'http://ceshi-suyuan.lihaink.cn/'
|
||||||
} else if (env = 'prod') {
|
} else if (env = 'prod') {
|
||||||
BASE_URL = 'http://ceshi-suyuan.lihaink.cn/'
|
BASE_URL = 'https://suyuan.lihaink.cn/'
|
||||||
}
|
}
|
||||||
let config = {
|
let config = {
|
||||||
HTTP_REQUEST_URL: BASE_URL,
|
HTTP_REQUEST_URL: BASE_URL,
|
||||||
|
|
|
@ -10,6 +10,7 @@
|
||||||
'<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0' +
|
'<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0' +
|
||||||
(coverSupport ? ', viewport-fit=cover' : '') + '" />')
|
(coverSupport ? ', viewport-fit=cover' : '') + '" />')
|
||||||
</script>
|
</script>
|
||||||
|
<script src="https://unpkg.com/mqtt/dist/mqtt.min.js"></script>
|
||||||
<title></title>
|
<title></title>
|
||||||
<!--preload-links-->
|
<!--preload-links-->
|
||||||
<!--app-context-->
|
<!--app-context-->
|
||||||
|
@ -17,5 +18,8 @@
|
||||||
<body>
|
<body>
|
||||||
<div id="app"><!--app-html--></div>
|
<div id="app"><!--app-html--></div>
|
||||||
<script type="module" src="/main.js"></script>
|
<script type="module" src="/main.js"></script>
|
||||||
|
<script>
|
||||||
|
console.log(mqtt)
|
||||||
|
</script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
|
@ -10,6 +10,9 @@
|
||||||
"usingComponents" : true,
|
"usingComponents" : true,
|
||||||
"nvueStyleCompiler" : "uni-app",
|
"nvueStyleCompiler" : "uni-app",
|
||||||
"compilerVersion" : 3,
|
"compilerVersion" : 3,
|
||||||
|
"compatible" : {
|
||||||
|
"ignoreVersion" : true //true表示忽略版本检查提示框,HBuilderX1.9.0及以上版本支持
|
||||||
|
},
|
||||||
"screenOrientation" : [
|
"screenOrientation" : [
|
||||||
"portrait-primary",
|
"portrait-primary",
|
||||||
"portrait-secondary",
|
"portrait-secondary",
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
{
|
{
|
||||||
"hash": "8ba23d55",
|
"hash": "94d25976",
|
||||||
"browserHash": "9b7bcd37",
|
"browserHash": "565c15ee",
|
||||||
"optimized": {
|
"optimized": {
|
||||||
"uview-plus": {
|
"uview-plus": {
|
||||||
"src": "../../uview-plus/index.js",
|
"src": "../../uview-plus/index.js",
|
||||||
"file": "uview-plus.js",
|
"file": "uview-plus.js",
|
||||||
"fileHash": "5cac3687",
|
"fileHash": "2bbda469",
|
||||||
"needsInterop": false
|
"needsInterop": false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/mixin/mixin.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/mixin/mixin.js
|
||||||
var mixin_default = {
|
var mixin_default = {
|
||||||
// 定义每个组件都可能需要用到的外部样式以及类名
|
// 定义每个组件都可能需要用到的外部样式以及类名
|
||||||
props: {
|
props: {
|
||||||
|
@ -129,10 +129,10 @@ var mixin_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/mixin/mpMixin.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/mixin/mpMixin.js
|
||||||
var mpMixin_default = {};
|
var mpMixin_default = {};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/luch-request/utils.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/luch-request/utils.js
|
||||||
var { toString } = Object.prototype;
|
var { toString } = Object.prototype;
|
||||||
function isArray(val) {
|
function isArray(val) {
|
||||||
return toString.call(val) === "[object Array]";
|
return toString.call(val) === "[object Array]";
|
||||||
|
@ -188,7 +188,7 @@ function isUndefined(val) {
|
||||||
return typeof val === "undefined";
|
return typeof val === "undefined";
|
||||||
}
|
}
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/luch-request/helpers/buildURL.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/luch-request/helpers/buildURL.js
|
||||||
function encode(val) {
|
function encode(val) {
|
||||||
return encodeURIComponent(val).replace(/%40/gi, "@").replace(/%3A/gi, ":").replace(/%24/g, "$").replace(/%2C/gi, ",").replace(/%20/g, "+").replace(/%5B/gi, "[").replace(/%5D/gi, "]");
|
return encodeURIComponent(val).replace(/%40/gi, "@").replace(/%3A/gi, ":").replace(/%24/g, "$").replace(/%2C/gi, ",").replace(/%20/g, "+").replace(/%5B/gi, "[").replace(/%5D/gi, "]");
|
||||||
}
|
}
|
||||||
|
@ -231,17 +231,17 @@ function buildURL(url2, params) {
|
||||||
return url2;
|
return url2;
|
||||||
}
|
}
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/luch-request/helpers/isAbsoluteURL.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/luch-request/helpers/isAbsoluteURL.js
|
||||||
function isAbsoluteURL(url2) {
|
function isAbsoluteURL(url2) {
|
||||||
return /^([a-z][a-z\d+\-.]*:)?\/\//i.test(url2);
|
return /^([a-z][a-z\d+\-.]*:)?\/\//i.test(url2);
|
||||||
}
|
}
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/luch-request/helpers/combineURLs.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/luch-request/helpers/combineURLs.js
|
||||||
function combineURLs(baseURL, relativeURL) {
|
function combineURLs(baseURL, relativeURL) {
|
||||||
return relativeURL ? `${baseURL.replace(/\/+$/, "")}/${relativeURL.replace(/^\/+/, "")}` : baseURL;
|
return relativeURL ? `${baseURL.replace(/\/+$/, "")}/${relativeURL.replace(/^\/+/, "")}` : baseURL;
|
||||||
}
|
}
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/luch-request/core/buildFullPath.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/luch-request/core/buildFullPath.js
|
||||||
function buildFullPath(baseURL, requestedURL) {
|
function buildFullPath(baseURL, requestedURL) {
|
||||||
if (baseURL && !isAbsoluteURL(requestedURL)) {
|
if (baseURL && !isAbsoluteURL(requestedURL)) {
|
||||||
return combineURLs(baseURL, requestedURL);
|
return combineURLs(baseURL, requestedURL);
|
||||||
|
@ -249,7 +249,7 @@ function buildFullPath(baseURL, requestedURL) {
|
||||||
return requestedURL;
|
return requestedURL;
|
||||||
}
|
}
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/luch-request/core/settle.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/luch-request/core/settle.js
|
||||||
function settle(resolve, reject, response) {
|
function settle(resolve, reject, response) {
|
||||||
const { validateStatus: validateStatus2 } = response.config;
|
const { validateStatus: validateStatus2 } = response.config;
|
||||||
const status = response.statusCode;
|
const status = response.statusCode;
|
||||||
|
@ -260,7 +260,7 @@ function settle(resolve, reject, response) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/luch-request/adapters/index.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/luch-request/adapters/index.js
|
||||||
var mergeKeys = (keys, config2) => {
|
var mergeKeys = (keys, config2) => {
|
||||||
const config = {};
|
const config = {};
|
||||||
keys.forEach((prop) => {
|
keys.forEach((prop) => {
|
||||||
|
@ -323,10 +323,10 @@ var adapters_default = (config) => new Promise((resolve, reject) => {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/luch-request/core/dispatchRequest.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/luch-request/core/dispatchRequest.js
|
||||||
var dispatchRequest_default = (config) => adapters_default(config);
|
var dispatchRequest_default = (config) => adapters_default(config);
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/luch-request/core/InterceptorManager.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/luch-request/core/InterceptorManager.js
|
||||||
function InterceptorManager() {
|
function InterceptorManager() {
|
||||||
this.handlers = [];
|
this.handlers = [];
|
||||||
}
|
}
|
||||||
|
@ -351,7 +351,7 @@ InterceptorManager.prototype.forEach = function forEach2(fn) {
|
||||||
};
|
};
|
||||||
var InterceptorManager_default = InterceptorManager;
|
var InterceptorManager_default = InterceptorManager;
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/luch-request/core/mergeConfig.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/luch-request/core/mergeConfig.js
|
||||||
var mergeKeys2 = (keys, globalsConfig, config2) => {
|
var mergeKeys2 = (keys, globalsConfig, config2) => {
|
||||||
const config = {};
|
const config = {};
|
||||||
keys.forEach((prop) => {
|
keys.forEach((prop) => {
|
||||||
|
@ -413,7 +413,7 @@ var mergeConfig_default = (globalsConfig, config2 = {}) => {
|
||||||
return config;
|
return config;
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/luch-request/core/defaults.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/luch-request/core/defaults.js
|
||||||
var defaults_default = {
|
var defaults_default = {
|
||||||
baseURL: "",
|
baseURL: "",
|
||||||
header: {},
|
header: {},
|
||||||
|
@ -428,7 +428,7 @@ var defaults_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/luch-request/utils/clone.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/luch-request/utils/clone.js
|
||||||
var clone = function() {
|
var clone = function() {
|
||||||
"use strict";
|
"use strict";
|
||||||
function _instanceof(obj, type) {
|
function _instanceof(obj, type) {
|
||||||
|
@ -625,7 +625,7 @@ var clone = function() {
|
||||||
}();
|
}();
|
||||||
var clone_default = clone;
|
var clone_default = clone;
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/luch-request/core/Request.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/luch-request/core/Request.js
|
||||||
var Request = class {
|
var Request = class {
|
||||||
/**
|
/**
|
||||||
* @param {Object} arg - 全局配置
|
* @param {Object} arg - 全局配置
|
||||||
|
@ -763,10 +763,10 @@ var Request = class {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/luch-request/index.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/luch-request/index.js
|
||||||
var luch_request_default = Request;
|
var luch_request_default = Request;
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/util/route.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/util/route.js
|
||||||
var Router = class {
|
var Router = class {
|
||||||
constructor() {
|
constructor() {
|
||||||
this.config = {
|
this.config = {
|
||||||
|
@ -866,7 +866,7 @@ var Router = class {
|
||||||
};
|
};
|
||||||
var route_default = new Router().route;
|
var route_default = new Router().route;
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/function/colorGradient.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/function/colorGradient.js
|
||||||
function colorGradient(startColor = "rgb(0, 0, 0)", endColor = "rgb(255, 255, 255)", step = 10) {
|
function colorGradient(startColor = "rgb(0, 0, 0)", endColor = "rgb(255, 255, 255)", step = 10) {
|
||||||
const startRGB = hexToRgb(startColor, false);
|
const startRGB = hexToRgb(startColor, false);
|
||||||
const startR = startRGB[0];
|
const startR = startRGB[0];
|
||||||
|
@ -978,7 +978,7 @@ var colorGradient_default = {
|
||||||
colorToRgba
|
colorToRgba
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/function/test.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/function/test.js
|
||||||
function email(value) {
|
function email(value) {
|
||||||
return /^\w+((-\w+)|(\.\w+))*\@[A-Za-z0-9]+((\.|-)[A-Za-z0-9]+)*\.[A-Za-z0-9]+$/.test(value);
|
return /^\w+((-\w+)|(\.\w+))*\@[A-Za-z0-9]+((\.|-)[A-Za-z0-9]+)*\.[A-Za-z0-9]+$/.test(value);
|
||||||
}
|
}
|
||||||
|
@ -1152,7 +1152,7 @@ var test_default = {
|
||||||
string
|
string
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/function/debounce.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/function/debounce.js
|
||||||
var timeout = null;
|
var timeout = null;
|
||||||
function debounce(func2, wait = 500, immediate = false) {
|
function debounce(func2, wait = 500, immediate = false) {
|
||||||
if (timeout !== null)
|
if (timeout !== null)
|
||||||
|
@ -1172,7 +1172,7 @@ function debounce(func2, wait = 500, immediate = false) {
|
||||||
}
|
}
|
||||||
var debounce_default = debounce;
|
var debounce_default = debounce;
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/function/throttle.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/function/throttle.js
|
||||||
var timer;
|
var timer;
|
||||||
var flag;
|
var flag;
|
||||||
function throttle(func2, wait = 500, immediate = true) {
|
function throttle(func2, wait = 500, immediate = true) {
|
||||||
|
@ -1194,7 +1194,7 @@ function throttle(func2, wait = 500, immediate = true) {
|
||||||
}
|
}
|
||||||
var throttle_default = throttle;
|
var throttle_default = throttle;
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/function/digit.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/function/digit.js
|
||||||
var _boundaryCheckingState = true;
|
var _boundaryCheckingState = true;
|
||||||
function strip(num, precision = 15) {
|
function strip(num, precision = 15) {
|
||||||
return +parseFloat(Number(num).toPrecision(precision));
|
return +parseFloat(Number(num).toPrecision(precision));
|
||||||
|
@ -1258,7 +1258,7 @@ function round(num, ratio) {
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/function/index.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/function/index.js
|
||||||
function range2(min = 0, max = 0, value = 0) {
|
function range2(min = 0, max = 0, value = 0) {
|
||||||
return Math.max(min, Math.min(max, Number(value)));
|
return Math.max(min, Math.min(max, Number(value)));
|
||||||
}
|
}
|
||||||
|
@ -1732,7 +1732,7 @@ var function_default = {
|
||||||
setConfig
|
setConfig
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/config.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/config.js
|
||||||
var version = "3";
|
var version = "3";
|
||||||
if (true) {
|
if (true) {
|
||||||
console.log(`
|
console.log(`
|
||||||
|
@ -1767,7 +1767,7 @@ var config_default = {
|
||||||
unit: "px"
|
unit: "px"
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/actionSheet.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/actionSheet.js
|
||||||
var actionSheet_default = {
|
var actionSheet_default = {
|
||||||
// action-sheet组件
|
// action-sheet组件
|
||||||
actionSheet: {
|
actionSheet: {
|
||||||
|
@ -1785,7 +1785,7 @@ var actionSheet_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/album.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/album.js
|
||||||
var album_default = {
|
var album_default = {
|
||||||
// album 组件
|
// album 组件
|
||||||
album: {
|
album: {
|
||||||
|
@ -1803,7 +1803,7 @@ var album_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/alert.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/alert.js
|
||||||
var alert_default = {
|
var alert_default = {
|
||||||
// alert警告组件
|
// alert警告组件
|
||||||
alert: {
|
alert: {
|
||||||
|
@ -1818,7 +1818,7 @@ var alert_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/avatar.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/avatar.js
|
||||||
var avatar_default = {
|
var avatar_default = {
|
||||||
// avatar 组件
|
// avatar 组件
|
||||||
avatar: {
|
avatar: {
|
||||||
|
@ -1839,7 +1839,7 @@ var avatar_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/avatarGroup.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/avatarGroup.js
|
||||||
var avatarGroup_default = {
|
var avatarGroup_default = {
|
||||||
// avatarGroup 组件
|
// avatarGroup 组件
|
||||||
avatarGroup: {
|
avatarGroup: {
|
||||||
|
@ -1855,7 +1855,7 @@ var avatarGroup_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/backtop.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/backtop.js
|
||||||
var backtop_default = {
|
var backtop_default = {
|
||||||
// backtop组件
|
// backtop组件
|
||||||
backtop: {
|
backtop: {
|
||||||
|
@ -1875,7 +1875,7 @@ var backtop_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/badge.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/badge.js
|
||||||
var badge_default = {
|
var badge_default = {
|
||||||
// 徽标数组件
|
// 徽标数组件
|
||||||
badge: {
|
badge: {
|
||||||
|
@ -1895,7 +1895,7 @@ var badge_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/button.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/button.js
|
||||||
var button_default = {
|
var button_default = {
|
||||||
// button组件
|
// button组件
|
||||||
button: {
|
button: {
|
||||||
|
@ -1930,7 +1930,7 @@ var button_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/calendar.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/calendar.js
|
||||||
var calendar_default = {
|
var calendar_default = {
|
||||||
// calendar 组件
|
// calendar 组件
|
||||||
calendar: {
|
calendar: {
|
||||||
|
@ -1967,7 +1967,7 @@ var calendar_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/carKeyboard.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/carKeyboard.js
|
||||||
var carKeyboard_default = {
|
var carKeyboard_default = {
|
||||||
// 车牌号键盘
|
// 车牌号键盘
|
||||||
carKeyboard: {
|
carKeyboard: {
|
||||||
|
@ -1975,7 +1975,7 @@ var carKeyboard_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/cell.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/cell.js
|
||||||
var cell_default = {
|
var cell_default = {
|
||||||
// cell组件的props
|
// cell组件的props
|
||||||
cell: {
|
cell: {
|
||||||
|
@ -2003,7 +2003,7 @@ var cell_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/cellGroup.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/cellGroup.js
|
||||||
var cellGroup_default = {
|
var cellGroup_default = {
|
||||||
// cell-group组件的props
|
// cell-group组件的props
|
||||||
cellGroup: {
|
cellGroup: {
|
||||||
|
@ -2013,7 +2013,7 @@ var cellGroup_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/checkbox.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/checkbox.js
|
||||||
var checkbox_default = {
|
var checkbox_default = {
|
||||||
// checkbox组件
|
// checkbox组件
|
||||||
checkbox: {
|
checkbox: {
|
||||||
|
@ -2033,7 +2033,7 @@ var checkbox_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/checkboxGroup.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/checkboxGroup.js
|
||||||
var checkboxGroup_default = {
|
var checkboxGroup_default = {
|
||||||
// checkbox-group组件
|
// checkbox-group组件
|
||||||
checkboxGroup: {
|
checkboxGroup: {
|
||||||
|
@ -2055,7 +2055,7 @@ var checkboxGroup_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/circleProgress.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/circleProgress.js
|
||||||
var circleProgress_default = {
|
var circleProgress_default = {
|
||||||
// circleProgress 组件
|
// circleProgress 组件
|
||||||
circleProgress: {
|
circleProgress: {
|
||||||
|
@ -2063,7 +2063,7 @@ var circleProgress_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/code.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/code.js
|
||||||
var code_default = {
|
var code_default = {
|
||||||
// code 组件
|
// code 组件
|
||||||
code: {
|
code: {
|
||||||
|
@ -2076,7 +2076,7 @@ var code_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/codeInput.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/codeInput.js
|
||||||
var codeInput_default = {
|
var codeInput_default = {
|
||||||
// codeInput 组件
|
// codeInput 组件
|
||||||
codeInput: {
|
codeInput: {
|
||||||
|
@ -2098,7 +2098,7 @@ var codeInput_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/col.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/col.js
|
||||||
var col_default = {
|
var col_default = {
|
||||||
// col 组件
|
// col 组件
|
||||||
col: {
|
col: {
|
||||||
|
@ -2110,7 +2110,7 @@ var col_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/collapse.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/collapse.js
|
||||||
var collapse_default = {
|
var collapse_default = {
|
||||||
// collapse 组件
|
// collapse 组件
|
||||||
collapse: {
|
collapse: {
|
||||||
|
@ -2120,7 +2120,7 @@ var collapse_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/collapseItem.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/collapseItem.js
|
||||||
var collapseItem_default = {
|
var collapseItem_default = {
|
||||||
// collapseItem 组件
|
// collapseItem 组件
|
||||||
collapseItem: {
|
collapseItem: {
|
||||||
|
@ -2138,7 +2138,7 @@ var collapseItem_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/columnNotice.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/columnNotice.js
|
||||||
var columnNotice_default = {
|
var columnNotice_default = {
|
||||||
// columnNotice 组件
|
// columnNotice 组件
|
||||||
columnNotice: {
|
columnNotice: {
|
||||||
|
@ -2155,7 +2155,7 @@ var columnNotice_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/countDown.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/countDown.js
|
||||||
var countDown_default = {
|
var countDown_default = {
|
||||||
// u-count-down 计时器组件
|
// u-count-down 计时器组件
|
||||||
countDown: {
|
countDown: {
|
||||||
|
@ -2166,7 +2166,7 @@ var countDown_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/countTo.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/countTo.js
|
||||||
var countTo_default = {
|
var countTo_default = {
|
||||||
// countTo 组件
|
// countTo 组件
|
||||||
countTo: {
|
countTo: {
|
||||||
|
@ -2184,7 +2184,7 @@ var countTo_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/datetimePicker.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/datetimePicker.js
|
||||||
var datetimePicker_default = {
|
var datetimePicker_default = {
|
||||||
// datetimePicker 组件
|
// datetimePicker 组件
|
||||||
datetimePicker: {
|
datetimePicker: {
|
||||||
|
@ -2213,7 +2213,7 @@ var datetimePicker_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/divider.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/divider.js
|
||||||
var divider_default = {
|
var divider_default = {
|
||||||
// divider组件
|
// divider组件
|
||||||
divider: {
|
divider: {
|
||||||
|
@ -2228,7 +2228,7 @@ var divider_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/empty.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/empty.js
|
||||||
var empty_default = {
|
var empty_default = {
|
||||||
// empty组件
|
// empty组件
|
||||||
empty: {
|
empty: {
|
||||||
|
@ -2246,7 +2246,7 @@ var empty_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/form.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/form.js
|
||||||
var form_default = {
|
var form_default = {
|
||||||
// form 组件
|
// form 组件
|
||||||
form: {
|
form: {
|
||||||
|
@ -2261,7 +2261,7 @@ var form_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/formItem.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/formItem.js
|
||||||
var formItem_default = {
|
var formItem_default = {
|
||||||
// formItem 组件
|
// formItem 组件
|
||||||
formItem: {
|
formItem: {
|
||||||
|
@ -2276,7 +2276,7 @@ var formItem_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/gap.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/gap.js
|
||||||
var gap_default = {
|
var gap_default = {
|
||||||
// gap组件
|
// gap组件
|
||||||
gap: {
|
gap: {
|
||||||
|
@ -2288,7 +2288,7 @@ var gap_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/grid.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/grid.js
|
||||||
var grid_default = {
|
var grid_default = {
|
||||||
// grid组件
|
// grid组件
|
||||||
grid: {
|
grid: {
|
||||||
|
@ -2298,7 +2298,7 @@ var grid_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/gridItem.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/gridItem.js
|
||||||
var gridItem_default = {
|
var gridItem_default = {
|
||||||
// grid-item组件
|
// grid-item组件
|
||||||
gridItem: {
|
gridItem: {
|
||||||
|
@ -2307,7 +2307,7 @@ var gridItem_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/icon.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/icon.js
|
||||||
var {
|
var {
|
||||||
color
|
color
|
||||||
} = config_default;
|
} = config_default;
|
||||||
|
@ -2334,7 +2334,7 @@ var icon_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/image.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/image.js
|
||||||
var image_default = {
|
var image_default = {
|
||||||
// image组件
|
// image组件
|
||||||
image: {
|
image: {
|
||||||
|
@ -2357,7 +2357,7 @@ var image_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/indexAnchor.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/indexAnchor.js
|
||||||
var indexAnchor_default = {
|
var indexAnchor_default = {
|
||||||
// indexAnchor 组件
|
// indexAnchor 组件
|
||||||
indexAnchor: {
|
indexAnchor: {
|
||||||
|
@ -2369,7 +2369,7 @@ var indexAnchor_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/indexList.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/indexList.js
|
||||||
var indexList_default = {
|
var indexList_default = {
|
||||||
// indexList 组件
|
// indexList 组件
|
||||||
indexList: {
|
indexList: {
|
||||||
|
@ -2381,7 +2381,7 @@ var indexList_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/input.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/input.js
|
||||||
var input_default = {
|
var input_default = {
|
||||||
// index 组件
|
// index 组件
|
||||||
input: {
|
input: {
|
||||||
|
@ -2422,7 +2422,7 @@ var input_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/keyboard.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/keyboard.js
|
||||||
var keyboard_default = {
|
var keyboard_default = {
|
||||||
// 键盘组件
|
// 键盘组件
|
||||||
keyboard: {
|
keyboard: {
|
||||||
|
@ -2445,7 +2445,7 @@ var keyboard_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/line.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/line.js
|
||||||
var line_default = {
|
var line_default = {
|
||||||
// line组件
|
// line组件
|
||||||
line: {
|
line: {
|
||||||
|
@ -2458,7 +2458,7 @@ var line_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/lineProgress.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/lineProgress.js
|
||||||
var lineProgress_default = {
|
var lineProgress_default = {
|
||||||
// lineProgress 组件
|
// lineProgress 组件
|
||||||
lineProgress: {
|
lineProgress: {
|
||||||
|
@ -2470,7 +2470,7 @@ var lineProgress_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/link.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/link.js
|
||||||
var {
|
var {
|
||||||
color: color2
|
color: color2
|
||||||
} = config_default;
|
} = config_default;
|
||||||
|
@ -2487,7 +2487,7 @@ var link_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/list.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/list.js
|
||||||
var list_default = {
|
var list_default = {
|
||||||
// list 组件
|
// list 组件
|
||||||
list: {
|
list: {
|
||||||
|
@ -2508,7 +2508,7 @@ var list_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/listItem.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/listItem.js
|
||||||
var listItem_default = {
|
var listItem_default = {
|
||||||
// listItem 组件
|
// listItem 组件
|
||||||
listItem: {
|
listItem: {
|
||||||
|
@ -2516,7 +2516,7 @@ var listItem_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/loadingIcon.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/loadingIcon.js
|
||||||
var {
|
var {
|
||||||
color: color3
|
color: color3
|
||||||
} = config_default;
|
} = config_default;
|
||||||
|
@ -2537,7 +2537,7 @@ var loadingIcon_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/loadingPage.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/loadingPage.js
|
||||||
var loadingPage_default = {
|
var loadingPage_default = {
|
||||||
// loading-page组件
|
// loading-page组件
|
||||||
loadingPage: {
|
loadingPage: {
|
||||||
|
@ -2553,7 +2553,7 @@ var loadingPage_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/loadmore.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/loadmore.js
|
||||||
var loadmore_default = {
|
var loadmore_default = {
|
||||||
// loadmore 组件
|
// loadmore 组件
|
||||||
loadmore: {
|
loadmore: {
|
||||||
|
@ -2578,7 +2578,7 @@ var loadmore_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/modal.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/modal.js
|
||||||
var modal_default = {
|
var modal_default = {
|
||||||
// modal 组件
|
// modal 组件
|
||||||
modal: {
|
modal: {
|
||||||
|
@ -2601,7 +2601,7 @@ var modal_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/color.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/color.js
|
||||||
var color4 = {
|
var color4 = {
|
||||||
primary: "#3c9cff",
|
primary: "#3c9cff",
|
||||||
info: "#909399",
|
info: "#909399",
|
||||||
|
@ -2617,7 +2617,7 @@ var color4 = {
|
||||||
};
|
};
|
||||||
var color_default = color4;
|
var color_default = color4;
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/navbar.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/navbar.js
|
||||||
var navbar_default = {
|
var navbar_default = {
|
||||||
// navbar 组件
|
// navbar 组件
|
||||||
navbar: {
|
navbar: {
|
||||||
|
@ -2640,7 +2640,7 @@ var navbar_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/noNetwork.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/noNetwork.js
|
||||||
var noNetwork_default = {
|
var noNetwork_default = {
|
||||||
// noNetwork
|
// noNetwork
|
||||||
noNetwork: {
|
noNetwork: {
|
||||||
|
@ -2650,7 +2650,7 @@ var noNetwork_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/noticeBar.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/noticeBar.js
|
||||||
var noticeBar_default = {
|
var noticeBar_default = {
|
||||||
// noticeBar
|
// noticeBar
|
||||||
noticeBar: {
|
noticeBar: {
|
||||||
|
@ -2670,7 +2670,7 @@ var noticeBar_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/notify.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/notify.js
|
||||||
var notify_default = {
|
var notify_default = {
|
||||||
// notify组件
|
// notify组件
|
||||||
notify: {
|
notify: {
|
||||||
|
@ -2685,7 +2685,7 @@ var notify_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/numberBox.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/numberBox.js
|
||||||
var numberBox_default = {
|
var numberBox_default = {
|
||||||
// 步进器组件
|
// 步进器组件
|
||||||
numberBox: {
|
numberBox: {
|
||||||
|
@ -2713,7 +2713,7 @@ var numberBox_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/numberKeyboard.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/numberKeyboard.js
|
||||||
var numberKeyboard_default = {
|
var numberKeyboard_default = {
|
||||||
// 数字键盘
|
// 数字键盘
|
||||||
numberKeyboard: {
|
numberKeyboard: {
|
||||||
|
@ -2723,7 +2723,7 @@ var numberKeyboard_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/overlay.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/overlay.js
|
||||||
var overlay_default = {
|
var overlay_default = {
|
||||||
// overlay组件
|
// overlay组件
|
||||||
overlay: {
|
overlay: {
|
||||||
|
@ -2734,7 +2734,7 @@ var overlay_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/parse.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/parse.js
|
||||||
var parse_default = {
|
var parse_default = {
|
||||||
// parse
|
// parse
|
||||||
parse: {
|
parse: {
|
||||||
|
@ -2749,7 +2749,7 @@ var parse_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/picker.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/picker.js
|
||||||
var picker_default = {
|
var picker_default = {
|
||||||
// picker
|
// picker
|
||||||
picker: {
|
picker: {
|
||||||
|
@ -2771,7 +2771,7 @@ var picker_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/popup.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/popup.js
|
||||||
var popup_default = {
|
var popup_default = {
|
||||||
// popup组件
|
// popup组件
|
||||||
popup: {
|
popup: {
|
||||||
|
@ -2794,7 +2794,7 @@ var popup_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/radio.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/radio.js
|
||||||
var radio_default = {
|
var radio_default = {
|
||||||
// radio组件
|
// radio组件
|
||||||
radio: {
|
radio: {
|
||||||
|
@ -2814,7 +2814,7 @@ var radio_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/radioGroup.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/radioGroup.js
|
||||||
var radioGroup_default = {
|
var radioGroup_default = {
|
||||||
// radio-group组件
|
// radio-group组件
|
||||||
radioGroup: {
|
radioGroup: {
|
||||||
|
@ -2837,7 +2837,7 @@ var radioGroup_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/rate.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/rate.js
|
||||||
var rate_default = {
|
var rate_default = {
|
||||||
// rate组件
|
// rate组件
|
||||||
rate: {
|
rate: {
|
||||||
|
@ -2856,7 +2856,7 @@ var rate_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/readMore.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/readMore.js
|
||||||
var readMore_default = {
|
var readMore_default = {
|
||||||
// readMore
|
// readMore
|
||||||
readMore: {
|
readMore: {
|
||||||
|
@ -2871,7 +2871,7 @@ var readMore_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/row.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/row.js
|
||||||
var row_default = {
|
var row_default = {
|
||||||
// row
|
// row
|
||||||
row: {
|
row: {
|
||||||
|
@ -2881,7 +2881,7 @@ var row_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/rowNotice.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/rowNotice.js
|
||||||
var rowNotice_default = {
|
var rowNotice_default = {
|
||||||
// rowNotice
|
// rowNotice
|
||||||
rowNotice: {
|
rowNotice: {
|
||||||
|
@ -2895,7 +2895,7 @@ var rowNotice_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/scrollList.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/scrollList.js
|
||||||
var scrollList_default = {
|
var scrollList_default = {
|
||||||
// scrollList
|
// scrollList
|
||||||
scrollList: {
|
scrollList: {
|
||||||
|
@ -2908,7 +2908,7 @@ var scrollList_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/search.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/search.js
|
||||||
var search_default = {
|
var search_default = {
|
||||||
// search
|
// search
|
||||||
search: {
|
search: {
|
||||||
|
@ -2938,7 +2938,7 @@ var search_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/section.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/section.js
|
||||||
var section_default = {
|
var section_default = {
|
||||||
// u-section组件
|
// u-section组件
|
||||||
section: {
|
section: {
|
||||||
|
@ -2955,7 +2955,7 @@ var section_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/skeleton.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/skeleton.js
|
||||||
var skeleton_default = {
|
var skeleton_default = {
|
||||||
// skeleton
|
// skeleton
|
||||||
skeleton: {
|
skeleton: {
|
||||||
|
@ -2973,7 +2973,7 @@ var skeleton_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/slider.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/slider.js
|
||||||
var slider_default = {
|
var slider_default = {
|
||||||
// slider组件
|
// slider组件
|
||||||
slider: {
|
slider: {
|
||||||
|
@ -2992,7 +2992,7 @@ var slider_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/statusBar.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/statusBar.js
|
||||||
var statusBar_default = {
|
var statusBar_default = {
|
||||||
// statusBar
|
// statusBar
|
||||||
statusBar: {
|
statusBar: {
|
||||||
|
@ -3000,7 +3000,7 @@ var statusBar_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/steps.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/steps.js
|
||||||
var steps_default = {
|
var steps_default = {
|
||||||
// steps组件
|
// steps组件
|
||||||
steps: {
|
steps: {
|
||||||
|
@ -3014,7 +3014,7 @@ var steps_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/stepsItem.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/stepsItem.js
|
||||||
var stepsItem_default = {
|
var stepsItem_default = {
|
||||||
// steps-item组件
|
// steps-item组件
|
||||||
stepsItem: {
|
stepsItem: {
|
||||||
|
@ -3025,7 +3025,7 @@ var stepsItem_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/sticky.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/sticky.js
|
||||||
var sticky_default = {
|
var sticky_default = {
|
||||||
// sticky组件
|
// sticky组件
|
||||||
sticky: {
|
sticky: {
|
||||||
|
@ -3038,7 +3038,7 @@ var sticky_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/subsection.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/subsection.js
|
||||||
var subsection_default = {
|
var subsection_default = {
|
||||||
// subsection组件
|
// subsection组件
|
||||||
subsection: {
|
subsection: {
|
||||||
|
@ -3054,7 +3054,7 @@ var subsection_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/swipeAction.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/swipeAction.js
|
||||||
var swipeAction_default = {
|
var swipeAction_default = {
|
||||||
// swipe-action组件
|
// swipe-action组件
|
||||||
swipeAction: {
|
swipeAction: {
|
||||||
|
@ -3062,7 +3062,7 @@ var swipeAction_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/swipeActionItem.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/swipeActionItem.js
|
||||||
var swipeActionItem_default = {
|
var swipeActionItem_default = {
|
||||||
// swipeActionItem 组件
|
// swipeActionItem 组件
|
||||||
swipeActionItem: {
|
swipeActionItem: {
|
||||||
|
@ -3076,7 +3076,7 @@ var swipeActionItem_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/swiper.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/swiper.js
|
||||||
var swiper_default = {
|
var swiper_default = {
|
||||||
// swiper 组件
|
// swiper 组件
|
||||||
swiper: {
|
swiper: {
|
||||||
|
@ -3107,7 +3107,7 @@ var swiper_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/swipterIndicator.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/swipterIndicator.js
|
||||||
var swipterIndicator_default = {
|
var swipterIndicator_default = {
|
||||||
// swiperIndicator 组件
|
// swiperIndicator 组件
|
||||||
swiperIndicator: {
|
swiperIndicator: {
|
||||||
|
@ -3119,7 +3119,7 @@ var swipterIndicator_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/switch.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/switch.js
|
||||||
var switch_default = {
|
var switch_default = {
|
||||||
// switch
|
// switch
|
||||||
switch: {
|
switch: {
|
||||||
|
@ -3136,7 +3136,7 @@ var switch_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/tabbar.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/tabbar.js
|
||||||
var tabbar_default = {
|
var tabbar_default = {
|
||||||
// tabbar
|
// tabbar
|
||||||
tabbar: {
|
tabbar: {
|
||||||
|
@ -3151,7 +3151,7 @@ var tabbar_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/tabbarItem.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/tabbarItem.js
|
||||||
var tabbarItem_default = {
|
var tabbarItem_default = {
|
||||||
//
|
//
|
||||||
tabbarItem: {
|
tabbarItem: {
|
||||||
|
@ -3164,7 +3164,7 @@ var tabbarItem_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/tabs.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/tabs.js
|
||||||
var tabs_default = {
|
var tabs_default = {
|
||||||
//
|
//
|
||||||
tabs: {
|
tabs: {
|
||||||
|
@ -3189,7 +3189,7 @@ var tabs_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/tag.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/tag.js
|
||||||
var tag_default = {
|
var tag_default = {
|
||||||
// tag 组件
|
// tag 组件
|
||||||
tag: {
|
tag: {
|
||||||
|
@ -3211,7 +3211,7 @@ var tag_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/text.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/text.js
|
||||||
var text_default = {
|
var text_default = {
|
||||||
// text 组件
|
// text 组件
|
||||||
text: {
|
text: {
|
||||||
|
@ -3241,7 +3241,7 @@ var text_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/textarea.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/textarea.js
|
||||||
var textarea_default = {
|
var textarea_default = {
|
||||||
// textarea 组件
|
// textarea 组件
|
||||||
textarea: {
|
textarea: {
|
||||||
|
@ -3270,7 +3270,7 @@ var textarea_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/toast.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/toast.js
|
||||||
var toast_default = {
|
var toast_default = {
|
||||||
// toast组件
|
// toast组件
|
||||||
toast: {
|
toast: {
|
||||||
|
@ -3293,7 +3293,7 @@ var toast_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/toolbar.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/toolbar.js
|
||||||
var toolbar_default = {
|
var toolbar_default = {
|
||||||
// toolbar 组件
|
// toolbar 组件
|
||||||
toolbar: {
|
toolbar: {
|
||||||
|
@ -3306,7 +3306,7 @@ var toolbar_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/tooltip.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/tooltip.js
|
||||||
var tooltip_default = {
|
var tooltip_default = {
|
||||||
// tooltip 组件
|
// tooltip 组件
|
||||||
tooltip: {
|
tooltip: {
|
||||||
|
@ -3324,7 +3324,7 @@ var tooltip_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/transition.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/transition.js
|
||||||
var transition_default = {
|
var transition_default = {
|
||||||
// transition动画组件的props
|
// transition动画组件的props
|
||||||
transition: {
|
transition: {
|
||||||
|
@ -3335,7 +3335,7 @@ var transition_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props/upload.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props/upload.js
|
||||||
var upload_default = {
|
var upload_default = {
|
||||||
// upload组件
|
// upload组件
|
||||||
upload: {
|
upload: {
|
||||||
|
@ -3364,7 +3364,7 @@ var upload_default = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/props.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/props.js
|
||||||
var {
|
var {
|
||||||
color: color5
|
color: color5
|
||||||
} = config_default;
|
} = config_default;
|
||||||
|
@ -3459,7 +3459,7 @@ var props_default = {
|
||||||
...upload_default
|
...upload_default
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/config/zIndex.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/config/zIndex.js
|
||||||
var zIndex_default = {
|
var zIndex_default = {
|
||||||
toast: 10090,
|
toast: 10090,
|
||||||
noNetwork: 10080,
|
noNetwork: 10080,
|
||||||
|
@ -3472,13 +3472,13 @@ var zIndex_default = {
|
||||||
indexListSticky: 965
|
indexListSticky: 965
|
||||||
};
|
};
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/libs/function/platform.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/libs/function/platform.js
|
||||||
var platform = "none";
|
var platform = "none";
|
||||||
platform = "vue3";
|
platform = "vue3";
|
||||||
platform = "h5";
|
platform = "h5";
|
||||||
var platform_default = platform;
|
var platform_default = platform;
|
||||||
|
|
||||||
// ../../../../../books/apps/LiHai/TraceabilityAPP/node_modules/uview-plus/index.js
|
// ../../../../../Project/uniapp/TraceabilityAPP/TraceabilityAPP/node_modules/uview-plus/index.js
|
||||||
var pleaseSetTranspileDependencies = {};
|
var pleaseSetTranspileDependencies = {};
|
||||||
var babelTest = pleaseSetTranspileDependencies == null ? void 0 : pleaseSetTranspileDependencies.test;
|
var babelTest = pleaseSetTranspileDependencies == null ? void 0 : pleaseSetTranspileDependencies.test;
|
||||||
var $u = {
|
var $u = {
|
||||||
|
|
|
@ -5,15 +5,105 @@
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"mqtt": "^5.3.3",
|
||||||
"pinia": "^2.0.33",
|
"pinia": "^2.0.33",
|
||||||
"uview-plus": "^3.1.38"
|
"uview-plus": "^3.1.38"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/@babel/runtime": {
|
||||||
|
"version": "7.23.6",
|
||||||
|
"resolved": "https://registry.npmmirror.com/@babel/runtime/-/runtime-7.23.6.tgz",
|
||||||
|
"integrity": "sha512-zHd0eUrf5GZoOWVCXp6koAKQTfZV07eit6bGPmJgnZdnSAvvZee6zniW2XMF7Cmc4ISOOnPy3QaSiIJGJkVEDQ==",
|
||||||
|
"dependencies": {
|
||||||
|
"regenerator-runtime": "^0.14.0"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">=6.9.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@types/node": {
|
||||||
|
"version": "20.10.5",
|
||||||
|
"resolved": "https://registry.npmmirror.com/@types/node/-/node-20.10.5.tgz",
|
||||||
|
"integrity": "sha512-nNPsNE65wjMxEKI93yOP+NPGGBJz/PoN3kZsVLee0XMiJolxSekEVD8wRwBUBqkwc7UWop0edW50yrCQW4CyRw==",
|
||||||
|
"dependencies": {
|
||||||
|
"undici-types": "~5.26.4"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@types/readable-stream": {
|
||||||
|
"version": "4.0.10",
|
||||||
|
"resolved": "https://registry.npmmirror.com/@types/readable-stream/-/readable-stream-4.0.10.tgz",
|
||||||
|
"integrity": "sha512-AbUKBjcC8SHmImNi4yK2bbjogQlkFSg7shZCcicxPQapniOlajG8GCc39lvXzCWX4lLRRs7DM3VAeSlqmEVZUA==",
|
||||||
|
"dependencies": {
|
||||||
|
"@types/node": "*",
|
||||||
|
"safe-buffer": "~5.1.1"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@types/ws": {
|
||||||
|
"version": "8.5.10",
|
||||||
|
"resolved": "https://registry.npmmirror.com/@types/ws/-/ws-8.5.10.tgz",
|
||||||
|
"integrity": "sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==",
|
||||||
|
"dependencies": {
|
||||||
|
"@types/node": "*"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/@vue/devtools-api": {
|
"node_modules/@vue/devtools-api": {
|
||||||
"version": "6.5.1",
|
"version": "6.5.1",
|
||||||
"resolved": "https://registry.npmmirror.com/@vue/devtools-api/-/devtools-api-6.5.1.tgz",
|
"resolved": "https://registry.npmmirror.com/@vue/devtools-api/-/devtools-api-6.5.1.tgz",
|
||||||
"integrity": "sha512-+KpckaAQyfbvshdDW5xQylLni1asvNSGme1JFs8I1+/H5pHEhqUKMEQD/qn3Nx5+/nycBq11qAEi8lk+LXI2dA=="
|
"integrity": "sha512-+KpckaAQyfbvshdDW5xQylLni1asvNSGme1JFs8I1+/H5pHEhqUKMEQD/qn3Nx5+/nycBq11qAEi8lk+LXI2dA=="
|
||||||
},
|
},
|
||||||
|
"node_modules/abort-controller": {
|
||||||
|
"version": "3.0.0",
|
||||||
|
"resolved": "https://registry.npmmirror.com/abort-controller/-/abort-controller-3.0.0.tgz",
|
||||||
|
"integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==",
|
||||||
|
"dependencies": {
|
||||||
|
"event-target-shim": "^5.0.0"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">=6.5"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/balanced-match": {
|
||||||
|
"version": "1.0.2",
|
||||||
|
"resolved": "https://registry.npmmirror.com/balanced-match/-/balanced-match-1.0.2.tgz",
|
||||||
|
"integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
|
||||||
|
},
|
||||||
|
"node_modules/base64-js": {
|
||||||
|
"version": "1.5.1",
|
||||||
|
"resolved": "https://registry.npmmirror.com/base64-js/-/base64-js-1.5.1.tgz",
|
||||||
|
"integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA=="
|
||||||
|
},
|
||||||
|
"node_modules/bl": {
|
||||||
|
"version": "6.0.9",
|
||||||
|
"resolved": "https://registry.npmmirror.com/bl/-/bl-6.0.9.tgz",
|
||||||
|
"integrity": "sha512-Vh+M9HMfeTST9rkkQ1utRnOeABNcBO3i0dJMFkenCv7JIp76XWx8uQOGpaXyXVyenrLDZsdAHXbf0Cz18Eb0fw==",
|
||||||
|
"dependencies": {
|
||||||
|
"buffer": "^6.0.3",
|
||||||
|
"inherits": "^2.0.4",
|
||||||
|
"readable-stream": "^4.2.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/brace-expansion": {
|
||||||
|
"version": "2.0.1",
|
||||||
|
"resolved": "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-2.0.1.tgz",
|
||||||
|
"integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
|
||||||
|
"dependencies": {
|
||||||
|
"balanced-match": "^1.0.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/buffer": {
|
||||||
|
"version": "6.0.3",
|
||||||
|
"resolved": "https://registry.npmmirror.com/buffer/-/buffer-6.0.3.tgz",
|
||||||
|
"integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==",
|
||||||
|
"dependencies": {
|
||||||
|
"base64-js": "^1.3.1",
|
||||||
|
"ieee754": "^1.2.1"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/buffer-from": {
|
||||||
|
"version": "1.1.2",
|
||||||
|
"resolved": "https://registry.npmmirror.com/buffer-from/-/buffer-from-1.1.2.tgz",
|
||||||
|
"integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ=="
|
||||||
|
},
|
||||||
"node_modules/clipboard": {
|
"node_modules/clipboard": {
|
||||||
"version": "2.0.11",
|
"version": "2.0.11",
|
||||||
"resolved": "https://registry.npmjs.org/clipboard/-/clipboard-2.0.11.tgz",
|
"resolved": "https://registry.npmjs.org/clipboard/-/clipboard-2.0.11.tgz",
|
||||||
|
@ -25,18 +115,114 @@
|
||||||
"tiny-emitter": "^2.0.0"
|
"tiny-emitter": "^2.0.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/commist": {
|
||||||
|
"version": "3.2.0",
|
||||||
|
"resolved": "https://registry.npmmirror.com/commist/-/commist-3.2.0.tgz",
|
||||||
|
"integrity": "sha512-4PIMoPniho+LqXmpS5d3NuGYncG6XWlkBSVGiWycL22dd42OYdUGil2CWuzklaJoNxyxUSpO4MKIBU94viWNAw=="
|
||||||
|
},
|
||||||
|
"node_modules/concat-stream": {
|
||||||
|
"version": "2.0.0",
|
||||||
|
"resolved": "https://registry.npmmirror.com/concat-stream/-/concat-stream-2.0.0.tgz",
|
||||||
|
"integrity": "sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==",
|
||||||
|
"engines": [
|
||||||
|
"node >= 6.0"
|
||||||
|
],
|
||||||
|
"dependencies": {
|
||||||
|
"buffer-from": "^1.0.0",
|
||||||
|
"inherits": "^2.0.3",
|
||||||
|
"readable-stream": "^3.0.2",
|
||||||
|
"typedarray": "^0.0.6"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/concat-stream/node_modules/readable-stream": {
|
||||||
|
"version": "3.6.2",
|
||||||
|
"resolved": "https://registry.npmmirror.com/readable-stream/-/readable-stream-3.6.2.tgz",
|
||||||
|
"integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==",
|
||||||
|
"dependencies": {
|
||||||
|
"inherits": "^2.0.3",
|
||||||
|
"string_decoder": "^1.1.1",
|
||||||
|
"util-deprecate": "^1.0.1"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">= 6"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/dayjs": {
|
"node_modules/dayjs": {
|
||||||
"version": "1.11.10",
|
"version": "1.11.10",
|
||||||
"resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.10.tgz",
|
"resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.10.tgz",
|
||||||
"integrity": "sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ==",
|
"integrity": "sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ==",
|
||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
},
|
},
|
||||||
|
"node_modules/debug": {
|
||||||
|
"version": "4.3.4",
|
||||||
|
"resolved": "https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz",
|
||||||
|
"integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==",
|
||||||
|
"dependencies": {
|
||||||
|
"ms": "2.1.2"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">=6.0"
|
||||||
|
},
|
||||||
|
"peerDependenciesMeta": {
|
||||||
|
"supports-color": {
|
||||||
|
"optional": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/delegate": {
|
"node_modules/delegate": {
|
||||||
"version": "3.2.0",
|
"version": "3.2.0",
|
||||||
"resolved": "https://registry.npmjs.org/delegate/-/delegate-3.2.0.tgz",
|
"resolved": "https://registry.npmjs.org/delegate/-/delegate-3.2.0.tgz",
|
||||||
"integrity": "sha512-IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw==",
|
"integrity": "sha512-IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw==",
|
||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
},
|
},
|
||||||
|
"node_modules/event-target-shim": {
|
||||||
|
"version": "5.0.1",
|
||||||
|
"resolved": "https://registry.npmmirror.com/event-target-shim/-/event-target-shim-5.0.1.tgz",
|
||||||
|
"integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==",
|
||||||
|
"engines": {
|
||||||
|
"node": ">=6"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/events": {
|
||||||
|
"version": "3.3.0",
|
||||||
|
"resolved": "https://registry.npmmirror.com/events/-/events-3.3.0.tgz",
|
||||||
|
"integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==",
|
||||||
|
"engines": {
|
||||||
|
"node": ">=0.8.x"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/fast-unique-numbers": {
|
||||||
|
"version": "8.0.12",
|
||||||
|
"resolved": "https://registry.npmmirror.com/fast-unique-numbers/-/fast-unique-numbers-8.0.12.tgz",
|
||||||
|
"integrity": "sha512-Z4AJueNDnuC/sLxeQqrHP4zgqcBIeQQLbQ0hEx1a7m6Wf7ERrdAyR7CkGfoEFWm9Qla7dpLt0eWPyiO18gqj0A==",
|
||||||
|
"dependencies": {
|
||||||
|
"@babel/runtime": "^7.23.5",
|
||||||
|
"tslib": "^2.6.2"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">=16.1.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/fs.realpath": {
|
||||||
|
"version": "1.0.0",
|
||||||
|
"resolved": "https://registry.npmmirror.com/fs.realpath/-/fs.realpath-1.0.0.tgz",
|
||||||
|
"integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw=="
|
||||||
|
},
|
||||||
|
"node_modules/glob": {
|
||||||
|
"version": "8.1.0",
|
||||||
|
"resolved": "https://registry.npmmirror.com/glob/-/glob-8.1.0.tgz",
|
||||||
|
"integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==",
|
||||||
|
"dependencies": {
|
||||||
|
"fs.realpath": "^1.0.0",
|
||||||
|
"inflight": "^1.0.4",
|
||||||
|
"inherits": "2",
|
||||||
|
"minimatch": "^5.0.1",
|
||||||
|
"once": "^1.3.0"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">=12"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/good-listener": {
|
"node_modules/good-listener": {
|
||||||
"version": "1.2.2",
|
"version": "1.2.2",
|
||||||
"resolved": "https://registry.npmjs.org/good-listener/-/good-listener-1.2.2.tgz",
|
"resolved": "https://registry.npmjs.org/good-listener/-/good-listener-1.2.2.tgz",
|
||||||
|
@ -46,6 +232,140 @@
|
||||||
"delegate": "^3.1.2"
|
"delegate": "^3.1.2"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/help-me": {
|
||||||
|
"version": "4.2.0",
|
||||||
|
"resolved": "https://registry.npmmirror.com/help-me/-/help-me-4.2.0.tgz",
|
||||||
|
"integrity": "sha512-TAOnTB8Tz5Dw8penUuzHVrKNKlCIbwwbHnXraNJxPwf8LRtE2HlM84RYuezMFcwOJmoYOCWVDyJ8TQGxn9PgxA==",
|
||||||
|
"dependencies": {
|
||||||
|
"glob": "^8.0.0",
|
||||||
|
"readable-stream": "^3.6.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/help-me/node_modules/readable-stream": {
|
||||||
|
"version": "3.6.2",
|
||||||
|
"resolved": "https://registry.npmmirror.com/readable-stream/-/readable-stream-3.6.2.tgz",
|
||||||
|
"integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==",
|
||||||
|
"dependencies": {
|
||||||
|
"inherits": "^2.0.3",
|
||||||
|
"string_decoder": "^1.1.1",
|
||||||
|
"util-deprecate": "^1.0.1"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">= 6"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/ieee754": {
|
||||||
|
"version": "1.2.1",
|
||||||
|
"resolved": "https://registry.npmmirror.com/ieee754/-/ieee754-1.2.1.tgz",
|
||||||
|
"integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA=="
|
||||||
|
},
|
||||||
|
"node_modules/inflight": {
|
||||||
|
"version": "1.0.6",
|
||||||
|
"resolved": "https://registry.npmmirror.com/inflight/-/inflight-1.0.6.tgz",
|
||||||
|
"integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
|
||||||
|
"dependencies": {
|
||||||
|
"once": "^1.3.0",
|
||||||
|
"wrappy": "1"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/inherits": {
|
||||||
|
"version": "2.0.4",
|
||||||
|
"resolved": "https://registry.npmmirror.com/inherits/-/inherits-2.0.4.tgz",
|
||||||
|
"integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
|
||||||
|
},
|
||||||
|
"node_modules/js-sdsl": {
|
||||||
|
"version": "4.3.0",
|
||||||
|
"resolved": "https://registry.npmmirror.com/js-sdsl/-/js-sdsl-4.3.0.tgz",
|
||||||
|
"integrity": "sha512-mifzlm2+5nZ+lEcLJMoBK0/IH/bDg8XnJfd/Wq6IP+xoCjLZsTOnV2QpxlVbX9bMnkl5PdEjNtBJ9Cj1NjifhQ=="
|
||||||
|
},
|
||||||
|
"node_modules/lru-cache": {
|
||||||
|
"version": "10.1.0",
|
||||||
|
"resolved": "https://registry.npmmirror.com/lru-cache/-/lru-cache-10.1.0.tgz",
|
||||||
|
"integrity": "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==",
|
||||||
|
"engines": {
|
||||||
|
"node": "14 || >=16.14"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/minimatch": {
|
||||||
|
"version": "5.1.6",
|
||||||
|
"resolved": "https://registry.npmmirror.com/minimatch/-/minimatch-5.1.6.tgz",
|
||||||
|
"integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==",
|
||||||
|
"dependencies": {
|
||||||
|
"brace-expansion": "^2.0.1"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">=10"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/minimist": {
|
||||||
|
"version": "1.2.8",
|
||||||
|
"resolved": "https://registry.npmmirror.com/minimist/-/minimist-1.2.8.tgz",
|
||||||
|
"integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA=="
|
||||||
|
},
|
||||||
|
"node_modules/mqtt": {
|
||||||
|
"version": "5.3.3",
|
||||||
|
"resolved": "https://registry.npmmirror.com/mqtt/-/mqtt-5.3.3.tgz",
|
||||||
|
"integrity": "sha512-iy/9I81xnmYxENKL91hdiJ1LOkNYygCE0xCUtLeEo3BjQHraOky5gB/X3aPnvZ2fqlm1C0BhLmVcL6NRJ/U4tA==",
|
||||||
|
"dependencies": {
|
||||||
|
"@types/readable-stream": "^4.0.5",
|
||||||
|
"@types/ws": "^8.5.9",
|
||||||
|
"commist": "^3.2.0",
|
||||||
|
"concat-stream": "^2.0.0",
|
||||||
|
"debug": "^4.3.4",
|
||||||
|
"help-me": "^4.2.0",
|
||||||
|
"lru-cache": "^10.0.1",
|
||||||
|
"minimist": "^1.2.8",
|
||||||
|
"mqtt": "^5.2.0",
|
||||||
|
"mqtt-packet": "^9.0.0",
|
||||||
|
"number-allocator": "^1.0.14",
|
||||||
|
"readable-stream": "^4.4.2",
|
||||||
|
"reinterval": "^1.1.0",
|
||||||
|
"rfdc": "^1.3.0",
|
||||||
|
"split2": "^4.2.0",
|
||||||
|
"worker-timers": "^7.0.78",
|
||||||
|
"ws": "^8.14.2"
|
||||||
|
},
|
||||||
|
"bin": {
|
||||||
|
"mqtt": "build/bin/mqtt.js",
|
||||||
|
"mqtt_pub": "build/bin/pub.js",
|
||||||
|
"mqtt_sub": "build/bin/sub.js"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">=16.0.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/mqtt-packet": {
|
||||||
|
"version": "9.0.0",
|
||||||
|
"resolved": "https://registry.npmmirror.com/mqtt-packet/-/mqtt-packet-9.0.0.tgz",
|
||||||
|
"integrity": "sha512-8v+HkX+fwbodsWAZIZTI074XIoxVBOmPeggQuDFCGg1SqNcC+uoRMWu7J6QlJPqIUIJXmjNYYHxBBLr1Y/Df4w==",
|
||||||
|
"dependencies": {
|
||||||
|
"bl": "^6.0.8",
|
||||||
|
"debug": "^4.3.4",
|
||||||
|
"process-nextick-args": "^2.0.1"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/ms": {
|
||||||
|
"version": "2.1.2",
|
||||||
|
"resolved": "https://registry.npmmirror.com/ms/-/ms-2.1.2.tgz",
|
||||||
|
"integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
|
||||||
|
},
|
||||||
|
"node_modules/number-allocator": {
|
||||||
|
"version": "1.0.14",
|
||||||
|
"resolved": "https://registry.npmmirror.com/number-allocator/-/number-allocator-1.0.14.tgz",
|
||||||
|
"integrity": "sha512-OrL44UTVAvkKdOdRQZIJpLkAdjXGTRda052sN4sO77bKEzYYqWKMBjQvrJFzqygI99gL6Z4u2xctPW1tB8ErvA==",
|
||||||
|
"dependencies": {
|
||||||
|
"debug": "^4.3.1",
|
||||||
|
"js-sdsl": "4.3.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/once": {
|
||||||
|
"version": "1.4.0",
|
||||||
|
"resolved": "https://registry.npmmirror.com/once/-/once-1.4.0.tgz",
|
||||||
|
"integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
|
||||||
|
"dependencies": {
|
||||||
|
"wrappy": "1"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/pinia": {
|
"node_modules/pinia": {
|
||||||
"version": "2.0.33",
|
"version": "2.0.33",
|
||||||
"resolved": "https://registry.npmmirror.com/pinia/-/pinia-2.0.33.tgz",
|
"resolved": "https://registry.npmmirror.com/pinia/-/pinia-2.0.33.tgz",
|
||||||
|
@ -68,18 +388,107 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/process": {
|
||||||
|
"version": "0.11.10",
|
||||||
|
"resolved": "https://registry.npmmirror.com/process/-/process-0.11.10.tgz",
|
||||||
|
"integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==",
|
||||||
|
"engines": {
|
||||||
|
"node": ">= 0.6.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/process-nextick-args": {
|
||||||
|
"version": "2.0.1",
|
||||||
|
"resolved": "https://registry.npmmirror.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
|
||||||
|
"integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag=="
|
||||||
|
},
|
||||||
|
"node_modules/readable-stream": {
|
||||||
|
"version": "4.5.1",
|
||||||
|
"resolved": "https://registry.npmmirror.com/readable-stream/-/readable-stream-4.5.1.tgz",
|
||||||
|
"integrity": "sha512-uQjbf34vmf/asGnOHQEw07Q4llgMACQZTWWa4MmICS0IKJoHbLwKCy71H3eR99Dw5iYejc6W+pqZZEeqRtUFAw==",
|
||||||
|
"dependencies": {
|
||||||
|
"abort-controller": "^3.0.0",
|
||||||
|
"buffer": "^6.0.3",
|
||||||
|
"events": "^3.3.0",
|
||||||
|
"process": "^0.11.10",
|
||||||
|
"string_decoder": "^1.3.0"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/regenerator-runtime": {
|
||||||
|
"version": "0.14.1",
|
||||||
|
"resolved": "https://registry.npmmirror.com/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz",
|
||||||
|
"integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw=="
|
||||||
|
},
|
||||||
|
"node_modules/reinterval": {
|
||||||
|
"version": "1.1.0",
|
||||||
|
"resolved": "https://registry.npmmirror.com/reinterval/-/reinterval-1.1.0.tgz",
|
||||||
|
"integrity": "sha512-QIRet3SYrGp0HUHO88jVskiG6seqUGC5iAG7AwI/BV4ypGcuqk9Du6YQBUOUqm9c8pw1eyLoIaONifRua1lsEQ=="
|
||||||
|
},
|
||||||
|
"node_modules/rfdc": {
|
||||||
|
"version": "1.3.0",
|
||||||
|
"resolved": "https://registry.npmmirror.com/rfdc/-/rfdc-1.3.0.tgz",
|
||||||
|
"integrity": "sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA=="
|
||||||
|
},
|
||||||
|
"node_modules/safe-buffer": {
|
||||||
|
"version": "5.1.2",
|
||||||
|
"resolved": "https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.1.2.tgz",
|
||||||
|
"integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="
|
||||||
|
},
|
||||||
"node_modules/select": {
|
"node_modules/select": {
|
||||||
"version": "1.1.2",
|
"version": "1.1.2",
|
||||||
"resolved": "https://registry.npmjs.org/select/-/select-1.1.2.tgz",
|
"resolved": "https://registry.npmjs.org/select/-/select-1.1.2.tgz",
|
||||||
"integrity": "sha512-OwpTSOfy6xSs1+pwcNrv0RBMOzI39Lp3qQKUTPVVPRjCdNa5JH/oPRiqsesIskK8TVgmRiHwO4KXlV2Li9dANA==",
|
"integrity": "sha512-OwpTSOfy6xSs1+pwcNrv0RBMOzI39Lp3qQKUTPVVPRjCdNa5JH/oPRiqsesIskK8TVgmRiHwO4KXlV2Li9dANA==",
|
||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
},
|
},
|
||||||
|
"node_modules/split2": {
|
||||||
|
"version": "4.2.0",
|
||||||
|
"resolved": "https://registry.npmmirror.com/split2/-/split2-4.2.0.tgz",
|
||||||
|
"integrity": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==",
|
||||||
|
"engines": {
|
||||||
|
"node": ">= 10.x"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/string_decoder": {
|
||||||
|
"version": "1.3.0",
|
||||||
|
"resolved": "https://registry.npmmirror.com/string_decoder/-/string_decoder-1.3.0.tgz",
|
||||||
|
"integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
|
||||||
|
"dependencies": {
|
||||||
|
"safe-buffer": "~5.2.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/string_decoder/node_modules/safe-buffer": {
|
||||||
|
"version": "5.2.1",
|
||||||
|
"resolved": "https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.2.1.tgz",
|
||||||
|
"integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="
|
||||||
|
},
|
||||||
"node_modules/tiny-emitter": {
|
"node_modules/tiny-emitter": {
|
||||||
"version": "2.1.0",
|
"version": "2.1.0",
|
||||||
"resolved": "https://registry.npmjs.org/tiny-emitter/-/tiny-emitter-2.1.0.tgz",
|
"resolved": "https://registry.npmjs.org/tiny-emitter/-/tiny-emitter-2.1.0.tgz",
|
||||||
"integrity": "sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q==",
|
"integrity": "sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q==",
|
||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
},
|
},
|
||||||
|
"node_modules/tslib": {
|
||||||
|
"version": "2.6.2",
|
||||||
|
"resolved": "https://registry.npmmirror.com/tslib/-/tslib-2.6.2.tgz",
|
||||||
|
"integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q=="
|
||||||
|
},
|
||||||
|
"node_modules/typedarray": {
|
||||||
|
"version": "0.0.6",
|
||||||
|
"resolved": "https://registry.npmmirror.com/typedarray/-/typedarray-0.0.6.tgz",
|
||||||
|
"integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA=="
|
||||||
|
},
|
||||||
|
"node_modules/undici-types": {
|
||||||
|
"version": "5.26.5",
|
||||||
|
"resolved": "https://registry.npmmirror.com/undici-types/-/undici-types-5.26.5.tgz",
|
||||||
|
"integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA=="
|
||||||
|
},
|
||||||
|
"node_modules/util-deprecate": {
|
||||||
|
"version": "1.0.2",
|
||||||
|
"resolved": "https://registry.npmmirror.com/util-deprecate/-/util-deprecate-1.0.2.tgz",
|
||||||
|
"integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="
|
||||||
|
},
|
||||||
"node_modules/uview-plus": {
|
"node_modules/uview-plus": {
|
||||||
"version": "3.1.38",
|
"version": "3.1.38",
|
||||||
"resolved": "https://registry.npmjs.org/uview-plus/-/uview-plus-3.1.38.tgz",
|
"resolved": "https://registry.npmjs.org/uview-plus/-/uview-plus-3.1.38.tgz",
|
||||||
|
@ -119,14 +528,153 @@
|
||||||
"optional": true
|
"optional": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"node_modules/worker-timers": {
|
||||||
|
"version": "7.0.80",
|
||||||
|
"resolved": "https://registry.npmmirror.com/worker-timers/-/worker-timers-7.0.80.tgz",
|
||||||
|
"integrity": "sha512-bYSAPNVR0Nrm7hTM3hQOxM3x+D9dXFG6kZ0BBqFyRu0BUGC5+DLLK5Sx281hCaNzOGMNcUMEaoeErx3Yuf7XIw==",
|
||||||
|
"dependencies": {
|
||||||
|
"@babel/runtime": "^7.23.6",
|
||||||
|
"tslib": "^2.6.2",
|
||||||
|
"worker-timers-broker": "^6.0.100",
|
||||||
|
"worker-timers-worker": "^7.0.64"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/worker-timers-broker": {
|
||||||
|
"version": "6.0.100",
|
||||||
|
"resolved": "https://registry.npmmirror.com/worker-timers-broker/-/worker-timers-broker-6.0.100.tgz",
|
||||||
|
"integrity": "sha512-sXF1NpuT+FlJvONSbdZ6wNB15oNGg/P6PvCZDMHWmI6s7bHEb0zQ7cTnk9k+96/3pd8SpbXFuM0/HcHVc2alDQ==",
|
||||||
|
"dependencies": {
|
||||||
|
"@babel/runtime": "^7.23.6",
|
||||||
|
"fast-unique-numbers": "^8.0.12",
|
||||||
|
"tslib": "^2.6.2",
|
||||||
|
"worker-timers-worker": "^7.0.64"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/worker-timers-worker": {
|
||||||
|
"version": "7.0.64",
|
||||||
|
"resolved": "https://registry.npmmirror.com/worker-timers-worker/-/worker-timers-worker-7.0.64.tgz",
|
||||||
|
"integrity": "sha512-bzBO7rVibSYFKu5NBYfjKBKHujaA/AJzJTuEEqaOGfzcTdJv15raDuGhtDoMjcNPvt3IylfLph6AK92kuifnXA==",
|
||||||
|
"dependencies": {
|
||||||
|
"@babel/runtime": "^7.23.6",
|
||||||
|
"tslib": "^2.6.2"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/wrappy": {
|
||||||
|
"version": "1.0.2",
|
||||||
|
"resolved": "https://registry.npmmirror.com/wrappy/-/wrappy-1.0.2.tgz",
|
||||||
|
"integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ=="
|
||||||
|
},
|
||||||
|
"node_modules/ws": {
|
||||||
|
"version": "8.15.1",
|
||||||
|
"resolved": "https://registry.npmmirror.com/ws/-/ws-8.15.1.tgz",
|
||||||
|
"integrity": "sha512-W5OZiCjXEmk0yZ66ZN82beM5Sz7l7coYxpRkzS+p9PP+ToQry8szKh+61eNktr7EA9DOwvFGhfC605jDHbP6QQ==",
|
||||||
|
"engines": {
|
||||||
|
"node": ">=10.0.0"
|
||||||
|
},
|
||||||
|
"peerDependencies": {
|
||||||
|
"bufferutil": "^4.0.1",
|
||||||
|
"utf-8-validate": ">=5.0.2"
|
||||||
|
},
|
||||||
|
"peerDependenciesMeta": {
|
||||||
|
"bufferutil": {
|
||||||
|
"optional": true
|
||||||
|
},
|
||||||
|
"utf-8-validate": {
|
||||||
|
"optional": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"@babel/runtime": {
|
||||||
|
"version": "7.23.6",
|
||||||
|
"resolved": "https://registry.npmmirror.com/@babel/runtime/-/runtime-7.23.6.tgz",
|
||||||
|
"integrity": "sha512-zHd0eUrf5GZoOWVCXp6koAKQTfZV07eit6bGPmJgnZdnSAvvZee6zniW2XMF7Cmc4ISOOnPy3QaSiIJGJkVEDQ==",
|
||||||
|
"requires": {
|
||||||
|
"regenerator-runtime": "^0.14.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"@types/node": {
|
||||||
|
"version": "20.10.5",
|
||||||
|
"resolved": "https://registry.npmmirror.com/@types/node/-/node-20.10.5.tgz",
|
||||||
|
"integrity": "sha512-nNPsNE65wjMxEKI93yOP+NPGGBJz/PoN3kZsVLee0XMiJolxSekEVD8wRwBUBqkwc7UWop0edW50yrCQW4CyRw==",
|
||||||
|
"requires": {
|
||||||
|
"undici-types": "~5.26.4"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"@types/readable-stream": {
|
||||||
|
"version": "4.0.10",
|
||||||
|
"resolved": "https://registry.npmmirror.com/@types/readable-stream/-/readable-stream-4.0.10.tgz",
|
||||||
|
"integrity": "sha512-AbUKBjcC8SHmImNi4yK2bbjogQlkFSg7shZCcicxPQapniOlajG8GCc39lvXzCWX4lLRRs7DM3VAeSlqmEVZUA==",
|
||||||
|
"requires": {
|
||||||
|
"@types/node": "*",
|
||||||
|
"safe-buffer": "~5.1.1"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"@types/ws": {
|
||||||
|
"version": "8.5.10",
|
||||||
|
"resolved": "https://registry.npmmirror.com/@types/ws/-/ws-8.5.10.tgz",
|
||||||
|
"integrity": "sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==",
|
||||||
|
"requires": {
|
||||||
|
"@types/node": "*"
|
||||||
|
}
|
||||||
|
},
|
||||||
"@vue/devtools-api": {
|
"@vue/devtools-api": {
|
||||||
"version": "6.5.1",
|
"version": "6.5.1",
|
||||||
"resolved": "https://registry.npmmirror.com/@vue/devtools-api/-/devtools-api-6.5.1.tgz",
|
"resolved": "https://registry.npmmirror.com/@vue/devtools-api/-/devtools-api-6.5.1.tgz",
|
||||||
"integrity": "sha512-+KpckaAQyfbvshdDW5xQylLni1asvNSGme1JFs8I1+/H5pHEhqUKMEQD/qn3Nx5+/nycBq11qAEi8lk+LXI2dA=="
|
"integrity": "sha512-+KpckaAQyfbvshdDW5xQylLni1asvNSGme1JFs8I1+/H5pHEhqUKMEQD/qn3Nx5+/nycBq11qAEi8lk+LXI2dA=="
|
||||||
},
|
},
|
||||||
|
"abort-controller": {
|
||||||
|
"version": "3.0.0",
|
||||||
|
"resolved": "https://registry.npmmirror.com/abort-controller/-/abort-controller-3.0.0.tgz",
|
||||||
|
"integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==",
|
||||||
|
"requires": {
|
||||||
|
"event-target-shim": "^5.0.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"balanced-match": {
|
||||||
|
"version": "1.0.2",
|
||||||
|
"resolved": "https://registry.npmmirror.com/balanced-match/-/balanced-match-1.0.2.tgz",
|
||||||
|
"integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
|
||||||
|
},
|
||||||
|
"base64-js": {
|
||||||
|
"version": "1.5.1",
|
||||||
|
"resolved": "https://registry.npmmirror.com/base64-js/-/base64-js-1.5.1.tgz",
|
||||||
|
"integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA=="
|
||||||
|
},
|
||||||
|
"bl": {
|
||||||
|
"version": "6.0.9",
|
||||||
|
"resolved": "https://registry.npmmirror.com/bl/-/bl-6.0.9.tgz",
|
||||||
|
"integrity": "sha512-Vh+M9HMfeTST9rkkQ1utRnOeABNcBO3i0dJMFkenCv7JIp76XWx8uQOGpaXyXVyenrLDZsdAHXbf0Cz18Eb0fw==",
|
||||||
|
"requires": {
|
||||||
|
"buffer": "^6.0.3",
|
||||||
|
"inherits": "^2.0.4",
|
||||||
|
"readable-stream": "^4.2.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"brace-expansion": {
|
||||||
|
"version": "2.0.1",
|
||||||
|
"resolved": "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-2.0.1.tgz",
|
||||||
|
"integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
|
||||||
|
"requires": {
|
||||||
|
"balanced-match": "^1.0.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"buffer": {
|
||||||
|
"version": "6.0.3",
|
||||||
|
"resolved": "https://registry.npmmirror.com/buffer/-/buffer-6.0.3.tgz",
|
||||||
|
"integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==",
|
||||||
|
"requires": {
|
||||||
|
"base64-js": "^1.3.1",
|
||||||
|
"ieee754": "^1.2.1"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"buffer-from": {
|
||||||
|
"version": "1.1.2",
|
||||||
|
"resolved": "https://registry.npmmirror.com/buffer-from/-/buffer-from-1.1.2.tgz",
|
||||||
|
"integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ=="
|
||||||
|
},
|
||||||
"clipboard": {
|
"clipboard": {
|
||||||
"version": "2.0.11",
|
"version": "2.0.11",
|
||||||
"resolved": "https://registry.npmjs.org/clipboard/-/clipboard-2.0.11.tgz",
|
"resolved": "https://registry.npmjs.org/clipboard/-/clipboard-2.0.11.tgz",
|
||||||
|
@ -137,16 +685,88 @@
|
||||||
"tiny-emitter": "^2.0.0"
|
"tiny-emitter": "^2.0.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"commist": {
|
||||||
|
"version": "3.2.0",
|
||||||
|
"resolved": "https://registry.npmmirror.com/commist/-/commist-3.2.0.tgz",
|
||||||
|
"integrity": "sha512-4PIMoPniho+LqXmpS5d3NuGYncG6XWlkBSVGiWycL22dd42OYdUGil2CWuzklaJoNxyxUSpO4MKIBU94viWNAw=="
|
||||||
|
},
|
||||||
|
"concat-stream": {
|
||||||
|
"version": "2.0.0",
|
||||||
|
"resolved": "https://registry.npmmirror.com/concat-stream/-/concat-stream-2.0.0.tgz",
|
||||||
|
"integrity": "sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==",
|
||||||
|
"requires": {
|
||||||
|
"buffer-from": "^1.0.0",
|
||||||
|
"inherits": "^2.0.3",
|
||||||
|
"readable-stream": "^3.0.2",
|
||||||
|
"typedarray": "^0.0.6"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"readable-stream": {
|
||||||
|
"version": "3.6.2",
|
||||||
|
"resolved": "https://registry.npmmirror.com/readable-stream/-/readable-stream-3.6.2.tgz",
|
||||||
|
"integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==",
|
||||||
|
"requires": {
|
||||||
|
"inherits": "^2.0.3",
|
||||||
|
"string_decoder": "^1.1.1",
|
||||||
|
"util-deprecate": "^1.0.1"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"dayjs": {
|
"dayjs": {
|
||||||
"version": "1.11.10",
|
"version": "1.11.10",
|
||||||
"resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.10.tgz",
|
"resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.10.tgz",
|
||||||
"integrity": "sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ=="
|
"integrity": "sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ=="
|
||||||
},
|
},
|
||||||
|
"debug": {
|
||||||
|
"version": "4.3.4",
|
||||||
|
"resolved": "https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz",
|
||||||
|
"integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==",
|
||||||
|
"requires": {
|
||||||
|
"ms": "2.1.2"
|
||||||
|
}
|
||||||
|
},
|
||||||
"delegate": {
|
"delegate": {
|
||||||
"version": "3.2.0",
|
"version": "3.2.0",
|
||||||
"resolved": "https://registry.npmjs.org/delegate/-/delegate-3.2.0.tgz",
|
"resolved": "https://registry.npmjs.org/delegate/-/delegate-3.2.0.tgz",
|
||||||
"integrity": "sha512-IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw=="
|
"integrity": "sha512-IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw=="
|
||||||
},
|
},
|
||||||
|
"event-target-shim": {
|
||||||
|
"version": "5.0.1",
|
||||||
|
"resolved": "https://registry.npmmirror.com/event-target-shim/-/event-target-shim-5.0.1.tgz",
|
||||||
|
"integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ=="
|
||||||
|
},
|
||||||
|
"events": {
|
||||||
|
"version": "3.3.0",
|
||||||
|
"resolved": "https://registry.npmmirror.com/events/-/events-3.3.0.tgz",
|
||||||
|
"integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q=="
|
||||||
|
},
|
||||||
|
"fast-unique-numbers": {
|
||||||
|
"version": "8.0.12",
|
||||||
|
"resolved": "https://registry.npmmirror.com/fast-unique-numbers/-/fast-unique-numbers-8.0.12.tgz",
|
||||||
|
"integrity": "sha512-Z4AJueNDnuC/sLxeQqrHP4zgqcBIeQQLbQ0hEx1a7m6Wf7ERrdAyR7CkGfoEFWm9Qla7dpLt0eWPyiO18gqj0A==",
|
||||||
|
"requires": {
|
||||||
|
"@babel/runtime": "^7.23.5",
|
||||||
|
"tslib": "^2.6.2"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"fs.realpath": {
|
||||||
|
"version": "1.0.0",
|
||||||
|
"resolved": "https://registry.npmmirror.com/fs.realpath/-/fs.realpath-1.0.0.tgz",
|
||||||
|
"integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw=="
|
||||||
|
},
|
||||||
|
"glob": {
|
||||||
|
"version": "8.1.0",
|
||||||
|
"resolved": "https://registry.npmmirror.com/glob/-/glob-8.1.0.tgz",
|
||||||
|
"integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==",
|
||||||
|
"requires": {
|
||||||
|
"fs.realpath": "^1.0.0",
|
||||||
|
"inflight": "^1.0.4",
|
||||||
|
"inherits": "2",
|
||||||
|
"minimatch": "^5.0.1",
|
||||||
|
"once": "^1.3.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
"good-listener": {
|
"good-listener": {
|
||||||
"version": "1.2.2",
|
"version": "1.2.2",
|
||||||
"resolved": "https://registry.npmjs.org/good-listener/-/good-listener-1.2.2.tgz",
|
"resolved": "https://registry.npmjs.org/good-listener/-/good-listener-1.2.2.tgz",
|
||||||
|
@ -155,6 +775,125 @@
|
||||||
"delegate": "^3.1.2"
|
"delegate": "^3.1.2"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"help-me": {
|
||||||
|
"version": "4.2.0",
|
||||||
|
"resolved": "https://registry.npmmirror.com/help-me/-/help-me-4.2.0.tgz",
|
||||||
|
"integrity": "sha512-TAOnTB8Tz5Dw8penUuzHVrKNKlCIbwwbHnXraNJxPwf8LRtE2HlM84RYuezMFcwOJmoYOCWVDyJ8TQGxn9PgxA==",
|
||||||
|
"requires": {
|
||||||
|
"glob": "^8.0.0",
|
||||||
|
"readable-stream": "^3.6.0"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"readable-stream": {
|
||||||
|
"version": "3.6.2",
|
||||||
|
"resolved": "https://registry.npmmirror.com/readable-stream/-/readable-stream-3.6.2.tgz",
|
||||||
|
"integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==",
|
||||||
|
"requires": {
|
||||||
|
"inherits": "^2.0.3",
|
||||||
|
"string_decoder": "^1.1.1",
|
||||||
|
"util-deprecate": "^1.0.1"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"ieee754": {
|
||||||
|
"version": "1.2.1",
|
||||||
|
"resolved": "https://registry.npmmirror.com/ieee754/-/ieee754-1.2.1.tgz",
|
||||||
|
"integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA=="
|
||||||
|
},
|
||||||
|
"inflight": {
|
||||||
|
"version": "1.0.6",
|
||||||
|
"resolved": "https://registry.npmmirror.com/inflight/-/inflight-1.0.6.tgz",
|
||||||
|
"integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
|
||||||
|
"requires": {
|
||||||
|
"once": "^1.3.0",
|
||||||
|
"wrappy": "1"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"inherits": {
|
||||||
|
"version": "2.0.4",
|
||||||
|
"resolved": "https://registry.npmmirror.com/inherits/-/inherits-2.0.4.tgz",
|
||||||
|
"integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
|
||||||
|
},
|
||||||
|
"js-sdsl": {
|
||||||
|
"version": "4.3.0",
|
||||||
|
"resolved": "https://registry.npmmirror.com/js-sdsl/-/js-sdsl-4.3.0.tgz",
|
||||||
|
"integrity": "sha512-mifzlm2+5nZ+lEcLJMoBK0/IH/bDg8XnJfd/Wq6IP+xoCjLZsTOnV2QpxlVbX9bMnkl5PdEjNtBJ9Cj1NjifhQ=="
|
||||||
|
},
|
||||||
|
"lru-cache": {
|
||||||
|
"version": "10.1.0",
|
||||||
|
"resolved": "https://registry.npmmirror.com/lru-cache/-/lru-cache-10.1.0.tgz",
|
||||||
|
"integrity": "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag=="
|
||||||
|
},
|
||||||
|
"minimatch": {
|
||||||
|
"version": "5.1.6",
|
||||||
|
"resolved": "https://registry.npmmirror.com/minimatch/-/minimatch-5.1.6.tgz",
|
||||||
|
"integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==",
|
||||||
|
"requires": {
|
||||||
|
"brace-expansion": "^2.0.1"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"minimist": {
|
||||||
|
"version": "1.2.8",
|
||||||
|
"resolved": "https://registry.npmmirror.com/minimist/-/minimist-1.2.8.tgz",
|
||||||
|
"integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA=="
|
||||||
|
},
|
||||||
|
"mqtt": {
|
||||||
|
"version": "5.3.3",
|
||||||
|
"resolved": "https://registry.npmmirror.com/mqtt/-/mqtt-5.3.3.tgz",
|
||||||
|
"integrity": "sha512-iy/9I81xnmYxENKL91hdiJ1LOkNYygCE0xCUtLeEo3BjQHraOky5gB/X3aPnvZ2fqlm1C0BhLmVcL6NRJ/U4tA==",
|
||||||
|
"requires": {
|
||||||
|
"@types/readable-stream": "^4.0.5",
|
||||||
|
"@types/ws": "^8.5.9",
|
||||||
|
"commist": "^3.2.0",
|
||||||
|
"concat-stream": "^2.0.0",
|
||||||
|
"debug": "^4.3.4",
|
||||||
|
"help-me": "^4.2.0",
|
||||||
|
"lru-cache": "^10.0.1",
|
||||||
|
"minimist": "^1.2.8",
|
||||||
|
"mqtt": "^5.2.0",
|
||||||
|
"mqtt-packet": "^9.0.0",
|
||||||
|
"number-allocator": "^1.0.14",
|
||||||
|
"readable-stream": "^4.4.2",
|
||||||
|
"reinterval": "^1.1.0",
|
||||||
|
"rfdc": "^1.3.0",
|
||||||
|
"split2": "^4.2.0",
|
||||||
|
"worker-timers": "^7.0.78",
|
||||||
|
"ws": "^8.14.2"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"mqtt-packet": {
|
||||||
|
"version": "9.0.0",
|
||||||
|
"resolved": "https://registry.npmmirror.com/mqtt-packet/-/mqtt-packet-9.0.0.tgz",
|
||||||
|
"integrity": "sha512-8v+HkX+fwbodsWAZIZTI074XIoxVBOmPeggQuDFCGg1SqNcC+uoRMWu7J6QlJPqIUIJXmjNYYHxBBLr1Y/Df4w==",
|
||||||
|
"requires": {
|
||||||
|
"bl": "^6.0.8",
|
||||||
|
"debug": "^4.3.4",
|
||||||
|
"process-nextick-args": "^2.0.1"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"ms": {
|
||||||
|
"version": "2.1.2",
|
||||||
|
"resolved": "https://registry.npmmirror.com/ms/-/ms-2.1.2.tgz",
|
||||||
|
"integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
|
||||||
|
},
|
||||||
|
"number-allocator": {
|
||||||
|
"version": "1.0.14",
|
||||||
|
"resolved": "https://registry.npmmirror.com/number-allocator/-/number-allocator-1.0.14.tgz",
|
||||||
|
"integrity": "sha512-OrL44UTVAvkKdOdRQZIJpLkAdjXGTRda052sN4sO77bKEzYYqWKMBjQvrJFzqygI99gL6Z4u2xctPW1tB8ErvA==",
|
||||||
|
"requires": {
|
||||||
|
"debug": "^4.3.1",
|
||||||
|
"js-sdsl": "4.3.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"once": {
|
||||||
|
"version": "1.4.0",
|
||||||
|
"resolved": "https://registry.npmmirror.com/once/-/once-1.4.0.tgz",
|
||||||
|
"integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
|
||||||
|
"requires": {
|
||||||
|
"wrappy": "1"
|
||||||
|
}
|
||||||
|
},
|
||||||
"pinia": {
|
"pinia": {
|
||||||
"version": "2.0.33",
|
"version": "2.0.33",
|
||||||
"resolved": "https://registry.npmmirror.com/pinia/-/pinia-2.0.33.tgz",
|
"resolved": "https://registry.npmmirror.com/pinia/-/pinia-2.0.33.tgz",
|
||||||
|
@ -164,16 +903,98 @@
|
||||||
"vue-demi": "*"
|
"vue-demi": "*"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"process": {
|
||||||
|
"version": "0.11.10",
|
||||||
|
"resolved": "https://registry.npmmirror.com/process/-/process-0.11.10.tgz",
|
||||||
|
"integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A=="
|
||||||
|
},
|
||||||
|
"process-nextick-args": {
|
||||||
|
"version": "2.0.1",
|
||||||
|
"resolved": "https://registry.npmmirror.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
|
||||||
|
"integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag=="
|
||||||
|
},
|
||||||
|
"readable-stream": {
|
||||||
|
"version": "4.5.1",
|
||||||
|
"resolved": "https://registry.npmmirror.com/readable-stream/-/readable-stream-4.5.1.tgz",
|
||||||
|
"integrity": "sha512-uQjbf34vmf/asGnOHQEw07Q4llgMACQZTWWa4MmICS0IKJoHbLwKCy71H3eR99Dw5iYejc6W+pqZZEeqRtUFAw==",
|
||||||
|
"requires": {
|
||||||
|
"abort-controller": "^3.0.0",
|
||||||
|
"buffer": "^6.0.3",
|
||||||
|
"events": "^3.3.0",
|
||||||
|
"process": "^0.11.10",
|
||||||
|
"string_decoder": "^1.3.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"regenerator-runtime": {
|
||||||
|
"version": "0.14.1",
|
||||||
|
"resolved": "https://registry.npmmirror.com/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz",
|
||||||
|
"integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw=="
|
||||||
|
},
|
||||||
|
"reinterval": {
|
||||||
|
"version": "1.1.0",
|
||||||
|
"resolved": "https://registry.npmmirror.com/reinterval/-/reinterval-1.1.0.tgz",
|
||||||
|
"integrity": "sha512-QIRet3SYrGp0HUHO88jVskiG6seqUGC5iAG7AwI/BV4ypGcuqk9Du6YQBUOUqm9c8pw1eyLoIaONifRua1lsEQ=="
|
||||||
|
},
|
||||||
|
"rfdc": {
|
||||||
|
"version": "1.3.0",
|
||||||
|
"resolved": "https://registry.npmmirror.com/rfdc/-/rfdc-1.3.0.tgz",
|
||||||
|
"integrity": "sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA=="
|
||||||
|
},
|
||||||
|
"safe-buffer": {
|
||||||
|
"version": "5.1.2",
|
||||||
|
"resolved": "https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.1.2.tgz",
|
||||||
|
"integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="
|
||||||
|
},
|
||||||
"select": {
|
"select": {
|
||||||
"version": "1.1.2",
|
"version": "1.1.2",
|
||||||
"resolved": "https://registry.npmjs.org/select/-/select-1.1.2.tgz",
|
"resolved": "https://registry.npmjs.org/select/-/select-1.1.2.tgz",
|
||||||
"integrity": "sha512-OwpTSOfy6xSs1+pwcNrv0RBMOzI39Lp3qQKUTPVVPRjCdNa5JH/oPRiqsesIskK8TVgmRiHwO4KXlV2Li9dANA=="
|
"integrity": "sha512-OwpTSOfy6xSs1+pwcNrv0RBMOzI39Lp3qQKUTPVVPRjCdNa5JH/oPRiqsesIskK8TVgmRiHwO4KXlV2Li9dANA=="
|
||||||
},
|
},
|
||||||
|
"split2": {
|
||||||
|
"version": "4.2.0",
|
||||||
|
"resolved": "https://registry.npmmirror.com/split2/-/split2-4.2.0.tgz",
|
||||||
|
"integrity": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg=="
|
||||||
|
},
|
||||||
|
"string_decoder": {
|
||||||
|
"version": "1.3.0",
|
||||||
|
"resolved": "https://registry.npmmirror.com/string_decoder/-/string_decoder-1.3.0.tgz",
|
||||||
|
"integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
|
||||||
|
"requires": {
|
||||||
|
"safe-buffer": "~5.2.0"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"safe-buffer": {
|
||||||
|
"version": "5.2.1",
|
||||||
|
"resolved": "https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.2.1.tgz",
|
||||||
|
"integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"tiny-emitter": {
|
"tiny-emitter": {
|
||||||
"version": "2.1.0",
|
"version": "2.1.0",
|
||||||
"resolved": "https://registry.npmjs.org/tiny-emitter/-/tiny-emitter-2.1.0.tgz",
|
"resolved": "https://registry.npmjs.org/tiny-emitter/-/tiny-emitter-2.1.0.tgz",
|
||||||
"integrity": "sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q=="
|
"integrity": "sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q=="
|
||||||
},
|
},
|
||||||
|
"tslib": {
|
||||||
|
"version": "2.6.2",
|
||||||
|
"resolved": "https://registry.npmmirror.com/tslib/-/tslib-2.6.2.tgz",
|
||||||
|
"integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q=="
|
||||||
|
},
|
||||||
|
"typedarray": {
|
||||||
|
"version": "0.0.6",
|
||||||
|
"resolved": "https://registry.npmmirror.com/typedarray/-/typedarray-0.0.6.tgz",
|
||||||
|
"integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA=="
|
||||||
|
},
|
||||||
|
"undici-types": {
|
||||||
|
"version": "5.26.5",
|
||||||
|
"resolved": "https://registry.npmmirror.com/undici-types/-/undici-types-5.26.5.tgz",
|
||||||
|
"integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA=="
|
||||||
|
},
|
||||||
|
"util-deprecate": {
|
||||||
|
"version": "1.0.2",
|
||||||
|
"resolved": "https://registry.npmmirror.com/util-deprecate/-/util-deprecate-1.0.2.tgz",
|
||||||
|
"integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="
|
||||||
|
},
|
||||||
"uview-plus": {
|
"uview-plus": {
|
||||||
"version": "3.1.38",
|
"version": "3.1.38",
|
||||||
"resolved": "https://registry.npmjs.org/uview-plus/-/uview-plus-3.1.38.tgz",
|
"resolved": "https://registry.npmjs.org/uview-plus/-/uview-plus-3.1.38.tgz",
|
||||||
|
@ -194,6 +1015,48 @@
|
||||||
"resolved": "https://registry.npmmirror.com/vue-demi/-/vue-demi-0.14.6.tgz",
|
"resolved": "https://registry.npmmirror.com/vue-demi/-/vue-demi-0.14.6.tgz",
|
||||||
"integrity": "sha512-8QA7wrYSHKaYgUxDA5ZC24w+eHm3sYCbp0EzcDwKqN3p6HqtTCGR/GVsPyZW92unff4UlcSh++lmqDWN3ZIq4w==",
|
"integrity": "sha512-8QA7wrYSHKaYgUxDA5ZC24w+eHm3sYCbp0EzcDwKqN3p6HqtTCGR/GVsPyZW92unff4UlcSh++lmqDWN3ZIq4w==",
|
||||||
"requires": {}
|
"requires": {}
|
||||||
|
},
|
||||||
|
"worker-timers": {
|
||||||
|
"version": "7.0.80",
|
||||||
|
"resolved": "https://registry.npmmirror.com/worker-timers/-/worker-timers-7.0.80.tgz",
|
||||||
|
"integrity": "sha512-bYSAPNVR0Nrm7hTM3hQOxM3x+D9dXFG6kZ0BBqFyRu0BUGC5+DLLK5Sx281hCaNzOGMNcUMEaoeErx3Yuf7XIw==",
|
||||||
|
"requires": {
|
||||||
|
"@babel/runtime": "^7.23.6",
|
||||||
|
"tslib": "^2.6.2",
|
||||||
|
"worker-timers-broker": "^6.0.100",
|
||||||
|
"worker-timers-worker": "^7.0.64"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"worker-timers-broker": {
|
||||||
|
"version": "6.0.100",
|
||||||
|
"resolved": "https://registry.npmmirror.com/worker-timers-broker/-/worker-timers-broker-6.0.100.tgz",
|
||||||
|
"integrity": "sha512-sXF1NpuT+FlJvONSbdZ6wNB15oNGg/P6PvCZDMHWmI6s7bHEb0zQ7cTnk9k+96/3pd8SpbXFuM0/HcHVc2alDQ==",
|
||||||
|
"requires": {
|
||||||
|
"@babel/runtime": "^7.23.6",
|
||||||
|
"fast-unique-numbers": "^8.0.12",
|
||||||
|
"tslib": "^2.6.2",
|
||||||
|
"worker-timers-worker": "^7.0.64"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"worker-timers-worker": {
|
||||||
|
"version": "7.0.64",
|
||||||
|
"resolved": "https://registry.npmmirror.com/worker-timers-worker/-/worker-timers-worker-7.0.64.tgz",
|
||||||
|
"integrity": "sha512-bzBO7rVibSYFKu5NBYfjKBKHujaA/AJzJTuEEqaOGfzcTdJv15raDuGhtDoMjcNPvt3IylfLph6AK92kuifnXA==",
|
||||||
|
"requires": {
|
||||||
|
"@babel/runtime": "^7.23.6",
|
||||||
|
"tslib": "^2.6.2"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"wrappy": {
|
||||||
|
"version": "1.0.2",
|
||||||
|
"resolved": "https://registry.npmmirror.com/wrappy/-/wrappy-1.0.2.tgz",
|
||||||
|
"integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ=="
|
||||||
|
},
|
||||||
|
"ws": {
|
||||||
|
"version": "8.15.1",
|
||||||
|
"resolved": "https://registry.npmmirror.com/ws/-/ws-8.15.1.tgz",
|
||||||
|
"integrity": "sha512-W5OZiCjXEmk0yZ66ZN82beM5Sz7l7coYxpRkzS+p9PP+ToQry8szKh+61eNktr7EA9DOwvFGhfC605jDHbP6QQ==",
|
||||||
|
"requires": {}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
{
|
{
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"mqtt": "^5.3.3",
|
||||||
"pinia": "^2.0.33",
|
"pinia": "^2.0.33",
|
||||||
"uview-plus": "^3.1.38"
|
"uview-plus": "^3.1.38"
|
||||||
}
|
}
|
||||||
|
|
11
pages.json
11
pages.json
|
@ -101,6 +101,17 @@
|
||||||
{
|
{
|
||||||
"path": "pages/live/live",
|
"path": "pages/live/live",
|
||||||
"style": {
|
"style": {
|
||||||
|
"navigationStyle": "custom",
|
||||||
|
"navigationBarTitleText": "苗情监测",
|
||||||
|
"enablePullDownRefresh": false,
|
||||||
|
"navigationBarBackgroundColor": "#F4F4F4",
|
||||||
|
"navigationBarTextStyle": "black"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path": "pages/live/live1",
|
||||||
|
"style": {
|
||||||
|
"navigationStyle": "custom",
|
||||||
"navigationBarTitleText": "苗情监测",
|
"navigationBarTitleText": "苗情监测",
|
||||||
"enablePullDownRefresh": false,
|
"enablePullDownRefresh": false,
|
||||||
"navigationBarBackgroundColor": "#F4F4F4",
|
"navigationBarBackgroundColor": "#F4F4F4",
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
|
|
||||||
<view class="input-card">
|
<view class="input-card">
|
||||||
<view class="card-head">
|
<view class="card-head">
|
||||||
<view class="triangle top" />
|
<!-- <view class="triangle top" />
|
||||||
<view class="triangle bottom" />
|
<view class="triangle bottom" />
|
||||||
<view class="code-login" @click="changeLoginType(0)" :class="{act:loginType==2}">
|
<view class="code-login" @click="changeLoginType(0)" :class="{act:loginType==2}">
|
||||||
<span>验证码登录</span>
|
<span>验证码登录</span>
|
||||||
|
@ -28,6 +28,10 @@
|
||||||
</view>
|
</view>
|
||||||
<view class="password-login" @click="changeLoginType(350)" :class="{act:loginType==1}">
|
<view class="password-login" @click="changeLoginType(350)" :class="{act:loginType==1}">
|
||||||
密码登录
|
密码登录
|
||||||
|
</view> -->
|
||||||
|
<view class="" style="background-color: #35D190;color: white;width: 100%;height: 100rpx;
|
||||||
|
text-align: center;line-height: 100rpx;">
|
||||||
|
账号登录
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="login-content">
|
<view class="login-content">
|
||||||
|
@ -85,10 +89,10 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<view class="" style="font-size: 26rpx;">
|
<!-- <view class="" style="font-size: 26rpx;">
|
||||||
<text>还没有账号?点击</text> <text @click="resgiter"
|
<text>还没有账号?点击</text> <text @click="resgiter"
|
||||||
style="color: #35D190;text-decoration: underline;">注册</text>
|
style="color: #35D190;text-decoration: underline;">注册</text>
|
||||||
</view>
|
</view> -->
|
||||||
|
|
||||||
<view class="sub-btn">
|
<view class="sub-btn">
|
||||||
<u-button @click="submitFn" type="primary"
|
<u-button @click="submitFn" type="primary"
|
||||||
|
@ -398,7 +402,7 @@
|
||||||
account: "",
|
account: "",
|
||||||
password: "",
|
password: "",
|
||||||
code: '',
|
code: '',
|
||||||
scene: "2",
|
scene: "1",
|
||||||
terminal: ''
|
terminal: ''
|
||||||
|
|
||||||
})
|
})
|
||||||
|
@ -531,7 +535,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
const lineX = ref(0)
|
const lineX = ref(0)
|
||||||
const loginType = ref(2)
|
const loginType = ref(1)
|
||||||
const changeLoginType = (num) => {
|
const changeLoginType = (num) => {
|
||||||
num ? loginType.value = 1 : loginType.value = 2
|
num ? loginType.value = 1 : loginType.value = 2
|
||||||
formData.scene = loginType.value
|
formData.scene = loginType.value
|
||||||
|
|
|
@ -31,7 +31,7 @@
|
||||||
customStyle="background:#F5F5F5;height:80rpx;padding-left:40rpx;border:none" shape='circle'
|
customStyle="background:#F5F5F5;height:80rpx;padding-left:40rpx;border:none" shape='circle'
|
||||||
border="surround" v-model="formData.mobile"></u-input>
|
border="surround" v-model="formData.mobile"></u-input>
|
||||||
</view>
|
</view>
|
||||||
<view class="" style="display: flex;margin-top: 30rpx;margin-bottom: 10rpx;">
|
<!-- <view class="" style="display: flex;margin-top: 30rpx;margin-bottom: 10rpx;">
|
||||||
<up-image :src="u('yzm')" width="30rpx" height="44rpx" style="margin-right: 20rpx;"></up-image>验证码
|
<up-image :src="u('yzm')" width="30rpx" height="44rpx" style="margin-right: 20rpx;"></up-image>验证码
|
||||||
</view>
|
</view>
|
||||||
<view class="" style="position: relative;">
|
<view class="" style="position: relative;">
|
||||||
|
@ -43,7 +43,7 @@
|
||||||
<view class="get-code" :style="{color: countDown?'grey':''}" @click="getCode"><text
|
<view class="get-code" :style="{color: countDown?'grey':''}" @click="getCode"><text
|
||||||
class="lineY"></text>
|
class="lineY"></text>
|
||||||
获取验证码 <text v-if='countDown'>{{countDown}}s</text> </view>
|
获取验证码 <text v-if='countDown'>{{countDown}}s</text> </view>
|
||||||
</view>
|
</view> -->
|
||||||
|
|
||||||
<view class="" style="margin: 30rpx 0;">
|
<view class="" style="margin: 30rpx 0;">
|
||||||
<view class="" style="display: flex;margin-top: 30rpx;margin-bottom: 10rpx;">
|
<view class="" style="display: flex;margin-top: 30rpx;margin-bottom: 10rpx;">
|
||||||
|
|
|
@ -119,7 +119,8 @@
|
||||||
} from 'vue';
|
} from 'vue';
|
||||||
import {
|
import {
|
||||||
onLoad,
|
onLoad,
|
||||||
onReady
|
onReady,
|
||||||
|
onShow
|
||||||
} from '@dcloudio/uni-app';
|
} from '@dcloudio/uni-app';
|
||||||
import {
|
import {
|
||||||
Uploads
|
Uploads
|
||||||
|
@ -143,12 +144,12 @@
|
||||||
city_code: '',
|
city_code: '',
|
||||||
county_code: '',
|
county_code: '',
|
||||||
address: '',
|
address: '',
|
||||||
lat: "",
|
latitude: "20",
|
||||||
lon: "",
|
longitude: "20",
|
||||||
master_name: '',
|
master_name: '',
|
||||||
master_phone: '',
|
master_phone: '',
|
||||||
pic: ['https://img0.baidu.com/it/u=1717510975,3258230326&fm=253&fmt=auto?w=120&h=80',
|
pic: [
|
||||||
'https://img0.baidu.com/it/u=1717510975,3258230326&fm=253&fmt=auto?w=120&h=80'
|
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
rules: {
|
rules: {
|
||||||
|
@ -448,9 +449,19 @@
|
||||||
console.error(error);
|
console.error(error);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
onShow((e) => {
|
||||||
|
console.log(e)
|
||||||
|
})
|
||||||
onLoad((options) => {
|
onLoad((options) => {
|
||||||
console.log(options || "")
|
uni.$on('setData', function(datas) {
|
||||||
|
let address = JSON.parse(datas)
|
||||||
|
data.formData.address = address.address
|
||||||
|
data.formData.longitude = address.lon
|
||||||
|
data.formData.latitude = address.lat
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
provincen()
|
provincen()
|
||||||
|
|
||||||
})
|
})
|
||||||
|
|
|
@ -135,19 +135,20 @@
|
||||||
},
|
},
|
||||||
submitAddress() {
|
submitAddress() {
|
||||||
|
|
||||||
// console.log(this.latitude)
|
// uni.navigateTo({
|
||||||
// console.log(this.longitude)
|
// url: '/pages/addLand/addLand'
|
||||||
// console.log(this.address)
|
// })
|
||||||
|
// // console.log(this.latitude)
|
||||||
|
// // console.log(this.longitude)
|
||||||
|
// // console.log(this.address)
|
||||||
|
// return
|
||||||
let data = {
|
let data = {
|
||||||
lat: this.latitude,
|
lat: this.latitude,
|
||||||
lon: this.longitude,
|
lon: this.longitude,
|
||||||
address: this.address
|
address: this.address
|
||||||
}
|
}
|
||||||
|
uni.$emit('setData', JSON.stringify(data));
|
||||||
uni.navigateTo({
|
uni.navigateBack()
|
||||||
url: "/pages/addLand/addLand" + JSON.stringify(data)
|
|
||||||
})
|
|
||||||
},
|
},
|
||||||
searchMap() {
|
searchMap() {
|
||||||
uni.request({
|
uni.request({
|
||||||
|
|
|
@ -12,6 +12,9 @@
|
||||||
style="margin-right: 20rpx;"></u--image>
|
style="margin-right: 20rpx;"></u--image>
|
||||||
{{dataobj.title}}
|
{{dataobj.title}}
|
||||||
|
|
||||||
|
</view>
|
||||||
|
<view class="" v-else>
|
||||||
|
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<view class="" style="display: flex;align-items: center;">
|
<view class="" style="display: flex;align-items: center;">
|
||||||
|
@ -94,7 +97,16 @@
|
||||||
|
|
||||||
</view>
|
</view>
|
||||||
<view class="live">
|
<view class="live">
|
||||||
<u--image :src="u('K')" width="100%"></u--image>
|
<u--image src="/static/img/viedobg.png" v-if="video_url" width="100%"></u--image>
|
||||||
|
<u--image :src="u('K')" v-else width="100%"></u--image>
|
||||||
|
|
||||||
|
<view class=""
|
||||||
|
style="width: 100%;height: 100%;background-color: rgba(0, 0, 0, .5);position: absolute;top: 1px;"
|
||||||
|
@click="goLive" v-if="video_url">
|
||||||
|
<u-icon name="play-circle" size="40" color="white" v-if="video_url"
|
||||||
|
style="position: absolute;top: 50%;left: 50%;transform: translate(-50%,-50%);"></u-icon>
|
||||||
|
</view>
|
||||||
|
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<view class="">
|
<view class="">
|
||||||
|
@ -104,15 +116,20 @@
|
||||||
<view class="area-check">
|
<view class="area-check">
|
||||||
<view class="area-li" v-for="(item,index) in soilList" key="index"
|
<view class="area-li" v-for="(item,index) in soilList" key="index"
|
||||||
:style="{backgroundImage:`url(${bgc(item.icon)})`}">
|
:style="{backgroundImage:`url(${bgc(item.icon)})`}">
|
||||||
|
|
||||||
|
|
||||||
<view class="">
|
<view class="">
|
||||||
{{item.name}}
|
{{item.name}}
|
||||||
</view>
|
</view>
|
||||||
<view class="" style="color:#73DFB2">
|
<view class="" :style=" {color: item.status==0?'#73DFB2':'red'}">
|
||||||
{{ item.num?item.num+item.unit:'--' }}
|
{{ item.num?item.num+item.unit:'--' }}
|
||||||
</view>
|
</view>
|
||||||
|
<view class="" style="display: flex;color:red" v-if="item.status>0">
|
||||||
|
<u-icon name="arrow-upward" color="red"></u-icon>{{item.status}}
|
||||||
</view>
|
</view>
|
||||||
|
<view class="" v-if="item.status<0" style="color: #A3E1F5;display: flex;">
|
||||||
|
<u-icon name="arrow-downward" color="#A3E1F5"></u-icon>{{item.status}}
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
|
@ -129,10 +146,18 @@
|
||||||
<view class="">
|
<view class="">
|
||||||
{{item.name}}
|
{{item.name}}
|
||||||
</view>
|
</view>
|
||||||
<view class="" style="color:#73DFB2">
|
<view class="" :style=" {color: item.status==0?'#73DFB2':'red'}">
|
||||||
<text v-if="item.num==0">{{item.num+item.unit}}</text>
|
<text v-if="item.num==0">{{item.num+item.unit}}</text>
|
||||||
<text v-else>{{ item.num?item.num+item.unit:'--' }}</text>
|
<text v-else>{{ item.num?item.num+item.unit:'--' }}</text>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
|
|
||||||
|
<view class="" style="display: flex;color:red" v-if="item.status>0">
|
||||||
|
<u-icon name="arrow-upward" color="red"></u-icon>{{item.status}}
|
||||||
|
</view>
|
||||||
|
<view class="" v-if="item.status<0" style="color: #A3E1F5;display: flex;">
|
||||||
|
<u-icon name="arrow-downward" color="#A3E1F5"></u-icon>{{item.status}}
|
||||||
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
@ -300,42 +325,49 @@
|
||||||
name: "土壤温度",
|
name: "土壤温度",
|
||||||
num: 0,
|
num: 0,
|
||||||
unit: "℃",
|
unit: "℃",
|
||||||
|
status: 0,
|
||||||
|
|
||||||
}, {
|
}, {
|
||||||
icon: "trsd",
|
icon: "trsd",
|
||||||
name: "土壤湿度",
|
name: "土壤湿度",
|
||||||
num: 0,
|
num: 0,
|
||||||
unit: "%RH",
|
unit: "%RH",
|
||||||
|
status: 0,
|
||||||
|
|
||||||
}, {
|
}, {
|
||||||
icon: "trddl",
|
icon: "trddl",
|
||||||
name: "土壤导电率",
|
name: "土壤导电率",
|
||||||
num: 0,
|
num: 0,
|
||||||
unit: "μS/cm",
|
unit: "μS/cm",
|
||||||
|
status: 0,
|
||||||
|
|
||||||
}, {
|
}, {
|
||||||
icon: "trph",
|
icon: "trph",
|
||||||
name: "土壤PH值",
|
name: "土壤PH值",
|
||||||
num: 0,
|
num: 0,
|
||||||
unit: "PH",
|
unit: "PH",
|
||||||
|
status: 0,
|
||||||
|
|
||||||
}, {
|
}, {
|
||||||
icon: "trhdl",
|
icon: "trhdl",
|
||||||
name: "土壤含氮量",
|
name: "土壤含氮量",
|
||||||
num: 0,
|
num: 0,
|
||||||
unit: "mg/kg",
|
unit: "mg/kg",
|
||||||
|
status: 0,
|
||||||
|
|
||||||
}, {
|
}, {
|
||||||
icon: "trhll",
|
icon: "trhll",
|
||||||
name: "土壤含磷量",
|
name: "土壤含磷量",
|
||||||
num: 0,
|
num: 0,
|
||||||
unit: "mg/kg",
|
unit: "mg/kg",
|
||||||
|
status: 0,
|
||||||
|
|
||||||
}, {
|
}, {
|
||||||
icon: "trhjl",
|
icon: "trhjl",
|
||||||
name: "土壤含钾量",
|
name: "土壤含钾量",
|
||||||
num: 0,
|
num: 0,
|
||||||
unit: "mg/kg",
|
unit: "mg/kg",
|
||||||
|
status: 0,
|
||||||
|
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -370,58 +402,84 @@
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
const goLive = () => {
|
||||||
|
uni.navigateTo({
|
||||||
|
url: '/pages/live/live?url=' + video_url.value
|
||||||
|
})
|
||||||
|
}
|
||||||
const show = ref(false)
|
const show = ref(false)
|
||||||
const showLoading = ref(false)
|
const showLoading = ref(false)
|
||||||
const columns = reactive([]);
|
const columns = reactive([]);
|
||||||
|
|
||||||
|
// 环境基准
|
||||||
|
let threshold = []
|
||||||
|
const thresholdFn = (item, min, max) => {
|
||||||
|
|
||||||
|
|
||||||
|
if (item.num < min) {
|
||||||
|
item.status = (item.num - min).toFixed(1)
|
||||||
|
}
|
||||||
|
if (item.num > max) {
|
||||||
|
item.status = (item.num - max).toFixed(1)
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
// 环境监测数据
|
// 环境监测数据
|
||||||
const environmentList = reactive([{
|
const environmentList = reactive([{
|
||||||
icon: "FS",
|
icon: "FS",
|
||||||
name: "风速",
|
name: "风速",
|
||||||
num: 0,
|
num: 0,
|
||||||
unit: "%",
|
unit: "m/s",
|
||||||
|
status: 0,
|
||||||
|
|
||||||
}, {
|
}, {
|
||||||
icon: "FX",
|
icon: "FX",
|
||||||
name: "风向",
|
name: "风向",
|
||||||
num: 0,
|
num: 0,
|
||||||
unit: "%",
|
unit: "",
|
||||||
|
status: 0,
|
||||||
|
|
||||||
}, {
|
}, {
|
||||||
icon: "WD1",
|
icon: "WD1",
|
||||||
name: "温度",
|
name: "温度",
|
||||||
num: 0,
|
num: 0,
|
||||||
unit: "℃",
|
unit: "℃",
|
||||||
|
status: 0,
|
||||||
|
|
||||||
}, {
|
}, {
|
||||||
icon: "SD",
|
icon: "SD",
|
||||||
name: "湿度",
|
name: "湿度",
|
||||||
num: 0,
|
num: 0,
|
||||||
unit: "%RH",
|
unit: "%RH",
|
||||||
|
status: 0,
|
||||||
|
|
||||||
}, {
|
}, {
|
||||||
icon: 'eyht',
|
icon: 'eyht',
|
||||||
name: "二氧化碳",
|
name: "二氧化碳",
|
||||||
num: 0,
|
num: 0,
|
||||||
unit: "ppm",
|
unit: "ppm",
|
||||||
|
status: 0,
|
||||||
}, {
|
}, {
|
||||||
icon: "QY",
|
icon: "QY",
|
||||||
name: "气压",
|
name: "气压",
|
||||||
num: 0,
|
num: 0,
|
||||||
unit: "KPa",
|
unit: "KPa",
|
||||||
|
status: 0,
|
||||||
|
|
||||||
}, {
|
}, {
|
||||||
icon: "YL",
|
icon: "YL",
|
||||||
name: "雨量",
|
name: "雨量",
|
||||||
num: 0,
|
num: 0,
|
||||||
unit: "mm",
|
unit: "mm",
|
||||||
|
status: 0,
|
||||||
|
|
||||||
}, {
|
}, {
|
||||||
icon: "GZ",
|
icon: "GZ",
|
||||||
name: "光照量",
|
name: "光照量",
|
||||||
num: 0,
|
num: 0,
|
||||||
unit: "Lux",
|
unit: "Lux",
|
||||||
|
status: 0,
|
||||||
|
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -435,7 +493,9 @@
|
||||||
const bgc = (icon) => {
|
const bgc = (icon) => {
|
||||||
return `/static/main/index/${icon}.png`
|
return `/static/main/index/${icon}.png`
|
||||||
}
|
}
|
||||||
|
const video_url = ref(
|
||||||
|
|
||||||
|
)
|
||||||
//列表获取
|
//列表获取
|
||||||
const getlist = () => {
|
const getlist = () => {
|
||||||
lindexist({
|
lindexist({
|
||||||
|
@ -443,6 +503,17 @@
|
||||||
}).then((res) => {
|
}).then((res) => {
|
||||||
|
|
||||||
if (res.code == 1) {
|
if (res.code == 1) {
|
||||||
|
|
||||||
|
console.log(res.data)
|
||||||
|
|
||||||
|
|
||||||
|
if (res.data.user_id == 23) {
|
||||||
|
video_url.value =
|
||||||
|
'http://rtsp.lihaink.cn/live/lihai_lot_walnutpi_dev_4.live.mp4?secret=YwDtp2llj80HA19JhMXL4Po99nsMAyNT'
|
||||||
|
}
|
||||||
|
// video_url=res.data.
|
||||||
|
|
||||||
|
threshold = res.data.monitor.threshold
|
||||||
if (Object.keys(res.data).length > 0) {
|
if (Object.keys(res.data).length > 0) {
|
||||||
getlist3(res.data.id)
|
getlist3(res.data.id)
|
||||||
Object.assign(dataobj, res.data);
|
Object.assign(dataobj, res.data);
|
||||||
|
@ -454,6 +525,13 @@
|
||||||
soilList[4].num = res.data.monitor.soil_monitor_data.n_content
|
soilList[4].num = res.data.monitor.soil_monitor_data.n_content
|
||||||
soilList[5].num = res.data.monitor.soil_monitor_data.p_content
|
soilList[5].num = res.data.monitor.soil_monitor_data.p_content
|
||||||
soilList[6].num = res.data.monitor.soil_monitor_data.k_content
|
soilList[6].num = res.data.monitor.soil_monitor_data.k_content
|
||||||
|
thresholdFn(soilList[0], threshold.soil_temp_min, threshold.soil_temp_max)
|
||||||
|
thresholdFn(soilList[1], threshold.soil_mois_min, threshold.soil_mois_max)
|
||||||
|
thresholdFn(soilList[3], threshold.soil_ph_min, threshold.soil_ph_max)
|
||||||
|
thresholdFn(soilList[4], threshold.soil_n_content_min, threshold.soil_n_content_max)
|
||||||
|
thresholdFn(soilList[5], threshold.soil_p_content_min, threshold.soil_p_content_max)
|
||||||
|
thresholdFn(soilList[6], threshold.soil_k_content_min, threshold.soil_k_content_max)
|
||||||
|
|
||||||
}
|
}
|
||||||
if (res.data && res.data.monitor && res.data.monitor.air_monitor_data) {
|
if (res.data && res.data.monitor && res.data.monitor.air_monitor_data) {
|
||||||
environmentList[0].num = res.data.monitor.air_monitor_data.wind_speed
|
environmentList[0].num = res.data.monitor.air_monitor_data.wind_speed
|
||||||
|
@ -464,6 +542,30 @@
|
||||||
environmentList[5].num = res.data.monitor.air_monitor_data.pressure
|
environmentList[5].num = res.data.monitor.air_monitor_data.pressure
|
||||||
environmentList[6].num = res.data.monitor.air_monitor_data.rainfall
|
environmentList[6].num = res.data.monitor.air_monitor_data.rainfall
|
||||||
environmentList[7].num = res.data.monitor.air_monitor_data.light_intensity
|
environmentList[7].num = res.data.monitor.air_monitor_data.light_intensity
|
||||||
|
thresholdFn(environmentList[0], threshold.wind_speed_min, threshold.wind_speed_max)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// thresholdFn(environmentList[1], threshold.wind_speed_min, threshold.wind_speed_max)
|
||||||
|
|
||||||
|
|
||||||
|
// sdf
|
||||||
|
|
||||||
|
thresholdFn(environmentList[2], threshold.air_temp_min, threshold.air_temp_max)
|
||||||
|
thresholdFn(environmentList[3], threshold.air_mois_min, threshold.air_mois_max)
|
||||||
|
thresholdFn(environmentList[4], threshold.air_co2_content_min, threshold
|
||||||
|
.air_co2_content_max)
|
||||||
|
thresholdFn(environmentList[5], threshold.ambient_air_pressure_min, threshold
|
||||||
|
.ambient_air_pressure_max)
|
||||||
|
|
||||||
|
// sdf
|
||||||
|
|
||||||
|
|
||||||
|
// thresholdFn(environmentList[6], threshold.ambient_air_pressure_min, threshold.ambient_air_pressure_max)
|
||||||
|
// thresholdFn(environmentList[6], threshold.ambient_air_pressure_min, threshold.ambient_air_pressure_max)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -789,7 +891,7 @@
|
||||||
|
|
||||||
.live {
|
.live {
|
||||||
|
|
||||||
|
position: relative;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 447rpx;
|
height: 447rpx;
|
||||||
margin-bottom: 20rpx;
|
margin-bottom: 20rpx;
|
||||||
|
|
|
@ -11,8 +11,24 @@
|
||||||
<text style="color: #ACACAC;font-size: 25rpx;">刷新时间: {{getNowTimeFn()}} </text>
|
<text style="color: #ACACAC;font-size: 25rpx;">刷新时间: {{getNowTimeFn()}} </text>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="video" @click="navto('/pages/live/live')">
|
<view class="video" style="position: relative;">
|
||||||
<u--image :src="url" width="100%" height="300rpx"></u--image>
|
<u--image src="/static/img/viedobg.png" width="100%" height="300rpx" @click="goLive"
|
||||||
|
v-if="videoUrl"></u--image>
|
||||||
|
<u--image src="/static/main/index/k.png" width="100%" height="300rpx" v-else></u--image>
|
||||||
|
|
||||||
|
<view class=""
|
||||||
|
style="width: 100%;height: 100%;background-color: rgba(0, 0, 0, .5);position: absolute;top: 1px;"
|
||||||
|
@click="goLive" v-if="videoUrl">
|
||||||
|
<u-icon name="play-circle" size="40" color="white" v-if="videoUrl"
|
||||||
|
style="position: absolute;top: 50%;left: 50%;transform: translate(-50%,-50%);"></u-icon>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<landInfo :info='dataobj'></landInfo>
|
<landInfo :info='dataobj'></landInfo>
|
||||||
|
@ -127,6 +143,14 @@
|
||||||
onLoad,
|
onLoad,
|
||||||
onShow
|
onShow
|
||||||
} from "@dcloudio/uni-app"
|
} from "@dcloudio/uni-app"
|
||||||
|
const videoUrl = ref('')
|
||||||
|
console.log(videoUrl.value)
|
||||||
|
|
||||||
|
const goLive = () => {
|
||||||
|
uni.navigateTo({
|
||||||
|
url: '/pages/live/live?url=' + videoUrl.value
|
||||||
|
})
|
||||||
|
}
|
||||||
const list = reactive([{
|
const list = reactive([{
|
||||||
id: 1,
|
id: 1,
|
||||||
|
|
||||||
|
@ -199,6 +223,13 @@
|
||||||
}).then((res) => {
|
}).then((res) => {
|
||||||
|
|
||||||
if (res.code == 1) {
|
if (res.code == 1) {
|
||||||
|
console.log(res.data)
|
||||||
|
if (res.data.user_id == 23) {
|
||||||
|
videoUrl.value =
|
||||||
|
'http://rtsp.lihaink.cn/live/lihai_lot_walnutpi_dev_4.live.mp4?secret=YwDtp2llj80HA19JhMXL4Po99nsMAyNT'
|
||||||
|
}
|
||||||
|
console.log(videoUrl.value)
|
||||||
|
// videoUrl.value=res.data.
|
||||||
Object.assign(dataobj, res.data);
|
Object.assign(dataobj, res.data);
|
||||||
|
|
||||||
|
|
||||||
|
@ -217,7 +248,6 @@
|
||||||
dataList.forEach(item => {
|
dataList.forEach(item => {
|
||||||
item.showCode = false
|
item.showCode = false
|
||||||
})
|
})
|
||||||
console.log(dataList)
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,21 +1,11 @@
|
||||||
<template>
|
<template>
|
||||||
<view class="container">
|
<view class="container">
|
||||||
<view :style="'width: '+ windowWidth +'px; height: '+ boxStyle.height +'px;z-inde:-1;'">
|
<view :style="'width: '+ windowWidth +'px; height: '+ boxStyle.height +'px;z-inde:-1;'">
|
||||||
|
|
||||||
<view class="root">
|
<view class="root">
|
||||||
<video ref="videoPlayer"
|
<video ref="videoPlayer" :src="url" :object-fit="object_fit" :autoplay="true"
|
||||||
src="http://192.168.1.27/live/test.live.flv?secret=gqig2yFKkDpIMic1uWZY1L5MsIo0eflm" controls
|
:style="'width: '+ windowWidth +'px; height: '+ boxStyle.height +'px;'" id="video"></video>
|
||||||
:object-fit="object_fit" autoplay="true"
|
|
||||||
:style="'width: '+ windowWidth +'px; height: '+ boxStyle.height +'px;'"></video>
|
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
|
@ -32,6 +22,7 @@
|
||||||
},
|
},
|
||||||
object_fit: 'contain', //视频样式默认包含🌟
|
object_fit: 'contain', //视频样式默认包含🌟
|
||||||
windowWidth: '',
|
windowWidth: '',
|
||||||
|
url: ""
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -40,7 +31,21 @@
|
||||||
return this.rtmpSources[this.currentIndex];
|
return this.rtmpSources[this.currentIndex];
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
onLoad() {
|
onLoad(option) {
|
||||||
|
|
||||||
|
uni.request({
|
||||||
|
url: 'https://iot.lihaink.cn/push_stream', //仅为示例,并非真实接口地址。
|
||||||
|
data: {
|
||||||
|
text: 'uni.request'
|
||||||
|
},
|
||||||
|
|
||||||
|
success: (res) => {
|
||||||
|
console.log(res.data);
|
||||||
|
this.text = 'request success';
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
this.url = option.url
|
||||||
this.platform = uni.getSystemInfoSync().platform
|
this.platform = uni.getSystemInfoSync().platform
|
||||||
this.windowWidth = uni.getSystemInfoSync().screenWidth //获取屏幕宽度
|
this.windowWidth = uni.getSystemInfoSync().screenWidth //获取屏幕宽度
|
||||||
this.boxStyle.width = this.windowWidth + 'px' //给宽度加px
|
this.boxStyle.width = this.windowWidth + 'px' //给宽度加px
|
||||||
|
@ -48,8 +53,25 @@
|
||||||
this.boxStyle.height = this.wHeight; //改变视频高度
|
this.boxStyle.height = this.wHeight; //改变视频高度
|
||||||
this.get()
|
this.get()
|
||||||
},
|
},
|
||||||
mounted() {
|
onUnload() {
|
||||||
|
console.log("guanbi")
|
||||||
|
|
||||||
|
uni.request({
|
||||||
|
url: 'https://iot.lihaink.cn/close_stream', //仅为示例,并非真实接口地址。
|
||||||
|
data: {
|
||||||
|
text: 'uni.request'
|
||||||
|
},
|
||||||
|
success() {
|
||||||
|
|
||||||
|
},
|
||||||
|
fail: (res) => {
|
||||||
|
console.log(res.data);
|
||||||
|
}
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
// 初始化时播放第一个源
|
// 初始化时播放第一个源
|
||||||
|
|
||||||
// this.playCurrent();
|
// this.playCurrent();
|
||||||
|
@ -57,6 +79,11 @@
|
||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
|
|
||||||
|
playVedio() {
|
||||||
|
uni.createVideoContext('video', this).requestFullScreen();
|
||||||
|
screen.orientation.lock('landscape');
|
||||||
|
},
|
||||||
playCurrent() {
|
playCurrent() {
|
||||||
console.log(this.$refs.videoPlayer)
|
console.log(this.$refs.videoPlayer)
|
||||||
if (this.$refs.videoPlayer) {
|
if (this.$refs.videoPlayer) {
|
||||||
|
|
|
@ -0,0 +1,16 @@
|
||||||
|
<template>
|
||||||
|
|
||||||
|
<view class="root">
|
||||||
|
<video ref="videoPlayer"
|
||||||
|
src="http://flv4mp4.people.com.cn/videofile7/pvmsvideo/2023/6/29/DangWang-LiuYuanYuan_73783a6224527dc7b5448ded2f8de997_ms_hd.mp4"
|
||||||
|
:autoplay="true" @play="playVedio" style="width: 100vw;height: 100vh;" id="video"></video>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup>
|
||||||
|
// import mqtt from '@/uni_modules/celery-mqtt/js_sdk/index.js';
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
</style>
|
Binary file not shown.
After Width: | Height: | Size: 5.1 MiB |
|
@ -0,0 +1,6 @@
|
||||||
|
## 1.1.1(2022-03-10)
|
||||||
|
协议连接匹配
|
||||||
|
## 1.1.0(2022-03-10)
|
||||||
|
调整使用方式,完善readme
|
||||||
|
## 1.0.0(2022-03-09)
|
||||||
|
init
|
|
@ -0,0 +1,82 @@
|
||||||
|
const mqtt = require('mqtt');
|
||||||
|
|
||||||
|
let client;
|
||||||
|
|
||||||
|
export default {
|
||||||
|
/**
|
||||||
|
* 连接订阅
|
||||||
|
* @param {String} host 服务器地址
|
||||||
|
* @param {Integer} port 服务器端口
|
||||||
|
* @param {Object} conOptions 连接选项
|
||||||
|
* @param {StringOrArray} topic 订阅主题,数组
|
||||||
|
* @param {Object} subOptions 订阅选项
|
||||||
|
* @param {Function} callback 订阅回调
|
||||||
|
*/
|
||||||
|
connect: function(host, port, conOptions, topic, subOptions, callback) {
|
||||||
|
// 匹配对应protocol
|
||||||
|
let protocol = 'mqtt';
|
||||||
|
// #ifdef H5 || APP || APP-VUE
|
||||||
|
protocol = 'ws';
|
||||||
|
// #endif
|
||||||
|
// #ifdef MP-WEIXIN || APP-PLUS
|
||||||
|
protocol = 'wxs';
|
||||||
|
// #endif
|
||||||
|
// #ifdef MP-ALIPAY
|
||||||
|
protocol = 'alis';
|
||||||
|
// #endif
|
||||||
|
|
||||||
|
// 拼接Uri
|
||||||
|
const uri = protocol + "://" + host + ":" + port + "/mqtt";
|
||||||
|
|
||||||
|
// 客户端连接
|
||||||
|
client = mqtt.connect(uri, Object.assign({}, conOptions));
|
||||||
|
if (client) {
|
||||||
|
client.on('connect', function() {
|
||||||
|
if (client.connected) {
|
||||||
|
console.log(client.options.clientId, uri, 'connect ok');
|
||||||
|
|
||||||
|
client.subscribe(topic, Object.assign({}, subOptions), function(err, granted) {
|
||||||
|
if (!err) {
|
||||||
|
console.log('subscribe ok:', JSON.stringify(granted));
|
||||||
|
|
||||||
|
client.on('message', function(topic, message, packet) {
|
||||||
|
if (callback && typeof callback === "function") {
|
||||||
|
callback(topic, message);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
console.error('subscribe error:', err);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
console.error(client.options.clientId, uri, 'connect fail', client);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
console.error(client.options.clientId, uri, 'connect error');
|
||||||
|
}
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* 发布消息
|
||||||
|
* @param {String} topic 发布主题,字符串
|
||||||
|
* @param {Object} options 发布选项
|
||||||
|
* @param {BufferOrString} message 消息
|
||||||
|
* @param {Function} callback 发布回调
|
||||||
|
*/
|
||||||
|
publish: function(topic, options, message, callback) {
|
||||||
|
if (!client) {
|
||||||
|
console.error('client not connected');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
client.publish(topic, message, Object.assign({}, options), function(err) {
|
||||||
|
if (err) {
|
||||||
|
console.error(err);
|
||||||
|
} else {
|
||||||
|
if (callback && typeof callback === 'function') {
|
||||||
|
callback(topic);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,81 @@
|
||||||
|
{
|
||||||
|
"id": "celery-mqtt",
|
||||||
|
"displayName": "Celry Mqtt",
|
||||||
|
"version": "1.1.1",
|
||||||
|
"description": "celery-mqtt",
|
||||||
|
"keywords": [
|
||||||
|
"celery",
|
||||||
|
"mqtt"
|
||||||
|
],
|
||||||
|
"repository": "",
|
||||||
|
"engines": {
|
||||||
|
"HBuilderX": "^3.1.0"
|
||||||
|
},
|
||||||
|
"dcloudext": {
|
||||||
|
"category": [
|
||||||
|
"JS SDK",
|
||||||
|
"通用 SDK"
|
||||||
|
],
|
||||||
|
"sale": {
|
||||||
|
"regular": {
|
||||||
|
"price": "0.00"
|
||||||
|
},
|
||||||
|
"sourcecode": {
|
||||||
|
"price": "0.00"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"contact": {
|
||||||
|
"qq": "421156722"
|
||||||
|
},
|
||||||
|
"declaration": {
|
||||||
|
"ads": "无",
|
||||||
|
"data": "插件不采集任何数据",
|
||||||
|
"permissions": "无"
|
||||||
|
},
|
||||||
|
"npmurl": ""
|
||||||
|
},
|
||||||
|
"uni_modules": {
|
||||||
|
"dependencies": [],
|
||||||
|
"encrypt": [],
|
||||||
|
"platforms": {
|
||||||
|
"cloud": {
|
||||||
|
"tcb": "y",
|
||||||
|
"aliyun": "y"
|
||||||
|
},
|
||||||
|
"client": {
|
||||||
|
"Vue": {
|
||||||
|
"vue2": "y",
|
||||||
|
"vue3": "u"
|
||||||
|
},
|
||||||
|
"App": {
|
||||||
|
"app-vue": "u",
|
||||||
|
"app-nvue": "u"
|
||||||
|
},
|
||||||
|
"H5-mobile": {
|
||||||
|
"Safari": "u",
|
||||||
|
"Android Browser": "u",
|
||||||
|
"微信浏览器(Android)": "u",
|
||||||
|
"QQ浏览器(Android)": "u"
|
||||||
|
},
|
||||||
|
"H5-pc": {
|
||||||
|
"Chrome": "y",
|
||||||
|
"IE": "y",
|
||||||
|
"Edge": "y",
|
||||||
|
"Firefox": "y",
|
||||||
|
"Safari": "y"
|
||||||
|
},
|
||||||
|
"小程序": {
|
||||||
|
"微信": "y",
|
||||||
|
"阿里": "y",
|
||||||
|
"百度": "u",
|
||||||
|
"字节跳动": "u",
|
||||||
|
"QQ": "u"
|
||||||
|
},
|
||||||
|
"快应用": {
|
||||||
|
"华为": "u",
|
||||||
|
"联盟": "u"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,55 @@
|
||||||
|
# celery-mqtt
|
||||||
|
|
||||||
|
> 第一次发布插件,摸索学习中
|
||||||
|
|
||||||
|
- 进入项目根目录下安装mqtt,执行命令
|
||||||
|
-
|
||||||
|
```sh
|
||||||
|
npm install mqtt --save
|
||||||
|
```
|
||||||
|
|
||||||
|
- 在页面引入mqtt
|
||||||
|
```javascript
|
||||||
|
import mqtt from '@/uni_modules/celery-mqtt/js_sdk/index.js';
|
||||||
|
```
|
||||||
|
|
||||||
|
- 连接订阅
|
||||||
|
```javascript
|
||||||
|
mqtt.connect('127.0.0.1', 8083,
|
||||||
|
// 连接选项
|
||||||
|
{
|
||||||
|
// 用户名
|
||||||
|
username: 'admin',
|
||||||
|
// 密码
|
||||||
|
password: '1234.abcd',
|
||||||
|
// 自动重连间隔,设置为0表示禁用重连
|
||||||
|
reconnectPeriod: 0
|
||||||
|
},
|
||||||
|
// 订阅主题,字符串或者数组均支持
|
||||||
|
'Communication',
|
||||||
|
// 订阅选项
|
||||||
|
{
|
||||||
|
qos: 0
|
||||||
|
},
|
||||||
|
// 订阅消息回调
|
||||||
|
(topic, message) => {
|
||||||
|
console.log('received:', topic, message);
|
||||||
|
});
|
||||||
|
```
|
||||||
|
|
||||||
|
- 发布消息
|
||||||
|
```javascript
|
||||||
|
mqtt.publish(
|
||||||
|
// 发布主题,字符串
|
||||||
|
'Command',
|
||||||
|
// 发布选项
|
||||||
|
{
|
||||||
|
qos: 0
|
||||||
|
},
|
||||||
|
// 消息
|
||||||
|
'test',
|
||||||
|
// 发布回调
|
||||||
|
(topic) => {
|
||||||
|
console.log('published:', topic);
|
||||||
|
});
|
||||||
|
```
|
|
@ -1,5 +1,8 @@
|
||||||
Promise.resolve("./pages/live/live.js").then((res) => {
|
Promise.resolve("./pages/live/live.js").then((res) => {
|
||||||
res.length;
|
res.length;
|
||||||
});
|
});
|
||||||
|
Promise.resolve("./pages/addLand/select_address_n.js").then((res) => {
|
||||||
|
res.length;
|
||||||
|
});
|
||||||
Promise.resolve("./app.css.js").then(() => {
|
Promise.resolve("./app.css.js").then(() => {
|
||||||
});
|
});
|
||||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -51,6 +51,9 @@
|
||||||
"usingComponents": true,
|
"usingComponents": true,
|
||||||
"nvueStyleCompiler": "uni-app",
|
"nvueStyleCompiler": "uni-app",
|
||||||
"compilerVersion": 3,
|
"compilerVersion": 3,
|
||||||
|
"compatible": {
|
||||||
|
"ignoreVersion": true
|
||||||
|
},
|
||||||
"distribute": {
|
"distribute": {
|
||||||
"google": {
|
"google": {
|
||||||
"permissions": [
|
"permissions": [
|
||||||
|
@ -128,7 +131,7 @@
|
||||||
"uni-app": {
|
"uni-app": {
|
||||||
"control": "uni-v3",
|
"control": "uni-v3",
|
||||||
"vueVersion": "3",
|
"vueVersion": "3",
|
||||||
"compilerVersion": "3.8.12",
|
"compilerVersion": "3.96",
|
||||||
"nvueCompiler": "uni-app",
|
"nvueCompiler": "uni-app",
|
||||||
"renderer": "auto",
|
"renderer": "auto",
|
||||||
"nvue": {
|
"nvue": {
|
||||||
|
|
463
yarn.lock
463
yarn.lock
|
@ -2,69 +2,434 @@
|
||||||
# yarn lockfile v1
|
# yarn lockfile v1
|
||||||
|
|
||||||
|
|
||||||
|
"@babel/runtime@^7.23.5", "@babel/runtime@^7.23.6":
|
||||||
|
"integrity" "sha512-zHd0eUrf5GZoOWVCXp6koAKQTfZV07eit6bGPmJgnZdnSAvvZee6zniW2XMF7Cmc4ISOOnPy3QaSiIJGJkVEDQ=="
|
||||||
|
"resolved" "https://registry.npmmirror.com/@babel/runtime/-/runtime-7.23.6.tgz"
|
||||||
|
"version" "7.23.6"
|
||||||
|
dependencies:
|
||||||
|
"regenerator-runtime" "^0.14.0"
|
||||||
|
|
||||||
|
"@types/node@*":
|
||||||
|
"integrity" "sha512-nNPsNE65wjMxEKI93yOP+NPGGBJz/PoN3kZsVLee0XMiJolxSekEVD8wRwBUBqkwc7UWop0edW50yrCQW4CyRw=="
|
||||||
|
"resolved" "https://registry.npmmirror.com/@types/node/-/node-20.10.5.tgz"
|
||||||
|
"version" "20.10.5"
|
||||||
|
dependencies:
|
||||||
|
"undici-types" "~5.26.4"
|
||||||
|
|
||||||
|
"@types/readable-stream@^4.0.5":
|
||||||
|
"integrity" "sha512-AbUKBjcC8SHmImNi4yK2bbjogQlkFSg7shZCcicxPQapniOlajG8GCc39lvXzCWX4lLRRs7DM3VAeSlqmEVZUA=="
|
||||||
|
"resolved" "https://registry.npmmirror.com/@types/readable-stream/-/readable-stream-4.0.10.tgz"
|
||||||
|
"version" "4.0.10"
|
||||||
|
dependencies:
|
||||||
|
"@types/node" "*"
|
||||||
|
"safe-buffer" "~5.1.1"
|
||||||
|
|
||||||
|
"@types/ws@^8.5.9":
|
||||||
|
"integrity" "sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A=="
|
||||||
|
"resolved" "https://registry.npmmirror.com/@types/ws/-/ws-8.5.10.tgz"
|
||||||
|
"version" "8.5.10"
|
||||||
|
dependencies:
|
||||||
|
"@types/node" "*"
|
||||||
|
|
||||||
"@vue/devtools-api@^6.5.0":
|
"@vue/devtools-api@^6.5.0":
|
||||||
version "6.5.1"
|
"integrity" "sha512-+KpckaAQyfbvshdDW5xQylLni1asvNSGme1JFs8I1+/H5pHEhqUKMEQD/qn3Nx5+/nycBq11qAEi8lk+LXI2dA=="
|
||||||
resolved "https://registry.npmmirror.com/@vue/devtools-api/-/devtools-api-6.5.1.tgz"
|
"resolved" "https://registry.npmmirror.com/@vue/devtools-api/-/devtools-api-6.5.1.tgz"
|
||||||
integrity sha512-+KpckaAQyfbvshdDW5xQylLni1asvNSGme1JFs8I1+/H5pHEhqUKMEQD/qn3Nx5+/nycBq11qAEi8lk+LXI2dA==
|
"version" "6.5.1"
|
||||||
|
|
||||||
clipboard@^2.0.11:
|
"abort-controller@^3.0.0":
|
||||||
version "2.0.11"
|
"integrity" "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg=="
|
||||||
resolved "https://registry.npmjs.org/clipboard/-/clipboard-2.0.11.tgz"
|
"resolved" "https://registry.npmmirror.com/abort-controller/-/abort-controller-3.0.0.tgz"
|
||||||
integrity sha512-C+0bbOqkezLIsmWSvlsXS0Q0bmkugu7jcfMIACB+RDEntIzQIkdr148we28AfSloQLRdZlYL/QYyrq05j/3Faw==
|
"version" "3.0.0"
|
||||||
dependencies:
|
dependencies:
|
||||||
good-listener "^1.2.2"
|
"event-target-shim" "^5.0.0"
|
||||||
select "^1.1.2"
|
|
||||||
tiny-emitter "^2.0.0"
|
|
||||||
|
|
||||||
dayjs@^1.11.3:
|
"balanced-match@^1.0.0":
|
||||||
version "1.11.10"
|
"integrity" "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
|
||||||
resolved "https://registry.npmjs.org/dayjs/-/dayjs-1.11.10.tgz"
|
"resolved" "https://registry.npmmirror.com/balanced-match/-/balanced-match-1.0.2.tgz"
|
||||||
integrity sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ==
|
"version" "1.0.2"
|
||||||
|
|
||||||
delegate@^3.1.2:
|
"base64-js@^1.3.1":
|
||||||
version "3.2.0"
|
"integrity" "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA=="
|
||||||
resolved "https://registry.npmjs.org/delegate/-/delegate-3.2.0.tgz"
|
"resolved" "https://registry.npmmirror.com/base64-js/-/base64-js-1.5.1.tgz"
|
||||||
integrity sha512-IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw==
|
"version" "1.5.1"
|
||||||
|
|
||||||
good-listener@^1.2.2:
|
"bl@^6.0.8":
|
||||||
version "1.2.2"
|
"integrity" "sha512-Vh+M9HMfeTST9rkkQ1utRnOeABNcBO3i0dJMFkenCv7JIp76XWx8uQOGpaXyXVyenrLDZsdAHXbf0Cz18Eb0fw=="
|
||||||
resolved "https://registry.npmjs.org/good-listener/-/good-listener-1.2.2.tgz"
|
"resolved" "https://registry.npmmirror.com/bl/-/bl-6.0.9.tgz"
|
||||||
integrity sha512-goW1b+d9q/HIwbVYZzZ6SsTr4IgE+WA44A0GmPIQstuOrgsFcT7VEJ48nmr9GaRtNu0XTKacFLGnBPAM6Afouw==
|
"version" "6.0.9"
|
||||||
dependencies:
|
dependencies:
|
||||||
delegate "^3.1.2"
|
"buffer" "^6.0.3"
|
||||||
|
"inherits" "^2.0.4"
|
||||||
|
"readable-stream" "^4.2.0"
|
||||||
|
|
||||||
pinia@^2.0.33:
|
"brace-expansion@^2.0.1":
|
||||||
version "2.0.33"
|
"integrity" "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA=="
|
||||||
resolved "https://registry.npmmirror.com/pinia/-/pinia-2.0.33.tgz"
|
"resolved" "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-2.0.1.tgz"
|
||||||
integrity sha512-HOj1yVV2itw6rNIrR2f7+MirGNxhORjrULL8GWgRwXsGSvEqIQ+SE0MYt6cwtpegzCda3i+rVTZM+AM7CG+kRg==
|
"version" "2.0.1"
|
||||||
|
dependencies:
|
||||||
|
"balanced-match" "^1.0.0"
|
||||||
|
|
||||||
|
"buffer-from@^1.0.0":
|
||||||
|
"integrity" "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ=="
|
||||||
|
"resolved" "https://registry.npmmirror.com/buffer-from/-/buffer-from-1.1.2.tgz"
|
||||||
|
"version" "1.1.2"
|
||||||
|
|
||||||
|
"buffer@^6.0.3":
|
||||||
|
"integrity" "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA=="
|
||||||
|
"resolved" "https://registry.npmmirror.com/buffer/-/buffer-6.0.3.tgz"
|
||||||
|
"version" "6.0.3"
|
||||||
|
dependencies:
|
||||||
|
"base64-js" "^1.3.1"
|
||||||
|
"ieee754" "^1.2.1"
|
||||||
|
|
||||||
|
"clipboard@^2.0.11":
|
||||||
|
"integrity" "sha512-C+0bbOqkezLIsmWSvlsXS0Q0bmkugu7jcfMIACB+RDEntIzQIkdr148we28AfSloQLRdZlYL/QYyrq05j/3Faw=="
|
||||||
|
"resolved" "https://registry.npmjs.org/clipboard/-/clipboard-2.0.11.tgz"
|
||||||
|
"version" "2.0.11"
|
||||||
|
dependencies:
|
||||||
|
"good-listener" "^1.2.2"
|
||||||
|
"select" "^1.1.2"
|
||||||
|
"tiny-emitter" "^2.0.0"
|
||||||
|
|
||||||
|
"commist@^3.2.0":
|
||||||
|
"integrity" "sha512-4PIMoPniho+LqXmpS5d3NuGYncG6XWlkBSVGiWycL22dd42OYdUGil2CWuzklaJoNxyxUSpO4MKIBU94viWNAw=="
|
||||||
|
"resolved" "https://registry.npmmirror.com/commist/-/commist-3.2.0.tgz"
|
||||||
|
"version" "3.2.0"
|
||||||
|
|
||||||
|
"concat-stream@^2.0.0":
|
||||||
|
"integrity" "sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A=="
|
||||||
|
"resolved" "https://registry.npmmirror.com/concat-stream/-/concat-stream-2.0.0.tgz"
|
||||||
|
"version" "2.0.0"
|
||||||
|
dependencies:
|
||||||
|
"buffer-from" "^1.0.0"
|
||||||
|
"inherits" "^2.0.3"
|
||||||
|
"readable-stream" "^3.0.2"
|
||||||
|
"typedarray" "^0.0.6"
|
||||||
|
|
||||||
|
"dayjs@^1.11.3":
|
||||||
|
"integrity" "sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ=="
|
||||||
|
"resolved" "https://registry.npmjs.org/dayjs/-/dayjs-1.11.10.tgz"
|
||||||
|
"version" "1.11.10"
|
||||||
|
|
||||||
|
"debug@^4.3.1", "debug@^4.3.4":
|
||||||
|
"integrity" "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ=="
|
||||||
|
"resolved" "https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz"
|
||||||
|
"version" "4.3.4"
|
||||||
|
dependencies:
|
||||||
|
"ms" "2.1.2"
|
||||||
|
|
||||||
|
"delegate@^3.1.2":
|
||||||
|
"integrity" "sha512-IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw=="
|
||||||
|
"resolved" "https://registry.npmjs.org/delegate/-/delegate-3.2.0.tgz"
|
||||||
|
"version" "3.2.0"
|
||||||
|
|
||||||
|
"event-target-shim@^5.0.0":
|
||||||
|
"integrity" "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ=="
|
||||||
|
"resolved" "https://registry.npmmirror.com/event-target-shim/-/event-target-shim-5.0.1.tgz"
|
||||||
|
"version" "5.0.1"
|
||||||
|
|
||||||
|
"events@^3.3.0":
|
||||||
|
"integrity" "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q=="
|
||||||
|
"resolved" "https://registry.npmmirror.com/events/-/events-3.3.0.tgz"
|
||||||
|
"version" "3.3.0"
|
||||||
|
|
||||||
|
"fast-unique-numbers@^8.0.12":
|
||||||
|
"integrity" "sha512-Z4AJueNDnuC/sLxeQqrHP4zgqcBIeQQLbQ0hEx1a7m6Wf7ERrdAyR7CkGfoEFWm9Qla7dpLt0eWPyiO18gqj0A=="
|
||||||
|
"resolved" "https://registry.npmmirror.com/fast-unique-numbers/-/fast-unique-numbers-8.0.12.tgz"
|
||||||
|
"version" "8.0.12"
|
||||||
|
dependencies:
|
||||||
|
"@babel/runtime" "^7.23.5"
|
||||||
|
"tslib" "^2.6.2"
|
||||||
|
|
||||||
|
"fs.realpath@^1.0.0":
|
||||||
|
"integrity" "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw=="
|
||||||
|
"resolved" "https://registry.npmmirror.com/fs.realpath/-/fs.realpath-1.0.0.tgz"
|
||||||
|
"version" "1.0.0"
|
||||||
|
|
||||||
|
"glob@^8.0.0":
|
||||||
|
"integrity" "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ=="
|
||||||
|
"resolved" "https://registry.npmmirror.com/glob/-/glob-8.1.0.tgz"
|
||||||
|
"version" "8.1.0"
|
||||||
|
dependencies:
|
||||||
|
"fs.realpath" "^1.0.0"
|
||||||
|
"inflight" "^1.0.4"
|
||||||
|
"inherits" "2"
|
||||||
|
"minimatch" "^5.0.1"
|
||||||
|
"once" "^1.3.0"
|
||||||
|
|
||||||
|
"good-listener@^1.2.2":
|
||||||
|
"integrity" "sha512-goW1b+d9q/HIwbVYZzZ6SsTr4IgE+WA44A0GmPIQstuOrgsFcT7VEJ48nmr9GaRtNu0XTKacFLGnBPAM6Afouw=="
|
||||||
|
"resolved" "https://registry.npmjs.org/good-listener/-/good-listener-1.2.2.tgz"
|
||||||
|
"version" "1.2.2"
|
||||||
|
dependencies:
|
||||||
|
"delegate" "^3.1.2"
|
||||||
|
|
||||||
|
"help-me@^4.2.0":
|
||||||
|
"integrity" "sha512-TAOnTB8Tz5Dw8penUuzHVrKNKlCIbwwbHnXraNJxPwf8LRtE2HlM84RYuezMFcwOJmoYOCWVDyJ8TQGxn9PgxA=="
|
||||||
|
"resolved" "https://registry.npmmirror.com/help-me/-/help-me-4.2.0.tgz"
|
||||||
|
"version" "4.2.0"
|
||||||
|
dependencies:
|
||||||
|
"glob" "^8.0.0"
|
||||||
|
"readable-stream" "^3.6.0"
|
||||||
|
|
||||||
|
"ieee754@^1.2.1":
|
||||||
|
"integrity" "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA=="
|
||||||
|
"resolved" "https://registry.npmmirror.com/ieee754/-/ieee754-1.2.1.tgz"
|
||||||
|
"version" "1.2.1"
|
||||||
|
|
||||||
|
"inflight@^1.0.4":
|
||||||
|
"integrity" "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA=="
|
||||||
|
"resolved" "https://registry.npmmirror.com/inflight/-/inflight-1.0.6.tgz"
|
||||||
|
"version" "1.0.6"
|
||||||
|
dependencies:
|
||||||
|
"once" "^1.3.0"
|
||||||
|
"wrappy" "1"
|
||||||
|
|
||||||
|
"inherits@^2.0.3", "inherits@^2.0.4", "inherits@2":
|
||||||
|
"integrity" "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
|
||||||
|
"resolved" "https://registry.npmmirror.com/inherits/-/inherits-2.0.4.tgz"
|
||||||
|
"version" "2.0.4"
|
||||||
|
|
||||||
|
"js-sdsl@4.3.0":
|
||||||
|
"integrity" "sha512-mifzlm2+5nZ+lEcLJMoBK0/IH/bDg8XnJfd/Wq6IP+xoCjLZsTOnV2QpxlVbX9bMnkl5PdEjNtBJ9Cj1NjifhQ=="
|
||||||
|
"resolved" "https://registry.npmmirror.com/js-sdsl/-/js-sdsl-4.3.0.tgz"
|
||||||
|
"version" "4.3.0"
|
||||||
|
|
||||||
|
"lru-cache@^10.0.1":
|
||||||
|
"integrity" "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag=="
|
||||||
|
"resolved" "https://registry.npmmirror.com/lru-cache/-/lru-cache-10.1.0.tgz"
|
||||||
|
"version" "10.1.0"
|
||||||
|
|
||||||
|
"minimatch@^5.0.1":
|
||||||
|
"integrity" "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g=="
|
||||||
|
"resolved" "https://registry.npmmirror.com/minimatch/-/minimatch-5.1.6.tgz"
|
||||||
|
"version" "5.1.6"
|
||||||
|
dependencies:
|
||||||
|
"brace-expansion" "^2.0.1"
|
||||||
|
|
||||||
|
"minimist@^1.2.8":
|
||||||
|
"integrity" "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA=="
|
||||||
|
"resolved" "https://registry.npmmirror.com/minimist/-/minimist-1.2.8.tgz"
|
||||||
|
"version" "1.2.8"
|
||||||
|
|
||||||
|
"mqtt-packet@^9.0.0":
|
||||||
|
"integrity" "sha512-8v+HkX+fwbodsWAZIZTI074XIoxVBOmPeggQuDFCGg1SqNcC+uoRMWu7J6QlJPqIUIJXmjNYYHxBBLr1Y/Df4w=="
|
||||||
|
"resolved" "https://registry.npmmirror.com/mqtt-packet/-/mqtt-packet-9.0.0.tgz"
|
||||||
|
"version" "9.0.0"
|
||||||
|
dependencies:
|
||||||
|
"bl" "^6.0.8"
|
||||||
|
"debug" "^4.3.4"
|
||||||
|
"process-nextick-args" "^2.0.1"
|
||||||
|
|
||||||
|
"mqtt@^5.2.0", "mqtt@^5.3.3":
|
||||||
|
"integrity" "sha512-iy/9I81xnmYxENKL91hdiJ1LOkNYygCE0xCUtLeEo3BjQHraOky5gB/X3aPnvZ2fqlm1C0BhLmVcL6NRJ/U4tA=="
|
||||||
|
"resolved" "https://registry.npmmirror.com/mqtt/-/mqtt-5.3.3.tgz"
|
||||||
|
"version" "5.3.3"
|
||||||
|
dependencies:
|
||||||
|
"@types/readable-stream" "^4.0.5"
|
||||||
|
"@types/ws" "^8.5.9"
|
||||||
|
"commist" "^3.2.0"
|
||||||
|
"concat-stream" "^2.0.0"
|
||||||
|
"debug" "^4.3.4"
|
||||||
|
"help-me" "^4.2.0"
|
||||||
|
"lru-cache" "^10.0.1"
|
||||||
|
"minimist" "^1.2.8"
|
||||||
|
"mqtt" "^5.2.0"
|
||||||
|
"mqtt-packet" "^9.0.0"
|
||||||
|
"number-allocator" "^1.0.14"
|
||||||
|
"readable-stream" "^4.4.2"
|
||||||
|
"reinterval" "^1.1.0"
|
||||||
|
"rfdc" "^1.3.0"
|
||||||
|
"split2" "^4.2.0"
|
||||||
|
"worker-timers" "^7.0.78"
|
||||||
|
"ws" "^8.14.2"
|
||||||
|
|
||||||
|
"ms@2.1.2":
|
||||||
|
"integrity" "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
|
||||||
|
"resolved" "https://registry.npmmirror.com/ms/-/ms-2.1.2.tgz"
|
||||||
|
"version" "2.1.2"
|
||||||
|
|
||||||
|
"number-allocator@^1.0.14":
|
||||||
|
"integrity" "sha512-OrL44UTVAvkKdOdRQZIJpLkAdjXGTRda052sN4sO77bKEzYYqWKMBjQvrJFzqygI99gL6Z4u2xctPW1tB8ErvA=="
|
||||||
|
"resolved" "https://registry.npmmirror.com/number-allocator/-/number-allocator-1.0.14.tgz"
|
||||||
|
"version" "1.0.14"
|
||||||
|
dependencies:
|
||||||
|
"debug" "^4.3.1"
|
||||||
|
"js-sdsl" "4.3.0"
|
||||||
|
|
||||||
|
"once@^1.3.0":
|
||||||
|
"integrity" "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w=="
|
||||||
|
"resolved" "https://registry.npmmirror.com/once/-/once-1.4.0.tgz"
|
||||||
|
"version" "1.4.0"
|
||||||
|
dependencies:
|
||||||
|
"wrappy" "1"
|
||||||
|
|
||||||
|
"pinia@^2.0.33":
|
||||||
|
"integrity" "sha512-HOj1yVV2itw6rNIrR2f7+MirGNxhORjrULL8GWgRwXsGSvEqIQ+SE0MYt6cwtpegzCda3i+rVTZM+AM7CG+kRg=="
|
||||||
|
"resolved" "https://registry.npmmirror.com/pinia/-/pinia-2.0.33.tgz"
|
||||||
|
"version" "2.0.33"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@vue/devtools-api" "^6.5.0"
|
"@vue/devtools-api" "^6.5.0"
|
||||||
vue-demi "*"
|
"vue-demi" "*"
|
||||||
|
|
||||||
select@^1.1.2:
|
"process-nextick-args@^2.0.1":
|
||||||
version "1.1.2"
|
"integrity" "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag=="
|
||||||
resolved "https://registry.npmjs.org/select/-/select-1.1.2.tgz"
|
"resolved" "https://registry.npmmirror.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz"
|
||||||
integrity sha512-OwpTSOfy6xSs1+pwcNrv0RBMOzI39Lp3qQKUTPVVPRjCdNa5JH/oPRiqsesIskK8TVgmRiHwO4KXlV2Li9dANA==
|
"version" "2.0.1"
|
||||||
|
|
||||||
tiny-emitter@^2.0.0:
|
"process@^0.11.10":
|
||||||
version "2.1.0"
|
"integrity" "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A=="
|
||||||
resolved "https://registry.npmjs.org/tiny-emitter/-/tiny-emitter-2.1.0.tgz"
|
"resolved" "https://registry.npmmirror.com/process/-/process-0.11.10.tgz"
|
||||||
integrity sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q==
|
"version" "0.11.10"
|
||||||
|
|
||||||
uview-plus@^3.1.38:
|
"readable-stream@^3.0.2":
|
||||||
version "3.1.38"
|
"integrity" "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA=="
|
||||||
resolved "https://registry.npmjs.org/uview-plus/-/uview-plus-3.1.38.tgz"
|
"resolved" "https://registry.npmmirror.com/readable-stream/-/readable-stream-3.6.2.tgz"
|
||||||
integrity sha512-sdEkDBdqhBuzJVDXR4ApzchtdZjaen2jK23h0Mp5VSLngWEPiOmWDwSBu66ZHbnM9n4xTzfip6t6cGRFhvIGRA==
|
"version" "3.6.2"
|
||||||
dependencies:
|
dependencies:
|
||||||
clipboard "^2.0.11"
|
"inherits" "^2.0.3"
|
||||||
dayjs "^1.11.3"
|
"string_decoder" "^1.1.1"
|
||||||
|
"util-deprecate" "^1.0.1"
|
||||||
|
|
||||||
vue-demi@*:
|
"readable-stream@^3.6.0":
|
||||||
version "0.14.6"
|
"integrity" "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA=="
|
||||||
resolved "https://registry.npmmirror.com/vue-demi/-/vue-demi-0.14.6.tgz"
|
"resolved" "https://registry.npmmirror.com/readable-stream/-/readable-stream-3.6.2.tgz"
|
||||||
integrity sha512-8QA7wrYSHKaYgUxDA5ZC24w+eHm3sYCbp0EzcDwKqN3p6HqtTCGR/GVsPyZW92unff4UlcSh++lmqDWN3ZIq4w==
|
"version" "3.6.2"
|
||||||
|
dependencies:
|
||||||
|
"inherits" "^2.0.3"
|
||||||
|
"string_decoder" "^1.1.1"
|
||||||
|
"util-deprecate" "^1.0.1"
|
||||||
|
|
||||||
|
"readable-stream@^4.2.0", "readable-stream@^4.4.2":
|
||||||
|
"integrity" "sha512-uQjbf34vmf/asGnOHQEw07Q4llgMACQZTWWa4MmICS0IKJoHbLwKCy71H3eR99Dw5iYejc6W+pqZZEeqRtUFAw=="
|
||||||
|
"resolved" "https://registry.npmmirror.com/readable-stream/-/readable-stream-4.5.1.tgz"
|
||||||
|
"version" "4.5.1"
|
||||||
|
dependencies:
|
||||||
|
"abort-controller" "^3.0.0"
|
||||||
|
"buffer" "^6.0.3"
|
||||||
|
"events" "^3.3.0"
|
||||||
|
"process" "^0.11.10"
|
||||||
|
"string_decoder" "^1.3.0"
|
||||||
|
|
||||||
|
"regenerator-runtime@^0.14.0":
|
||||||
|
"integrity" "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw=="
|
||||||
|
"resolved" "https://registry.npmmirror.com/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz"
|
||||||
|
"version" "0.14.1"
|
||||||
|
|
||||||
|
"reinterval@^1.1.0":
|
||||||
|
"integrity" "sha512-QIRet3SYrGp0HUHO88jVskiG6seqUGC5iAG7AwI/BV4ypGcuqk9Du6YQBUOUqm9c8pw1eyLoIaONifRua1lsEQ=="
|
||||||
|
"resolved" "https://registry.npmmirror.com/reinterval/-/reinterval-1.1.0.tgz"
|
||||||
|
"version" "1.1.0"
|
||||||
|
|
||||||
|
"rfdc@^1.3.0":
|
||||||
|
"integrity" "sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA=="
|
||||||
|
"resolved" "https://registry.npmmirror.com/rfdc/-/rfdc-1.3.0.tgz"
|
||||||
|
"version" "1.3.0"
|
||||||
|
|
||||||
|
"safe-buffer@~5.1.1":
|
||||||
|
"integrity" "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="
|
||||||
|
"resolved" "https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.1.2.tgz"
|
||||||
|
"version" "5.1.2"
|
||||||
|
|
||||||
|
"safe-buffer@~5.2.0":
|
||||||
|
"integrity" "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="
|
||||||
|
"resolved" "https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.2.1.tgz"
|
||||||
|
"version" "5.2.1"
|
||||||
|
|
||||||
|
"select@^1.1.2":
|
||||||
|
"integrity" "sha512-OwpTSOfy6xSs1+pwcNrv0RBMOzI39Lp3qQKUTPVVPRjCdNa5JH/oPRiqsesIskK8TVgmRiHwO4KXlV2Li9dANA=="
|
||||||
|
"resolved" "https://registry.npmjs.org/select/-/select-1.1.2.tgz"
|
||||||
|
"version" "1.1.2"
|
||||||
|
|
||||||
|
"split2@^4.2.0":
|
||||||
|
"integrity" "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg=="
|
||||||
|
"resolved" "https://registry.npmmirror.com/split2/-/split2-4.2.0.tgz"
|
||||||
|
"version" "4.2.0"
|
||||||
|
|
||||||
|
"string_decoder@^1.1.1", "string_decoder@^1.3.0":
|
||||||
|
"integrity" "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA=="
|
||||||
|
"resolved" "https://registry.npmmirror.com/string_decoder/-/string_decoder-1.3.0.tgz"
|
||||||
|
"version" "1.3.0"
|
||||||
|
dependencies:
|
||||||
|
"safe-buffer" "~5.2.0"
|
||||||
|
|
||||||
|
"tiny-emitter@^2.0.0":
|
||||||
|
"integrity" "sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q=="
|
||||||
|
"resolved" "https://registry.npmjs.org/tiny-emitter/-/tiny-emitter-2.1.0.tgz"
|
||||||
|
"version" "2.1.0"
|
||||||
|
|
||||||
|
"tslib@^2.6.2":
|
||||||
|
"integrity" "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q=="
|
||||||
|
"resolved" "https://registry.npmmirror.com/tslib/-/tslib-2.6.2.tgz"
|
||||||
|
"version" "2.6.2"
|
||||||
|
|
||||||
|
"typedarray@^0.0.6":
|
||||||
|
"integrity" "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA=="
|
||||||
|
"resolved" "https://registry.npmmirror.com/typedarray/-/typedarray-0.0.6.tgz"
|
||||||
|
"version" "0.0.6"
|
||||||
|
|
||||||
|
"undici-types@~5.26.4":
|
||||||
|
"integrity" "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA=="
|
||||||
|
"resolved" "https://registry.npmmirror.com/undici-types/-/undici-types-5.26.5.tgz"
|
||||||
|
"version" "5.26.5"
|
||||||
|
|
||||||
|
"util-deprecate@^1.0.1":
|
||||||
|
"integrity" "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="
|
||||||
|
"resolved" "https://registry.npmmirror.com/util-deprecate/-/util-deprecate-1.0.2.tgz"
|
||||||
|
"version" "1.0.2"
|
||||||
|
|
||||||
|
"uview-plus@^3.1.38":
|
||||||
|
"integrity" "sha512-sdEkDBdqhBuzJVDXR4ApzchtdZjaen2jK23h0Mp5VSLngWEPiOmWDwSBu66ZHbnM9n4xTzfip6t6cGRFhvIGRA=="
|
||||||
|
"resolved" "https://registry.npmjs.org/uview-plus/-/uview-plus-3.1.38.tgz"
|
||||||
|
"version" "3.1.38"
|
||||||
|
dependencies:
|
||||||
|
"clipboard" "^2.0.11"
|
||||||
|
"dayjs" "^1.11.3"
|
||||||
|
|
||||||
|
"vue-demi@*":
|
||||||
|
"integrity" "sha512-8QA7wrYSHKaYgUxDA5ZC24w+eHm3sYCbp0EzcDwKqN3p6HqtTCGR/GVsPyZW92unff4UlcSh++lmqDWN3ZIq4w=="
|
||||||
|
"resolved" "https://registry.npmmirror.com/vue-demi/-/vue-demi-0.14.6.tgz"
|
||||||
|
"version" "0.14.6"
|
||||||
|
|
||||||
"vue@^2.6.14 || ^3.2.0", "vue@^3.0.0-0 || ^2.6.0":
|
"vue@^2.6.14 || ^3.2.0", "vue@^3.0.0-0 || ^2.6.0":
|
||||||
version "2.6.14"
|
"integrity" "sha512-x2284lgYvjOMj3Za7kqzRcUSxBboHqtgRE2zlos1qWaOye5yUmHn42LB1250NJBLRwEcdrB0JRwyPTEPhfQjiQ=="
|
||||||
resolved "https://registry.npmmirror.com/vue/-/vue-2.6.14.tgz"
|
"resolved" "https://registry.npmmirror.com/vue/-/vue-2.6.14.tgz"
|
||||||
integrity sha512-x2284lgYvjOMj3Za7kqzRcUSxBboHqtgRE2zlos1qWaOye5yUmHn42LB1250NJBLRwEcdrB0JRwyPTEPhfQjiQ==
|
"version" "2.6.14"
|
||||||
|
|
||||||
|
"worker-timers-broker@^6.0.100":
|
||||||
|
"integrity" "sha512-sXF1NpuT+FlJvONSbdZ6wNB15oNGg/P6PvCZDMHWmI6s7bHEb0zQ7cTnk9k+96/3pd8SpbXFuM0/HcHVc2alDQ=="
|
||||||
|
"resolved" "https://registry.npmmirror.com/worker-timers-broker/-/worker-timers-broker-6.0.100.tgz"
|
||||||
|
"version" "6.0.100"
|
||||||
|
dependencies:
|
||||||
|
"@babel/runtime" "^7.23.6"
|
||||||
|
"fast-unique-numbers" "^8.0.12"
|
||||||
|
"tslib" "^2.6.2"
|
||||||
|
"worker-timers-worker" "^7.0.64"
|
||||||
|
|
||||||
|
"worker-timers-worker@^7.0.64":
|
||||||
|
"integrity" "sha512-bzBO7rVibSYFKu5NBYfjKBKHujaA/AJzJTuEEqaOGfzcTdJv15raDuGhtDoMjcNPvt3IylfLph6AK92kuifnXA=="
|
||||||
|
"resolved" "https://registry.npmmirror.com/worker-timers-worker/-/worker-timers-worker-7.0.64.tgz"
|
||||||
|
"version" "7.0.64"
|
||||||
|
dependencies:
|
||||||
|
"@babel/runtime" "^7.23.6"
|
||||||
|
"tslib" "^2.6.2"
|
||||||
|
|
||||||
|
"worker-timers@^7.0.78":
|
||||||
|
"integrity" "sha512-bYSAPNVR0Nrm7hTM3hQOxM3x+D9dXFG6kZ0BBqFyRu0BUGC5+DLLK5Sx281hCaNzOGMNcUMEaoeErx3Yuf7XIw=="
|
||||||
|
"resolved" "https://registry.npmmirror.com/worker-timers/-/worker-timers-7.0.80.tgz"
|
||||||
|
"version" "7.0.80"
|
||||||
|
dependencies:
|
||||||
|
"@babel/runtime" "^7.23.6"
|
||||||
|
"tslib" "^2.6.2"
|
||||||
|
"worker-timers-broker" "^6.0.100"
|
||||||
|
"worker-timers-worker" "^7.0.64"
|
||||||
|
|
||||||
|
"wrappy@1":
|
||||||
|
"integrity" "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ=="
|
||||||
|
"resolved" "https://registry.npmmirror.com/wrappy/-/wrappy-1.0.2.tgz"
|
||||||
|
"version" "1.0.2"
|
||||||
|
|
||||||
|
"ws@^8.14.2":
|
||||||
|
"integrity" "sha512-W5OZiCjXEmk0yZ66ZN82beM5Sz7l7coYxpRkzS+p9PP+ToQry8szKh+61eNktr7EA9DOwvFGhfC605jDHbP6QQ=="
|
||||||
|
"resolved" "https://registry.npmmirror.com/ws/-/ws-8.15.1.tgz"
|
||||||
|
"version" "8.15.1"
|
||||||
|
|
Loading…
Reference in New Issue