From fb4666bb0407e6da4e3e1f8b1a68533f4ff25db8 Mon Sep 17 00:00:00 2001 From: YuanHuakk <1751826683@qq.com> Date: Tue, 19 Dec 2023 22:56:43 +0800 Subject: [PATCH] =?UTF-8?q?build(deps):=20=E4=BE=9D=E8=B5=96=E6=9B=B4?= =?UTF-8?q?=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config/index.ts | 26 +- package.json | 226 ++++----- pnpm-lock.yaml | 747 +++++++++++------------------ src/pages/cart/index.vue | 4 +- src/pages/mer/mer_detail/index.vue | 1 + 5 files changed, 404 insertions(+), 600 deletions(-) diff --git a/config/index.ts b/config/index.ts index 6903ce1..bc28a33 100644 --- a/config/index.ts +++ b/config/index.ts @@ -6,17 +6,19 @@ import { argv } from "yargs"; const { robot = 1, desc } = argv; -/** - * @typedef { import("@tarojs/plugin-mini-ci").CIOptions } CIOptions - * @type {CIOptions} - */ -const CIPluginOpt = { - weapp: { - appid: process.env.TARO_APP_ID, - privateKeyPath: process.env.TARO_APP_KEY, - robot, - }, - desc, +const CIPluginOptFn = async () => { + /** + * @typedef { import("@tarojs/plugin-mini-ci").CIOptions } CIOptions + * @type {CIOptions} + */ + return { + weapp: { + appid: process.env.TARO_APP_ID, + privateKeyPath: process.env.TARO_APP_KEY, + robot, + }, + desc, + }; }; const config = { @@ -36,7 +38,7 @@ const config = { }, sourceRoot: "src", outputRoot: "dist", - plugins: ["@tarojs/plugin-html", ["@tarojs/plugin-mini-ci", CIPluginOpt]], + plugins: ["@tarojs/plugin-html", ["@tarojs/plugin-mini-ci", CIPluginOptFn]], defineConstants: {}, copy: { patterns: [], diff --git a/package.json b/package.json index d0e07e8..7d92ff3 100644 --- a/package.json +++ b/package.json @@ -1,115 +1,115 @@ { - "name": "jdt-user", - "version": "3.0.5", - "private": true, - "description": "", - "templateInfo": { - "name": "jdt-user", - "typescript": true, - "css": "sass" - }, - "taroConfig": { - "version": "3.0.5" - }, - "scripts": { - "build:weapp": "taro build --type weapp", - "build:test": "taro build --type weapp --mode test", - "build:swan": "taro build --type swan", - "build:alipay": "taro build --type alipay", - "build:tt": "taro build --type tt", - "build:h5": "taro build --type h5", - "build:rn": "taro build --type rn", - "build:qq": "taro build --type qq", - "build:jd": "taro build --type jd", - "build:quickapp": "taro build --type quickapp", - "dev:weapp": "taro build --type weapp --watch", - "dev:swan": "npm run build:swan -- --watch", - "dev:alipay": "npm run build:alipay -- --watch", - "dev:tt": "npm run build:tt -- --watch", - "dev:h5": "npm run build:h5 -- --watch", - "dev:rn": "npm run build:rn -- --watch", - "dev:qq": "npm run build:qq -- --watch", - "dev:jd": "npm run build:jd -- --watch", - "dev:quickapp": "npm run build:quickapp -- --watch", - "lint": "eslint --ext .ts,.vue .", - "lint:fix": "eslint --fix --ext .ts,.vue .", - "lint:staged": "lint-staged", - "prepare": "husky install", - "preview": "vite preview", - "cz": "cz", - "lf": "npx prettier --write --end-of-line lf .", - "build:weapp:prod:upload": "taro build --type weapp --upload --robot=1 --desc='正式环境'", - "build:weapp:test:upload": "taro build --type weapp --upload --robot=2 --desc='测试环境' --mode test" - }, - "browserslist": [ - "last 3 versions", - "Android >= 4.1", - "ios >= 8" - ], - "author": "", - "lint-staged": { - "*.{ts,vue}": [ - "eslint --ext .ts,.vue .", - "npx prettier --write --end-of-line lf ." - ] - }, - "config": { - "commitizen": { - "path": "node_modules/cz-customizable" - } - }, - "dependencies": { - "@babel/runtime": "^7.23.5", - "@nutui/icons-vue-taro": "^0.0.9", - "@nutui/nutui-taro": "^4.2.3", - "@qiun/vue-ucharts": "2.5.0-20230101", - "@tarojs/components": "3.6.19", - "@tarojs/helper": "3.6.19", - "@tarojs/plugin-framework-vue3": "3.6.19", - "@tarojs/plugin-html": "3.6.19", - "@tarojs/plugin-platform-alipay": "3.6.19", - "@tarojs/plugin-platform-h5": "3.6.19", - "@tarojs/plugin-platform-jd": "3.6.19", - "@tarojs/plugin-platform-qq": "3.6.19", - "@tarojs/plugin-platform-swan": "3.6.19", - "@tarojs/plugin-platform-tt": "3.6.19", - "@tarojs/plugin-platform-weapp": "3.6.19", - "@tarojs/runtime": "3.6.19", - "@tarojs/shared": "3.6.19", - "@tarojs/taro": "3.6.19", - "dayjs": "^1.11.10", - "pinia": "^2.1.7", - "vue": "^3.3.9" - }, - "devDependencies": { - "@babel/core": "^7.23.5", - "@commitlint/cli": "^18.4.3", - "@commitlint/config-conventional": "^18.4.3", - "@tarojs/cli": "3.6.19", - "@tarojs/plugin-mini-ci": "^3.6.20", - "@tarojs/taro-loader": "3.6.19", - "@tarojs/webpack5-runner": "3.6.19", - "@types/node": "^18.19.1", - "@types/webpack-env": "^1.18.4", - "@typescript-eslint/eslint-plugin": "^6.13.1", - "@typescript-eslint/parser": "^6.13.1", - "@vue/babel-plugin-jsx": "^1.1.5", - "@vue/compiler-sfc": "^3.3.9", - "babel-preset-taro": "3.6.19", - "commitizen": "^4.3.0", - "css-loader": "3.4.2", - "cz-customizable": "^7.0.0", - "eslint": "^8.55.0", - "eslint-config-taro": "3.6.19", - "eslint-plugin-vue": "^9.19.2", - "husky": "^8.0.3", - "lint-staged": "^15.1.0", - "style-loader": "1.3.0", - "stylelint": "9.3.0", - "ts-node": "^10.9.1", - "typescript": "^4.9.5", - "unplugin-vue-components": "^0.23.0", - "vue-loader": "^17.3.1", - "webpack": "^5.89.0" - } + "name": "jdt-user", + "version": "3.0.6", + "private": true, + "description": "", + "templateInfo": { + "name": "jdt-user", + "typescript": true, + "css": "sass" + }, + "taroConfig": { + "version": "3.0.6" + }, + "scripts": { + "build:weapp": "taro build --type weapp", + "build:test": "taro build --type weapp --mode test", + "build:swan": "taro build --type swan", + "build:alipay": "taro build --type alipay", + "build:tt": "taro build --type tt", + "build:h5": "taro build --type h5", + "build:rn": "taro build --type rn", + "build:qq": "taro build --type qq", + "build:jd": "taro build --type jd", + "build:quickapp": "taro build --type quickapp", + "dev:weapp": "taro build --type weapp --watch", + "dev:swan": "npm run build:swan -- --watch", + "dev:alipay": "npm run build:alipay -- --watch", + "dev:tt": "npm run build:tt -- --watch", + "dev:h5": "npm run build:h5 -- --watch", + "dev:rn": "npm run build:rn -- --watch", + "dev:qq": "npm run build:qq -- --watch", + "dev:jd": "npm run build:jd -- --watch", + "dev:quickapp": "npm run build:quickapp -- --watch", + "lint": "eslint --ext .ts,.vue .", + "lint:fix": "eslint --fix --ext .ts,.vue .", + "lint:staged": "lint-staged", + "prepare": "husky install", + "preview": "vite preview", + "cz": "cz", + "lf": "npx prettier --write --end-of-line lf .", + "build:weapp:prod:upload": "taro build --type weapp --upload --robot=1 --desc='正式环境'", + "build:weapp:test:upload": "taro build --type weapp --upload --robot=2 --desc='测试环境' --mode test" + }, + "browserslist": [ + "last 3 versions", + "Android >= 4.1", + "ios >= 8" + ], + "author": "", + "lint-staged": { + "*.{ts,vue}": [ + "eslint --ext .ts,.vue .", + "npx prettier --write --end-of-line lf ." + ] + }, + "config": { + "commitizen": { + "path": "node_modules/cz-customizable" + } + }, + "dependencies": { + "@babel/runtime": "^7.23.5", + "@nutui/icons-vue-taro": "^0.0.9", + "@nutui/nutui-taro": "^4.2.4", + "@qiun/vue-ucharts": "2.5.0-20230101", + "@tarojs/components": "3.6.20", + "@tarojs/helper": "3.6.20", + "@tarojs/plugin-framework-vue3": "3.6.20", + "@tarojs/plugin-html": "3.6.20", + "@tarojs/plugin-platform-alipay": "3.6.20", + "@tarojs/plugin-platform-h5": "3.6.20", + "@tarojs/plugin-platform-jd": "3.6.20", + "@tarojs/plugin-platform-qq": "3.6.20", + "@tarojs/plugin-platform-swan": "3.6.20", + "@tarojs/plugin-platform-tt": "3.6.20", + "@tarojs/plugin-platform-weapp": "3.6.20", + "@tarojs/runtime": "3.6.20", + "@tarojs/shared": "3.6.20", + "@tarojs/taro": "3.6.20", + "dayjs": "^1.11.10", + "pinia": "^2.1.7", + "vue": "^3.3.9" + }, + "devDependencies": { + "@babel/core": "^7.23.5", + "@commitlint/cli": "^18.4.3", + "@commitlint/config-conventional": "^18.4.3", + "@tarojs/cli": "3.6.20", + "@tarojs/plugin-mini-ci": "3.6.20", + "@tarojs/taro-loader": "3.6.20", + "@tarojs/webpack5-runner": "3.6.20", + "@types/node": "^18.19.1", + "@types/webpack-env": "^1.18.4", + "@typescript-eslint/eslint-plugin": "^6.13.1", + "@typescript-eslint/parser": "^6.13.1", + "@vue/babel-plugin-jsx": "^1.1.5", + "@vue/compiler-sfc": "^3.3.9", + "babel-preset-taro": "3.6.20", + "commitizen": "^4.3.0", + "css-loader": "3.4.2", + "cz-customizable": "^7.0.0", + "eslint": "^8.55.0", + "eslint-config-taro": "3.6.20", + "eslint-plugin-vue": "^9.19.2", + "husky": "^8.0.3", + "lint-staged": "^15.1.0", + "style-loader": "1.3.0", + "stylelint": "9.3.0", + "ts-node": "^10.9.1", + "typescript": "^4.9.5", + "unplugin-vue-components": "^0.23.0", + "vue-loader": "^17.3.1", + "webpack": "^5.89.0" + } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 4b53c05..97d6804 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -12,53 +12,53 @@ dependencies: specifier: ^0.0.9 version: 0.0.9 '@nutui/nutui-taro': - specifier: ^4.2.3 - version: 4.2.3(unplugin-vue-components@0.23.0) + specifier: ^4.2.4 + version: 4.2.4(unplugin-vue-components@0.23.0) '@qiun/vue-ucharts': specifier: 2.5.0-20230101 version: 2.5.0-20230101 '@tarojs/components': - specifier: 3.6.19 - version: 3.6.19(postcss@8.4.32)(vue@3.3.9) + specifier: 3.6.20 + version: 3.6.20(postcss@8.4.32)(vue@3.3.9) '@tarojs/helper': - specifier: 3.6.19 - version: 3.6.19 + specifier: 3.6.20 + version: 3.6.20 '@tarojs/plugin-framework-vue3': - specifier: 3.6.19 - version: 3.6.19(postcss@8.4.32)(vue@3.3.9) + specifier: 3.6.20 + version: 3.6.20(postcss@8.4.32)(vue@3.3.9) '@tarojs/plugin-html': - specifier: 3.6.19 - version: 3.6.19(postcss@8.4.32)(vue@3.3.9) + specifier: 3.6.20 + version: 3.6.20(postcss@8.4.32)(vue@3.3.9) '@tarojs/plugin-platform-alipay': - specifier: 3.6.19 - version: 3.6.19(postcss@8.4.32)(vue@3.3.9) + specifier: 3.6.20 + version: 3.6.20(postcss@8.4.32)(vue@3.3.9) '@tarojs/plugin-platform-h5': - specifier: 3.6.19 - version: 3.6.19(postcss@8.4.32)(vue@3.3.9) + specifier: 3.6.20 + version: 3.6.20(postcss@8.4.32)(vue@3.3.9) '@tarojs/plugin-platform-jd': - specifier: 3.6.19 - version: 3.6.19(postcss@8.4.32)(vue@3.3.9) + specifier: 3.6.20 + version: 3.6.20(postcss@8.4.32)(vue@3.3.9) '@tarojs/plugin-platform-qq': - specifier: 3.6.19 - version: 3.6.19(postcss@8.4.32)(vue@3.3.9) + specifier: 3.6.20 + version: 3.6.20(postcss@8.4.32)(vue@3.3.9) '@tarojs/plugin-platform-swan': - specifier: 3.6.19 - version: 3.6.19(postcss@8.4.32)(vue@3.3.9) + specifier: 3.6.20 + version: 3.6.20(postcss@8.4.32)(vue@3.3.9) '@tarojs/plugin-platform-tt': - specifier: 3.6.19 - version: 3.6.19(postcss@8.4.32)(vue@3.3.9) + specifier: 3.6.20 + version: 3.6.20(postcss@8.4.32)(vue@3.3.9) '@tarojs/plugin-platform-weapp': - specifier: 3.6.19 - version: 3.6.19(postcss@8.4.32)(vue@3.3.9) + specifier: 3.6.20 + version: 3.6.20(postcss@8.4.32)(vue@3.3.9) '@tarojs/runtime': - specifier: 3.6.19 - version: 3.6.19 + specifier: 3.6.20 + version: 3.6.20 '@tarojs/shared': - specifier: 3.6.19 - version: 3.6.19 + specifier: 3.6.20 + version: 3.6.20 '@tarojs/taro': - specifier: 3.6.19 - version: 3.6.19(postcss@8.4.32)(vue@3.3.9) + specifier: 3.6.20 + version: 3.6.20(postcss@8.4.32)(vue@3.3.9) dayjs: specifier: ^1.11.10 version: 1.11.10 @@ -80,17 +80,17 @@ devDependencies: specifier: ^18.4.3 version: 18.4.3 '@tarojs/cli': - specifier: 3.6.19 - version: 3.6.19(postcss@8.4.32)(vue@3.3.9) + specifier: 3.6.20 + version: 3.6.20(postcss@8.4.32)(vue@3.3.9) '@tarojs/plugin-mini-ci': - specifier: ^3.6.20 + specifier: 3.6.20 version: 3.6.20(postcss@8.4.32)(vue@3.3.9) '@tarojs/taro-loader': - specifier: 3.6.19 - version: 3.6.19(postcss@8.4.32)(vue@3.3.9) + specifier: 3.6.20 + version: 3.6.20(postcss@8.4.32)(vue@3.3.9) '@tarojs/webpack5-runner': - specifier: 3.6.19 - version: 3.6.19(@babel/core@7.23.5)(@swc/core@1.3.23)(@vue/compiler-sfc@3.3.9)(postcss@8.4.32)(typescript@4.9.5)(vue@3.3.9)(webpack@5.89.0) + specifier: 3.6.20 + version: 3.6.20(@babel/core@7.23.5)(@swc/core@1.3.96)(@vue/compiler-sfc@3.3.9)(postcss@8.4.32)(typescript@4.9.5)(vue@3.3.9)(webpack@5.89.0) '@types/node': specifier: ^18.19.1 version: 18.19.1 @@ -110,8 +110,8 @@ devDependencies: specifier: ^3.3.9 version: 3.3.9 babel-preset-taro: - specifier: 3.6.19 - version: 3.6.19(@babel/core@7.23.5) + specifier: 3.6.20 + version: 3.6.20(@babel/core@7.23.5) commitizen: specifier: ^4.3.0 version: 4.3.0(typescript@4.9.5) @@ -125,8 +125,8 @@ devDependencies: specifier: ^8.55.0 version: 8.55.0 eslint-config-taro: - specifier: 3.6.19 - version: 3.6.19(@babel/core@7.23.5)(eslint@8.55.0)(typescript@4.9.5) + specifier: 3.6.20 + version: 3.6.20(@babel/core@7.23.5)(eslint@8.55.0)(typescript@4.9.5) eslint-plugin-vue: specifier: ^9.19.2 version: 9.19.2(eslint@8.55.0) @@ -144,7 +144,7 @@ devDependencies: version: 9.3.0 ts-node: specifier: ^10.9.1 - version: 10.9.1(@swc/core@1.3.23)(@types/node@18.19.1)(typescript@4.9.5) + version: 10.9.1(@swc/core@1.3.96)(@types/node@18.19.1)(typescript@4.9.5) typescript: specifier: ^4.9.5 version: 4.9.5 @@ -156,7 +156,7 @@ devDependencies: version: 17.3.1(@vue/compiler-sfc@3.3.9)(vue@3.3.9)(webpack@5.89.0) webpack: specifier: ^5.89.0 - version: 5.89.0(@swc/core@1.3.23) + version: 5.89.0(@swc/core@1.3.96) packages: @@ -192,13 +192,13 @@ packages: dependencies: '@ampproject/remapping': 2.2.1 '@babel/code-frame': 7.23.5 - '@babel/generator': 7.21.4 + '@babel/generator': 7.23.5 '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-module-transforms': 7.23.3(@babel/core@7.21.4) - '@babel/helpers': 7.21.0 - '@babel/parser': 7.21.4 - '@babel/template': 7.20.7 - '@babel/traverse': 7.21.4 + '@babel/helpers': 7.23.5 + '@babel/parser': 7.23.5 + '@babel/template': 7.22.15 + '@babel/traverse': 7.23.5 '@babel/types': 7.23.5 convert-source-map: 1.9.0 debug: 4.3.4 @@ -535,8 +535,8 @@ packages: resolution: {integrity: sha512-XXve0CBtOW0pd7MRzzmoyuSj0e3SEzj8pgyFxnTT1NJZL38BD1MK7yYrm8yefRPIDvNNe14xR4FdbHwpInD4rA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/template': 7.20.7 - '@babel/traverse': 7.21.4 + '@babel/template': 7.22.15 + '@babel/traverse': 7.23.5 '@babel/types': 7.23.5 transitivePeerDependencies: - supports-color @@ -1836,6 +1836,18 @@ packages: '@babel/helper-simple-access': 7.22.5 dev: true + /@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.21.4): + resolution: {integrity: sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.21.4 + '@babel/helper-module-transforms': 7.23.3(@babel/core@7.21.4) + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-simple-access': 7.22.5 + dev: true + /@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.23.5): resolution: {integrity: sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==} engines: {node: '>=6.9.0'} @@ -2192,7 +2204,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-module-imports': 7.21.4 + '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.21.4) babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.21.4) @@ -2458,7 +2470,7 @@ packages: '@babel/plugin-transform-literals': 7.23.3(@babel/core@7.21.4) '@babel/plugin-transform-member-expression-literals': 7.23.3(@babel/core@7.21.4) '@babel/plugin-transform-modules-amd': 7.23.3(@babel/core@7.21.4) - '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.21.4) + '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.21.4) '@babel/plugin-transform-modules-systemjs': 7.23.3(@babel/core@7.21.4) '@babel/plugin-transform-modules-umd': 7.23.3(@babel/core@7.21.4) '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.21.4) @@ -2673,7 +2685,7 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.23.5 - '@babel/parser': 7.21.4 + '@babel/parser': 7.23.5 '@babel/types': 7.23.5 dev: true @@ -2690,12 +2702,12 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.23.5 - '@babel/generator': 7.21.4 + '@babel/generator': 7.23.5 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-function-name': 7.23.0 '@babel/helper-hoist-variables': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 - '@babel/parser': 7.21.4 + '@babel/parser': 7.23.5 '@babel/types': 7.23.5 debug: 4.3.4 globals: 11.12.0 @@ -2911,7 +2923,6 @@ packages: cpu: [arm64] os: [android] requiresBuild: true - dev: true optional: true /@esbuild/android-arm@0.19.8: @@ -2920,7 +2931,6 @@ packages: cpu: [arm] os: [android] requiresBuild: true - dev: true optional: true /@esbuild/android-x64@0.19.8: @@ -2929,7 +2939,6 @@ packages: cpu: [x64] os: [android] requiresBuild: true - dev: true optional: true /@esbuild/darwin-arm64@0.19.8: @@ -2938,7 +2947,6 @@ packages: cpu: [arm64] os: [darwin] requiresBuild: true - dev: true optional: true /@esbuild/darwin-x64@0.19.8: @@ -2947,7 +2955,6 @@ packages: cpu: [x64] os: [darwin] requiresBuild: true - dev: true optional: true /@esbuild/freebsd-arm64@0.19.8: @@ -2956,7 +2963,6 @@ packages: cpu: [arm64] os: [freebsd] requiresBuild: true - dev: true optional: true /@esbuild/freebsd-x64@0.19.8: @@ -2965,7 +2971,6 @@ packages: cpu: [x64] os: [freebsd] requiresBuild: true - dev: true optional: true /@esbuild/linux-arm64@0.19.8: @@ -2974,7 +2979,6 @@ packages: cpu: [arm64] os: [linux] requiresBuild: true - dev: true optional: true /@esbuild/linux-arm@0.19.8: @@ -2983,7 +2987,6 @@ packages: cpu: [arm] os: [linux] requiresBuild: true - dev: true optional: true /@esbuild/linux-ia32@0.19.8: @@ -2992,7 +2995,6 @@ packages: cpu: [ia32] os: [linux] requiresBuild: true - dev: true optional: true /@esbuild/linux-loong64@0.14.54: @@ -3001,6 +3003,7 @@ packages: cpu: [loong64] os: [linux] requiresBuild: true + dev: true optional: true /@esbuild/linux-loong64@0.19.8: @@ -3009,7 +3012,6 @@ packages: cpu: [loong64] os: [linux] requiresBuild: true - dev: true optional: true /@esbuild/linux-mips64el@0.19.8: @@ -3018,7 +3020,6 @@ packages: cpu: [mips64el] os: [linux] requiresBuild: true - dev: true optional: true /@esbuild/linux-ppc64@0.19.8: @@ -3027,7 +3028,6 @@ packages: cpu: [ppc64] os: [linux] requiresBuild: true - dev: true optional: true /@esbuild/linux-riscv64@0.19.8: @@ -3036,7 +3036,6 @@ packages: cpu: [riscv64] os: [linux] requiresBuild: true - dev: true optional: true /@esbuild/linux-s390x@0.19.8: @@ -3045,7 +3044,6 @@ packages: cpu: [s390x] os: [linux] requiresBuild: true - dev: true optional: true /@esbuild/linux-x64@0.19.8: @@ -3054,7 +3052,6 @@ packages: cpu: [x64] os: [linux] requiresBuild: true - dev: true optional: true /@esbuild/netbsd-x64@0.19.8: @@ -3063,7 +3060,6 @@ packages: cpu: [x64] os: [netbsd] requiresBuild: true - dev: true optional: true /@esbuild/openbsd-x64@0.19.8: @@ -3072,7 +3068,6 @@ packages: cpu: [x64] os: [openbsd] requiresBuild: true - dev: true optional: true /@esbuild/sunos-x64@0.19.8: @@ -3081,7 +3076,6 @@ packages: cpu: [x64] os: [sunos] requiresBuild: true - dev: true optional: true /@esbuild/win32-arm64@0.19.8: @@ -3090,7 +3084,6 @@ packages: cpu: [arm64] os: [win32] requiresBuild: true - dev: true optional: true /@esbuild/win32-ia32@0.19.8: @@ -3099,7 +3092,6 @@ packages: cpu: [ia32] os: [win32] requiresBuild: true - dev: true optional: true /@esbuild/win32-x64@0.19.8: @@ -3108,7 +3100,6 @@ packages: cpu: [x64] os: [win32] requiresBuild: true - dev: true optional: true /@eslint-community/eslint-utils@4.4.0(eslint@8.41.0): @@ -4052,8 +4043,8 @@ packages: resolution: {integrity: sha512-10VYAtFC+o1X0anGs+y2PgF1NWMeLFz2JVMRw4BWLg6wbtVbYy9wukLxyGhZC6Yf6t39DcwaGVda8paV7K6/Ew==} dev: false - /@nutui/nutui-taro@4.2.3(unplugin-vue-components@0.23.0): - resolution: {integrity: sha512-13YR7onLlVRwaUsFnatrbDaj3uLFqRFurWw+o4U/9Jr4b4VVfj1bmM/8sBS1DmMT2Y56KsI1OZxeBT+kPIXFTg==} + /@nutui/nutui-taro@4.2.4(unplugin-vue-components@0.23.0): + resolution: {integrity: sha512-EcbFx24UDzLId+ed5xR8iSYUZUxoziViRUHvGGUSb2m3NlS7KgHr6NP8BDX5vT/BSziDTalnfU5wdWmKa7m8fw==} peerDependencies: unplugin-vue-components: ^0.25.1 peerDependenciesMeta: @@ -4174,29 +4165,12 @@ packages: engines: {node: '>=12.10.0', npm: '>=6.0.0'} hasBin: true - /@swc/core-darwin-arm64@1.3.23: - resolution: {integrity: sha512-IGOEHmE4aBDX7gQWpanI3A0ni47UcvX7rmcy0H8kE6mm/y7mEMWskvNsYhYzJl4GVZgw38v1/lL/A7MRX6g71A==} - engines: {node: '>=10'} - cpu: [arm64] - os: [darwin] - requiresBuild: true - optional: true - /@swc/core-darwin-arm64@1.3.96: resolution: {integrity: sha512-8hzgXYVd85hfPh6mJ9yrG26rhgzCmcLO0h1TIl8U31hwmTbfZLzRitFQ/kqMJNbIBCwmNH1RU2QcJnL3d7f69A==} engines: {node: '>=10'} cpu: [arm64] os: [darwin] requiresBuild: true - dev: true - optional: true - - /@swc/core-darwin-x64@1.3.23: - resolution: {integrity: sha512-eQSN+JJqx/5Dk2C5uet2l7HifGsDBorQHD3PAVnge5jxl+rXU/zbzX9Un56+uuUB0QYeS4Dyr8cN7NHuIKGxBA==} - engines: {node: '>=10'} - cpu: [x64] - os: [darwin] - requiresBuild: true optional: true /@swc/core-darwin-x64@1.3.96: @@ -4205,15 +4179,6 @@ packages: cpu: [x64] os: [darwin] requiresBuild: true - dev: true - optional: true - - /@swc/core-linux-arm-gnueabihf@1.3.23: - resolution: {integrity: sha512-zxYvggbw6R/sTNey0qgsigFMY59DYepm1+JNojxOKjbnvxmgyeIa5sPdu/5gLj0TtJOiWvSGrpMPNUIVreUSGA==} - engines: {node: '>=10'} - cpu: [arm] - os: [linux] - requiresBuild: true optional: true /@swc/core-linux-arm-gnueabihf@1.3.96: @@ -4222,16 +4187,6 @@ packages: cpu: [arm] os: [linux] requiresBuild: true - dev: true - optional: true - - /@swc/core-linux-arm64-gnu@1.3.23: - resolution: {integrity: sha512-l8UWhcNvZ6RzNZBBToMYuKYijF0h7mbw2RuFV5rpCYF/k/Wh85PaDHPQIQ6qjMHJsIBHYXUt0HLAP+fiAfBiDw==} - engines: {node: '>=10'} - cpu: [arm64] - os: [linux] - libc: [glibc] - requiresBuild: true optional: true /@swc/core-linux-arm64-gnu@1.3.96: @@ -4241,16 +4196,6 @@ packages: os: [linux] libc: [glibc] requiresBuild: true - dev: true - optional: true - - /@swc/core-linux-arm64-musl@1.3.23: - resolution: {integrity: sha512-TZDPp1wUE1ynVyY0vwIToyOULKEQ91H49R+p6Iu/2YY+UQQwUamhX0Gp8O85RT+j72/iHyhbQkz7yRg6v+GB5A==} - engines: {node: '>=10'} - cpu: [arm64] - os: [linux] - libc: [musl] - requiresBuild: true optional: true /@swc/core-linux-arm64-musl@1.3.96: @@ -4260,16 +4205,6 @@ packages: os: [linux] libc: [musl] requiresBuild: true - dev: true - optional: true - - /@swc/core-linux-x64-gnu@1.3.23: - resolution: {integrity: sha512-rKqWnOmUyQfoKZuuXs/S0RNobN+kcUyMtwoCdRdCNqOlk1XZRCMpjGc9Aqn73K3xlZ6JXX6oLrXKn375b2dydw==} - engines: {node: '>=10'} - cpu: [x64] - os: [linux] - libc: [glibc] - requiresBuild: true optional: true /@swc/core-linux-x64-gnu@1.3.96: @@ -4279,16 +4214,6 @@ packages: os: [linux] libc: [glibc] requiresBuild: true - dev: true - optional: true - - /@swc/core-linux-x64-musl@1.3.23: - resolution: {integrity: sha512-1MK9eocIhuIr/+yUKnTNHpYovMQvfKTJQbU4UMfQLg2qyCGKAvO+jOy5JIGR9x04MWqz9U3EHHS/7Id35ekhFQ==} - engines: {node: '>=10'} - cpu: [x64] - os: [linux] - libc: [musl] - requiresBuild: true optional: true /@swc/core-linux-x64-musl@1.3.96: @@ -4298,15 +4223,6 @@ packages: os: [linux] libc: [musl] requiresBuild: true - dev: true - optional: true - - /@swc/core-win32-arm64-msvc@1.3.23: - resolution: {integrity: sha512-3nmdugj0SJIGWeCJBhvPWIfnE2Ax8H2KZsJfcaWmWg0SDh19aAt48Ncyd8WHHBandJmVm2fSjaANSjp+cS2S9A==} - engines: {node: '>=10'} - cpu: [arm64] - os: [win32] - requiresBuild: true optional: true /@swc/core-win32-arm64-msvc@1.3.96: @@ -4315,15 +4231,6 @@ packages: cpu: [arm64] os: [win32] requiresBuild: true - dev: true - optional: true - - /@swc/core-win32-ia32-msvc@1.3.23: - resolution: {integrity: sha512-2AlGRhys1BsfLjXyWOd+5J/Ko2kkVQVuy3ZR8OBGy7XI54p0PpepabloYI9irr+4bi9vtyxoc5rS21PmJxB83Q==} - engines: {node: '>=10'} - cpu: [ia32] - os: [win32] - requiresBuild: true optional: true /@swc/core-win32-ia32-msvc@1.3.96: @@ -4332,15 +4239,6 @@ packages: cpu: [ia32] os: [win32] requiresBuild: true - dev: true - optional: true - - /@swc/core-win32-x64-msvc@1.3.23: - resolution: {integrity: sha512-qYKP8sIM7VVLuDb5BkRBoHy28OHZWrUhPTO7WgpErhVVM9wnzmMi/Jgg8SyfMy6oheBjO0QiwWbXONxBwByjnQ==} - engines: {node: '>=10'} - cpu: [x64] - os: [win32] - requiresBuild: true optional: true /@swc/core-win32-x64-msvc@1.3.96: @@ -4349,26 +4247,8 @@ packages: cpu: [x64] os: [win32] requiresBuild: true - dev: true optional: true - /@swc/core@1.3.23: - resolution: {integrity: sha512-Aa7yw5+7ErOxr+G0J1eU2hkb9nEMSdt1Ye3isdAgg9mrsPuttk+cfLp6nP/Lux/VUnu5k4eOxeTy9UhjJhRAFw==} - engines: {node: '>=10'} - hasBin: true - requiresBuild: true - optionalDependencies: - '@swc/core-darwin-arm64': 1.3.23 - '@swc/core-darwin-x64': 1.3.23 - '@swc/core-linux-arm-gnueabihf': 1.3.23 - '@swc/core-linux-arm64-gnu': 1.3.23 - '@swc/core-linux-arm64-musl': 1.3.23 - '@swc/core-linux-x64-gnu': 1.3.23 - '@swc/core-linux-x64-musl': 1.3.23 - '@swc/core-win32-arm64-msvc': 1.3.23 - '@swc/core-win32-ia32-msvc': 1.3.23 - '@swc/core-win32-x64-msvc': 1.3.23 - /@swc/core@1.3.96: resolution: {integrity: sha512-zwE3TLgoZwJfQygdv2SdCK9mRLYluwDOM53I+dT6Z5ZvrgVENmY3txvWDvduzkV+/8IuvrRbVezMpxcojadRdQ==} engines: {node: '>=10'} @@ -4392,22 +4272,9 @@ packages: '@swc/core-win32-arm64-msvc': 1.3.96 '@swc/core-win32-ia32-msvc': 1.3.96 '@swc/core-win32-x64-msvc': 1.3.96 - dev: true /@swc/counter@0.1.2: resolution: {integrity: sha512-9F4ys4C74eSTEUNndnER3VJ15oru2NumfQxS8geE+f3eB5xvfxpWyqE5XlVnxb/R14uoXi6SLbBwwiDSkv+XEw==} - dev: true - - /@swc/register@0.1.10(@swc/core@1.3.23): - resolution: {integrity: sha512-6STwH/q4dc3pitXLVkV7sP0Hiy+zBsU2wOF1aXpXR95pnH3RYHKIsDC+gvesfyB7jxNT9OOZgcqOp9RPxVTx9A==} - hasBin: true - peerDependencies: - '@swc/core': ^1.0.46 - dependencies: - '@swc/core': 1.3.23 - lodash.clonedeep: 4.5.0 - pirates: 4.0.6 - source-map-support: 0.5.21 /@swc/register@0.1.10(@swc/core@1.3.96): resolution: {integrity: sha512-6STwH/q4dc3pitXLVkV7sP0Hiy+zBsU2wOF1aXpXR95pnH3RYHKIsDC+gvesfyB7jxNT9OOZgcqOp9RPxVTx9A==} @@ -4419,11 +4286,9 @@ packages: lodash.clonedeep: 4.5.0 pirates: 4.0.6 source-map-support: 0.5.21 - dev: true /@swc/types@0.1.5: resolution: {integrity: sha512-myfUej5naTBWnqOCc/MdVOLVjXUXtIA+NpDrDBKJtLLg2shUjBu3cZmB/85RyitKc55+lUUyl7oRfLOvkr2hsw==} - dev: true /@szmarczak/http-timer@1.1.2: resolution: {integrity: sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==} @@ -4432,30 +4297,22 @@ packages: defer-to-connect: 1.1.3 dev: true - /@tarojs/api@3.6.19: - resolution: {integrity: sha512-VHVmIdKxiiukmYb5gXHEUr85GWiBdKjavdAZzhDS4SVKeq75Sk6DTbZgKUw7Yy5ExSGuE2y3hyB9zpP/PrQEBg==} - dependencies: - '@babel/runtime': 7.23.5 - '@tarojs/runtime': 3.6.19 - '@tarojs/shared': 3.6.19 - /@tarojs/api@3.6.20: resolution: {integrity: sha512-LJLYthePWUsq+Xy7IqUKv29BI1is1K861oagGVoQW6xYyLnvQx4zwU4FwlttvkA0iOtSGKf9q/KdTmheeeVrJQ==} dependencies: '@babel/runtime': 7.23.5 '@tarojs/runtime': 3.6.20 '@tarojs/shared': 3.6.20 - dev: true - /@tarojs/cli@3.6.19(postcss@8.4.32)(vue@3.3.9): - resolution: {integrity: sha512-sZjv5VN08aj9bkM42VU36Efu/8x3C9vtwNUP9DbeZOTuYS0mEPXIhoGPraOXQcrV1iGD+rZuUmAea3Hv6w9FfA==} + /@tarojs/cli@3.6.20(postcss@8.4.32)(vue@3.3.9): + resolution: {integrity: sha512-v+ysy/W2c/DOXhC8NEjbguStrm5mhOS75YSs6M+hl6KGfbCvi7iamwPozaJ0joUw+sZbkyUMx1IawKW2nSnREg==} engines: {node: '>=12'} hasBin: true dependencies: - '@tarojs/helper': 3.6.19 + '@tarojs/helper': 3.6.20 '@tarojs/plugin-doctor': 0.0.11 - '@tarojs/service': 3.6.19(postcss@8.4.32)(vue@3.3.9) - '@tarojs/shared': 3.6.19 + '@tarojs/service': 3.6.20(postcss@8.4.32)(vue@3.3.9) + '@tarojs/shared': 3.6.20 adm-zip: 0.4.16 cli-highlight: 2.1.11 download-git-repo: 2.0.0 @@ -4476,6 +4333,7 @@ packages: validate-npm-package-name: 5.0.0 xml2js: 0.5.0 transitivePeerDependencies: + - '@swc/helpers' - '@types/react' - '@types/webpack' - '@types/webpack-dev-server' @@ -4484,8 +4342,8 @@ packages: - vue dev: true - /@tarojs/components-advanced@3.6.19(vue@3.3.9): - resolution: {integrity: sha512-R/LRsosn8Tga+k+mwI+DEdka3qx9Sirnx6mWRBCTw/6GPAo2Jk2wAW6IHwVgAPSiid+krZ6hs463FQHLnKC4SQ==} + /@tarojs/components-advanced@3.6.20(vue@3.3.9): + resolution: {integrity: sha512-ICWw2rcTDfLWS1BinCDwD7yuxBwMFI4hWE1bs5SdYuJnhTkrXKs3wRpqO8J5+H9sud9GGmL4OhjURySS046T9w==} peerDependencies: react: '>=17' vue: '*' @@ -4495,10 +4353,10 @@ packages: vue: optional: true dependencies: - '@tarojs/components': 3.6.19(postcss@8.4.32)(vue@3.3.9) - '@tarojs/runtime': 3.6.19 - '@tarojs/shared': 3.6.19 - '@tarojs/taro': 3.6.19(postcss@8.4.32)(vue@3.3.9) + '@tarojs/components': 3.6.20(postcss@8.4.32)(vue@3.3.9) + '@tarojs/runtime': 3.6.20 + '@tarojs/shared': 3.6.20 + '@tarojs/taro': 3.6.20(postcss@8.4.32)(vue@3.3.9) classnames: 2.3.2 csstype: 3.1.2 memoize-one: 6.0.0 @@ -4510,12 +4368,12 @@ packages: - '@types/webpack' - '@types/webpack-dev-server' - /@tarojs/components-react@3.6.19(postcss@8.4.32)(vue@3.3.9): - resolution: {integrity: sha512-nNgEOc9kq7I2fqbBJhsnhR6JqwTVVihT8It8rILLwM0XuBUdcJGUF5NVeZIDsKGd8LR/K62yC+7B8ar4dyJIBg==} + /@tarojs/components-react@3.6.20(postcss@8.4.32)(vue@3.3.9): + resolution: {integrity: sha512-9UO1y7ADuv1NH6W8Hc6asJyCfxbK2ri6wvPQABgTbgb3+QTfg2CSTkTeobKiXf4dzb1S7vesQfoMHUdbp44Exw==} dependencies: '@babel/runtime': 7.23.5 - '@tarojs/components': 3.6.19(postcss@8.4.32)(vue@3.3.9) - '@tarojs/taro': 3.6.19(postcss@8.4.32)(vue@3.3.9) + '@tarojs/components': 3.6.20(postcss@8.4.32)(vue@3.3.9) + '@tarojs/taro': 3.6.20(postcss@8.4.32)(vue@3.3.9) classnames: 2.3.2 intersection-observer: 0.7.0 resolve-pathname: 3.0.0 @@ -4530,8 +4388,8 @@ packages: - vue dev: false - /@tarojs/components@3.6.19(postcss@8.4.32)(vue@3.3.9): - resolution: {integrity: sha512-OF//IKxw6APoML78ZuM5vdGoep42DezGYl5cgk63vIoIfxAA1oXfMvfjivgD84InTCTFNo9loZAZ6Pze+BSoIw==} + /@tarojs/components@3.6.20(postcss@8.4.32)(vue@3.3.9): + resolution: {integrity: sha512-4FC3q6BQSJmX8ioTu7t0e/FqjfovpbZkORfQmcbsFtcAKy+4S9W+NRjEfF7ywkfsuVMbF4vizy4VhdYWmuUJNA==} peerDependencies: '@types/react': '*' '@types/react-native': '*' @@ -4545,9 +4403,9 @@ packages: optional: true dependencies: '@stencil/core': 2.22.3 - '@tarojs/components-advanced': 3.6.19(vue@3.3.9) - '@tarojs/router': 3.6.19(postcss@8.4.32)(vue@3.3.9) - '@tarojs/taro': 3.6.19(postcss@8.4.32)(vue@3.3.9) + '@tarojs/components-advanced': 3.6.20(vue@3.3.9) + '@tarojs/router': 3.6.20(postcss@8.4.32)(vue@3.3.9) + '@tarojs/taro': 3.6.20(postcss@8.4.32)(vue@3.3.9) classnames: 2.3.2 hls.js: 1.4.12 intersection-observer: 0.7.0 @@ -4561,39 +4419,6 @@ packages: - postcss - react - /@tarojs/helper@3.6.19: - resolution: {integrity: sha512-FfkXYc+577OSxhzFWUwftD11/R2rQeqCu2KtkydF1FEdB7QEACbpnwtmvXzXBVnBOAwitb+sS8olh/FkVnK6Dg==} - dependencies: - '@babel/core': 7.23.5 - '@babel/parser': 7.23.5 - '@babel/plugin-proposal-decorators': 7.23.5(@babel/core@7.23.5) - '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.23.5) - '@babel/plugin-transform-runtime': 7.23.4(@babel/core@7.23.5) - '@babel/preset-env': 7.23.5(@babel/core@7.23.5) - '@babel/preset-typescript': 7.23.3(@babel/core@7.23.5) - '@babel/register': 7.22.15(@babel/core@7.23.5) - '@babel/runtime': 7.23.5 - '@babel/traverse': 7.23.5 - '@swc/core': 1.3.23 - '@swc/register': 0.1.10(@swc/core@1.3.23) - ansi-escapes: 4.3.2 - chalk: 3.0.0 - chokidar: 3.5.3 - cross-spawn: 7.0.3 - debug: 4.3.4 - dotenv: 16.3.1 - dotenv-expand: 9.0.0 - esbuild: 0.14.54 - find-yarn-workspace-root: 2.0.0 - fs-extra: 8.1.0 - lodash: 4.17.21 - require-from-string: 2.0.2 - resolve: 1.22.8 - supports-hyperlinks: 2.3.0 - yauzl: 2.10.0 - transitivePeerDependencies: - - supports-color - /@tarojs/helper@3.6.20: resolution: {integrity: sha512-sKsvv//FR2rfKfg2P+geMc2f69kSSgLpSr3e0B1CnGdzfI9CROVt2SKGo4jcrDVpDuRMbitfX4HsaMalOdzRfQ==} dependencies: @@ -4627,7 +4452,6 @@ packages: transitivePeerDependencies: - '@swc/helpers' - supports-color - dev: true /@tarojs/plugin-doctor-darwin-arm64@0.0.11: resolution: {integrity: sha512-H3C0TQD7k9YalSR2kgrVEvP1TfhSeRQDQQXhSurLStNuTqhrk8JSzxbxYC/Of5edM/uu+5xOzT0YfMV2LKG5UA==} @@ -4753,19 +4577,20 @@ packages: - supports-color dev: true - /@tarojs/plugin-framework-vue3@3.6.19(postcss@8.4.32)(vue@3.3.9): - resolution: {integrity: sha512-KFXhs+80vrbnM7RQh3S4UPD8Lc0+zkFHD87HYK8NGtjXvkiHS8j2JwbDUF/roHiltLH18sXtjWEdyGNspwS8Gg==} + /@tarojs/plugin-framework-vue3@3.6.20(postcss@8.4.32)(vue@3.3.9): + resolution: {integrity: sha512-F3Cw3BIP/4rv0Whr6oYEiSzJKl2Xvx321FiSDFk/E+IOu2h4Q1mqBJSpQe3ZVdJjvBu/KLUyVm27mAz8hxftNw==} peerDependencies: vue: ^3.0.0 dependencies: - '@tarojs/helper': 3.6.19 - '@tarojs/runner-utils': 3.6.19 - '@tarojs/runtime': 3.6.19 - '@tarojs/service': 3.6.19(postcss@8.4.32)(vue@3.3.9) - '@tarojs/shared': 3.6.19 + '@tarojs/helper': 3.6.20 + '@tarojs/runner-utils': 3.6.20 + '@tarojs/runtime': 3.6.20 + '@tarojs/service': 3.6.20(postcss@8.4.32)(vue@3.3.9) + '@tarojs/shared': 3.6.20 lodash: 4.17.21 vue: 3.3.9(typescript@4.9.5) transitivePeerDependencies: + - '@swc/helpers' - '@types/react' - '@types/webpack' - '@types/webpack-dev-server' @@ -4773,17 +4598,18 @@ packages: - supports-color dev: false - /@tarojs/plugin-html@3.6.19(postcss@8.4.32)(vue@3.3.9): - resolution: {integrity: sha512-ozIK/o/szaJBw3/nXMul0wvByJcgDGSbQZ7PgEWATcw9YjDxR5L2SWgguvQcGeMyNz8M1V1KHymLKhdreF8c2Q==} + /@tarojs/plugin-html@3.6.20(postcss@8.4.32)(vue@3.3.9): + resolution: {integrity: sha512-yhx5Duc2MU+qf77lQiifMjZWWLF3BHJN1X9BhoCfjE6rdV1jX7HGIPp/QN5NcpVnqjQGsZh1uvzxce18h9ZgOw==} dependencies: '@babel/generator': 7.23.5 '@babel/parser': 7.23.5 '@babel/traverse': 7.23.5 '@babel/types': 7.23.5 - '@tarojs/runtime': 3.6.19 - '@tarojs/service': 3.6.19(postcss@8.4.32)(vue@3.3.9) - '@tarojs/shared': 3.6.19 + '@tarojs/runtime': 3.6.20 + '@tarojs/service': 3.6.20(postcss@8.4.32)(vue@3.3.9) + '@tarojs/shared': 3.6.20 transitivePeerDependencies: + - '@swc/helpers' - '@types/react' - '@types/webpack' - '@types/webpack-dev-server' @@ -4827,13 +4653,14 @@ packages: - vue dev: true - /@tarojs/plugin-platform-alipay@3.6.19(postcss@8.4.32)(vue@3.3.9): - resolution: {integrity: sha512-rU3ymXzCTxaurieW/VpfDIvzlWa4R5ppFbcwSzvr1DPiGhaft8rgSHHU/FN1uyq9bVVWS1ZKcFnkhe4R4cU9PQ==} + /@tarojs/plugin-platform-alipay@3.6.20(postcss@8.4.32)(vue@3.3.9): + resolution: {integrity: sha512-mQ5GQfKc+PfuCwkhW8BpXSBx5IGOAFqna/ZphJGM+M38HlPOOPh7z7O4KKfBwK2p2hnIIJF/ny1bXUsBn7YA0A==} dependencies: - '@tarojs/components': 3.6.19(postcss@8.4.32)(vue@3.3.9) - '@tarojs/service': 3.6.19(postcss@8.4.32)(vue@3.3.9) - '@tarojs/shared': 3.6.19 + '@tarojs/components': 3.6.20(postcss@8.4.32)(vue@3.3.9) + '@tarojs/service': 3.6.20(postcss@8.4.32)(vue@3.3.9) + '@tarojs/shared': 3.6.20 transitivePeerDependencies: + - '@swc/helpers' - '@types/react' - '@types/react-native' - '@types/webpack' @@ -4843,20 +4670,21 @@ packages: - supports-color - vue - /@tarojs/plugin-platform-h5@3.6.19(postcss@8.4.32)(vue@3.3.9): - resolution: {integrity: sha512-cFVefnceqlGm3l3ID6b+ZU4wMKp85HLSM/7RunZR2IPNfARL7o5HZxbeglih0rHmXzngb9Sw/+CqCJQaLTgk4w==} + /@tarojs/plugin-platform-h5@3.6.20(postcss@8.4.32)(vue@3.3.9): + resolution: {integrity: sha512-vbETmGr1y2c+1LIN9PJHSiIGksSAo8MwAgnELY0steppIGnBo/PAtFOFJad3ndSxYFAO8SNFoDpbdWmvG7Pi1w==} dependencies: - '@tarojs/components': 3.6.19(postcss@8.4.32)(vue@3.3.9) - '@tarojs/components-react': 3.6.19(postcss@8.4.32)(vue@3.3.9) - '@tarojs/router': 3.6.19(postcss@8.4.32)(vue@3.3.9) - '@tarojs/service': 3.6.19(postcss@8.4.32)(vue@3.3.9) - '@tarojs/shared': 3.6.19 - '@tarojs/taro-h5': 3.6.19(postcss@8.4.32)(vue@3.3.9) - babel-plugin-transform-taroapi: 3.6.19 + '@tarojs/components': 3.6.20(postcss@8.4.32)(vue@3.3.9) + '@tarojs/components-react': 3.6.20(postcss@8.4.32)(vue@3.3.9) + '@tarojs/router': 3.6.20(postcss@8.4.32)(vue@3.3.9) + '@tarojs/service': 3.6.20(postcss@8.4.32)(vue@3.3.9) + '@tarojs/shared': 3.6.20 + '@tarojs/taro-h5': 3.6.20(postcss@8.4.32)(vue@3.3.9) + babel-plugin-transform-taroapi: 3.6.20 change-case: 4.1.2 lodash-es: 4.17.21 resolve: 1.22.8 transitivePeerDependencies: + - '@swc/helpers' - '@types/react' - '@types/react-native' - '@types/webpack' @@ -4866,12 +4694,13 @@ packages: - vue dev: false - /@tarojs/plugin-platform-jd@3.6.19(postcss@8.4.32)(vue@3.3.9): - resolution: {integrity: sha512-JtDLdZWo4hr1mVGNzXdnU4ffajgRrgr29K2dzkZqHekbtIyto23xHGPlKgGA0Cwox5QTN2krglmO7rV2KByGwA==} + /@tarojs/plugin-platform-jd@3.6.20(postcss@8.4.32)(vue@3.3.9): + resolution: {integrity: sha512-hpYO9W2J5LM4owVw1rOl0hnkZDOglW0Jx5O3BNtuH/pFKbsp0emyEIhIAoHkv0qTxfwYYB2ajj1Az6UY97XgGw==} dependencies: - '@tarojs/service': 3.6.19(postcss@8.4.32)(vue@3.3.9) - '@tarojs/shared': 3.6.19 + '@tarojs/service': 3.6.20(postcss@8.4.32)(vue@3.3.9) + '@tarojs/shared': 3.6.20 transitivePeerDependencies: + - '@swc/helpers' - '@types/react' - '@types/webpack' - '@types/webpack-dev-server' @@ -4879,13 +4708,14 @@ packages: - supports-color - vue - /@tarojs/plugin-platform-qq@3.6.19(postcss@8.4.32)(vue@3.3.9): - resolution: {integrity: sha512-Aqw5Ei02CHQS4A1lvLKs03tZXUxUrhoN2VMo2sMBjvFiM4rkkQvc5UVSfGJ2f4u/4metR72AjmuyIzjdMM9KFQ==} + /@tarojs/plugin-platform-qq@3.6.20(postcss@8.4.32)(vue@3.3.9): + resolution: {integrity: sha512-xWaMpHWG1nt4IZVD3XSQYqutpwm2FdRp9dV0yMLn9i1ULwMaao2325b+ZftkjLDWxxF+Kq7VNtcGgBK3T/uPTQ==} dependencies: - '@tarojs/plugin-platform-weapp': 3.6.19(postcss@8.4.32)(vue@3.3.9) - '@tarojs/service': 3.6.19(postcss@8.4.32)(vue@3.3.9) - '@tarojs/shared': 3.6.19 + '@tarojs/plugin-platform-weapp': 3.6.20(postcss@8.4.32)(vue@3.3.9) + '@tarojs/service': 3.6.20(postcss@8.4.32)(vue@3.3.9) + '@tarojs/shared': 3.6.20 transitivePeerDependencies: + - '@swc/helpers' - '@types/react' - '@types/react-native' - '@types/webpack' @@ -4894,13 +4724,14 @@ packages: - supports-color - vue - /@tarojs/plugin-platform-swan@3.6.19(postcss@8.4.32)(vue@3.3.9): - resolution: {integrity: sha512-pSkER8srwUJzN+TbHDZXpvrWUzDeek79RWapsFGUJtoLmshEeamRQZXxa9hFBBwbYmOC0mkJegc2cIu3k1y+zQ==} + /@tarojs/plugin-platform-swan@3.6.20(postcss@8.4.32)(vue@3.3.9): + resolution: {integrity: sha512-1PoJR69E0UjOFj3KiETK3qc93LvDCme0inLsyx5/RIoLjBGuBuAclJtGWNjFClj9WNWKNwooh97lpuyD9OcMzw==} dependencies: - '@tarojs/components': 3.6.19(postcss@8.4.32)(vue@3.3.9) - '@tarojs/service': 3.6.19(postcss@8.4.32)(vue@3.3.9) - '@tarojs/shared': 3.6.19 + '@tarojs/components': 3.6.20(postcss@8.4.32)(vue@3.3.9) + '@tarojs/service': 3.6.20(postcss@8.4.32)(vue@3.3.9) + '@tarojs/shared': 3.6.20 transitivePeerDependencies: + - '@swc/helpers' - '@types/react' - '@types/react-native' - '@types/webpack' @@ -4909,13 +4740,14 @@ packages: - supports-color - vue - /@tarojs/plugin-platform-tt@3.6.19(postcss@8.4.32)(vue@3.3.9): - resolution: {integrity: sha512-TwFBfhv1f4bmXD/vizgsrzNirLitWv+Br5rX61+qz/Yo+9CHUZ2sgQm9Anffh3Lp0xM1uyOuKhcmeCuPoeWmEg==} + /@tarojs/plugin-platform-tt@3.6.20(postcss@8.4.32)(vue@3.3.9): + resolution: {integrity: sha512-/821/9MaMnCy1j6OGI8srVDWqjlaNSH8EuERojBYFCbEaPbfQCZr+85BEHIO/T2Ijq12Wl4IgftgkGLbQFn3LQ==} dependencies: - '@tarojs/components': 3.6.19(postcss@8.4.32)(vue@3.3.9) - '@tarojs/service': 3.6.19(postcss@8.4.32)(vue@3.3.9) - '@tarojs/shared': 3.6.19 + '@tarojs/components': 3.6.20(postcss@8.4.32)(vue@3.3.9) + '@tarojs/service': 3.6.20(postcss@8.4.32)(vue@3.3.9) + '@tarojs/shared': 3.6.20 transitivePeerDependencies: + - '@swc/helpers' - '@types/react' - '@types/react-native' - '@types/webpack' @@ -4924,13 +4756,14 @@ packages: - supports-color - vue - /@tarojs/plugin-platform-weapp@3.6.19(postcss@8.4.32)(vue@3.3.9): - resolution: {integrity: sha512-QcxzHRJNb0p9j57R2EEveXxH3KqoGEUQS94FhRlP1TyVE12Wfp0dU/tHKr1VobvgYXDySpm8VsvTsjwX4Hfteg==} + /@tarojs/plugin-platform-weapp@3.6.20(postcss@8.4.32)(vue@3.3.9): + resolution: {integrity: sha512-ryxsbsAmULe58+2yZ/qg7tjrKqjhlCxQShmtzXrPRQyO7vUH1L5lgT5gWUdnYbTX8WR3zq9yeimjMUdfE3E+Nw==} dependencies: - '@tarojs/components': 3.6.19(postcss@8.4.32)(vue@3.3.9) - '@tarojs/service': 3.6.19(postcss@8.4.32)(vue@3.3.9) - '@tarojs/shared': 3.6.19 + '@tarojs/components': 3.6.20(postcss@8.4.32)(vue@3.3.9) + '@tarojs/service': 3.6.20(postcss@8.4.32)(vue@3.3.9) + '@tarojs/shared': 3.6.20 transitivePeerDependencies: + - '@swc/helpers' - '@types/react' - '@types/react-native' - '@types/webpack' @@ -4939,11 +4772,11 @@ packages: - supports-color - vue - /@tarojs/router@3.6.19(postcss@8.4.32)(vue@3.3.9): - resolution: {integrity: sha512-R1hVo+W6ypsmT5068NCYN/rTugUKd2Jb70qJc69lazMNW783ZtoSE1JCWADkFS5px+DYEFA2IHDFfwwlzLgE9g==} + /@tarojs/router@3.6.20(postcss@8.4.32)(vue@3.3.9): + resolution: {integrity: sha512-YMMfbYbKyN9OhtCjvBrSgwE9PDlWGwDpqxkrA+IGzyxDgIg5WYGZzgp5K0H0FSPU9c7WjSBTUg33E8v2wXAiHw==} dependencies: - '@tarojs/runtime': 3.6.19 - '@tarojs/taro': 3.6.19(postcss@8.4.32)(vue@3.3.9) + '@tarojs/runtime': 3.6.20 + '@tarojs/taro': 3.6.20(postcss@8.4.32)(vue@3.3.9) dingtalk-jsapi: 2.15.4 history: 5.3.0 mobile-detect: 1.4.5 @@ -4956,46 +4789,20 @@ packages: - postcss - vue - /@tarojs/runner-utils@3.6.19: - resolution: {integrity: sha512-gD8o1nbQrnyNFKmbDWAzdutOnOm96Ku0/T9FNbmQtWRkW+api6LME5q9aFAm2Iwig1Duhp1AccG8zqyLBspEaQ==} + /@tarojs/runner-utils@3.6.20: + resolution: {integrity: sha512-EkQ8dKRGSe+T2Q1SQWS94uKjKA/mCl00Z+ksi+2WPS6wvK6LrrlZDAo6Puzu+d10FaSs9OWoQrul0cnYaa9Rdg==} dependencies: - '@tarojs/helper': 3.6.19 + '@tarojs/helper': 3.6.20 scss-bundle: 3.1.2 transitivePeerDependencies: + - '@swc/helpers' - supports-color - /@tarojs/runtime@3.6.19: - resolution: {integrity: sha512-fpvzV2MQhK9IAXPv1nDJJX8aN3JfyrCOyAPEQyjk8UtciMjmFOuKQIN5CE+BwAuGFA3tWPuus2WrDjzx0hML0w==} - dependencies: - '@tarojs/shared': 3.6.19 - lodash-es: 4.17.21 - /@tarojs/runtime@3.6.20: resolution: {integrity: sha512-9mcT8BZYrAhlouRKlMdicrAkgLNe4GvOTmReUAu24ZH/nV9GnwVt9SqSzz5vjZJGynjEcYLEROwCfyqKNKbDEA==} dependencies: '@tarojs/shared': 3.6.20 lodash-es: 4.17.21 - dev: true - - /@tarojs/service@3.6.19(postcss@8.4.32)(vue@3.3.9): - resolution: {integrity: sha512-M44w9ESnAjFhjfVNMRJ5cuntTa7JrhxpYbIi3zd/K05utc/yt25DkiCqNjeIu5bOh+F2D0OLeGCgSS8VqtkzlA==} - dependencies: - '@tarojs/helper': 3.6.19 - '@tarojs/shared': 3.6.19 - '@tarojs/taro': 3.6.19(postcss@8.4.32)(vue@3.3.9) - joi: 17.11.0 - lodash: 4.17.21 - ora: 5.4.1 - resolve: 1.22.8 - tapable: 1.1.3 - webpack-merge: 4.2.2 - transitivePeerDependencies: - - '@types/react' - - '@types/webpack' - - '@types/webpack-dev-server' - - postcss - - supports-color - - vue /@tarojs/service@3.6.20(postcss@8.4.32)(vue@3.3.9): resolution: {integrity: sha512-dV6OxUhAsble6AAuzXCAkzDk1U7RQH9RwB8l39vbSQDsaZaHey/t99/MmahsFJKc2F30mPMtBqqq1OTFzNGV/Q==} @@ -5017,23 +4824,18 @@ packages: - postcss - supports-color - vue - dev: true - - /@tarojs/shared@3.6.19: - resolution: {integrity: sha512-cLpo9i3TUHSvpjKiusTUOd0/tw9v6UxYKxo6JrFYb6zcn0RJlJRO+Wk9g1iGp+hOSw9rJ2p+zJ16tZ29D/igXQ==} /@tarojs/shared@3.6.20: resolution: {integrity: sha512-JYi4T9T1M8foB7jnrWBW+ssOMNqA1eR30aY463zsxFGaeU5bn4qihvCOAo//03szVPN7h7L7k0c1Q4GSSWgLaQ==} - dev: true - /@tarojs/taro-h5@3.6.19(postcss@8.4.32)(vue@3.3.9): - resolution: {integrity: sha512-lJqkcSFkIEUQh2UuvVKS5dMqf5O0i2jASduCWEoAa5jBcPmiy3a5tLkHdfru+GhU+0ZBFqjyKmZu9sHbtRjKRg==} + /@tarojs/taro-h5@3.6.20(postcss@8.4.32)(vue@3.3.9): + resolution: {integrity: sha512-L1UVwGur81qCBa1TLu1dqffcB7OEybiFy1m7A8kq7DlSS2/sbt5jlXaF9HSs6jZFQvyuH705lpaypqoZ2pIz3w==} dependencies: - '@tarojs/api': 3.6.19 - '@tarojs/components': 3.6.19(postcss@8.4.32)(vue@3.3.9) - '@tarojs/router': 3.6.19(postcss@8.4.32)(vue@3.3.9) - '@tarojs/runtime': 3.6.19 - '@tarojs/shared': 3.6.19 + '@tarojs/api': 3.6.20 + '@tarojs/components': 3.6.20(postcss@8.4.32)(vue@3.3.9) + '@tarojs/router': 3.6.20(postcss@8.4.32)(vue@3.3.9) + '@tarojs/runtime': 3.6.20 + '@tarojs/shared': 3.6.20 abortcontroller-polyfill: 1.7.5 base64-js: 1.5.1 ics: 3.5.0 @@ -5051,13 +4853,14 @@ packages: - vue dev: false - /@tarojs/taro-loader@3.6.19(postcss@8.4.32)(vue@3.3.9): - resolution: {integrity: sha512-VTxsHV80MevJWbRZd6dwO2N5JWSb4CAt2r+mwqe6Z2G9HObvd2ICIU5dIxNJ/ut6hhBrrcbGi7Hp3hC1g3Ftmg==} + /@tarojs/taro-loader@3.6.20(postcss@8.4.32)(vue@3.3.9): + resolution: {integrity: sha512-sPRGGa9uKViRJ2XJyNSAh2jVY0ehF04go+VC1G8wcv3sYbX+LIau1cPFKkzhCecXJ3uM/2I/PJ4ji29LIRhCXA==} dependencies: - '@tarojs/helper': 3.6.19 - '@tarojs/taro': 3.6.19(postcss@8.4.32)(vue@3.3.9) + '@tarojs/helper': 3.6.20 + '@tarojs/taro': 3.6.20(postcss@8.4.32)(vue@3.3.9) loader-utils: 1.4.2 transitivePeerDependencies: + - '@swc/helpers' - '@types/react' - '@types/webpack' - '@types/webpack-dev-server' @@ -5066,31 +4869,6 @@ packages: - vue dev: true - /@tarojs/taro@3.6.19(postcss@8.4.32)(vue@3.3.9): - resolution: {integrity: sha512-rGk1fU2ZIi+hI9D9+kzpaoYv3qT4Bc1LKhMompxcPCsLVafMiOYj2mMDrQou+S/oeOCVLsM4KDiKkg/14LO4DQ==} - peerDependencies: - '@types/react': '*' - '@types/webpack': '*' - '@types/webpack-dev-server': '*' - postcss: '*' - vue: '*' - peerDependenciesMeta: - '@types/react': - optional: true - '@types/webpack': - optional: true - '@types/webpack-dev-server': - optional: true - postcss: - optional: true - vue: - optional: true - dependencies: - '@tarojs/api': 3.6.19 - '@tarojs/runtime': 3.6.19 - postcss: 8.4.32 - vue: 3.3.9(typescript@4.9.5) - /@tarojs/taro@3.6.20(postcss@8.4.32)(vue@3.3.9): resolution: {integrity: sha512-WvOIRykOI5d/1eDpqmaWdB4ydqwBMCv3r3rbEe4z7T6q3DL0BnKSLpaYTzc6xoUeH6TXIpRTp3uqblHcIloxwg==} peerDependencies: @@ -5115,23 +4893,23 @@ packages: '@tarojs/runtime': 3.6.20 postcss: 8.4.32 vue: 3.3.9(typescript@4.9.5) - dev: true - /@tarojs/webpack5-prebundle@3.6.19(postcss@8.4.32)(vue@3.3.9)(webpack@5.89.0): - resolution: {integrity: sha512-L3r8TGVJD5QvTBKlfoXl6+PaCZTxRBDkcDkkmVhN78DkRAb+MLYqjnXNUGHc0zXfcKho8dZQFXtOpAbfq3ENtg==} + /@tarojs/webpack5-prebundle@3.6.20(postcss@8.4.32)(vue@3.3.9)(webpack@5.89.0): + resolution: {integrity: sha512-Z32EG/fjoHI0bQGl2xZdFWzZq2OlfRUHqsIWAiDmPYkSzJLVMKD1sanlA90ApRuTE1EwuZyNknIpwBI9XpXvgg==} peerDependencies: webpack: ^5.78.0 dependencies: - '@tarojs/helper': 3.6.19 - '@tarojs/shared': 3.6.19 - '@tarojs/taro': 3.6.19(postcss@8.4.32)(vue@3.3.9) + '@tarojs/helper': 3.6.20 + '@tarojs/shared': 3.6.20 + '@tarojs/taro': 3.6.20(postcss@8.4.32)(vue@3.3.9) enhanced-resolve: 5.15.0 es-module-lexer: 0.10.5 lodash: 4.17.21 - webpack: 5.89.0(@swc/core@1.3.23) + webpack: 5.89.0(@swc/core@1.3.96) webpack-chain: 6.5.1 webpack-virtual-modules: 0.5.0 transitivePeerDependencies: + - '@swc/helpers' - '@types/react' - '@types/webpack' - '@types/webpack-dev-server' @@ -5140,35 +4918,35 @@ packages: - vue dev: true - /@tarojs/webpack5-runner@3.6.19(@babel/core@7.23.5)(@swc/core@1.3.23)(@vue/compiler-sfc@3.3.9)(postcss@8.4.32)(typescript@4.9.5)(vue@3.3.9)(webpack@5.89.0): - resolution: {integrity: sha512-xaj6i1MRDMMTi8bAeshQV24eNQH+bLt9sJbVNjpEUrUXFaLdzk0vFo+Ju1lYQqmQuZkbCNmxeD8Rzg0tJzMtZw==} + /@tarojs/webpack5-runner@3.6.20(@babel/core@7.23.5)(@swc/core@1.3.96)(@vue/compiler-sfc@3.3.9)(postcss@8.4.32)(typescript@4.9.5)(vue@3.3.9)(webpack@5.89.0): + resolution: {integrity: sha512-yqoyejUUh8Y9EhARRcJ4hfqIQkjoj3K1JlstpNPPsnzeaSOK9hp9sUzost10qAORHLi5je8LDMmbNAaui7xSQg==} peerDependencies: postcss: ^8.4.18 webpack: ^5.78.0 dependencies: '@parcel/css': 1.14.0 - '@tarojs/helper': 3.6.19 - '@tarojs/plugin-platform-alipay': 3.6.19(postcss@8.4.32)(vue@3.3.9) - '@tarojs/plugin-platform-jd': 3.6.19(postcss@8.4.32)(vue@3.3.9) - '@tarojs/plugin-platform-qq': 3.6.19(postcss@8.4.32)(vue@3.3.9) - '@tarojs/plugin-platform-swan': 3.6.19(postcss@8.4.32)(vue@3.3.9) - '@tarojs/plugin-platform-tt': 3.6.19(postcss@8.4.32)(vue@3.3.9) - '@tarojs/plugin-platform-weapp': 3.6.19(postcss@8.4.32)(vue@3.3.9) - '@tarojs/runner-utils': 3.6.19 - '@tarojs/runtime': 3.6.19 - '@tarojs/shared': 3.6.19 - '@tarojs/taro': 3.6.19(postcss@8.4.32)(vue@3.3.9) - '@tarojs/taro-loader': 3.6.19(postcss@8.4.32)(vue@3.3.9) - '@tarojs/webpack5-prebundle': 3.6.19(postcss@8.4.32)(vue@3.3.9)(webpack@5.89.0) + '@tarojs/helper': 3.6.20 + '@tarojs/plugin-platform-alipay': 3.6.20(postcss@8.4.32)(vue@3.3.9) + '@tarojs/plugin-platform-jd': 3.6.20(postcss@8.4.32)(vue@3.3.9) + '@tarojs/plugin-platform-qq': 3.6.20(postcss@8.4.32)(vue@3.3.9) + '@tarojs/plugin-platform-swan': 3.6.20(postcss@8.4.32)(vue@3.3.9) + '@tarojs/plugin-platform-tt': 3.6.20(postcss@8.4.32)(vue@3.3.9) + '@tarojs/plugin-platform-weapp': 3.6.20(postcss@8.4.32)(vue@3.3.9) + '@tarojs/runner-utils': 3.6.20 + '@tarojs/runtime': 3.6.20 + '@tarojs/shared': 3.6.20 + '@tarojs/taro': 3.6.20(postcss@8.4.32)(vue@3.3.9) + '@tarojs/taro-loader': 3.6.20(postcss@8.4.32)(vue@3.3.9) + '@tarojs/webpack5-prebundle': 3.6.20(postcss@8.4.32)(vue@3.3.9)(webpack@5.89.0) acorn-walk: 8.3.0 autoprefixer: 9.8.8 babel-loader: 8.2.1(@babel/core@7.23.5)(webpack@5.89.0) copy-webpack-plugin: 10.2.0(webpack@5.89.0) css-loader: 6.8.1(webpack@5.89.0) - css-minimizer-webpack-plugin: 3.4.1(@parcel/css@1.14.0)(csso@5.0.5)(esbuild@0.14.54)(webpack@5.89.0) + css-minimizer-webpack-plugin: 3.4.1(@parcel/css@1.14.0)(csso@5.0.5)(esbuild@0.19.8)(webpack@5.89.0) csso: 5.0.5 detect-port: 1.5.1 - esbuild: 0.14.54 + esbuild: 0.19.8 esbuild-loader: 2.18.0(webpack@5.89.0) file-loader: 6.0.0(webpack@5.89.0) html-minifier: 4.0.0 @@ -5185,11 +4963,11 @@ packages: mkdirp: 1.0.4 ora: 5.4.1 postcss: 8.4.32 - postcss-html-transform: 3.6.19(postcss@8.4.32) + postcss-html-transform: 3.6.20(postcss@8.4.32) postcss-import: 14.1.0(postcss@8.4.32) postcss-loader: 7.3.3(postcss@8.4.32)(typescript@4.9.5)(webpack@5.89.0) - postcss-plugin-constparse: 3.6.19(postcss@8.4.32) - postcss-pxtransform: 3.6.19(postcss@8.4.32) + postcss-plugin-constparse: 3.6.20(postcss@8.4.32) + postcss-pxtransform: 3.6.20(postcss@8.4.32) postcss-url: 10.1.3(postcss@8.4.32) regenerator-runtime: 0.11.1 resolve: 1.22.8 @@ -5200,11 +4978,11 @@ packages: style-loader: 3.3.1(webpack@5.89.0) stylus: 0.55.0 stylus-loader: 6.2.0(stylus@0.55.0)(webpack@5.89.0) - terser-webpack-plugin: 5.3.9(@swc/core@1.3.23)(esbuild@0.14.54)(webpack@5.89.0) + terser-webpack-plugin: 5.3.9(@swc/core@1.3.96)(esbuild@0.19.8)(webpack@5.89.0) url-loader: 4.1.0(file-loader@6.0.0)(webpack@5.89.0) vm2: 3.9.19 vue-loader: 15.11.1(@vue/compiler-sfc@3.3.9)(css-loader@6.8.1)(lodash@4.17.21)(webpack@5.89.0) - webpack: 5.89.0(@swc/core@1.3.23) + webpack: 5.89.0(@swc/core@1.3.96) webpack-chain: 6.5.1 webpack-dev-server: 4.11.1(webpack@5.89.0) webpack-format-messages: 2.0.6 @@ -5212,6 +4990,7 @@ packages: transitivePeerDependencies: - '@babel/core' - '@swc/core' + - '@swc/helpers' - '@types/react' - '@types/react-native' - '@types/webpack' @@ -5519,7 +5298,7 @@ packages: resolution: {integrity: sha512-jn7qwGFmJHwUSphV8zZneO3GmtlgLsmhs/LQyVvQbIIa+fzGMUiHI4HXJZL3FT8MJmgXWbLGiVVY7ElvHq6vDA==} deprecated: This is a stub types definition. sass provides its own type definitions, so you do not need this installed. dependencies: - sass: 1.50.0 + sass: 1.69.5 /@types/semver@7.5.6: resolution: {integrity: sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==} @@ -6557,7 +6336,7 @@ packages: debug: 2.6.9 json5: 0.5.1 lodash: 4.17.21 - minimatch: 3.0.4 + minimatch: 3.1.2 path-is-absolute: 1.0.1 private: 0.1.8 slash: 1.0.0 @@ -6742,7 +6521,7 @@ packages: make-dir: 2.1.0 pify: 4.0.1 schema-utils: 2.7.1 - webpack: 5.89.0(@swc/core@1.3.23) + webpack: 5.89.0(@swc/core@1.3.96) dev: true /babel-messages@6.23.0: @@ -7187,8 +6966,8 @@ packages: babel-types: 6.26.0 dev: true - /babel-plugin-transform-taroapi@3.6.19: - resolution: {integrity: sha512-GIITUla2RXDtwttAujJCJ+Z7tuTHiCZIfyX9HadZAaD9UVeSoNNYJBkPoJ72I5lzCGFUCx3srjgY3joZ2A2xMw==} + /babel-plugin-transform-taroapi@3.6.20: + resolution: {integrity: sha512-wIwgM5wAAoPMqOE8sqgrE8dNOj489weWcZ7xgDR5eafBX9b2Qua9U2tCQO0INLo3Jkooug7kQR86j7Dddb4W8g==} dependencies: lodash: 4.17.21 dev: false @@ -7268,8 +7047,8 @@ packages: - supports-color dev: true - /babel-preset-taro@3.6.19(@babel/core@7.23.5): - resolution: {integrity: sha512-XaGUn1DBlSmHTwQ6KXgFWhxqjdmgPDOrkE4XqwFeYFyP32I+BRJ+F4m0Q3RsnV3IEXgoIGFs34u4lAG1nW25+w==} + /babel-preset-taro@3.6.20(@babel/core@7.23.5): + resolution: {integrity: sha512-yn6qyZwafkh/eCIiu4T93ubKtzk2huykcmyL33Zk6FQH9U7SYoj7bWeaZCj9vGP5dfQ0MNOuI6R2X8uliu0lEQ==} peerDependencies: '@babel/core': '*' dependencies: @@ -7283,8 +7062,8 @@ packages: '@babel/preset-typescript': 7.23.3(@babel/core@7.23.5) '@babel/runtime': 7.23.5 '@babel/runtime-corejs3': 7.23.5 - '@tarojs/helper': 3.6.19 - '@tarojs/shared': 3.6.19 + '@tarojs/helper': 3.6.20 + '@tarojs/shared': 3.6.20 babel-plugin-dynamic-import-node: 2.3.3 babel-plugin-minify-dead-code-elimination: 0.5.2 babel-plugin-transform-imports-api: 1.0.0 @@ -7293,6 +7072,7 @@ packages: metro-react-native-babel-preset: 0.72.4(@babel/core@7.23.5) react-refresh: 0.11.0 transitivePeerDependencies: + - '@swc/helpers' - supports-color dev: true @@ -8502,7 +8282,7 @@ packages: normalize-path: 3.0.0 schema-utils: 4.2.0 serialize-javascript: 6.0.1 - webpack: 5.89.0(@swc/core@1.3.23) + webpack: 5.89.0(@swc/core@1.3.96) dev: true /core-js-compat@3.33.3: @@ -8643,7 +8423,7 @@ packages: postcss-modules-values: 3.0.0 postcss-value-parser: 4.2.0 schema-utils: 2.7.1 - webpack: 5.89.0(@swc/core@1.3.23) + webpack: 5.89.0(@swc/core@1.3.96) dev: true /css-loader@6.8.1(webpack@5.89.0): @@ -8660,10 +8440,10 @@ packages: postcss-modules-values: 4.0.0(postcss@8.4.32) postcss-value-parser: 4.2.0 semver: 7.5.4 - webpack: 5.89.0(@swc/core@1.3.23) + webpack: 5.89.0(@swc/core@1.3.96) dev: true - /css-minimizer-webpack-plugin@3.4.1(@parcel/css@1.14.0)(csso@5.0.5)(esbuild@0.14.54)(webpack@5.89.0): + /css-minimizer-webpack-plugin@3.4.1(@parcel/css@1.14.0)(csso@5.0.5)(esbuild@0.19.8)(webpack@5.89.0): resolution: {integrity: sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q==} engines: {node: '>= 12.13.0'} peerDependencies: @@ -8685,13 +8465,13 @@ packages: '@parcel/css': 1.14.0 cssnano: 5.1.15(postcss@8.4.32) csso: 5.0.5 - esbuild: 0.14.54 + esbuild: 0.19.8 jest-worker: 27.5.1 postcss: 8.4.32 schema-utils: 4.2.0 serialize-javascript: 6.0.1 source-map: 0.6.1 - webpack: 5.89.0(@swc/core@1.3.23) + webpack: 5.89.0(@swc/core@1.3.96) dev: true /css-select@4.3.0: @@ -9520,6 +9300,7 @@ packages: cpu: [x64] os: [android] requiresBuild: true + dev: true optional: true /esbuild-android-arm64@0.14.54: @@ -9528,6 +9309,7 @@ packages: cpu: [arm64] os: [android] requiresBuild: true + dev: true optional: true /esbuild-darwin-64@0.14.54: @@ -9536,6 +9318,7 @@ packages: cpu: [x64] os: [darwin] requiresBuild: true + dev: true optional: true /esbuild-darwin-arm64@0.14.54: @@ -9544,6 +9327,7 @@ packages: cpu: [arm64] os: [darwin] requiresBuild: true + dev: true optional: true /esbuild-freebsd-64@0.14.54: @@ -9552,6 +9336,7 @@ packages: cpu: [x64] os: [freebsd] requiresBuild: true + dev: true optional: true /esbuild-freebsd-arm64@0.14.54: @@ -9560,6 +9345,7 @@ packages: cpu: [arm64] os: [freebsd] requiresBuild: true + dev: true optional: true /esbuild-linux-32@0.14.54: @@ -9568,6 +9354,7 @@ packages: cpu: [ia32] os: [linux] requiresBuild: true + dev: true optional: true /esbuild-linux-64@0.14.54: @@ -9576,6 +9363,7 @@ packages: cpu: [x64] os: [linux] requiresBuild: true + dev: true optional: true /esbuild-linux-arm64@0.14.54: @@ -9584,6 +9372,7 @@ packages: cpu: [arm64] os: [linux] requiresBuild: true + dev: true optional: true /esbuild-linux-arm@0.14.54: @@ -9592,6 +9381,7 @@ packages: cpu: [arm] os: [linux] requiresBuild: true + dev: true optional: true /esbuild-linux-mips64le@0.14.54: @@ -9600,6 +9390,7 @@ packages: cpu: [mips64el] os: [linux] requiresBuild: true + dev: true optional: true /esbuild-linux-ppc64le@0.14.54: @@ -9608,6 +9399,7 @@ packages: cpu: [ppc64] os: [linux] requiresBuild: true + dev: true optional: true /esbuild-linux-riscv64@0.14.54: @@ -9616,6 +9408,7 @@ packages: cpu: [riscv64] os: [linux] requiresBuild: true + dev: true optional: true /esbuild-linux-s390x@0.14.54: @@ -9624,6 +9417,7 @@ packages: cpu: [s390x] os: [linux] requiresBuild: true + dev: true optional: true /esbuild-loader@2.18.0(webpack@5.89.0): @@ -9636,7 +9430,7 @@ packages: json5: 2.2.3 loader-utils: 2.0.4 tapable: 2.2.1 - webpack: 5.89.0(@swc/core@1.3.23) + webpack: 5.89.0(@swc/core@1.3.96) webpack-sources: 2.3.1 dev: true @@ -9646,6 +9440,7 @@ packages: cpu: [x64] os: [netbsd] requiresBuild: true + dev: true optional: true /esbuild-openbsd-64@0.14.54: @@ -9654,6 +9449,7 @@ packages: cpu: [x64] os: [openbsd] requiresBuild: true + dev: true optional: true /esbuild-sunos-64@0.14.54: @@ -9662,6 +9458,7 @@ packages: cpu: [x64] os: [sunos] requiresBuild: true + dev: true optional: true /esbuild-windows-32@0.14.54: @@ -9670,6 +9467,7 @@ packages: cpu: [ia32] os: [win32] requiresBuild: true + dev: true optional: true /esbuild-windows-64@0.14.54: @@ -9678,6 +9476,7 @@ packages: cpu: [x64] os: [win32] requiresBuild: true + dev: true optional: true /esbuild-windows-arm64@0.14.54: @@ -9686,6 +9485,7 @@ packages: cpu: [arm64] os: [win32] requiresBuild: true + dev: true optional: true /esbuild@0.14.54: @@ -9715,6 +9515,7 @@ packages: esbuild-windows-32: 0.14.54 esbuild-windows-64: 0.14.54 esbuild-windows-arm64: 0.14.54 + dev: true /esbuild@0.19.8: resolution: {integrity: sha512-l7iffQpT2OrZfH2rXIp7/FkmaeZM0vxbxN9KfiCwGYuZqzMg/JdvX26R31Zxn/Pxvsrg3Y9N6XTcnknqDyyv4w==} @@ -9744,7 +9545,6 @@ packages: '@esbuild/win32-arm64': 0.19.8 '@esbuild/win32-ia32': 0.19.8 '@esbuild/win32-x64': 0.19.8 - dev: true /escalade@3.1.1: resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} @@ -9784,8 +9584,8 @@ packages: source-map: 0.6.1 dev: true - /eslint-config-taro@3.6.19(@babel/core@7.23.5)(eslint@8.55.0)(typescript@4.9.5): - resolution: {integrity: sha512-3qNkafHUEWnCtUqQtTJ6lXAjjpwHn0stuoW6h4/y5Qm9F4ttt+126/QfMeFTsRWgfSBugUP9jt82t3HRkwtJuQ==} + /eslint-config-taro@3.6.20(@babel/core@7.23.5)(eslint@8.55.0)(typescript@4.9.5): + resolution: {integrity: sha512-etIepI/1mYTWDEDuyiZxGfXkGw3QWr/Obse3cRjHyEzJ6mRBHvyGWGsf7xInvq/a2RcmGuRhdIRTvPjd+KbYUg==} peerDependencies: eslint: '*' dependencies: @@ -10294,7 +10094,7 @@ packages: dependencies: loader-utils: 2.0.4 schema-utils: 2.7.1 - webpack: 5.89.0(@swc/core@1.3.23) + webpack: 5.89.0(@swc/core@1.3.96) dev: true /file-type@16.5.4: @@ -10842,7 +10642,7 @@ packages: fs.realpath: 1.0.0 inflight: 1.0.6 inherits: 2.0.4 - minimatch: 3.0.4 + minimatch: 3.1.2 once: 1.4.0 path-is-absolute: 1.0.1 dev: true @@ -11302,7 +11102,7 @@ packages: lodash: 4.17.21 pretty-error: 4.0.0 tapable: 2.2.1 - webpack: 5.89.0(@swc/core@1.3.23) + webpack: 5.89.0(@swc/core@1.3.96) dev: true /htmlparser2@3.10.1: @@ -12435,7 +12235,7 @@ packages: dependencies: klona: 2.0.6 less: 4.2.0 - webpack: 5.89.0(@swc/core@1.3.23) + webpack: 5.89.0(@swc/core@1.3.96) dev: true /less@3.13.1: @@ -13298,7 +13098,7 @@ packages: webpack: ^5.0.0 dependencies: schema-utils: 4.2.0 - webpack: 5.89.0(@swc/core@1.3.23) + webpack: 5.89.0(@swc/core@1.3.96) dev: true /minimalistic-assert@1.0.1: @@ -13623,7 +13423,7 @@ packages: dependencies: debug: 3.2.7 iconv-lite: 0.6.3 - sax: 1.2.4 + sax: 1.3.0 transitivePeerDependencies: - supports-color dev: true @@ -14490,8 +14290,8 @@ packages: postcss: 8.4.32 dev: true - /postcss-html-transform@3.6.19(postcss@8.4.32): - resolution: {integrity: sha512-h2xphaRO6H6dofYAd3E4Bx+q92JYgvYXFb/+fSkAxjLJ2z5YCbKXpWhxz9sRyWmbXnj6GXuhUnZ+a+nMoe/MXA==} + /postcss-html-transform@3.6.20(postcss@8.4.32): + resolution: {integrity: sha512-HxxUMJhqGq/vMDVzENnBZM1ESEkt3FtY80JLGQrztSK4T+Ck3d/IJp5+fKKxUTYiQVSpnVHO6g6jnmIVruQdIA==} peerDependencies: postcss: ^8.4.18 dependencies: @@ -14539,7 +14339,7 @@ packages: jiti: 1.21.0 postcss: 8.4.32 semver: 7.5.4 - webpack: 5.89.0(@swc/core@1.3.23) + webpack: 5.89.0(@swc/core@1.3.96) transitivePeerDependencies: - typescript dev: true @@ -14803,16 +14603,16 @@ packages: postcss-value-parser: 4.2.0 dev: true - /postcss-plugin-constparse@3.6.19(postcss@8.4.32): - resolution: {integrity: sha512-szNz2zM6Bag/t/b60iVFPeD7QNDtGSP5t7GtpuWVqaUCgBZe5nkyvWe65UM+67uCgtVz+SZC3r8zUltiuJfO9g==} + /postcss-plugin-constparse@3.6.20(postcss@8.4.32): + resolution: {integrity: sha512-iBns/y1cf3K3emI3nD7MVZy4UEv2NjzSMvXftn5fZ4QnShDf/JGtg52ca4DesMp07dCvf0YAz3Vi5WM5TtJuOg==} peerDependencies: postcss: ^8.4.18 dependencies: postcss: 8.4.32 dev: true - /postcss-pxtransform@3.6.19(postcss@8.4.32): - resolution: {integrity: sha512-DjNywHsz/wg8ASly7Po70C3t6ZtilxCIoDEXb1WFsOvdoUMlitJR+aQilDdHfrlQUtG/o24jdl5FPHo1Hhot3Q==} + /postcss-pxtransform@3.6.20(postcss@8.4.32): + resolution: {integrity: sha512-Y03PEoHwGpvThnpSOY50ga8KEvdAq5+5sdmHW3s5QnJJrGrLFjiG6LAu5Nt0IEYQB4tkpQQ/MPx6HvFXLMzkMw==} peerDependencies: postcss: ^8.4.18 dependencies: @@ -15263,7 +15063,7 @@ packages: /read-package-json@2.1.2: resolution: {integrity: sha512-D1KmuLQr6ZSJS0tW8hf3WGpRlwszJOXZ3E8Yd/DNRaM5d+1wVRZdHlpGBLAuovjr28LbWvjpWkBHMxpRGGjzNA==} dependencies: - glob: 7.1.2 + glob: 7.2.3 json-parse-even-better-errors: 2.3.1 normalize-package-data: 2.5.0 npm-normalize-package-bin: 1.0.1 @@ -15813,7 +15613,7 @@ packages: klona: 2.0.6 neo-async: 2.6.2 sass: 1.50.0 - webpack: 5.89.0(@swc/core@1.3.23) + webpack: 5.89.0(@swc/core@1.3.96) dev: true /sass@1.50.0: @@ -15824,6 +15624,7 @@ packages: chokidar: 3.5.3 immutable: 4.3.4 source-map-js: 1.0.2 + dev: true /sass@1.69.5: resolution: {integrity: sha512-qg2+UCJibLr2LCVOt3OlPhr/dqVHWOa9XtZf2OjbLs/T4VPSJ00udtgJxH3neXZm+QqX8B+3cU7RaLqp1iVfcQ==} @@ -15897,7 +15698,7 @@ packages: loglevel: 1.8.1 loglevel-plugin-prefix: 0.8.4 pretty-bytes: 5.6.0 - sass: 1.50.0 + sass: 1.69.5 tslib: 1.14.1 /scule@1.1.1: @@ -16584,7 +16385,7 @@ packages: dependencies: loader-utils: 2.0.4 schema-utils: 2.7.1 - webpack: 5.89.0(@swc/core@1.3.23) + webpack: 5.89.0(@swc/core@1.3.96) dev: true /style-loader@3.3.1(webpack@5.89.0): @@ -16593,7 +16394,7 @@ packages: peerDependencies: webpack: ^5.0.0 dependencies: - webpack: 5.89.0(@swc/core@1.3.23) + webpack: 5.89.0(@swc/core@1.3.96) dev: true /style-search@0.1.0: @@ -16675,7 +16476,7 @@ packages: klona: 2.0.6 normalize-path: 3.0.0 stylus: 0.55.0 - webpack: 5.89.0(@swc/core@1.3.23) + webpack: 5.89.0(@swc/core@1.3.96) dev: true /stylus@0.55.0: @@ -16825,7 +16626,7 @@ packages: rimraf: 2.6.3 dev: true - /terser-webpack-plugin@5.3.9(@swc/core@1.3.23)(esbuild@0.14.54)(webpack@5.89.0): + /terser-webpack-plugin@5.3.9(@swc/core@1.3.96)(esbuild@0.19.8)(webpack@5.89.0): resolution: {integrity: sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==} engines: {node: '>= 10.13.0'} peerDependencies: @@ -16842,13 +16643,13 @@ packages: optional: true dependencies: '@jridgewell/trace-mapping': 0.3.20 - '@swc/core': 1.3.23 - esbuild: 0.14.54 + '@swc/core': 1.3.96 + esbuild: 0.19.8 jest-worker: 27.5.1 schema-utils: 3.3.0 serialize-javascript: 6.0.1 terser: 5.24.0 - webpack: 5.89.0(@swc/core@1.3.23) + webpack: 5.89.0(@swc/core@1.3.96) dev: true /terser@4.8.0: @@ -17081,7 +16882,7 @@ packages: typescript: 4.9.5 dev: true - /ts-node@10.9.1(@swc/core@1.3.23)(@types/node@18.19.1)(typescript@4.9.5): + /ts-node@10.9.1(@swc/core@1.3.96)(@types/node@18.19.1)(typescript@4.9.5): resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} hasBin: true peerDependencies: @@ -17096,7 +16897,7 @@ packages: optional: true dependencies: '@cspotcode/source-map-support': 0.8.1 - '@swc/core': 1.3.23 + '@swc/core': 1.3.96 '@tsconfig/node10': 1.0.9 '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 @@ -17508,7 +17309,7 @@ packages: loader-utils: 2.0.4 mime-types: 2.1.35 schema-utils: 2.7.1 - webpack: 5.89.0(@swc/core@1.3.23) + webpack: 5.89.0(@swc/core@1.3.96) dev: true /url-parse-lax@3.0.0: @@ -17724,7 +17525,7 @@ packages: loader-utils: 1.4.2 vue-hot-reload-api: 2.3.4 vue-style-loader: 4.1.3 - webpack: 5.89.0(@swc/core@1.3.23) + webpack: 5.89.0(@swc/core@1.3.96) transitivePeerDependencies: - arc-templates - atpl @@ -17798,7 +17599,7 @@ packages: hash-sum: 2.0.0 vue: 3.3.9(typescript@4.9.5) watchpack: 2.4.0 - webpack: 5.89.0(@swc/core@1.3.23) + webpack: 5.89.0(@swc/core@1.3.96) dev: true /vue-style-loader@4.1.3: @@ -17881,7 +17682,7 @@ packages: mime-types: 2.1.35 range-parser: 1.2.1 schema-utils: 4.2.0 - webpack: 5.89.0(@swc/core@1.3.23) + webpack: 5.89.0(@swc/core@1.3.96) dev: true /webpack-dev-server@4.11.1(webpack@5.89.0): @@ -17922,7 +17723,7 @@ packages: serve-index: 1.9.1 sockjs: 0.3.24 spdy: 4.0.2 - webpack: 5.89.0(@swc/core@1.3.23) + webpack: 5.89.0(@swc/core@1.3.96) webpack-dev-middleware: 5.3.3(webpack@5.89.0) ws: 8.14.2 transitivePeerDependencies: @@ -17963,7 +17764,7 @@ packages: /webpack-virtual-modules@0.6.1: resolution: {integrity: sha512-poXpCylU7ExuvZK8z+On3kX+S8o/2dQ/SVYueKA0D4WEMXROXgY8Ez50/bQEUmvoSMMrWcrJqCHuhAbsiwg7Dg==} - /webpack@5.89.0(@swc/core@1.3.23): + /webpack@5.89.0(@swc/core@1.3.96): resolution: {integrity: sha512-qyfIC10pOr70V+jkmud8tMfajraGCZMBWJtrmuBymQKCrLTRejBI8STDp1MCyZu/QTdZSeacCQYpYNQVOzX5kw==} engines: {node: '>=10.13.0'} hasBin: true @@ -17994,7 +17795,7 @@ packages: neo-async: 2.6.2 schema-utils: 3.3.0 tapable: 2.2.1 - terser-webpack-plugin: 5.3.9(@swc/core@1.3.23)(esbuild@0.14.54)(webpack@5.89.0) + terser-webpack-plugin: 5.3.9(@swc/core@1.3.96)(esbuild@0.19.8)(webpack@5.89.0) watchpack: 2.4.0 webpack-sources: 3.2.3 transitivePeerDependencies: @@ -18013,7 +17814,7 @@ packages: consola: 2.15.3 pretty-time: 1.1.0 std-env: 3.6.0 - webpack: 5.89.0(@swc/core@1.3.23) + webpack: 5.89.0(@swc/core@1.3.96) dev: true /websocket-driver@0.7.4: diff --git a/src/pages/cart/index.vue b/src/pages/cart/index.vue index faae314..6a892bd 100644 --- a/src/pages/cart/index.vue +++ b/src/pages/cart/index.vue @@ -143,8 +143,8 @@ const changeBox = (label: string[], item: any) => { label.forEach((id: string) => { item.Goods.forEach((itm: any) => { if (itm.gid === id) { - item["Count"].priceCount += itm.price * itm.number; - item["Count"].exchangeCount += itm.exchange * itm.number; + item["Count"].priceCount += itm.price; + item["Count"].exchangeCount += itm.exchange; } }); }); diff --git a/src/pages/mer/mer_detail/index.vue b/src/pages/mer/mer_detail/index.vue index 6c86431..e9ee530 100644 --- a/src/pages/mer/mer_detail/index.vue +++ b/src/pages/mer/mer_detail/index.vue @@ -49,6 +49,7 @@