Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mp-enterprise-people-recruitment-h5
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
彭佳妮(贵阳日报)
mp-enterprise-people-recruitment-h5
Commits
e5fcb027
Commit
e5fcb027
authored
Oct 10, 2024
by
陈宗胤(贵阳日报)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
顶部完善
parent
a098c1a9
Hide whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
372 additions
and
209 deletions
+372
-209
package-lock.json
package-lock.json
+0
-0
index.vue
src/components/navBar/index.vue
+117
-17
index.vue
src/components/navBar2/index.vue
+26
-0
main.ts
src/main.ts
+5
-5
pages.json
src/pages.json
+47
-24
index.vue
src/pages/articleDetails/index.vue
+1
-0
index.vue
src/pages/dynamic/index.vue
+1
-0
index.vue
src/pages/login/index.vue
+3
-3
index.vue
src/pages/messageList/index.vue
+1
-0
index.vue
src/pages/policy/index.vue
+1
-0
index.vue
src/pages/recommend/index.vue
+1
-0
fillIn.vue
src/pages/user/businessLicense/fillIn.vue
+11
-2
index.vue
src/pages/user/index.vue
+1
-3
index.vue
src/pages/user/myCompany/index.vue
+1
-0
index.vue
src/pages/user/problemRecord/index.vue
+16
-15
yarn.lock
yarn.lock
+140
-140
No files found.
package-lock.json
View file @
e5fcb027
This source diff could not be displayed because it is too large. You can
view the blob
instead.
src/components/navBar/index.vue
View file @
e5fcb027
<
template
>
<
template
>
<div
class=
"nav-bar flex-between"
:style=
"
{ height: height }">
<view
class=
"searchComponent"
:style=
"
{ height: contentHeight, background: backgroundBox }">
<div
class=
"left"
>
<view
class=
"search"
:style=
"
{ background }">
<slot
name=
"left"
></slot>
<wd-icon
v-if=
"showIcon"
name=
"thin-arrow-left"
class=
"icon"
@
tap=
"back"
:style=
"
{ color: backIcon }">
</wd-icon>
</div>
<slot></slot>
<div
class=
"center"
>
<text
class=
"title"
:style=
"
{ color: textColor }" v-if="showTitle">
{{
title
}}
</text>
<slot
name=
"title"
></slot>
</view>
</div>
</view>
<div
class=
"right"
>
<slot
name=
"right"
></slot>
</div>
</div>
</
template
>
</
template
>
<
script
setup
>
<
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
>
</
script
>
<
style
lang=
"scss"
scoped
>
<
style
lang=
"scss"
scoped
>
.nav-bar
{
.searchComponent
{
box-sizing
:
border-box
;
position
:
sticky
;
width
:
750rpx
;
top
:
0
;
padding
:
0
32rpx
;
z-index
:
999999
;
color
:
#ffffff
;
// 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
>
</
style
>
src/components/navBar2/index.vue
0 → 100644
View file @
e5fcb027
<
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
>
src/main.ts
View file @
e5fcb027
import
{
createSSRApp
}
from
"vue"
;
import
{
createSSRApp
}
from
"vue"
;
import
App
from
"./App.vue"
;
import
App
from
"./App.vue"
;
import
store
from
"./store"
;
import
store
from
"./store"
;
import
Vconsole
from
'vconsole'
;
import
Vconsole
from
"vconsole"
;
import
NavBar
from
"@/components/navBar/index.vue"
;
export
function
createApp
()
{
export
function
createApp
()
{
const
app
=
createSSRApp
(
App
);
const
app
=
createSSRApp
(
App
);
app
.
component
(
"NavBar"
,
NavBar
);
const
vConsole
=
new
Vconsole
();
const
vConsole
=
new
Vconsole
();
app
.
use
(
store
,
vConsole
);
app
.
use
(
store
);
return
{
return
{
app
app
};
};
...
...
src/pages.json
View file @
e5fcb027
...
@@ -9,37 +9,43 @@
...
@@ -9,37 +9,43 @@
{
{
"path"
:
"pages/recommend/index"
,
"path"
:
"pages/recommend/index"
,
"style"
:
{
"style"
:
{
"navigationBarTitleText"
:
"推荐"
"navigationBarTitleText"
:
"推荐"
,
"navigationStyle"
:
"custom"
}
}
},
},
{
{
"path"
:
"pages/recommend/releasePostion/step1"
,
"path"
:
"pages/recommend/releasePostion/step1"
,
"style"
:
{
"style"
:
{
"navigationBarTitleText"
:
""
"navigationBarTitleText"
:
""
,
"navigationStyle"
:
"custom"
}
}
},
},
{
{
"path"
:
"pages/recommend/releasePostion/step2"
,
"path"
:
"pages/recommend/releasePostion/step2"
,
"style"
:
{
"style"
:
{
"navigationBarTitleText"
:
""
"navigationBarTitleText"
:
""
,
"navigationStyle"
:
"custom"
}
}
},
},
{
{
"path"
:
"pages/recommend/releasePostion/step3"
,
"path"
:
"pages/recommend/releasePostion/step3"
,
"style"
:
{
"style"
:
{
"navigationBarTitleText"
:
""
"navigationBarTitleText"
:
""
,
"navigationStyle"
:
"custom"
}
}
},
},
{
{
"path"
:
"pages/recommend/releasePostion/step4"
,
"path"
:
"pages/recommend/releasePostion/step4"
,
"style"
:
{
"style"
:
{
"navigationBarTitleText"
:
""
"navigationBarTitleText"
:
""
,
"navigationStyle"
:
"custom"
}
}
},
},
{
{
"path"
:
"pages/recommend/releasePostion/step5"
,
"path"
:
"pages/recommend/releasePostion/step5"
,
"style"
:
{
"style"
:
{
"navigationBarTitleText"
:
""
"navigationBarTitleText"
:
""
,
"navigationStyle"
:
"custom"
}
}
},
},
{
{
...
@@ -52,7 +58,8 @@
...
@@ -52,7 +58,8 @@
{
{
"path"
:
"pages/messageList/index"
,
"path"
:
"pages/messageList/index"
,
"style"
:
{
"style"
:
{
"navigationBarTitleText"
:
"消息"
"navigationBarTitleText"
:
"消息"
,
"navigationStyle"
:
"custom"
}
}
},
},
{
{
...
@@ -65,44 +72,51 @@
...
@@ -65,44 +72,51 @@
{
{
"path"
:
"pages/user/myCompany/index"
,
"path"
:
"pages/user/myCompany/index"
,
"style"
:
{
"style"
:
{
"navigationBarTitleText"
:
"我的公司"
"navigationBarTitleText"
:
"我的公司"
,
"navigationStyle"
:
"custom"
}
}
},
},
{
{
"path"
:
"pages/user/myCompany/licenseInfo"
,
"path"
:
"pages/user/myCompany/licenseInfo"
,
"style"
:
{
"style"
:
{
"navigationBarTitleText"
:
"我的公司"
"navigationBarTitleText"
:
"我的公司"
,
"navigationStyle"
:
"custom"
}
}
},
},
{
{
"path"
:
"pages/dynamic/index"
,
"path"
:
"pages/dynamic/index"
,
"style"
:
{
"style"
:
{
"navigationBarTitleText"
:
"动态"
"navigationBarTitleText"
:
"动态"
,
"navigationStyle"
:
"custom"
}
}
},
},
{
{
"path"
:
"pages/policy/index"
,
"path"
:
"pages/policy/index"
,
"style"
:
{
"style"
:
{
"navigationBarTitleText"
:
"政策"
"navigationBarTitleText"
:
"政策"
,
"navigationStyle"
:
"custom"
}
}
},
},
{
{
"path"
:
"pages/articleDetails/index"
,
"path"
:
"pages/articleDetails/index"
,
"style"
:
{
"style"
:
{
"navigationBarTitleText"
:
"文章详情"
"navigationBarTitleText"
:
"文章详情"
,
"navigationStyle"
:
"custom"
}
}
},
},
{
{
"path"
:
"pages/postionList/trap/index"
,
"path"
:
"pages/postionList/trap/index"
,
"style"
:
{
"style"
:
{
"navigationBarTitleText"
:
"求职陷阱"
"navigationBarTitleText"
:
"求职陷阱"
,
"navigationStyle"
:
"custom"
}
}
},
},
{
{
"path"
:
"pages/postionList/positionDetails/index"
,
"path"
:
"pages/postionList/positionDetails/index"
,
"style"
:
{
"style"
:
{
"navigationBarTitleText"
:
"职位详情"
"navigationBarTitleText"
:
"职位详情"
,
"navigationStyle"
:
"custom"
}
}
},
},
{
{
...
@@ -110,37 +124,43 @@
...
@@ -110,37 +124,43 @@
"style"
:
{
"style"
:
{
"navigationBarTitleText"
:
"添加企业"
,
"navigationBarTitleText"
:
"添加企业"
,
"navigationBarTextStyle"
:
"#fff"
,
"navigationBarTextStyle"
:
"#fff"
,
"navigationBarBackgroundColor"
:
"#1F86FF"
"navigationBarBackgroundColor"
:
"#1F86FF"
,
"navigationStyle"
:
"custom"
}
}
},
},
{
{
"path"
:
"pages/user/businessLicense/submit"
,
"path"
:
"pages/user/businessLicense/submit"
,
"style"
:
{
"style"
:
{
"navigationBarTitleText"
:
"营业执照认证"
"navigationBarTitleText"
:
"营业执照认证"
,
"navigationStyle"
:
"custom"
}
}
},
},
{
{
"path"
:
"pages/user/businessLicense/appeal"
,
"path"
:
"pages/user/businessLicense/appeal"
,
"style"
:
{
"style"
:
{
"navigationBarTitleText"
:
"申诉企业"
"navigationBarTitleText"
:
"申诉企业"
,
"navigationStyle"
:
"custom"
}
}
},
},
{
{
"path"
:
"pages/user/editUserInfo/index"
,
"path"
:
"pages/user/editUserInfo/index"
,
"style"
:
{
"style"
:
{
"navigationBarTitleText"
:
"我的名片"
"navigationBarTitleText"
:
"我的名片"
,
"navigationStyle"
:
"custom"
}
}
},
},
{
{
"path"
:
"pages/recommend/deliveryManagement/index"
,
"path"
:
"pages/recommend/deliveryManagement/index"
,
"style"
:
{
"style"
:
{
"navigationBarTitleText"
:
"投递管理"
"navigationBarTitleText"
:
"投递管理"
,
"navigationStyle"
:
"custom"
}
}
},
},
{
{
"path"
:
"pages/user/resume/index"
,
"path"
:
"pages/user/resume/index"
,
"style"
:
{
"style"
:
{
"navigationBarTitleText"
:
"简历详情"
"navigationBarTitleText"
:
"简历详情"
,
"navigationStyle"
:
"custom"
}
}
},
},
{
{
...
@@ -153,13 +173,15 @@
...
@@ -153,13 +173,15 @@
{
{
"path"
:
"pages/signUp/index"
,
"path"
:
"pages/signUp/index"
,
"style"
:
{
"style"
:
{
"navigationBarTitleText"
:
"岗位信息"
"navigationBarTitleText"
:
"岗位信息"
,
"navigationStyle"
:
"custom"
}
}
},
},
{
{
"path"
:
"pages/signUp/addPost"
,
"path"
:
"pages/signUp/addPost"
,
"style"
:
{
"style"
:
{
"navigationBarTitleText"
:
"岗位信息"
"navigationBarTitleText"
:
"岗位信息"
,
"navigationStyle"
:
"custom"
}
}
},
},
{
{
...
@@ -184,7 +206,8 @@
...
@@ -184,7 +206,8 @@
{
{
"path"
:
"pages/user/feedbackDetails/index"
,
"path"
:
"pages/user/feedbackDetails/index"
,
"style"
:
{
"style"
:
{
"navigationBarTitleText"
:
"投诉建议"
"navigationBarTitleText"
:
"投诉建议"
,
"navigationStyle"
:
"custom"
}
}
},
},
{
{
...
@@ -192,7 +215,7 @@
...
@@ -192,7 +215,7 @@
"style"
:
{
"style"
:
{
"navigationBarTitleText"
:
"记录"
,
"navigationBarTitleText"
:
"记录"
,
"enablePullDownRefresh"
:
true
,
"enablePullDownRefresh"
:
true
,
"onReachBottomDistance"
:
50
,
"onReachBottomDistance"
:
50
,
"navigationStyle"
:
"custom"
"navigationStyle"
:
"custom"
}
}
}
}
...
...
src/pages/articleDetails/index.vue
View file @
e5fcb027
<
template
>
<
template
>
<NavBar
:showIcon=
"true"
:showTitle=
"true"
title=
"文章详情"
backgroundBox=
"#FFFFFF"
></NavBar>
<div
class=
"page"
>
<div
class=
"page"
>
<div
class=
"top"
>
<div
class=
"top"
>
<video
:src=
"evn.APP_IMAGE_BASE_API + data.videoPath"
v-if=
"data.infoType === 2"
></video>
<video
:src=
"evn.APP_IMAGE_BASE_API + data.videoPath"
v-if=
"data.infoType === 2"
></video>
...
...
src/pages/dynamic/index.vue
View file @
e5fcb027
<
template
>
<
template
>
<NavBar
:showIcon=
"false"
:showTitle=
"true"
title=
"动态"
></NavBar>
<div
class=
"policy"
>
<div
class=
"policy"
>
<div
class=
"tab-name"
:enable-flex=
"true"
:scroll-x=
"true"
>
<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)">
{{
<view
:class=
"
{ item: 1, active: active == v.id }" v-for="v in typeList" :key="v.id" @click="changeType(v)">
{{
...
...
src/pages/login/index.vue
View file @
e5fcb027
<
template
>
<
template
>
<div
class=
"page"
>
<div
class=
"page"
>
<NavBar
:showIcon=
"false"
:showTitle=
"true"
title=
"登录"
></NavBar>
<!-- pages/login/login.wxml -->
<!-- pages/login/login.wxml -->
<view
class=
"login-page"
>
<view
class=
"login-page"
>
<nav-bar
class=
"nav-bar"
>
<nav-bar
class=
"nav-bar"
>
...
@@ -57,13 +58,12 @@ const login = () => {
...
@@ -57,13 +58,12 @@ const login = () => {
.page
{
.page
{
height
:
100%
;
height
:
100%
;
background-color
:
#eaf5ff
;
background-color
:
#eaf5ff
;
}
.login-page
{
height
:
100%
;
background-image
:
url("https://lygsh-image.wjzpgz.com/login/loginBG.png")
;
background-image
:
url("https://lygsh-image.wjzpgz.com/login/loginBG.png")
;
background-repeat
:
no-repeat
;
background-repeat
:
no-repeat
;
background-position
:
50%
50%
;
background-position
:
50%
50%
;
background-size
:
auto
100%
;
background-size
:
auto
100%
;
}
.login-page
{
.student
{
.student
{
font-size
:
36rpx
;
font-size
:
36rpx
;
font-weight
:
600
;
font-weight
:
600
;
...
...
src/pages/messageList/index.vue
View file @
e5fcb027
<
template
>
<
template
>
<NavBar
:showIcon=
"false"
:showTitle=
"true"
title=
"消息"
></NavBar>
<div
class=
"message-list"
>
<div
class=
"message-list"
>
<scroll-view
:scroll-y=
"true"
@
scrolltolower=
"getList"
>
<scroll-view
:scroll-y=
"true"
@
scrolltolower=
"getList"
>
<view
class=
"system"
>
<view
class=
"system"
>
...
...
src/pages/policy/index.vue
View file @
e5fcb027
<
template
>
<
template
>
<NavBar
:showIcon=
"false"
:showTitle=
"true"
title=
"政策"
></NavBar>
<div
class=
"policy"
>
<div
class=
"policy"
>
<div
class=
"tab-name"
:enable-flex=
"true"
:scroll-x=
"true"
>
<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)">
{{
<view
:class=
"
{ item: 1, active: active == v.id }" v-for="v in typeList" :key="v.id" @click="changeType(v)">
{{
...
...
src/pages/recommend/index.vue
View file @
e5fcb027
<
template
>
<
template
>
<NavBar
:showIcon=
"false"
:showTitle=
"true"
title=
"推荐"
></NavBar>
<div
class=
"page"
>
<div
class=
"page"
>
<view
class=
"tabs"
>
<view
class=
"tabs"
>
<text
@
tap=
"changeActiveTab('求职推荐')"
:class=
"activeTab == '求职推荐' ? 'active' : ''"
>
求职推荐
</text>
<text
@
tap=
"changeActiveTab('求职推荐')"
:class=
"activeTab == '求职推荐' ? 'active' : ''"
>
求职推荐
</text>
...
...
src/pages/user/businessLicense/fillIn.vue
View file @
e5fcb027
<
template
>
<
template
>
<div
class=
"page"
>
<div
class=
"page"
>
<NavBar
backIcon=
"#ffffff"
:showIcon=
"true"
:showTitle=
"true"
title=
"添加企业"
backgroundBox=
"#1F86FF"
textColor=
"#ffffff"
></NavBar>
<view
class=
"welcome flex-between"
>
<view
class=
"welcome flex-between"
>
<view
class=
"text"
>
<view
class=
"text"
>
<view
class=
"t1"
>
Welcome
</view>
<view
class=
"t1"
>
Welcome
</view>
...
@@ -116,11 +124,12 @@ const chooseImage = sourceType => {
...
@@ -116,11 +124,12 @@ const chooseImage = sourceType => {
display
:
flex
;
display
:
flex
;
flex-direction
:
column
;
flex-direction
:
column
;
height
:
100%
;
height
:
100%
;
padding-top
:
54rpx
;
// padding-top: 54rpx;
background-color
:
#1f86ff
;
background-color
:
#1f86ff
;
}
}
.welcome
{
.welcome
{
padding
:
0
80rpx
0
66rpx
;
padding
:
54rpx
80rpx
0
66rpx
;
image
{
image
{
width
:
164rpx
;
width
:
164rpx
;
height
:
164
.46rpx
;
height
:
164
.46rpx
;
...
...
src/pages/user/index.vue
View file @
e5fcb027
<
template
>
<
template
>
<NavBar
:showIcon=
"false"
:showTitle=
"true"
title=
"我的"
textColor=
"#ffffff"
></NavBar>
<div
class=
"user-container"
>
<div
class=
"user-container"
>
<navBar>
<template
#
title
>
我的
</
template
>
</navBar>
<view
class=
"bg"
></view>
<view
class=
"bg"
></view>
<!-- 用户信息 -->
<!-- 用户信息 -->
<view
class=
"user-info flex-align-center"
>
<view
class=
"user-info flex-align-center"
>
...
...
src/pages/user/myCompany/index.vue
View file @
e5fcb027
<
template
>
<
template
>
<NavBar
:showIcon=
"true"
:showTitle=
"true"
title=
"我的公司"
backgroundBox=
"#FFFFFF"
></NavBar>
<div
class=
"page"
>
<div
class=
"page"
>
<div
class=
"content"
>
<div
class=
"content"
>
<div
class=
"top"
>
<div
class=
"top"
>
...
...
src/pages/user/problemRecord/index.vue
View file @
e5fcb027
<
template
>
<
template
>
<NavBar
:showIcon=
"true"
:showTitle=
"true"
title=
"记录"
backgroundBox=
"#FFFFFF"
></NavBar>
<view
class=
"problem-page"
>
<view
class=
"problem-page"
>
<view
class=
"history-item"
v-for=
"i in 10"
:key=
"i"
>
<view
class=
"history-item"
v-for=
"i in 10"
:key=
"i"
>
<view
class=
"item-left"
>
<view
class=
"item-left"
>
...
@@ -38,54 +39,54 @@ page {
...
@@ -38,54 +39,54 @@ page {
background
:
#f3f4f8
;
background
:
#f3f4f8
;
}
}
.problem-page
{
.problem-page
{
width
:
750rpx
;
display
:
flex
;
display
:
flex
;
flex-direction
:
column
;
flex-direction
:
column
;
gap
:
16rpx
;
gap
:
16rpx
;
width
:
750rpx
;
.history-item
{
.history-item
{
background
:
#fff
;
width
:
100%
;
box-sizing
:
border-box
;
box-sizing
:
border-box
;
padding
:
32rpx
;
display
:
flex
;
display
:
flex
;
justify-content
:
space-between
;
justify-content
:
space-between
;
width
:
100%
;
padding
:
32rpx
;
background
:
#ffffff
;
.item-left
{
.item-left
{
display
:
flex
;
display
:
flex
;
flex-direction
:
column
;
flex-direction
:
column
;
.title
{
.title
{
font-size
:
32rpx
;
color
:
#1b2026
;
max-width
:
400rpx
;
max-width
:
400rpx
;
white-space
:
nowrap
;
overflow
:
hidden
;
overflow
:
hidden
;
font-size
:
32rpx
;
color
:
#1b2026
;
text-overflow
:
ellipsis
;
text-overflow
:
ellipsis
;
white-space
:
nowrap
;
}
}
.time
{
.time
{
margin-top
:
16rpx
;
font-size
:
24rpx
;
font-size
:
24rpx
;
color
:
#77818f
;
color
:
#77818f
;
margin-top
:
16rpx
;
}
}
}
}
.btn
{
.btn
{
box-sizing
:
border-box
;
box-sizing
:
border-box
;
padding
:
0rpx
32rpx
;
display
:
flex
;
display
:
flex
;
height
:
60rpx
;
flex-shrink
:
0
;
align-items
:
center
;
align-items
:
center
;
height
:
60rpx
;
padding
:
0rpx
32rpx
;
font-size
:
24rpx
;
font-size
:
24rpx
;
flex-shrink
:
0
;
}
}
}
}
.foot-btn
{
.foot-btn
{
position
:
fixed
;
position
:
fixed
;
width
:
622rpx
;
height
:
80rpx
;
border-radius
:
12rpx
;
display
:
flex
;
display
:
flex
;
align-items
:
center
;
align-items
:
center
;
justify-content
:
center
;
justify-content
:
center
;
width
:
622rpx
;
height
:
80rpx
;
color
:
#ffffff
;
background
:
#1f86ff
;
background
:
#1f86ff
;
color
:
#fff
;
border-radius
:
12rpx
;
}
}
}
}
</
style
>
</
style
>
yarn.lock
View file @
e5fcb027
...
@@ -956,14 +956,14 @@
...
@@ -956,14 +956,14 @@
esutils "^2.0.2"
esutils "^2.0.2"
"@babel/regjsgen@^0.8.0":
"@babel/regjsgen@^0.8.0":
"integrity" "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==
"
version "0.8.0
"
"resolved"
"https://registry.npmmirror.com/@babel/regjsgen/-/regjsgen-0.8.0.tgz"
resolved
"https://registry.npmmirror.com/@babel/regjsgen/-/regjsgen-0.8.0.tgz"
"version" "0.8.0"
integrity sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==
"@babel/runtime@^7.17.2", "@babel/runtime@^7.7.2", "@babel/runtime@^7.8.4":
"@babel/runtime@^7.17.2", "@babel/runtime@^7.7.2", "@babel/runtime@^7.8.4":
"integrity" "sha512-UwgBRMjJP+xv857DCngvqXI3Iq6J4v0wXmwc6sapg+zyhbwmQX67LUEFrkK5tbyJ30jGuG3ZvWpBiB9LCy1kWw==
"
version "7.24.7
"
"resolved"
"https://registry.npmmirror.com/@babel/runtime/-/runtime-7.24.7.tgz"
resolved
"https://registry.npmmirror.com/@babel/runtime/-/runtime-7.24.7.tgz"
"version" "7.24.7"
integrity sha512-UwgBRMjJP+xv857DCngvqXI3Iq6J4v0wXmwc6sapg+zyhbwmQX67LUEFrkK5tbyJ30jGuG3ZvWpBiB9LCy1kWw==
dependencies:
dependencies:
regenerator-runtime "^0.14.0"
regenerator-runtime "^0.14.0"
...
@@ -3142,57 +3142,57 @@ content-disposition@0.5.4:
...
@@ -3142,57 +3142,57 @@ content-disposition@0.5.4:
dependencies:
dependencies:
safe-buffer "5.2.1"
safe-buffer "5.2.1"
"content-type@~1.0.4", "content-type@~1.0.5"
:
content-type@~1.0.4, content-type@~1.0.5
:
"integrity" "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==
"
version "1.0.5
"
"resolved"
"https://registry.npmmirror.com/content-type/-/content-type-1.0.5.tgz"
resolved
"https://registry.npmmirror.com/content-type/-/content-type-1.0.5.tgz"
"version" "1.0.5"
integrity sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==
"convert-source-map@^1.4.0"
:
convert-source-map@^1.4.0
:
"integrity" "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==
"
version "1.9.0
"
"resolved"
"https://registry.npmmirror.com/convert-source-map/-/convert-source-map-1.9.0.tgz"
resolved
"https://registry.npmmirror.com/convert-source-map/-/convert-source-map-1.9.0.tgz"
"version" "1.9.0"
integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==
"convert-source-map@^1.6.0"
:
convert-source-map@^1.6.0
:
"integrity" "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==
"
version "1.9.0
"
"resolved"
"https://registry.npmmirror.com/convert-source-map/-/convert-source-map-1.9.0.tgz"
resolved
"https://registry.npmmirror.com/convert-source-map/-/convert-source-map-1.9.0.tgz"
"version" "1.9.0"
integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==
"convert-source-map@^2.0.0"
:
convert-source-map@^2.0.0
:
"integrity" "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==
"
version "2.0.0
"
"resolved"
"https://registry.npmmirror.com/convert-source-map/-/convert-source-map-2.0.0.tgz"
resolved
"https://registry.npmmirror.com/convert-source-map/-/convert-source-map-2.0.0.tgz"
"version" "2.0.0"
integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==
"cookie-signature@1.0.6"
:
cookie-signature@1.0.6
:
"integrity" "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==
"
version "1.0.6
"
"resolved"
"https://registry.npmmirror.com/cookie-signature/-/cookie-signature-1.0.6.tgz"
resolved
"https://registry.npmmirror.com/cookie-signature/-/cookie-signature-1.0.6.tgz"
"version" "1.0.6"
integrity sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==
"cookie@0.6.0"
:
cookie@0.6.0
:
"integrity" "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==
"
version "0.6.0
"
"resolved"
"https://registry.npmmirror.com/cookie/-/cookie-0.6.0.tgz"
resolved
"https://registry.npmmirror.com/cookie/-/cookie-0.6.0.tgz"
"version" "0.6.0"
integrity sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==
"copy-text-to-clipboard@^3.0.1"
:
copy-text-to-clipboard@^3.0.1
:
"integrity" "sha512-RnJFp1XR/LOBDckxTib5Qjr/PMfkatD0MUCQgdpqS8MdKiNUzBjAQBEN6oUy+jW7LI93BBG3DtMB2KOOKpGs2Q==
"
version "3.2.0
"
"resolved"
"https://registry.npmmirror.com/copy-text-to-clipboard/-/copy-text-to-clipboard-3.2.0.tgz"
resolved
"https://registry.npmmirror.com/copy-text-to-clipboard/-/copy-text-to-clipboard-3.2.0.tgz"
"version" "3.2.0"
integrity sha512-RnJFp1XR/LOBDckxTib5Qjr/PMfkatD0MUCQgdpqS8MdKiNUzBjAQBEN6oUy+jW7LI93BBG3DtMB2KOOKpGs2Q==
"core-js-compat@^3.31.0", "core-js-compat@^3.36.1"
:
core-js-compat@^3.31.0, core-js-compat@^3.36.1
:
"integrity" "sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==
"
version "3.37.1
"
"resolved"
"https://registry.npmmirror.com/core-js-compat/-/core-js-compat-3.37.1.tgz"
resolved
"https://registry.npmmirror.com/core-js-compat/-/core-js-compat-3.37.1.tgz"
"version" "3.37.1"
integrity sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==
dependencies:
dependencies:
browserslist "^4.23.0"
browserslist "^4.23.0"
"core-js@^3.11.0", "core-js@^3.31.1", "core-js@^3.4.1"
:
core-js@^3.11.0, core-js@^3.31.1, core-js@^3.4.1
:
"integrity" "sha512-Xn6qmxrQZyB0FFY8E3bgRXei3lWDJHhvI+u0q9TKIYM49G8pAr0FgnnrFRAmsbptZL1yxRADVXn+x5AGsbBfyw==
"
version "3.37.1
"
"resolved"
"https://registry.npmmirror.com/core-js/-/core-js-3.37.1.tgz"
resolved
"https://registry.npmmirror.com/core-js/-/core-js-3.37.1.tgz"
"version" "3.37.1"
integrity sha512-Xn6qmxrQZyB0FFY8E3bgRXei3lWDJHhvI+u0q9TKIYM49G8pAr0FgnnrFRAmsbptZL1yxRADVXn+x5AGsbBfyw==
"cosmiconfig@^8.2.0"
:
cosmiconfig@^8.2.0
:
"integrity" "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==
"
version "8.3.6
"
"resolved"
"https://registry.npmmirror.com/cosmiconfig/-/cosmiconfig-8.3.6.tgz"
resolved
"https://registry.npmmirror.com/cosmiconfig/-/cosmiconfig-8.3.6.tgz"
"version" "8.3.6"
integrity sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==
dependencies:
dependencies:
import-fresh "^3.3.0"
import-fresh "^3.3.0"
js-yaml "^4.1.0"
js-yaml "^4.1.0"
...
@@ -5192,70 +5192,70 @@ mlly@^1.4.2, mlly@^1.7.0:
...
@@ -5192,70 +5192,70 @@ mlly@^1.4.2, mlly@^1.7.0:
pkg-types "^1.1.1"
pkg-types "^1.1.1"
ufo "^1.5.3"
ufo "^1.5.3"
"module-alias@^2.2.2"
:
module-alias@^2.2.2
:
"integrity" "sha512-23g5BFj4zdQL/b6tor7Ji+QY4pEfNH784BMslY9Qb0UnJWRAt+lQGLYmRaM0KDBwIG23ffEBELhZDP2rhi9f/Q==
"
version "2.2.3
"
"resolved"
"https://registry.npmmirror.com/module-alias/-/module-alias-2.2.3.tgz"
resolved
"https://registry.npmmirror.com/module-alias/-/module-alias-2.2.3.tgz"
"version" "2.2.3"
integrity sha512-23g5BFj4zdQL/b6tor7Ji+QY4pEfNH784BMslY9Qb0UnJWRAt+lQGLYmRaM0KDBwIG23ffEBELhZDP2rhi9f/Q==
"ms@2.0.0"
:
ms@2.0.0
:
"integrity" "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==
"
version "2.0.0
"
"resolved"
"https://registry.npmmirror.com/ms/-/ms-2.0.0.tgz"
resolved
"https://registry.npmmirror.com/ms/-/ms-2.0.0.tgz"
"version" "2.0.0"
integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==
"ms@2.1.2"
:
ms@2.1.2
:
"integrity" "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
"
version "2.1.2
"
"resolved"
"https://registry.npmmirror.com/ms/-/ms-2.1.2.tgz"
resolved
"https://registry.npmmirror.com/ms/-/ms-2.1.2.tgz"
"version" "2.1.2"
integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
"ms@2.1.3"
:
ms@2.1.3
:
"integrity" "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==
"
version "2.1.3
"
"resolved"
"https://registry.npmmirror.com/ms/-/ms-2.1.3.tgz"
resolved
"https://registry.npmmirror.com/ms/-/ms-2.1.3.tgz"
"version" "2.1.3"
integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==
"muggle-string@^0.3.1"
:
muggle-string@^0.3.1
:
"integrity" "sha512-ckmWDJjphvd/FvZawgygcUeQCxzvohjFO5RxTjj4eq8kw359gFF3E1brjfI+viLMxss5JrHTDRHZvu2/tuy0Qg==
"
version "0.3.1
"
"resolved"
"https://registry.npmmirror.com/muggle-string/-/muggle-string-0.3.1.tgz"
resolved
"https://registry.npmmirror.com/muggle-string/-/muggle-string-0.3.1.tgz"
"version" "0.3.1"
integrity sha512-ckmWDJjphvd/FvZawgygcUeQCxzvohjFO5RxTjj4eq8kw359gFF3E1brjfI+viLMxss5JrHTDRHZvu2/tuy0Qg==
"mutation-observer@^1.0.3"
:
mutation-observer@^1.0.3
:
"integrity" "sha512-M/O/4rF2h776hV7qGMZUH3utZLO/jK7p8rnNgGkjKUw8zCGjRQPxB8z6+5l8+VjRUQ3dNYu4vjqXYLr+U8ZVNA==
"
version "1.0.3
"
"resolved"
"https://registry.npmmirror.com/mutation-observer/-/mutation-observer-1.0.3.tgz"
resolved
"https://registry.npmmirror.com/mutation-observer/-/mutation-observer-1.0.3.tgz"
"version" "1.0.3"
integrity sha512-M/O/4rF2h776hV7qGMZUH3utZLO/jK7p8rnNgGkjKUw8zCGjRQPxB8z6+5l8+VjRUQ3dNYu4vjqXYLr+U8ZVNA==
"mute-stream@0.0.8"
:
mute-stream@0.0.8
:
"integrity" "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==
"
version "0.0.8
"
"resolved"
"https://registry.npmmirror.com/mute-stream/-/mute-stream-0.0.8.tgz"
resolved
"https://registry.npmmirror.com/mute-stream/-/mute-stream-0.0.8.tgz"
"version" "0.0.8"
integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==
"nanoid@^3.3.7"
:
nanoid@^3.3.7
:
"integrity" "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==
"
version "3.3.7
"
"resolved"
"https://registry.npmmirror.com/nanoid/-/nanoid-3.3.7.tgz"
resolved
"https://registry.npmmirror.com/nanoid/-/nanoid-3.3.7.tgz"
"version" "3.3.7"
integrity sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==
"natural-compare@^1.4.0"
:
natural-compare@^1.4.0
:
"integrity" "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==
"
version "1.4.0
"
"resolved"
"https://registry.npmmirror.com/natural-compare/-/natural-compare-1.4.0.tgz"
resolved
"https://registry.npmmirror.com/natural-compare/-/natural-compare-1.4.0.tgz"
"version" "1.4.0"
integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==
"negotiator@0.6.3"
:
negotiator@0.6.3
:
"integrity" "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==
"
version "0.6.3
"
"resolved"
"https://registry.npmmirror.com/negotiator/-/negotiator-0.6.3.tgz"
resolved
"https://registry.npmmirror.com/negotiator/-/negotiator-0.6.3.tgz"
"version" "0.6.3"
integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==
"node-int64@^0.4.0"
:
node-int64@^0.4.0
:
"integrity" "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==
"
version "0.4.0
"
"resolved"
"https://registry.npmmirror.com/node-int64/-/node-int64-0.4.0.tgz"
resolved
"https://registry.npmmirror.com/node-int64/-/node-int64-0.4.0.tgz"
"version" "0.4.0"
integrity sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==
"node-releases@^2.0.14"
:
node-releases@^2.0.14
:
"integrity" "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==
"
version "2.0.14
"
"resolved"
"https://registry.npmmirror.com/node-releases/-/node-releases-2.0.14.tgz"
resolved
"https://registry.npmmirror.com/node-releases/-/node-releases-2.0.14.tgz"
"version" "2.0.14"
integrity sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==
"normalize-package-data@^3.0.2"
:
normalize-package-data@^3.0.2
:
"integrity" "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==
"
version "3.0.3
"
"resolved"
"https://registry.npmmirror.com/normalize-package-data/-/normalize-package-data-3.0.3.tgz"
resolved
"https://registry.npmmirror.com/normalize-package-data/-/normalize-package-data-3.0.3.tgz"
"version" "3.0.3"
integrity sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==
dependencies:
dependencies:
hosted-git-info "^4.0.1"
hosted-git-info "^4.0.1"
is-core-module "^2.5.0"
is-core-module "^2.5.0"
...
@@ -6779,25 +6779,25 @@ validate-npm-package-license@^3.0.1:
...
@@ -6779,25 +6779,25 @@ validate-npm-package-license@^3.0.1:
spdx-correct "^3.0.0"
spdx-correct "^3.0.0"
spdx-expression-parse "^3.0.0"
spdx-expression-parse "^3.0.0"
"vary@~1.1.2"
:
vary@~1.1.2
:
"integrity" "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==
"
version "1.1.2
"
"resolved"
"https://registry.npmmirror.com/vary/-/vary-1.1.2.tgz"
resolved
"https://registry.npmmirror.com/vary/-/vary-1.1.2.tgz"
"version" "1.1.2"
integrity sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==
"vconsole@^3.15.1"
:
vconsole@^3.15.1
:
"integrity" "sha512-KH8XLdrq9T5YHJO/ixrjivHfmF2PC2CdVoK6RWZB4yftMykYIaXY1mxZYAic70vADM54kpMQF+dYmvl5NRNy1g==
"
version "3.15.1
"
"resolved"
"https://registry.npmmirror.com/vconsole/-/vconsole-3.15.1.tgz"
resolved
"https://registry.npmmirror.com/vconsole/-/vconsole-3.15.1.tgz"
"version" "3.15.1"
integrity sha512-KH8XLdrq9T5YHJO/ixrjivHfmF2PC2CdVoK6RWZB4yftMykYIaXY1mxZYAic70vADM54kpMQF+dYmvl5NRNy1g==
dependencies:
dependencies:
"@babel/runtime" "^7.17.2"
"@babel/runtime" "^7.17.2"
"copy-text-to-clipboard"
"^3.0.1"
copy-text-to-clipboard
"^3.0.1"
"core-js"
"^3.11.0"
core-js
"^3.11.0"
"mutation-observer"
"^1.0.3"
mutation-observer
"^1.0.3"
"vite@^4.0.0", "vite@^4.0.0 || ^5.0.0", "vite@4.3.5"
:
vite@^4.0.0, "vite@^4.0.0 || ^5.0.0", vite@4.3.5
:
"integrity" "sha512-0gEnL9wiRFxgz40o/i/eTBwm+NEbpUeTWhzKrZDSdKm6nplj+z4lKz8ANDgildxHm47Vg8EUia0aicKbawUVVA==
"
version "4.3.5
"
"resolved"
"https://registry.npmmirror.com/vite/-/vite-4.3.5.tgz"
resolved
"https://registry.npmmirror.com/vite/-/vite-4.3.5.tgz"
"version" "4.3.5"
integrity sha512-0gEnL9wiRFxgz40o/i/eTBwm+NEbpUeTWhzKrZDSdKm6nplj+z4lKz8ANDgildxHm47Vg8EUia0aicKbawUVVA==
dependencies:
dependencies:
esbuild "^0.17.5"
esbuild "^0.17.5"
postcss "^8.4.23"
postcss "^8.4.23"
...
@@ -6937,10 +6937,10 @@ which@^2.0.1:
...
@@ -6937,10 +6937,10 @@ which@^2.0.1:
dependencies:
dependencies:
isexe "^2.0.0"
isexe "^2.0.0"
wot-design-uni@^1.3.2:
wot-design-uni@^1.3.
1
2:
version "1.3.2"
version "1.3.
1
2"
resolved "https://registry.npmmirror.com/wot-design-uni/-/wot-design-uni-1.3.2.tgz"
resolved "https://registry.npmmirror.com/wot-design-uni/-/wot-design-uni-1.3.
1
2.tgz"
integrity sha512-
y8mFY6qIbHYqP3atlBV9lgrKt+jO2FjO9uvUlWUuo8PccEAyAm3hCnLqAm7MkOhMiMPpp3OnVtDnln/GS1BgJ
Q==
integrity sha512-
aF4ReRTqLLQ7/JcQQvBZJBivoprX9xrvI0b+xWakis5xDSF7tfz1ndPSCBgPtPdTzIaEG5RAT18x0ueRSUbix
Q==
wrap-ansi@^7.0.0:
wrap-ansi@^7.0.0:
version "7.0.0"
version "7.0.0"
...
@@ -6994,10 +6994,10 @@ xhr@^2.0.1:
...
@@ -6994,10 +6994,10 @@ xhr@^2.0.1:
parse-headers "^2.0.0"
parse-headers "^2.0.0"
xtend "^4.0.0"
xtend "^4.0.0"
xinhua-sdk@*:
xinhua-sdk@*
, xinhua-sdk@^1.8.0
:
version "1.
6.0
"
version "1.
9.3
"
resolved "https://registry.npmmirror.com/xinhua-sdk/-/xinhua-sdk-1.
6.0
.tgz"
resolved "https://registry.npmmirror.com/xinhua-sdk/-/xinhua-sdk-1.
9.3
.tgz"
integrity sha512-
N30rTu91PZjUvPeNj46Z2CS5QvjRPe1ckyTFejj2Md5ZEIcpd7ldCOlmgGJiP+0n3gYjzFQWd6YubXMWI5rFkA
==
integrity sha512-
mKomrG8yzTDjSzofD+jUrTEEhT6ka/lMTIF/s+lrC9G3vp8xb3Do2LlBDW9sQuQ5aLBExmkdFtRd4x/BcSmBlg
==
xml-name-validator@^3.0.0:
xml-name-validator@^3.0.0:
version "3.0.0"
version "3.0.0"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment