顶部完善

parent a098c1a9
This source diff could not be displayed because it is too large. You can view the blob instead.
<template>
<div class="nav-bar flex-between" :style="{ height: height }">
<div class="left">
<slot name="left"></slot>
</div>
<div class="center">
<slot name="title"></slot>
</div>
<div class="right">
<slot name="right"></slot>
</div>
</div>
<view class="searchComponent" :style="{ height: contentHeight, background: backgroundBox }">
<view class="search" :style="{ background }">
<wd-icon v-if="showIcon" name="thin-arrow-left" class="icon" @tap="back" :style="{ color: backIcon }"></wd-icon>
<slot></slot>
<text class="title" :style="{ color: textColor }" v-if="showTitle">{{ title }}</text>
</view>
</view>
</template>
<script setup>
const height = "44px";
import { useCountStore } from "@/store";
import { onMounted, defineProps } from "vue";
const props = defineProps({
background: {
type: String,
default: ""
},
backIcon: {
type: String,
default: "black"
},
showIcon: {
type: Boolean,
default: false
},
backgroundBox: {
type: String,
default: ""
},
showTitle: {
type: Boolean,
default: false
},
textColor: {
type: String,
default: "#333333"
},
title: {
type: String,
default: "HELLO WORLD"
}
});
const contentHeight = ref("100rpx");
onLoad(() => {
xma.xh.getSystemInfo({
success(res) {
// console.log('设备信息', res); // 设备信息
}
});
xma.xh.getMenuButtonBoundingClientRect({
success(res) {
// console.log('宽度', res.width); // 宽度,单位:px
// console.log('高度', res.height); // 高度,单位:px
// console.log('上边界坐标', res.top); // 上边界坐标,单位:px
// console.log('右边界坐标', res.right); // 右边界坐标,单位:px
// console.log('下边界坐标', res.bottom); // 下边界坐标,单位:px
// console.log('左边界坐标', res.left);
contentHeight.value = (res.top + res.bottom) / 2 + 25 + "px";
// contentHeight.value = res.bottom * 2 + 10 + 'rpx'; // 左边界坐标,单位:px
}
});
});
// 返回上一级
const back = () => {
xma.navigateBack({
delta: 1
});
};
</script>
<style lang="scss" scoped>
.nav-bar {
box-sizing: border-box;
width: 750rpx;
padding: 0 32rpx;
color: #ffffff;
.searchComponent {
position: sticky;
top: 0;
z-index: 999999;
// background: green;
transition: background-color 0.5s;
// box-sizing: border-box;
.search {
position: absolute;
bottom: 10rpx;
left: 0;
// padding-left: 20rpx;
box-sizing: border-box;
// margin-top: 44rpx;
display: flex;
align-items: center;
width: 100%;
min-height: 70rpx;
// margin: 0 auto;
// background: red;
// border-radius: 16rpx;
// background-color: red;
opacity: 0.8;
// transform: translateX(-50%);
.arrow {
width: 15rpx;
height: 24rpx;
}
.icon {
position: absolute;
left: 16rpx;
font-size: 28rpx;
}
.title {
display: inline-block;
margin: 0 auto;
// font-family: "PingFang SC";
// width: 100%;
font-size: 32rpx;
font-weight: bold;
}
}
}
</style>
<template>
<div class="nav-bar flex-between" :style="{ height: height }">
<div class="left">
<slot name="left"></slot>
</div>
<div class="center">
<slot name="title"></slot>
</div>
<div class="right">
<slot name="right"></slot>
</div>
</div>
</template>
<script setup>
const height = "44px";
</script>
<style lang="scss" scoped>
.nav-bar {
box-sizing: border-box;
width: 750rpx;
padding: 0 32rpx;
color: #ffffff;
}
</style>
import { createSSRApp } from "vue";
import App from "./App.vue";
import store from "./store";
import Vconsole from 'vconsole';
import Vconsole from "vconsole";
import NavBar from "@/components/navBar/index.vue";
export function createApp() {
const app = createSSRApp(App);
const vConsole = new Vconsole();
app.use(store,vConsole);
app.component("NavBar", NavBar);
const vConsole = new Vconsole();
app.use(store);
return {
app
};
......
......@@ -9,37 +9,43 @@
{
"path": "pages/recommend/index",
"style": {
"navigationBarTitleText": "推荐"
"navigationBarTitleText": "推荐",
"navigationStyle": "custom"
}
},
{
"path": "pages/recommend/releasePostion/step1",
"style": {
"navigationBarTitleText": ""
"navigationBarTitleText": "",
"navigationStyle": "custom"
}
},
{
"path": "pages/recommend/releasePostion/step2",
"style": {
"navigationBarTitleText": ""
"navigationBarTitleText": "",
"navigationStyle": "custom"
}
},
{
"path": "pages/recommend/releasePostion/step3",
"style": {
"navigationBarTitleText": ""
"navigationBarTitleText": "",
"navigationStyle": "custom"
}
},
{
"path": "pages/recommend/releasePostion/step4",
"style": {
"navigationBarTitleText": ""
"navigationBarTitleText": "",
"navigationStyle": "custom"
}
},
{
"path": "pages/recommend/releasePostion/step5",
"style": {
"navigationBarTitleText": ""
"navigationBarTitleText": "",
"navigationStyle": "custom"
}
},
{
......@@ -52,7 +58,8 @@
{
"path": "pages/messageList/index",
"style": {
"navigationBarTitleText": "消息"
"navigationBarTitleText": "消息",
"navigationStyle": "custom"
}
},
{
......@@ -65,44 +72,51 @@
{
"path": "pages/user/myCompany/index",
"style": {
"navigationBarTitleText": "我的公司"
"navigationBarTitleText": "我的公司",
"navigationStyle": "custom"
}
},
{
"path": "pages/user/myCompany/licenseInfo",
"style": {
"navigationBarTitleText": "我的公司"
"navigationBarTitleText": "我的公司",
"navigationStyle": "custom"
}
},
{
"path": "pages/dynamic/index",
"style": {
"navigationBarTitleText": "动态"
"navigationBarTitleText": "动态",
"navigationStyle": "custom"
}
},
{
"path": "pages/policy/index",
"style": {
"navigationBarTitleText": "政策"
"navigationBarTitleText": "政策",
"navigationStyle": "custom"
}
},
{
"path": "pages/articleDetails/index",
"style": {
"navigationBarTitleText": "文章详情"
"navigationBarTitleText": "文章详情",
"navigationStyle": "custom"
}
},
{
"path": "pages/postionList/trap/index",
"style": {
"navigationBarTitleText": "求职陷阱"
"navigationBarTitleText": "求职陷阱",
"navigationStyle": "custom"
}
},
{
"path": "pages/postionList/positionDetails/index",
"style": {
"navigationBarTitleText": "职位详情"
"navigationBarTitleText": "职位详情",
"navigationStyle": "custom"
}
},
{
......@@ -110,37 +124,43 @@
"style": {
"navigationBarTitleText": "添加企业",
"navigationBarTextStyle": "#fff",
"navigationBarBackgroundColor": "#1F86FF"
"navigationBarBackgroundColor": "#1F86FF",
"navigationStyle": "custom"
}
},
{
"path": "pages/user/businessLicense/submit",
"style": {
"navigationBarTitleText": "营业执照认证"
"navigationBarTitleText": "营业执照认证",
"navigationStyle": "custom"
}
},
{
"path": "pages/user/businessLicense/appeal",
"style": {
"navigationBarTitleText": "申诉企业"
"navigationBarTitleText": "申诉企业",
"navigationStyle": "custom"
}
},
{
"path": "pages/user/editUserInfo/index",
"style": {
"navigationBarTitleText": "我的名片"
"navigationBarTitleText": "我的名片",
"navigationStyle": "custom"
}
},
{
"path": "pages/recommend/deliveryManagement/index",
"style": {
"navigationBarTitleText": "投递管理"
"navigationBarTitleText": "投递管理",
"navigationStyle": "custom"
}
},
{
"path": "pages/user/resume/index",
"style": {
"navigationBarTitleText": "简历详情"
"navigationBarTitleText": "简历详情",
"navigationStyle": "custom"
}
},
{
......@@ -153,13 +173,15 @@
{
"path": "pages/signUp/index",
"style": {
"navigationBarTitleText": "岗位信息"
"navigationBarTitleText": "岗位信息",
"navigationStyle": "custom"
}
},
{
"path": "pages/signUp/addPost",
"style": {
"navigationBarTitleText": "岗位信息"
"navigationBarTitleText": "岗位信息",
"navigationStyle": "custom"
}
},
{
......@@ -184,7 +206,8 @@
{
"path": "pages/user/feedbackDetails/index",
"style": {
"navigationBarTitleText": "投诉建议"
"navigationBarTitleText": "投诉建议",
"navigationStyle": "custom"
}
},
{
......@@ -192,7 +215,7 @@
"style": {
"navigationBarTitleText": "记录",
"enablePullDownRefresh": true,
"onReachBottomDistance": 50,
"onReachBottomDistance": 50,
"navigationStyle": "custom"
}
}
......
<template>
<NavBar :showIcon="true" :showTitle="true" title="文章详情" backgroundBox="#FFFFFF"></NavBar>
<div class="page">
<div class="top">
<video :src="evn.APP_IMAGE_BASE_API + data.videoPath" v-if="data.infoType === 2"></video>
......
<template>
<NavBar :showIcon="false" :showTitle="true" title="动态"></NavBar>
<div class="policy">
<div class="tab-name" :enable-flex="true" :scroll-x="true">
<view :class="{ item: 1, active: active == v.id }" v-for="v in typeList" :key="v.id" @click="changeType(v)">{{
......
<template>
<div class="page">
<NavBar :showIcon="false" :showTitle="true" title="登录"></NavBar>
<!-- pages/login/login.wxml -->
<view class="login-page">
<nav-bar class="nav-bar">
......@@ -57,13 +58,12 @@ const login = () => {
.page {
height: 100%;
background-color: #eaf5ff;
}
.login-page {
height: 100%;
background-image: url("https://lygsh-image.wjzpgz.com/login/loginBG.png");
background-repeat: no-repeat;
background-position: 50% 50%;
background-size: auto 100%;
}
.login-page {
.student {
font-size: 36rpx;
font-weight: 600;
......
<template>
<NavBar :showIcon="false" :showTitle="true" title="消息"></NavBar>
<div class="message-list">
<scroll-view :scroll-y="true" @scrolltolower="getList">
<view class="system">
......
<template>
<NavBar :showIcon="false" :showTitle="true" title="政策"></NavBar>
<div class="policy">
<div class="tab-name" :enable-flex="true" :scroll-x="true">
<view :class="{ item: 1, active: active == v.id }" v-for="v in typeList" :key="v.id" @click="changeType(v)">{{
......
<template>
<NavBar :showIcon="false" :showTitle="true" title="推荐"></NavBar>
<div class="page">
<view class="tabs">
<text @tap="changeActiveTab('求职推荐')" :class="activeTab == '求职推荐' ? 'active' : ''">求职推荐</text>
......
<template>
<div class="page">
<NavBar
backIcon="#ffffff"
:showIcon="true"
:showTitle="true"
title="添加企业"
backgroundBox="#1F86FF"
textColor="#ffffff"
></NavBar>
<view class="welcome flex-between">
<view class="text">
<view class="t1">Welcome</view>
......@@ -116,11 +124,12 @@ const chooseImage = sourceType => {
display: flex;
flex-direction: column;
height: 100%;
padding-top: 54rpx;
// padding-top: 54rpx;
background-color: #1f86ff;
}
.welcome {
padding: 0 80rpx 0 66rpx;
padding: 54rpx 80rpx 0 66rpx;
image {
width: 164rpx;
height: 164.46rpx;
......
<template>
<NavBar :showIcon="false" :showTitle="true" title="我的" textColor="#ffffff"></NavBar>
<div class="user-container">
<navBar>
<template #title>我的</template>
</navBar>
<view class="bg"></view>
<!-- 用户信息 -->
<view class="user-info flex-align-center">
......
<template>
<NavBar :showIcon="true" :showTitle="true" title="我的公司" backgroundBox="#FFFFFF"></NavBar>
<div class="page">
<div class="content">
<div class="top">
......
<template>
<NavBar :showIcon="true" :showTitle="true" title="记录" backgroundBox="#FFFFFF"></NavBar>
<view class="problem-page">
<view class="history-item" v-for="i in 10" :key="i">
<view class="item-left">
......@@ -38,54 +39,54 @@ page {
background: #f3f4f8;
}
.problem-page {
width: 750rpx;
display: flex;
flex-direction: column;
gap: 16rpx;
width: 750rpx;
.history-item {
background: #fff;
width: 100%;
box-sizing: border-box;
padding: 32rpx;
display: flex;
justify-content: space-between;
width: 100%;
padding: 32rpx;
background: #ffffff;
.item-left {
display: flex;
flex-direction: column;
.title {
font-size: 32rpx;
color: #1b2026;
max-width: 400rpx;
white-space: nowrap;
overflow: hidden;
font-size: 32rpx;
color: #1b2026;
text-overflow: ellipsis;
white-space: nowrap;
}
.time {
margin-top: 16rpx;
font-size: 24rpx;
color: #77818f;
margin-top: 16rpx;
}
}
.btn {
box-sizing: border-box;
padding: 0rpx 32rpx;
display: flex;
height: 60rpx;
flex-shrink: 0;
align-items: center;
height: 60rpx;
padding: 0rpx 32rpx;
font-size: 24rpx;
flex-shrink: 0;
}
}
.foot-btn {
position: fixed;
width: 622rpx;
height: 80rpx;
border-radius: 12rpx;
display: flex;
align-items: center;
justify-content: center;
width: 622rpx;
height: 80rpx;
color: #ffffff;
background: #1f86ff;
color: #fff;
border-radius: 12rpx;
}
}
</style>
......@@ -956,14 +956,14 @@
esutils "^2.0.2"
"@babel/regjsgen@^0.8.0":
"integrity" "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA=="
"resolved" "https://registry.npmmirror.com/@babel/regjsgen/-/regjsgen-0.8.0.tgz"
"version" "0.8.0"
version "0.8.0"
resolved "https://registry.npmmirror.com/@babel/regjsgen/-/regjsgen-0.8.0.tgz"
integrity sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==
"@babel/runtime@^7.17.2", "@babel/runtime@^7.7.2", "@babel/runtime@^7.8.4":
"integrity" "sha512-UwgBRMjJP+xv857DCngvqXI3Iq6J4v0wXmwc6sapg+zyhbwmQX67LUEFrkK5tbyJ30jGuG3ZvWpBiB9LCy1kWw=="
"resolved" "https://registry.npmmirror.com/@babel/runtime/-/runtime-7.24.7.tgz"
"version" "7.24.7"
version "7.24.7"
resolved "https://registry.npmmirror.com/@babel/runtime/-/runtime-7.24.7.tgz"
integrity sha512-UwgBRMjJP+xv857DCngvqXI3Iq6J4v0wXmwc6sapg+zyhbwmQX67LUEFrkK5tbyJ30jGuG3ZvWpBiB9LCy1kWw==
dependencies:
regenerator-runtime "^0.14.0"
......@@ -3142,57 +3142,57 @@ content-disposition@0.5.4:
dependencies:
safe-buffer "5.2.1"
"content-type@~1.0.4", "content-type@~1.0.5":
"integrity" "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA=="
"resolved" "https://registry.npmmirror.com/content-type/-/content-type-1.0.5.tgz"
"version" "1.0.5"
"convert-source-map@^1.4.0":
"integrity" "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A=="
"resolved" "https://registry.npmmirror.com/convert-source-map/-/convert-source-map-1.9.0.tgz"
"version" "1.9.0"
"convert-source-map@^1.6.0":
"integrity" "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A=="
"resolved" "https://registry.npmmirror.com/convert-source-map/-/convert-source-map-1.9.0.tgz"
"version" "1.9.0"
"convert-source-map@^2.0.0":
"integrity" "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg=="
"resolved" "https://registry.npmmirror.com/convert-source-map/-/convert-source-map-2.0.0.tgz"
"version" "2.0.0"
"cookie-signature@1.0.6":
"integrity" "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ=="
"resolved" "https://registry.npmmirror.com/cookie-signature/-/cookie-signature-1.0.6.tgz"
"version" "1.0.6"
"cookie@0.6.0":
"integrity" "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw=="
"resolved" "https://registry.npmmirror.com/cookie/-/cookie-0.6.0.tgz"
"version" "0.6.0"
"copy-text-to-clipboard@^3.0.1":
"integrity" "sha512-RnJFp1XR/LOBDckxTib5Qjr/PMfkatD0MUCQgdpqS8MdKiNUzBjAQBEN6oUy+jW7LI93BBG3DtMB2KOOKpGs2Q=="
"resolved" "https://registry.npmmirror.com/copy-text-to-clipboard/-/copy-text-to-clipboard-3.2.0.tgz"
"version" "3.2.0"
"core-js-compat@^3.31.0", "core-js-compat@^3.36.1":
"integrity" "sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg=="
"resolved" "https://registry.npmmirror.com/core-js-compat/-/core-js-compat-3.37.1.tgz"
"version" "3.37.1"
content-type@~1.0.4, content-type@~1.0.5:
version "1.0.5"
resolved "https://registry.npmmirror.com/content-type/-/content-type-1.0.5.tgz"
integrity sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==
convert-source-map@^1.4.0:
version "1.9.0"
resolved "https://registry.npmmirror.com/convert-source-map/-/convert-source-map-1.9.0.tgz"
integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==
convert-source-map@^1.6.0:
version "1.9.0"
resolved "https://registry.npmmirror.com/convert-source-map/-/convert-source-map-1.9.0.tgz"
integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==
convert-source-map@^2.0.0:
version "2.0.0"
resolved "https://registry.npmmirror.com/convert-source-map/-/convert-source-map-2.0.0.tgz"
integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==
cookie-signature@1.0.6:
version "1.0.6"
resolved "https://registry.npmmirror.com/cookie-signature/-/cookie-signature-1.0.6.tgz"
integrity sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==
cookie@0.6.0:
version "0.6.0"
resolved "https://registry.npmmirror.com/cookie/-/cookie-0.6.0.tgz"
integrity sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==
copy-text-to-clipboard@^3.0.1:
version "3.2.0"
resolved "https://registry.npmmirror.com/copy-text-to-clipboard/-/copy-text-to-clipboard-3.2.0.tgz"
integrity sha512-RnJFp1XR/LOBDckxTib5Qjr/PMfkatD0MUCQgdpqS8MdKiNUzBjAQBEN6oUy+jW7LI93BBG3DtMB2KOOKpGs2Q==
core-js-compat@^3.31.0, core-js-compat@^3.36.1:
version "3.37.1"
resolved "https://registry.npmmirror.com/core-js-compat/-/core-js-compat-3.37.1.tgz"
integrity sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==
dependencies:
browserslist "^4.23.0"
"core-js@^3.11.0", "core-js@^3.31.1", "core-js@^3.4.1":
"integrity" "sha512-Xn6qmxrQZyB0FFY8E3bgRXei3lWDJHhvI+u0q9TKIYM49G8pAr0FgnnrFRAmsbptZL1yxRADVXn+x5AGsbBfyw=="
"resolved" "https://registry.npmmirror.com/core-js/-/core-js-3.37.1.tgz"
"version" "3.37.1"
core-js@^3.11.0, core-js@^3.31.1, core-js@^3.4.1:
version "3.37.1"
resolved "https://registry.npmmirror.com/core-js/-/core-js-3.37.1.tgz"
integrity sha512-Xn6qmxrQZyB0FFY8E3bgRXei3lWDJHhvI+u0q9TKIYM49G8pAr0FgnnrFRAmsbptZL1yxRADVXn+x5AGsbBfyw==
"cosmiconfig@^8.2.0":
"integrity" "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA=="
"resolved" "https://registry.npmmirror.com/cosmiconfig/-/cosmiconfig-8.3.6.tgz"
"version" "8.3.6"
cosmiconfig@^8.2.0:
version "8.3.6"
resolved "https://registry.npmmirror.com/cosmiconfig/-/cosmiconfig-8.3.6.tgz"
integrity sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==
dependencies:
import-fresh "^3.3.0"
js-yaml "^4.1.0"
......@@ -5192,70 +5192,70 @@ mlly@^1.4.2, mlly@^1.7.0:
pkg-types "^1.1.1"
ufo "^1.5.3"
"module-alias@^2.2.2":
"integrity" "sha512-23g5BFj4zdQL/b6tor7Ji+QY4pEfNH784BMslY9Qb0UnJWRAt+lQGLYmRaM0KDBwIG23ffEBELhZDP2rhi9f/Q=="
"resolved" "https://registry.npmmirror.com/module-alias/-/module-alias-2.2.3.tgz"
"version" "2.2.3"
"ms@2.0.0":
"integrity" "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="
"resolved" "https://registry.npmmirror.com/ms/-/ms-2.0.0.tgz"
"version" "2.0.0"
"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"
"ms@2.1.3":
"integrity" "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="
"resolved" "https://registry.npmmirror.com/ms/-/ms-2.1.3.tgz"
"version" "2.1.3"
"muggle-string@^0.3.1":
"integrity" "sha512-ckmWDJjphvd/FvZawgygcUeQCxzvohjFO5RxTjj4eq8kw359gFF3E1brjfI+viLMxss5JrHTDRHZvu2/tuy0Qg=="
"resolved" "https://registry.npmmirror.com/muggle-string/-/muggle-string-0.3.1.tgz"
"version" "0.3.1"
"mutation-observer@^1.0.3":
"integrity" "sha512-M/O/4rF2h776hV7qGMZUH3utZLO/jK7p8rnNgGkjKUw8zCGjRQPxB8z6+5l8+VjRUQ3dNYu4vjqXYLr+U8ZVNA=="
"resolved" "https://registry.npmmirror.com/mutation-observer/-/mutation-observer-1.0.3.tgz"
"version" "1.0.3"
"mute-stream@0.0.8":
"integrity" "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA=="
"resolved" "https://registry.npmmirror.com/mute-stream/-/mute-stream-0.0.8.tgz"
"version" "0.0.8"
"nanoid@^3.3.7":
"integrity" "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g=="
"resolved" "https://registry.npmmirror.com/nanoid/-/nanoid-3.3.7.tgz"
"version" "3.3.7"
"natural-compare@^1.4.0":
"integrity" "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw=="
"resolved" "https://registry.npmmirror.com/natural-compare/-/natural-compare-1.4.0.tgz"
"version" "1.4.0"
"negotiator@0.6.3":
"integrity" "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg=="
"resolved" "https://registry.npmmirror.com/negotiator/-/negotiator-0.6.3.tgz"
"version" "0.6.3"
"node-int64@^0.4.0":
"integrity" "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw=="
"resolved" "https://registry.npmmirror.com/node-int64/-/node-int64-0.4.0.tgz"
"version" "0.4.0"
"node-releases@^2.0.14":
"integrity" "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw=="
"resolved" "https://registry.npmmirror.com/node-releases/-/node-releases-2.0.14.tgz"
"version" "2.0.14"
"normalize-package-data@^3.0.2":
"integrity" "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA=="
"resolved" "https://registry.npmmirror.com/normalize-package-data/-/normalize-package-data-3.0.3.tgz"
"version" "3.0.3"
module-alias@^2.2.2:
version "2.2.3"
resolved "https://registry.npmmirror.com/module-alias/-/module-alias-2.2.3.tgz"
integrity sha512-23g5BFj4zdQL/b6tor7Ji+QY4pEfNH784BMslY9Qb0UnJWRAt+lQGLYmRaM0KDBwIG23ffEBELhZDP2rhi9f/Q==
ms@2.0.0:
version "2.0.0"
resolved "https://registry.npmmirror.com/ms/-/ms-2.0.0.tgz"
integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==
ms@2.1.2:
version "2.1.2"
resolved "https://registry.npmmirror.com/ms/-/ms-2.1.2.tgz"
integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
ms@2.1.3:
version "2.1.3"
resolved "https://registry.npmmirror.com/ms/-/ms-2.1.3.tgz"
integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==
muggle-string@^0.3.1:
version "0.3.1"
resolved "https://registry.npmmirror.com/muggle-string/-/muggle-string-0.3.1.tgz"
integrity sha512-ckmWDJjphvd/FvZawgygcUeQCxzvohjFO5RxTjj4eq8kw359gFF3E1brjfI+viLMxss5JrHTDRHZvu2/tuy0Qg==
mutation-observer@^1.0.3:
version "1.0.3"
resolved "https://registry.npmmirror.com/mutation-observer/-/mutation-observer-1.0.3.tgz"
integrity sha512-M/O/4rF2h776hV7qGMZUH3utZLO/jK7p8rnNgGkjKUw8zCGjRQPxB8z6+5l8+VjRUQ3dNYu4vjqXYLr+U8ZVNA==
mute-stream@0.0.8:
version "0.0.8"
resolved "https://registry.npmmirror.com/mute-stream/-/mute-stream-0.0.8.tgz"
integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==
nanoid@^3.3.7:
version "3.3.7"
resolved "https://registry.npmmirror.com/nanoid/-/nanoid-3.3.7.tgz"
integrity sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==
natural-compare@^1.4.0:
version "1.4.0"
resolved "https://registry.npmmirror.com/natural-compare/-/natural-compare-1.4.0.tgz"
integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==
negotiator@0.6.3:
version "0.6.3"
resolved "https://registry.npmmirror.com/negotiator/-/negotiator-0.6.3.tgz"
integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==
node-int64@^0.4.0:
version "0.4.0"
resolved "https://registry.npmmirror.com/node-int64/-/node-int64-0.4.0.tgz"
integrity sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==
node-releases@^2.0.14:
version "2.0.14"
resolved "https://registry.npmmirror.com/node-releases/-/node-releases-2.0.14.tgz"
integrity sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==
normalize-package-data@^3.0.2:
version "3.0.3"
resolved "https://registry.npmmirror.com/normalize-package-data/-/normalize-package-data-3.0.3.tgz"
integrity sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==
dependencies:
hosted-git-info "^4.0.1"
is-core-module "^2.5.0"
......@@ -6779,25 +6779,25 @@ validate-npm-package-license@^3.0.1:
spdx-correct "^3.0.0"
spdx-expression-parse "^3.0.0"
"vary@~1.1.2":
"integrity" "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg=="
"resolved" "https://registry.npmmirror.com/vary/-/vary-1.1.2.tgz"
"version" "1.1.2"
vary@~1.1.2:
version "1.1.2"
resolved "https://registry.npmmirror.com/vary/-/vary-1.1.2.tgz"
integrity sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==
"vconsole@^3.15.1":
"integrity" "sha512-KH8XLdrq9T5YHJO/ixrjivHfmF2PC2CdVoK6RWZB4yftMykYIaXY1mxZYAic70vADM54kpMQF+dYmvl5NRNy1g=="
"resolved" "https://registry.npmmirror.com/vconsole/-/vconsole-3.15.1.tgz"
"version" "3.15.1"
vconsole@^3.15.1:
version "3.15.1"
resolved "https://registry.npmmirror.com/vconsole/-/vconsole-3.15.1.tgz"
integrity sha512-KH8XLdrq9T5YHJO/ixrjivHfmF2PC2CdVoK6RWZB4yftMykYIaXY1mxZYAic70vADM54kpMQF+dYmvl5NRNy1g==
dependencies:
"@babel/runtime" "^7.17.2"
"copy-text-to-clipboard" "^3.0.1"
"core-js" "^3.11.0"
"mutation-observer" "^1.0.3"
copy-text-to-clipboard "^3.0.1"
core-js "^3.11.0"
mutation-observer "^1.0.3"
"vite@^4.0.0", "vite@^4.0.0 || ^5.0.0", "vite@4.3.5":
"integrity" "sha512-0gEnL9wiRFxgz40o/i/eTBwm+NEbpUeTWhzKrZDSdKm6nplj+z4lKz8ANDgildxHm47Vg8EUia0aicKbawUVVA=="
"resolved" "https://registry.npmmirror.com/vite/-/vite-4.3.5.tgz"
"version" "4.3.5"
vite@^4.0.0, "vite@^4.0.0 || ^5.0.0", vite@4.3.5:
version "4.3.5"
resolved "https://registry.npmmirror.com/vite/-/vite-4.3.5.tgz"
integrity sha512-0gEnL9wiRFxgz40o/i/eTBwm+NEbpUeTWhzKrZDSdKm6nplj+z4lKz8ANDgildxHm47Vg8EUia0aicKbawUVVA==
dependencies:
esbuild "^0.17.5"
postcss "^8.4.23"
......@@ -6937,10 +6937,10 @@ which@^2.0.1:
dependencies:
isexe "^2.0.0"
wot-design-uni@^1.3.2:
version "1.3.2"
resolved "https://registry.npmmirror.com/wot-design-uni/-/wot-design-uni-1.3.2.tgz"
integrity sha512-y8mFY6qIbHYqP3atlBV9lgrKt+jO2FjO9uvUlWUuo8PccEAyAm3hCnLqAm7MkOhMiMPpp3OnVtDnln/GS1BgJQ==
wot-design-uni@^1.3.12:
version "1.3.12"
resolved "https://registry.npmmirror.com/wot-design-uni/-/wot-design-uni-1.3.12.tgz"
integrity sha512-aF4ReRTqLLQ7/JcQQvBZJBivoprX9xrvI0b+xWakis5xDSF7tfz1ndPSCBgPtPdTzIaEG5RAT18x0ueRSUbixQ==
wrap-ansi@^7.0.0:
version "7.0.0"
......@@ -6994,10 +6994,10 @@ xhr@^2.0.1:
parse-headers "^2.0.0"
xtend "^4.0.0"
xinhua-sdk@*:
version "1.6.0"
resolved "https://registry.npmmirror.com/xinhua-sdk/-/xinhua-sdk-1.6.0.tgz"
integrity sha512-N30rTu91PZjUvPeNj46Z2CS5QvjRPe1ckyTFejj2Md5ZEIcpd7ldCOlmgGJiP+0n3gYjzFQWd6YubXMWI5rFkA==
xinhua-sdk@*, xinhua-sdk@^1.8.0:
version "1.9.3"
resolved "https://registry.npmmirror.com/xinhua-sdk/-/xinhua-sdk-1.9.3.tgz"
integrity sha512-mKomrG8yzTDjSzofD+jUrTEEhT6ka/lMTIF/s+lrC9G3vp8xb3Do2LlBDW9sQuQ5aLBExmkdFtRd4x/BcSmBlg==
xml-name-validator@^3.0.0:
version "3.0.0"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment