no message
Showing
7 changed files
with
336 additions
and
59 deletions
.idea/.gitignore
0 → 100644
.idea/modules.xml
0 → 100644
| 1 | <?xml version="1.0" encoding="UTF-8"?> | ||
| 2 | <project version="4"> | ||
| 3 | <component name="ProjectModuleManager"> | ||
| 4 | <modules> | ||
| 5 | <module fileurl="file://$PROJECT_DIR$/.idea/ztx_wx_admin.iml" filepath="$PROJECT_DIR$/.idea/ztx_wx_admin.iml" /> | ||
| 6 | </modules> | ||
| 7 | </component> | ||
| 8 | </project> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
.idea/vcs.xml
0 → 100644
.idea/ztx_wx_admin.iml
0 → 100644
| 1 | <?xml version="1.0" encoding="UTF-8"?> | ||
| 2 | <module type="WEB_MODULE" version="4"> | ||
| 3 | <component name="NewModuleRootManager"> | ||
| 4 | <content url="file://$MODULE_DIR$"> | ||
| 5 | <excludeFolder url="file://$MODULE_DIR$/temp" /> | ||
| 6 | <excludeFolder url="file://$MODULE_DIR$/.tmp" /> | ||
| 7 | <excludeFolder url="file://$MODULE_DIR$/tmp" /> | ||
| 8 | </content> | ||
| 9 | <orderEntry type="inheritedJdk" /> | ||
| 10 | <orderEntry type="sourceFolder" forTests="false" /> | ||
| 11 | </component> | ||
| 12 | </module> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
| ... | @@ -3,12 +3,12 @@ | ... | @@ -3,12 +3,12 @@ |
| 3 | 3 | ||
| 4 | 4 | ||
| 5 | // staging 会员系统 | 5 | // staging 会员系统 |
| 6 | // const baseUrl_api = "http://22yidpjzjifv.ngrok.xiaomiqiu123.top/stage-api/"; | 6 | // const baseUrl_api = "http://22yidpjzjifv.ngrok.xiaomiqiu123.top/stage-api/"; |
| 7 | // const baseUrl_api = "http://36.153.235.222:7899/stage-api"; | 7 | const baseUrl_api = "http://36.153.235.222:7899/stage-api"; |
| 8 | // const baseUrl_api = 'http://192.168.1.132:8787' | 8 | // const baseUrl_api = 'http://192.168.1.132:8787' |
| 9 | const baseUrl_api = 'https://tkcn.19wk.cn:8443/stage-api' | 9 | // const baseUrl_api = 'https://tkcn.19wk.cn:8443/stage-api' |
| 10 | 10 | ||
| 11 | // const baseUrl_api = 'https://system.taekwondo.org.cn/stage-api' | 11 | // const baseUrl_api = 'https://system.taekwondo.org.cn/stage-api' |
| 12 | export default { | 12 | export default { |
| 13 | baseUrl_api | 13 | baseUrl_api |
| 14 | } | 14 | } | ... | ... |
| ... | @@ -63,7 +63,7 @@ | ... | @@ -63,7 +63,7 @@ |
| 63 | 63 | ||
| 64 | <uni-forms-item label="头像" required> | 64 | <uni-forms-item label="头像" required> |
| 65 | <uni-file-picker v-model="photoArr" @delete="delPhoto" return-type="object" limit="1" | 65 | <uni-file-picker v-model="photoArr" @delete="delPhoto" return-type="object" limit="1" |
| 66 | @select="upPhoto" :del-ico="false" :image-styles="imageStylesTx"></uni-file-picker> | 66 | @select="upPhoto" :del-ico="false" :image-styles="imageStylesTx"></uni-file-picker> |
| 67 | <image mode="aspectFill" v-if="baseFormData.photo2" style="height:200rpx;width:200rpx;" :src="config.baseUrl_api + baseFormData.photo2"/> | 67 | <image mode="aspectFill" v-if="baseFormData.photo2" style="height:200rpx;width:200rpx;" :src="config.baseUrl_api + baseFormData.photo2"/> |
| 68 | </uni-forms-item> | 68 | </uni-forms-item> |
| 69 | </view> | 69 | </view> |
| ... | @@ -128,7 +128,7 @@ | ... | @@ -128,7 +128,7 @@ |
| 128 | import { | 128 | import { |
| 129 | onLoad | 129 | onLoad |
| 130 | } from '@dcloudio/uni-app' | 130 | } from '@dcloudio/uni-app' |
| 131 | import config from '@/config.js' | 131 | import config from '@/config.js' |
| 132 | import * as aes2 from '@/common/utils.js' | 132 | import * as aes2 from '@/common/utils.js' |
| 133 | const current = ref(0) | 133 | const current = ref(0) |
| 134 | const popup = ref(null) | 134 | const popup = ref(null) |
| ... | @@ -274,7 +274,7 @@ | ... | @@ -274,7 +274,7 @@ |
| 274 | uni.hideLoading() | 274 | uni.hideLoading() |
| 275 | uni.showModal({ | 275 | uni.showModal({ |
| 276 | content: res.msg, | 276 | content: res.msg, |
| 277 | success: function(res) { | 277 | success: function(modalRes) { |
| 278 | 278 | ||
| 279 | } | 279 | } |
| 280 | }) | 280 | }) |
| ... | @@ -296,14 +296,14 @@ | ... | @@ -296,14 +296,14 @@ |
| 296 | uni.showLoading({ | 296 | uni.showLoading({ |
| 297 | title: '加载中' | 297 | title: '加载中' |
| 298 | }); | 298 | }); |
| 299 | api.uploadImgCorpPhoto(resp.tempFilePath).then(data => { | 299 | api.uploadImgCorpPhoto(resp.tempFilePath).then(data => { |
| 300 | console.log(data) | 300 | console.log(data) |
| 301 | baseFormData.value.photo = data.data.fang; | 301 | baseFormData.value.photo = data.data.fang; |
| 302 | baseFormData.value.photo2 = data.data.yuan; | 302 | baseFormData.value.photo2 = data.data.yuan; |
| 303 | photoArr.value = { | 303 | photoArr.value = { |
| 304 | url: config.baseUrl_api+baseFormData.value.photo, | 304 | url: config.baseUrl_api+baseFormData.value.photo, |
| 305 | name: '头像', | 305 | name: '头像', |
| 306 | extname: 'jpg' | 306 | extname: 'jpg' |
| 307 | } | 307 | } |
| 308 | }); | 308 | }); |
| 309 | }, | 309 | }, |
| ... | @@ -330,18 +330,18 @@ | ... | @@ -330,18 +330,18 @@ |
| 330 | 330 | ||
| 331 | function delPhoto(n) { | 331 | function delPhoto(n) { |
| 332 | photoArr.value = {}; | 332 | photoArr.value = {}; |
| 333 | baseFormData.value.photo = ''; | 333 | baseFormData.value.photo = ''; |
| 334 | baseFormData.value.photo2 = ''; | 334 | baseFormData.value.photo2 = ''; |
| 335 | } | 335 | } |
| 336 | 336 | ||
| 337 | 337 | ||
| 338 | function getExtractInfo(obj) { | 338 | function getExtractInfo(obj) { |
| 339 | photoArr.value = {} | 339 | photoArr.value = {} |
| 340 | // baseFormData.value = { | 340 | // baseFormData.value = { |
| 341 | // photo: '', | 341 | // photo: '', |
| 342 | // idcType: baseFormData.value.idcType, | 342 | // idcType: baseFormData.value.idcType, |
| 343 | // idcCode: baseFormData.value.idcCode, | 343 | // idcCode: baseFormData.value.idcCode, |
| 344 | // perType: '1' | 344 | // perType: '1' |
| 345 | // }; | 345 | // }; |
| 346 | uni.showLoading({ | 346 | uni.showLoading({ |
| 347 | title: '加载中' | 347 | title: '加载中' |
| ... | @@ -353,7 +353,7 @@ | ... | @@ -353,7 +353,7 @@ |
| 353 | // } | 353 | // } |
| 354 | perId.value = res.data.perId | 354 | perId.value = res.data.perId |
| 355 | baseFormData.value.sex = res.data.sex | 355 | baseFormData.value.sex = res.data.sex |
| 356 | baseFormData.value.birth = res.data.birth | 356 | baseFormData.value.birth = res.data.birth |
| 357 | baseFormData.value.name = res.data.name | 357 | baseFormData.value.name = res.data.name |
| 358 | baseFormData.value.phone = res.data.phone | 358 | baseFormData.value.phone = res.data.phone |
| 359 | baseFormData.value.cityId = res.data.cityId | 359 | baseFormData.value.cityId = res.data.cityId |
| ... | @@ -495,23 +495,23 @@ | ... | @@ -495,23 +495,23 @@ |
| 495 | uni.showModal({ | 495 | uni.showModal({ |
| 496 | content: '请确认信息正确', | 496 | content: '请确认信息正确', |
| 497 | success: function(res) { | 497 | success: function(res) { |
| 498 | if (res.confirm) { | 498 | if (res.confirm) { |
| 499 | if(baseFormData.value.idcType=='4'){ | 499 | if(baseFormData.value.idcType=='4'){ |
| 500 | baseFormData.value.idcType='0' | 500 | baseFormData.value.idcType='0' |
| 501 | } | 501 | } |
| 502 | delete baseFormData.value.card | 502 | delete baseFormData.value.card |
| 503 | 503 | ||
| 504 | const time = new Date().valueOf() + '' | 504 | const time = new Date().valueOf() + '' |
| 505 | baseFormData.t = time + Math.floor(Math.random() * 10) | 505 | baseFormData.t = time + Math.floor(Math.random() * 10) |
| 506 | baseFormData.signT = aes2.AESEncrypt(baseFormData.idcType + time) | 506 | baseFormData.signT = aes2.AESEncrypt(baseFormData.idcType + time) |
| 507 | 507 | ||
| 508 | api.addPersonToMyDept(baseFormData.value).then(Response => { | 508 | api.addPersonToMyDept(baseFormData.value).then(Response => { |
| 509 | if (Response.data == 0) { | 509 | if (Response.data == 0) { |
| 510 | let msg = '该成员,实名认证未通过,注册失败!' | 510 | let msg = '该成员,实名认证未通过,注册失败!' |
| 511 | uni.showModal({ | 511 | uni.showModal({ |
| 512 | content: msg, | 512 | content: msg, |
| 513 | title: '提示', | 513 | title: '提示', |
| 514 | success: function() {} | 514 | success: function() {} |
| 515 | }) | 515 | }) |
| 516 | return | 516 | return |
| 517 | } | 517 | } |
| ... | @@ -524,31 +524,29 @@ | ... | @@ -524,31 +524,29 @@ |
| 524 | }) | 524 | }) |
| 525 | return | 525 | return |
| 526 | } | 526 | } |
| 527 | // let msg = '保存成功' | 527 | // let msg = '保存成功' |
| 528 | uni.showModal({ | 528 | uni.showModal({ |
| 529 | content: '保存成功', | 529 | content: '保存成功', |
| 530 | title: '提示', | 530 | title: '提示', |
| 531 | confirmText:'继续添加', | 531 | confirmText:'继续添加', |
| 532 | cancelColor:'返回首页', | 532 | cancelColor:'返回首页', |
| 533 | success: function(res) { | 533 | success: function(res) { |
| 534 | uni.redirectTo({ | 534 | uni.redirectTo({ |
| 535 | url: `/personalVip/addVip?tab=${current.value}&idcType=${baseFormData.value.idcType}` | 535 | url: `/personalVip/addVip?tab=${current.value}&idcType=${baseFormData.value.idcType}` |
| 536 | }); | 536 | }); |
| 537 | }, | 537 | }, |
| 538 | fail:function(){ | 538 | fail:function(){ |
| 539 | uni.reLaunch({ | 539 | uni.reLaunch({ |
| 540 | url:`/pages/index/index` | 540 | url:`/pages/index/index` |
| 541 | }) | 541 | }) |
| 542 | } | 542 | } |
| 543 | }) | 543 | }) |
| 544 | 544 | ||
| 545 | }) | 545 | }) |
| 546 | } | 546 | } |
| 547 | } | 547 | } |
| 548 | }); | 548 | }); |
| 549 | |||
| 550 | } | 549 | } |
| 551 | |||
| 552 | function getUserInfo() { | 550 | function getUserInfo() { |
| 553 | api.getInfo(perId.value).then(res => { | 551 | api.getInfo(perId.value).then(res => { |
| 554 | baseFormData.value = res.data | 552 | baseFormData.value = res.data |
| ... | @@ -564,7 +562,6 @@ | ... | @@ -564,7 +562,6 @@ |
| 564 | display: flex; | 562 | display: flex; |
| 565 | align-items: center; | 563 | align-items: center; |
| 566 | justify-content: flex-end; | 564 | justify-content: flex-end; |
| 567 | |||
| 568 | } | 565 | } |
| 569 | 566 | ||
| 570 | :deep(.segmented-control) { | 567 | :deep(.segmented-control) { |
| ... | @@ -639,4 +636,4 @@ | ... | @@ -639,4 +636,4 @@ |
| 639 | :deep(.item-text-overflow) { | 636 | :deep(.item-text-overflow) { |
| 640 | text-align: left; | 637 | text-align: left; |
| 641 | } | 638 | } |
| 642 | </style> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
| 639 | </style> | ... | ... |
yarn-error.log
0 → 100644
| 1 | Arguments: | ||
| 2 | /opt/homebrew/Cellar/node@18/18.20.4/bin/node /opt/homebrew/Cellar/yarn/1.22.19/libexec/bin/yarn.js | ||
| 3 | |||
| 4 | PATH: | ||
| 5 | /opt/homebrew/opt/node@18/bin:/opt/homebrew/bin:/opt/homebrew/sbin:/Library/Frameworks/Python.framework/Versions/3.12/bin:/Library/Frameworks/Python.framework/Versions/3.11/bin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/Library/Apple/usr/bin:/Users/yangyang/project/ztx_wx_admin/node_modules/.bin:~/software/apache-maven-3.8.4/bin | ||
| 6 | |||
| 7 | Yarn version: | ||
| 8 | 1.22.19 | ||
| 9 | |||
| 10 | Node version: | ||
| 11 | 18.20.4 | ||
| 12 | |||
| 13 | Platform: | ||
| 14 | darwin arm64 | ||
| 15 | |||
| 16 | Trace: | ||
| 17 | SyntaxError: /Users/yangyang/project/ztx_wx_admin/package.json: Unexpected token / in JSON at position 262 | ||
| 18 | at JSON.parse (<anonymous>) | ||
| 19 | at /opt/homebrew/Cellar/yarn/1.22.19/libexec/lib/cli.js:1629:59 | ||
| 20 | at Generator.next (<anonymous>) | ||
| 21 | at step (/opt/homebrew/Cellar/yarn/1.22.19/libexec/lib/cli.js:310:30) | ||
| 22 | at /opt/homebrew/Cellar/yarn/1.22.19/libexec/lib/cli.js:321:13 | ||
| 23 | |||
| 24 | npm manifest: | ||
| 25 | { | ||
| 26 | "dependencies": { | ||
| 27 | "crypto-js": "^4.1.1", | ||
| 28 | "dayjs": "^1.11.6", | ||
| 29 | "lodash": "^4.17.21", | ||
| 30 | "underscore": "^1.13.6" | ||
| 31 | }, | ||
| 32 | "devDependencies": { | ||
| 33 | "@rollup/plugin-commonjs": "^22.0.0" | ||
| 34 | }, | ||
| 35 | "scripts": { | ||
| 36 | "serve": "vue-cli-service serve --no-hot" // 禁用热更新 | ||
| 37 | } | ||
| 38 | |||
| 39 | |||
| 40 | } | ||
| 41 | |||
| 42 | yarn manifest: | ||
| 43 | No manifest | ||
| 44 | |||
| 45 | Lockfile: | ||
| 46 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. | ||
| 47 | # yarn lockfile v1 | ||
| 48 | |||
| 49 | |||
| 50 | "@rollup/plugin-commonjs@^22.0.0": | ||
| 51 | version "22.0.2" | ||
| 52 | resolved "https://registry.npmmirror.com/@rollup/plugin-commonjs/-/plugin-commonjs-22.0.2.tgz#ee8ca8415cda30d383b4096aad5222435b4b69b6" | ||
| 53 | integrity sha512-//NdP6iIwPbMTcazYsiBMbJW7gfmpHom33u1beiIoHDEM0Q9clvtQB1T0efvMqHeKsGohiHo97BCPCkBXdscwg== | ||
| 54 | dependencies: | ||
| 55 | "@rollup/pluginutils" "^3.1.0" | ||
| 56 | commondir "^1.0.1" | ||
| 57 | estree-walker "^2.0.1" | ||
| 58 | glob "^7.1.6" | ||
| 59 | is-reference "^1.2.1" | ||
| 60 | magic-string "^0.25.7" | ||
| 61 | resolve "^1.17.0" | ||
| 62 | |||
| 63 | "@rollup/pluginutils@^3.1.0": | ||
| 64 | version "3.1.0" | ||
| 65 | resolved "https://registry.npmmirror.com/@rollup/pluginutils/-/pluginutils-3.1.0.tgz#706b4524ee6dc8b103b3c995533e5ad680c02b9b" | ||
| 66 | integrity sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg== | ||
| 67 | dependencies: | ||
| 68 | "@types/estree" "0.0.39" | ||
| 69 | estree-walker "^1.0.1" | ||
| 70 | picomatch "^2.2.2" | ||
| 71 | |||
| 72 | "@types/estree@*": | ||
| 73 | version "1.0.5" | ||
| 74 | resolved "https://registry.npmmirror.com/@types/estree/-/estree-1.0.5.tgz#a6ce3e556e00fd9895dd872dd172ad0d4bd687f4" | ||
| 75 | integrity sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw== | ||
| 76 | |||
| 77 | "@types/estree@0.0.39": | ||
| 78 | version "0.0.39" | ||
| 79 | resolved "https://registry.npmmirror.com/@types/estree/-/estree-0.0.39.tgz#e177e699ee1b8c22d23174caaa7422644389509f" | ||
| 80 | integrity sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw== | ||
| 81 | |||
| 82 | balanced-match@^1.0.0: | ||
| 83 | version "1.0.2" | ||
| 84 | resolved "https://registry.npmmirror.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" | ||
| 85 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== | ||
| 86 | |||
| 87 | brace-expansion@^1.1.7: | ||
| 88 | version "1.1.11" | ||
| 89 | resolved "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" | ||
| 90 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== | ||
| 91 | dependencies: | ||
| 92 | balanced-match "^1.0.0" | ||
| 93 | concat-map "0.0.1" | ||
| 94 | |||
| 95 | commondir@^1.0.1: | ||
| 96 | version "1.0.1" | ||
| 97 | resolved "https://registry.npmmirror.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" | ||
| 98 | integrity sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg== | ||
| 99 | |||
| 100 | concat-map@0.0.1: | ||
| 101 | version "0.0.1" | ||
| 102 | resolved "https://registry.npmmirror.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" | ||
| 103 | integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== | ||
| 104 | |||
| 105 | crypto-js@^4.1.1: | ||
| 106 | version "4.2.0" | ||
| 107 | resolved "https://registry.npmmirror.com/crypto-js/-/crypto-js-4.2.0.tgz#4d931639ecdfd12ff80e8186dba6af2c2e856631" | ||
| 108 | integrity sha512-KALDyEYgpY+Rlob/iriUtjV6d5Eq+Y191A5g4UqLAi8CyGP9N1+FdVbkc1SxKc2r4YAYqG8JzO2KGL+AizD70Q== | ||
| 109 | |||
| 110 | dayjs@^1.11.6: | ||
| 111 | version "1.11.12" | ||
| 112 | resolved "https://registry.npmmirror.com/dayjs/-/dayjs-1.11.12.tgz#5245226cc7f40a15bf52e0b99fd2a04669ccac1d" | ||
| 113 | integrity sha512-Rt2g+nTbLlDWZTwwrIXjy9MeiZmSDI375FvZs72ngxx8PDC6YXOeR3q5LAuPzjZQxhiWdRKac7RKV+YyQYfYIg== | ||
| 114 | |||
| 115 | estree-walker@^1.0.1: | ||
| 116 | version "1.0.1" | ||
| 117 | resolved "https://registry.npmmirror.com/estree-walker/-/estree-walker-1.0.1.tgz#31bc5d612c96b704106b477e6dd5d8aa138cb700" | ||
| 118 | integrity sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg== | ||
| 119 | |||
| 120 | estree-walker@^2.0.1: | ||
| 121 | version "2.0.2" | ||
| 122 | resolved "https://registry.npmmirror.com/estree-walker/-/estree-walker-2.0.2.tgz#52f010178c2a4c117a7757cfe942adb7d2da4cac" | ||
| 123 | integrity sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w== | ||
| 124 | |||
| 125 | fs.realpath@^1.0.0: | ||
| 126 | version "1.0.0" | ||
| 127 | resolved "https://registry.npmmirror.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" | ||
| 128 | integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== | ||
| 129 | |||
| 130 | function-bind@^1.1.2: | ||
| 131 | version "1.1.2" | ||
| 132 | resolved "https://registry.npmmirror.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c" | ||
| 133 | integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA== | ||
| 134 | |||
| 135 | glob@^7.1.6: | ||
| 136 | version "7.2.3" | ||
| 137 | resolved "https://registry.npmmirror.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" | ||
| 138 | integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== | ||
| 139 | dependencies: | ||
| 140 | fs.realpath "^1.0.0" | ||
| 141 | inflight "^1.0.4" | ||
| 142 | inherits "2" | ||
| 143 | minimatch "^3.1.1" | ||
| 144 | once "^1.3.0" | ||
| 145 | path-is-absolute "^1.0.0" | ||
| 146 | |||
| 147 | hasown@^2.0.2: | ||
| 148 | version "2.0.2" | ||
| 149 | resolved "https://registry.npmmirror.com/hasown/-/hasown-2.0.2.tgz#003eaf91be7adc372e84ec59dc37252cedb80003" | ||
| 150 | integrity sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ== | ||
| 151 | dependencies: | ||
| 152 | function-bind "^1.1.2" | ||
| 153 | |||
| 154 | inflight@^1.0.4: | ||
| 155 | version "1.0.6" | ||
| 156 | resolved "https://registry.npmmirror.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" | ||
| 157 | integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== | ||
| 158 | dependencies: | ||
| 159 | once "^1.3.0" | ||
| 160 | wrappy "1" | ||
| 161 | |||
| 162 | inherits@2: | ||
| 163 | version "2.0.4" | ||
| 164 | resolved "https://registry.npmmirror.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" | ||
| 165 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== | ||
| 166 | |||
| 167 | is-core-module@^2.13.0: | ||
| 168 | version "2.15.0" | ||
| 169 | resolved "https://registry.npmmirror.com/is-core-module/-/is-core-module-2.15.0.tgz#71c72ec5442ace7e76b306e9d48db361f22699ea" | ||
| 170 | integrity sha512-Dd+Lb2/zvk9SKy1TGCt1wFJFo/MWBPMX5x7KcvLajWTGuomczdQX61PvY5yK6SVACwpoexWo81IfFyoKY2QnTA== | ||
| 171 | dependencies: | ||
| 172 | hasown "^2.0.2" | ||
| 173 | |||
| 174 | is-reference@^1.2.1: | ||
| 175 | version "1.2.1" | ||
| 176 | resolved "https://registry.npmmirror.com/is-reference/-/is-reference-1.2.1.tgz#8b2dac0b371f4bc994fdeaba9eb542d03002d0b7" | ||
| 177 | integrity sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ== | ||
| 178 | dependencies: | ||
| 179 | "@types/estree" "*" | ||
| 180 | |||
| 181 | lodash@^4.17.21: | ||
| 182 | version "4.17.21" | ||
| 183 | resolved "https://registry.npmmirror.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" | ||
| 184 | integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== | ||
| 185 | |||
| 186 | magic-string@^0.25.7: | ||
| 187 | version "0.25.9" | ||
| 188 | resolved "https://registry.npmmirror.com/magic-string/-/magic-string-0.25.9.tgz#de7f9faf91ef8a1c91d02c2e5314c8277dbcdd1c" | ||
| 189 | integrity sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ== | ||
| 190 | dependencies: | ||
| 191 | sourcemap-codec "^1.4.8" | ||
| 192 | |||
| 193 | minimatch@^3.1.1: | ||
| 194 | version "3.1.2" | ||
| 195 | resolved "https://registry.npmmirror.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" | ||
| 196 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== | ||
| 197 | dependencies: | ||
| 198 | brace-expansion "^1.1.7" | ||
| 199 | |||
| 200 | once@^1.3.0: | ||
| 201 | version "1.4.0" | ||
| 202 | resolved "https://registry.npmmirror.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" | ||
| 203 | integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== | ||
| 204 | dependencies: | ||
| 205 | wrappy "1" | ||
| 206 | |||
| 207 | path-is-absolute@^1.0.0: | ||
| 208 | version "1.0.1" | ||
| 209 | resolved "https://registry.npmmirror.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" | ||
| 210 | integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== | ||
| 211 | |||
| 212 | path-parse@^1.0.7: | ||
| 213 | version "1.0.7" | ||
| 214 | resolved "https://registry.npmmirror.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" | ||
| 215 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== | ||
| 216 | |||
| 217 | picomatch@^2.2.2: | ||
| 218 | version "2.3.1" | ||
| 219 | resolved "https://registry.npmmirror.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" | ||
| 220 | integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== | ||
| 221 | |||
| 222 | resolve@^1.17.0: | ||
| 223 | version "1.22.8" | ||
| 224 | resolved "https://registry.npmmirror.com/resolve/-/resolve-1.22.8.tgz#b6c87a9f2aa06dfab52e3d70ac8cde321fa5a48d" | ||
| 225 | integrity sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw== | ||
| 226 | dependencies: | ||
| 227 | is-core-module "^2.13.0" | ||
| 228 | path-parse "^1.0.7" | ||
| 229 | supports-preserve-symlinks-flag "^1.0.0" | ||
| 230 | |||
| 231 | sourcemap-codec@^1.4.8: | ||
| 232 | version "1.4.8" | ||
| 233 | resolved "https://registry.npmmirror.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz#ea804bd94857402e6992d05a38ef1ae35a9ab4c4" | ||
| 234 | integrity sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA== | ||
| 235 | |||
| 236 | supports-preserve-symlinks-flag@^1.0.0: | ||
| 237 | version "1.0.0" | ||
| 238 | resolved "https://registry.npmmirror.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" | ||
| 239 | integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== | ||
| 240 | |||
| 241 | underscore@^1.13.6: | ||
| 242 | version "1.13.6" | ||
| 243 | resolved "https://registry.npmmirror.com/underscore/-/underscore-1.13.6.tgz#04786a1f589dc6c09f761fc5f45b89e935136441" | ||
| 244 | integrity sha512-+A5Sja4HP1M08MaXya7p5LvjuM7K6q/2EaC0+iovj/wOcMsTzMvDFbasi/oSapiwOlt252IqsKqPjCl7huKS0A== | ||
| 245 | |||
| 246 | wrappy@1: | ||
| 247 | version "1.0.2" | ||
| 248 | resolved "https://registry.npmmirror.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" | ||
| 249 | integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== |
-
Please register or sign in to post a comment