This commit is contained in:
parent
59f356fa2e
commit
a1348e5e7d
|
@ -1,8 +1,8 @@
|
|||
let BASE_URL
|
||||
import store from "@/store/index.js"
|
||||
// 环境
|
||||
let env = "dev"
|
||||
// let env = "prod"
|
||||
// let env = "dev"
|
||||
let env = "prod"
|
||||
|
||||
|
||||
let HTTP_REQUEST_URL
|
||||
|
@ -10,7 +10,7 @@ let HEADER
|
|||
if (env == 'dev') {
|
||||
BASE_URL = 'http://ceshi-suyuan.lihaink.cn/'
|
||||
} else if (env = 'prod') {
|
||||
BASE_URL = 'http://ceshi-suyuan.lihaink.cn/'
|
||||
BASE_URL = 'https://suyuan.lihaink.cn/'
|
||||
}
|
||||
let config = {
|
||||
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' +
|
||||
(coverSupport ? ', viewport-fit=cover' : '') + '" />')
|
||||
</script>
|
||||
<script src="https://unpkg.com/mqtt/dist/mqtt.min.js"></script>
|
||||
<title></title>
|
||||
<!--preload-links-->
|
||||
<!--app-context-->
|
||||
|
@ -17,5 +18,8 @@
|
|||
<body>
|
||||
<div id="app"><!--app-html--></div>
|
||||
<script type="module" src="/main.js"></script>
|
||||
<script>
|
||||
console.log(mqtt)
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
|
@ -10,6 +10,9 @@
|
|||
"usingComponents" : true,
|
||||
"nvueStyleCompiler" : "uni-app",
|
||||
"compilerVersion" : 3,
|
||||
"compatible" : {
|
||||
"ignoreVersion" : true //true表示忽略版本检查提示框,HBuilderX1.9.0及以上版本支持
|
||||
},
|
||||
"screenOrientation" : [
|
||||
"portrait-primary",
|
||||
"portrait-secondary",
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
{
|
||||
"hash": "8ba23d55",
|
||||
"browserHash": "9b7bcd37",
|
||||
"hash": "94d25976",
|
||||
"browserHash": "565c15ee",
|
||||
"optimized": {
|
||||
"uview-plus": {
|
||||
"src": "../../uview-plus/index.js",
|
||||
"file": "uview-plus.js",
|
||||
"fileHash": "5cac3687",
|
||||
"fileHash": "2bbda469",
|
||||
"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 = {
|
||||
// 定义每个组件都可能需要用到的外部样式以及类名
|
||||
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 = {};
|
||||
|
||||
// ../../../../../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;
|
||||
function isArray(val) {
|
||||
return toString.call(val) === "[object Array]";
|
||||
|
@ -188,7 +188,7 @@ function isUndefined(val) {
|
|||
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) {
|
||||
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;
|
||||
}
|
||||
|
||||
// ../../../../../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) {
|
||||
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) {
|
||||
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) {
|
||||
if (baseURL && !isAbsoluteURL(requestedURL)) {
|
||||
return combineURLs(baseURL, requestedURL);
|
||||
|
@ -249,7 +249,7 @@ function buildFullPath(baseURL, 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) {
|
||||
const { validateStatus: validateStatus2 } = response.config;
|
||||
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) => {
|
||||
const config = {};
|
||||
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);
|
||||
|
||||
// ../../../../../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() {
|
||||
this.handlers = [];
|
||||
}
|
||||
|
@ -351,7 +351,7 @@ InterceptorManager.prototype.forEach = function forEach2(fn) {
|
|||
};
|
||||
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) => {
|
||||
const config = {};
|
||||
keys.forEach((prop) => {
|
||||
|
@ -413,7 +413,7 @@ var mergeConfig_default = (globalsConfig, config2 = {}) => {
|
|||
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 = {
|
||||
baseURL: "",
|
||||
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() {
|
||||
"use strict";
|
||||
function _instanceof(obj, type) {
|
||||
|
@ -625,7 +625,7 @@ var clone = function() {
|
|||
}();
|
||||
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 {
|
||||
/**
|
||||
* @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;
|
||||
|
||||
// ../../../../../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 {
|
||||
constructor() {
|
||||
this.config = {
|
||||
|
@ -866,7 +866,7 @@ var Router = class {
|
|||
};
|
||||
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) {
|
||||
const startRGB = hexToRgb(startColor, false);
|
||||
const startR = startRGB[0];
|
||||
|
@ -978,7 +978,7 @@ var colorGradient_default = {
|
|||
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) {
|
||||
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
|
||||
};
|
||||
|
||||
// ../../../../../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;
|
||||
function debounce(func2, wait = 500, immediate = false) {
|
||||
if (timeout !== null)
|
||||
|
@ -1172,7 +1172,7 @@ function debounce(func2, wait = 500, immediate = false) {
|
|||
}
|
||||
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 flag;
|
||||
function throttle(func2, wait = 500, immediate = true) {
|
||||
|
@ -1194,7 +1194,7 @@ function throttle(func2, wait = 500, immediate = true) {
|
|||
}
|
||||
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;
|
||||
function strip(num, precision = 15) {
|
||||
return +parseFloat(Number(num).toPrecision(precision));
|
||||
|
@ -1258,7 +1258,7 @@ function round(num, ratio) {
|
|||
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) {
|
||||
return Math.max(min, Math.min(max, Number(value)));
|
||||
}
|
||||
|
@ -1732,7 +1732,7 @@ var function_default = {
|
|||
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";
|
||||
if (true) {
|
||||
console.log(`
|
||||
|
@ -1767,7 +1767,7 @@ var config_default = {
|
|||
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 = {
|
||||
// action-sheet组件
|
||||
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 = {
|
||||
// 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 = {
|
||||
// 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 = {
|
||||
// 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 = {
|
||||
// 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 = {
|
||||
// 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 = {
|
||||
// 徽标数组件
|
||||
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 = {
|
||||
// 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 = {
|
||||
// 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 = {
|
||||
// 车牌号键盘
|
||||
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 = {
|
||||
// cell组件的props
|
||||
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 = {
|
||||
// cell-group组件的props
|
||||
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 = {
|
||||
// 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 = {
|
||||
// checkbox-group组件
|
||||
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 = {
|
||||
// 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 = {
|
||||
// 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 = {
|
||||
// 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 = {
|
||||
// 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 = {
|
||||
// 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 = {
|
||||
// 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 = {
|
||||
// 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 = {
|
||||
// u-count-down 计时器组件
|
||||
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 = {
|
||||
// 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 = {
|
||||
// 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 = {
|
||||
// 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 = {
|
||||
// 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 = {
|
||||
// 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 = {
|
||||
// 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 = {
|
||||
// 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 = {
|
||||
// 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 = {
|
||||
// grid-item组件
|
||||
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 {
|
||||
color
|
||||
} = 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 = {
|
||||
// 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 = {
|
||||
// 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 = {
|
||||
// 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 = {
|
||||
// index 组件
|
||||
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 = {
|
||||
// 键盘组件
|
||||
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 = {
|
||||
// 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 = {
|
||||
// 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 {
|
||||
color: color2
|
||||
} = 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 = {
|
||||
// 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 = {
|
||||
// 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 {
|
||||
color: color3
|
||||
} = 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 = {
|
||||
// loading-page组件
|
||||
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 = {
|
||||
// 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 = {
|
||||
// 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 = {
|
||||
primary: "#3c9cff",
|
||||
info: "#909399",
|
||||
|
@ -2617,7 +2617,7 @@ var 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 = {
|
||||
// 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 = {
|
||||
// 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 = {
|
||||
// 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 = {
|
||||
// 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 = {
|
||||
// 步进器组件
|
||||
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 = {
|
||||
// 数字键盘
|
||||
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 = {
|
||||
// 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 = {
|
||||
// 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 = {
|
||||
// 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 = {
|
||||
// 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 = {
|
||||
// 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 = {
|
||||
// radio-group组件
|
||||
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 = {
|
||||
// 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 = {
|
||||
// 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 = {
|
||||
// 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 = {
|
||||
// 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 = {
|
||||
// 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 = {
|
||||
// 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 = {
|
||||
// u-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 = {
|
||||
// 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 = {
|
||||
// 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 = {
|
||||
// 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 = {
|
||||
// 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 = {
|
||||
// steps-item组件
|
||||
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 = {
|
||||
// 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 = {
|
||||
// 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 = {
|
||||
// swipe-action组件
|
||||
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 = {
|
||||
// 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 = {
|
||||
// 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 = {
|
||||
// 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 = {
|
||||
// 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 = {
|
||||
// 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 = {
|
||||
//
|
||||
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 = {
|
||||
//
|
||||
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 = {
|
||||
// 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 = {
|
||||
// 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 = {
|
||||
// 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 = {
|
||||
// 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 = {
|
||||
// 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 = {
|
||||
// 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 = {
|
||||
// transition动画组件的props
|
||||
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 = {
|
||||
// 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 {
|
||||
color: color5
|
||||
} = config_default;
|
||||
|
@ -3459,7 +3459,7 @@ var props_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 = {
|
||||
toast: 10090,
|
||||
noNetwork: 10080,
|
||||
|
@ -3472,13 +3472,13 @@ var zIndex_default = {
|
|||
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";
|
||||
platform = "vue3";
|
||||
platform = "h5";
|
||||
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 babelTest = pleaseSetTranspileDependencies == null ? void 0 : pleaseSetTranspileDependencies.test;
|
||||
var $u = {
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -1,6 +1,7 @@
|
|||
{
|
||||
"dependencies": {
|
||||
"pinia": "^2.0.33",
|
||||
"uview-plus": "^3.1.38"
|
||||
}
|
||||
"dependencies": {
|
||||
"mqtt": "^5.3.3",
|
||||
"pinia": "^2.0.33",
|
||||
"uview-plus": "^3.1.38"
|
||||
}
|
||||
}
|
||||
|
|
11
pages.json
11
pages.json
|
@ -101,6 +101,17 @@
|
|||
{
|
||||
"path": "pages/live/live",
|
||||
"style": {
|
||||
"navigationStyle": "custom",
|
||||
"navigationBarTitleText": "苗情监测",
|
||||
"enablePullDownRefresh": false,
|
||||
"navigationBarBackgroundColor": "#F4F4F4",
|
||||
"navigationBarTextStyle": "black"
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "pages/live/live1",
|
||||
"style": {
|
||||
"navigationStyle": "custom",
|
||||
"navigationBarTitleText": "苗情监测",
|
||||
"enablePullDownRefresh": false,
|
||||
"navigationBarBackgroundColor": "#F4F4F4",
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
|
||||
<view class="input-card">
|
||||
<view class="card-head">
|
||||
<view class="triangle top" />
|
||||
<!-- <view class="triangle top" />
|
||||
<view class="triangle bottom" />
|
||||
<view class="code-login" @click="changeLoginType(0)" :class="{act:loginType==2}">
|
||||
<span>验证码登录</span>
|
||||
|
@ -28,6 +28,10 @@
|
|||
</view>
|
||||
<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 class="login-content">
|
||||
|
@ -85,10 +89,10 @@
|
|||
|
||||
|
||||
|
||||
<view class="" style="font-size: 26rpx;">
|
||||
<!-- <view class="" style="font-size: 26rpx;">
|
||||
<text>还没有账号?点击</text> <text @click="resgiter"
|
||||
style="color: #35D190;text-decoration: underline;">注册</text>
|
||||
</view>
|
||||
</view> -->
|
||||
|
||||
<view class="sub-btn">
|
||||
<u-button @click="submitFn" type="primary"
|
||||
|
@ -398,7 +402,7 @@
|
|||
account: "",
|
||||
password: "",
|
||||
code: '',
|
||||
scene: "2",
|
||||
scene: "1",
|
||||
terminal: ''
|
||||
|
||||
})
|
||||
|
@ -531,7 +535,7 @@
|
|||
}
|
||||
}
|
||||
const lineX = ref(0)
|
||||
const loginType = ref(2)
|
||||
const loginType = ref(1)
|
||||
const changeLoginType = (num) => {
|
||||
num ? loginType.value = 1 : loginType.value = 2
|
||||
formData.scene = loginType.value
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
</view>
|
||||
<view class="" style="margin-left: 20rpx;float: left;" @click="back">
|
||||
<u-icon name="arrow-left" color="white" size="20"></u-icon>
|
||||
<u-icon name="arrow-left" color="white" size="20"></u-icon>
|
||||
</view>
|
||||
<Myindex style="float: right;"></Myindex>
|
||||
<view class="content">
|
||||
|
@ -31,7 +31,7 @@
|
|||
customStyle="background:#F5F5F5;height:80rpx;padding-left:40rpx;border:none" shape='circle'
|
||||
border="surround" v-model="formData.mobile"></u-input>
|
||||
</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>验证码
|
||||
</view>
|
||||
<view class="" style="position: relative;">
|
||||
|
@ -43,7 +43,7 @@
|
|||
<view class="get-code" :style="{color: countDown?'grey':''}" @click="getCode"><text
|
||||
class="lineY"></text>
|
||||
获取验证码 <text v-if='countDown'>{{countDown}}s</text> </view>
|
||||
</view>
|
||||
</view> -->
|
||||
|
||||
<view class="" style="margin: 30rpx 0;">
|
||||
<view class="" style="display: flex;margin-top: 30rpx;margin-bottom: 10rpx;">
|
||||
|
@ -155,7 +155,7 @@
|
|||
|
||||
|
||||
}
|
||||
const back=()=>{
|
||||
const back = () => {
|
||||
uni.navigateBack()
|
||||
}
|
||||
</script>
|
||||
|
|
|
@ -119,7 +119,8 @@
|
|||
} from 'vue';
|
||||
import {
|
||||
onLoad,
|
||||
onReady
|
||||
onReady,
|
||||
onShow
|
||||
} from '@dcloudio/uni-app';
|
||||
import {
|
||||
Uploads
|
||||
|
@ -143,12 +144,12 @@
|
|||
city_code: '',
|
||||
county_code: '',
|
||||
address: '',
|
||||
lat: "",
|
||||
lon: "",
|
||||
latitude: "20",
|
||||
longitude: "20",
|
||||
master_name: '',
|
||||
master_phone: '',
|
||||
pic: ['https://img0.baidu.com/it/u=1717510975,3258230326&fm=253&fmt=auto?w=120&h=80',
|
||||
'https://img0.baidu.com/it/u=1717510975,3258230326&fm=253&fmt=auto?w=120&h=80'
|
||||
pic: [
|
||||
|
||||
]
|
||||
},
|
||||
rules: {
|
||||
|
@ -448,9 +449,19 @@
|
|||
console.error(error);
|
||||
}
|
||||
}
|
||||
|
||||
onShow((e) => {
|
||||
console.log(e)
|
||||
})
|
||||
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()
|
||||
|
||||
})
|
||||
|
|
|
@ -135,19 +135,20 @@
|
|||
},
|
||||
submitAddress() {
|
||||
|
||||
// console.log(this.latitude)
|
||||
// console.log(this.longitude)
|
||||
// console.log(this.address)
|
||||
|
||||
// uni.navigateTo({
|
||||
// url: '/pages/addLand/addLand'
|
||||
// })
|
||||
// // console.log(this.latitude)
|
||||
// // console.log(this.longitude)
|
||||
// // console.log(this.address)
|
||||
// return
|
||||
let data = {
|
||||
lat: this.latitude,
|
||||
lon: this.longitude,
|
||||
address: this.address
|
||||
}
|
||||
|
||||
uni.navigateTo({
|
||||
url: "/pages/addLand/addLand" + JSON.stringify(data)
|
||||
})
|
||||
uni.$emit('setData', JSON.stringify(data));
|
||||
uni.navigateBack()
|
||||
},
|
||||
searchMap() {
|
||||
uni.request({
|
||||
|
|
|
@ -12,6 +12,9 @@
|
|||
style="margin-right: 20rpx;"></u--image>
|
||||
{{dataobj.title}}
|
||||
|
||||
</view>
|
||||
<view class="" v-else>
|
||||
|
||||
</view>
|
||||
|
||||
<view class="" style="display: flex;align-items: center;">
|
||||
|
@ -94,7 +97,16 @@
|
|||
|
||||
</view>
|
||||
<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 class="">
|
||||
|
@ -104,15 +116,20 @@
|
|||
<view class="area-check">
|
||||
<view class="area-li" v-for="(item,index) in soilList" key="index"
|
||||
:style="{backgroundImage:`url(${bgc(item.icon)})`}">
|
||||
|
||||
|
||||
<view class="">
|
||||
{{item.name}}
|
||||
</view>
|
||||
<view class="" style="color:#73DFB2">
|
||||
<view class="" :style=" {color: item.status==0?'#73DFB2':'red'}">
|
||||
{{ item.num?item.num+item.unit:'--' }}
|
||||
</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>
|
||||
|
||||
|
@ -129,10 +146,18 @@
|
|||
<view class="">
|
||||
{{item.name}}
|
||||
</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-else>{{ item.num?item.num+item.unit:'--' }}</text>
|
||||
</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>
|
||||
|
@ -300,42 +325,49 @@
|
|||
name: "土壤温度",
|
||||
num: 0,
|
||||
unit: "℃",
|
||||
status: 0,
|
||||
|
||||
}, {
|
||||
icon: "trsd",
|
||||
name: "土壤湿度",
|
||||
num: 0,
|
||||
unit: "%RH",
|
||||
status: 0,
|
||||
|
||||
}, {
|
||||
icon: "trddl",
|
||||
name: "土壤导电率",
|
||||
num: 0,
|
||||
unit: "μS/cm",
|
||||
status: 0,
|
||||
|
||||
}, {
|
||||
icon: "trph",
|
||||
name: "土壤PH值",
|
||||
num: 0,
|
||||
unit: "PH",
|
||||
status: 0,
|
||||
|
||||
}, {
|
||||
icon: "trhdl",
|
||||
name: "土壤含氮量",
|
||||
num: 0,
|
||||
unit: "mg/kg",
|
||||
status: 0,
|
||||
|
||||
}, {
|
||||
icon: "trhll",
|
||||
name: "土壤含磷量",
|
||||
num: 0,
|
||||
unit: "mg/kg",
|
||||
status: 0,
|
||||
|
||||
}, {
|
||||
icon: "trhjl",
|
||||
name: "土壤含钾量",
|
||||
num: 0,
|
||||
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 showLoading = ref(false)
|
||||
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([{
|
||||
icon: "FS",
|
||||
name: "风速",
|
||||
num: 0,
|
||||
unit: "%",
|
||||
unit: "m/s",
|
||||
status: 0,
|
||||
|
||||
}, {
|
||||
icon: "FX",
|
||||
name: "风向",
|
||||
num: 0,
|
||||
unit: "%",
|
||||
unit: "",
|
||||
status: 0,
|
||||
|
||||
}, {
|
||||
icon: "WD1",
|
||||
name: "温度",
|
||||
num: 0,
|
||||
unit: "℃",
|
||||
status: 0,
|
||||
|
||||
}, {
|
||||
icon: "SD",
|
||||
name: "湿度",
|
||||
num: 0,
|
||||
unit: "%RH",
|
||||
status: 0,
|
||||
|
||||
}, {
|
||||
icon: 'eyht',
|
||||
name: "二氧化碳",
|
||||
num: 0,
|
||||
unit: "ppm",
|
||||
|
||||
status: 0,
|
||||
}, {
|
||||
icon: "QY",
|
||||
name: "气压",
|
||||
num: 0,
|
||||
unit: "KPa",
|
||||
status: 0,
|
||||
|
||||
}, {
|
||||
icon: "YL",
|
||||
name: "雨量",
|
||||
num: 0,
|
||||
unit: "mm",
|
||||
status: 0,
|
||||
|
||||
}, {
|
||||
icon: "GZ",
|
||||
name: "光照量",
|
||||
num: 0,
|
||||
unit: "Lux",
|
||||
status: 0,
|
||||
|
||||
},
|
||||
|
||||
|
@ -435,7 +493,9 @@
|
|||
const bgc = (icon) => {
|
||||
return `/static/main/index/${icon}.png`
|
||||
}
|
||||
const video_url = ref(
|
||||
|
||||
)
|
||||
//列表获取
|
||||
const getlist = () => {
|
||||
lindexist({
|
||||
|
@ -443,6 +503,17 @@
|
|||
}).then((res) => {
|
||||
|
||||
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) {
|
||||
getlist3(res.data.id)
|
||||
Object.assign(dataobj, res.data);
|
||||
|
@ -454,6 +525,13 @@
|
|||
soilList[4].num = res.data.monitor.soil_monitor_data.n_content
|
||||
soilList[5].num = res.data.monitor.soil_monitor_data.p_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) {
|
||||
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[6].num = res.data.monitor.air_monitor_data.rainfall
|
||||
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 {
|
||||
|
||||
|
||||
position: relative;
|
||||
width: 100%;
|
||||
height: 447rpx;
|
||||
margin-bottom: 20rpx;
|
||||
|
|
|
@ -11,8 +11,24 @@
|
|||
<text style="color: #ACACAC;font-size: 25rpx;">刷新时间: {{getNowTimeFn()}} </text>
|
||||
</view>
|
||||
</view>
|
||||
<view class="video" @click="navto('/pages/live/live')">
|
||||
<u--image :src="url" width="100%" height="300rpx"></u--image>
|
||||
<view class="video" style="position: relative;">
|
||||
<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>
|
||||
|
||||
<landInfo :info='dataobj'></landInfo>
|
||||
|
@ -127,6 +143,14 @@
|
|||
onLoad,
|
||||
onShow
|
||||
} 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([{
|
||||
id: 1,
|
||||
|
||||
|
@ -199,6 +223,13 @@
|
|||
}).then((res) => {
|
||||
|
||||
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);
|
||||
|
||||
|
||||
|
@ -217,7 +248,6 @@
|
|||
dataList.forEach(item => {
|
||||
item.showCode = false
|
||||
})
|
||||
console.log(dataList)
|
||||
}
|
||||
});
|
||||
};
|
||||
|
|
|
@ -1,21 +1,11 @@
|
|||
<template>
|
||||
<view class="container">
|
||||
<view :style="'width: '+ windowWidth +'px; height: '+ boxStyle.height +'px;z-inde:-1;'">
|
||||
|
||||
<view class="root">
|
||||
<video ref="videoPlayer"
|
||||
src="http://192.168.1.27/live/test.live.flv?secret=gqig2yFKkDpIMic1uWZY1L5MsIo0eflm" controls
|
||||
:object-fit="object_fit" autoplay="true"
|
||||
:style="'width: '+ windowWidth +'px; height: '+ boxStyle.height +'px;'"></video>
|
||||
<video ref="videoPlayer" :src="url" :object-fit="object_fit" :autoplay="true"
|
||||
:style="'width: '+ windowWidth +'px; height: '+ boxStyle.height +'px;'" id="video"></video>
|
||||
</view>
|
||||
|
||||
|
||||
|
||||
</view>
|
||||
|
||||
|
||||
|
||||
|
||||
</view>
|
||||
</template>
|
||||
<script>
|
||||
|
@ -32,6 +22,7 @@
|
|||
},
|
||||
object_fit: 'contain', //视频样式默认包含🌟
|
||||
windowWidth: '',
|
||||
url: ""
|
||||
}
|
||||
},
|
||||
|
||||
|
@ -40,7 +31,21 @@
|
|||
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.windowWidth = uni.getSystemInfoSync().screenWidth //获取屏幕宽度
|
||||
this.boxStyle.width = this.windowWidth + 'px' //给宽度加px
|
||||
|
@ -48,8 +53,25 @@
|
|||
this.boxStyle.height = this.wHeight; //改变视频高度
|
||||
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();
|
||||
|
@ -57,6 +79,11 @@
|
|||
},
|
||||
|
||||
methods: {
|
||||
|
||||
playVedio() {
|
||||
uni.createVideoContext('video', this).requestFullScreen();
|
||||
screen.orientation.lock('landscape');
|
||||
},
|
||||
playCurrent() {
|
||||
console.log(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) => {
|
||||
res.length;
|
||||
});
|
||||
Promise.resolve("./pages/addLand/select_address_n.js").then((res) => {
|
||||
res.length;
|
||||
});
|
||||
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,
|
||||
"nvueStyleCompiler": "uni-app",
|
||||
"compilerVersion": 3,
|
||||
"compatible": {
|
||||
"ignoreVersion": true
|
||||
},
|
||||
"distribute": {
|
||||
"google": {
|
||||
"permissions": [
|
||||
|
@ -128,7 +131,7 @@
|
|||
"uni-app": {
|
||||
"control": "uni-v3",
|
||||
"vueVersion": "3",
|
||||
"compilerVersion": "3.8.12",
|
||||
"compilerVersion": "3.96",
|
||||
"nvueCompiler": "uni-app",
|
||||
"renderer": "auto",
|
||||
"nvue": {
|
||||
|
|
463
yarn.lock
463
yarn.lock
|
@ -2,69 +2,434 @@
|
|||
# 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":
|
||||
version "6.5.1"
|
||||
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=="
|
||||
"resolved" "https://registry.npmmirror.com/@vue/devtools-api/-/devtools-api-6.5.1.tgz"
|
||||
"version" "6.5.1"
|
||||
|
||||
clipboard@^2.0.11:
|
||||
version "2.0.11"
|
||||
resolved "https://registry.npmjs.org/clipboard/-/clipboard-2.0.11.tgz"
|
||||
integrity sha512-C+0bbOqkezLIsmWSvlsXS0Q0bmkugu7jcfMIACB+RDEntIzQIkdr148we28AfSloQLRdZlYL/QYyrq05j/3Faw==
|
||||
"abort-controller@^3.0.0":
|
||||
"integrity" "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg=="
|
||||
"resolved" "https://registry.npmmirror.com/abort-controller/-/abort-controller-3.0.0.tgz"
|
||||
"version" "3.0.0"
|
||||
dependencies:
|
||||
good-listener "^1.2.2"
|
||||
select "^1.1.2"
|
||||
tiny-emitter "^2.0.0"
|
||||
"event-target-shim" "^5.0.0"
|
||||
|
||||
dayjs@^1.11.3:
|
||||
version "1.11.10"
|
||||
resolved "https://registry.npmjs.org/dayjs/-/dayjs-1.11.10.tgz"
|
||||
integrity sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ==
|
||||
"balanced-match@^1.0.0":
|
||||
"integrity" "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
|
||||
"resolved" "https://registry.npmmirror.com/balanced-match/-/balanced-match-1.0.2.tgz"
|
||||
"version" "1.0.2"
|
||||
|
||||
delegate@^3.1.2:
|
||||
version "3.2.0"
|
||||
resolved "https://registry.npmjs.org/delegate/-/delegate-3.2.0.tgz"
|
||||
integrity sha512-IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw==
|
||||
"base64-js@^1.3.1":
|
||||
"integrity" "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA=="
|
||||
"resolved" "https://registry.npmmirror.com/base64-js/-/base64-js-1.5.1.tgz"
|
||||
"version" "1.5.1"
|
||||
|
||||
good-listener@^1.2.2:
|
||||
version "1.2.2"
|
||||
resolved "https://registry.npmjs.org/good-listener/-/good-listener-1.2.2.tgz"
|
||||
integrity sha512-goW1b+d9q/HIwbVYZzZ6SsTr4IgE+WA44A0GmPIQstuOrgsFcT7VEJ48nmr9GaRtNu0XTKacFLGnBPAM6Afouw==
|
||||
"bl@^6.0.8":
|
||||
"integrity" "sha512-Vh+M9HMfeTST9rkkQ1utRnOeABNcBO3i0dJMFkenCv7JIp76XWx8uQOGpaXyXVyenrLDZsdAHXbf0Cz18Eb0fw=="
|
||||
"resolved" "https://registry.npmmirror.com/bl/-/bl-6.0.9.tgz"
|
||||
"version" "6.0.9"
|
||||
dependencies:
|
||||
delegate "^3.1.2"
|
||||
"buffer" "^6.0.3"
|
||||
"inherits" "^2.0.4"
|
||||
"readable-stream" "^4.2.0"
|
||||
|
||||
pinia@^2.0.33:
|
||||
version "2.0.33"
|
||||
resolved "https://registry.npmmirror.com/pinia/-/pinia-2.0.33.tgz"
|
||||
integrity sha512-HOj1yVV2itw6rNIrR2f7+MirGNxhORjrULL8GWgRwXsGSvEqIQ+SE0MYt6cwtpegzCda3i+rVTZM+AM7CG+kRg==
|
||||
"brace-expansion@^2.0.1":
|
||||
"integrity" "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA=="
|
||||
"resolved" "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-2.0.1.tgz"
|
||||
"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:
|
||||
"@vue/devtools-api" "^6.5.0"
|
||||
vue-demi "*"
|
||||
"vue-demi" "*"
|
||||
|
||||
select@^1.1.2:
|
||||
version "1.1.2"
|
||||
resolved "https://registry.npmjs.org/select/-/select-1.1.2.tgz"
|
||||
integrity sha512-OwpTSOfy6xSs1+pwcNrv0RBMOzI39Lp3qQKUTPVVPRjCdNa5JH/oPRiqsesIskK8TVgmRiHwO4KXlV2Li9dANA==
|
||||
"process-nextick-args@^2.0.1":
|
||||
"integrity" "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag=="
|
||||
"resolved" "https://registry.npmmirror.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz"
|
||||
"version" "2.0.1"
|
||||
|
||||
tiny-emitter@^2.0.0:
|
||||
version "2.1.0"
|
||||
resolved "https://registry.npmjs.org/tiny-emitter/-/tiny-emitter-2.1.0.tgz"
|
||||
integrity sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q==
|
||||
"process@^0.11.10":
|
||||
"integrity" "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A=="
|
||||
"resolved" "https://registry.npmmirror.com/process/-/process-0.11.10.tgz"
|
||||
"version" "0.11.10"
|
||||
|
||||
uview-plus@^3.1.38:
|
||||
version "3.1.38"
|
||||
resolved "https://registry.npmjs.org/uview-plus/-/uview-plus-3.1.38.tgz"
|
||||
integrity sha512-sdEkDBdqhBuzJVDXR4ApzchtdZjaen2jK23h0Mp5VSLngWEPiOmWDwSBu66ZHbnM9n4xTzfip6t6cGRFhvIGRA==
|
||||
"readable-stream@^3.0.2":
|
||||
"integrity" "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA=="
|
||||
"resolved" "https://registry.npmmirror.com/readable-stream/-/readable-stream-3.6.2.tgz"
|
||||
"version" "3.6.2"
|
||||
dependencies:
|
||||
clipboard "^2.0.11"
|
||||
dayjs "^1.11.3"
|
||||
"inherits" "^2.0.3"
|
||||
"string_decoder" "^1.1.1"
|
||||
"util-deprecate" "^1.0.1"
|
||||
|
||||
vue-demi@*:
|
||||
version "0.14.6"
|
||||
resolved "https://registry.npmmirror.com/vue-demi/-/vue-demi-0.14.6.tgz"
|
||||
integrity sha512-8QA7wrYSHKaYgUxDA5ZC24w+eHm3sYCbp0EzcDwKqN3p6HqtTCGR/GVsPyZW92unff4UlcSh++lmqDWN3ZIq4w==
|
||||
"readable-stream@^3.6.0":
|
||||
"integrity" "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA=="
|
||||
"resolved" "https://registry.npmmirror.com/readable-stream/-/readable-stream-3.6.2.tgz"
|
||||
"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":
|
||||
version "2.6.14"
|
||||
resolved "https://registry.npmmirror.com/vue/-/vue-2.6.14.tgz"
|
||||
integrity sha512-x2284lgYvjOMj3Za7kqzRcUSxBboHqtgRE2zlos1qWaOye5yUmHn42LB1250NJBLRwEcdrB0JRwyPTEPhfQjiQ==
|
||||
"integrity" "sha512-x2284lgYvjOMj3Za7kqzRcUSxBboHqtgRE2zlos1qWaOye5yUmHn42LB1250NJBLRwEcdrB0JRwyPTEPhfQjiQ=="
|
||||
"resolved" "https://registry.npmmirror.com/vue/-/vue-2.6.14.tgz"
|
||||
"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