Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
fashion-ui
Project
Project
Details
Activity
Releases
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
tangfh
fashion-ui
Commits
d4e12198
Commit
d4e12198
authored
May 29, 2024
by
tangfh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ui 微调
parent
e366b0a4
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
16 additions
and
7 deletions
+16
-7
ui.js
common/ui.js
+2
-0
changelog.md
uni_modules/f-multi-text-01/changelog.md
+2
-0
f-multi-text-01.vue
...ti-text-01/components/f-multi-text-01/f-multi-text-01.vue
+2
-1
package.json
uni_modules/f-multi-text-01/package.json
+1
-1
changelog.md
uni_modules/f-status-view/changelog.md
+4
-0
f-status-view.vue
.../f-status-view/components/f-status-view/f-status-view.vue
+3
-3
package.json
uni_modules/f-status-view/package.json
+2
-2
No files found.
common/ui.js
View file @
d4e12198
...
@@ -8,6 +8,7 @@ const navigationBarUI = {
...
@@ -8,6 +8,7 @@ const navigationBarUI = {
const
scrollViewUI
=
{
const
scrollViewUI
=
{
height1
:
0
,
//只有导航栏时,scroll-view 的高度
height1
:
0
,
//只有导航栏时,scroll-view 的高度
height2
:
0
,
//有导航栏 和 底部 tabBar 时,scroll-view 的高度
}
}
const
statusViewUI
=
{
const
statusViewUI
=
{
...
@@ -47,6 +48,7 @@ function init() {
...
@@ -47,6 +48,7 @@ function init() {
statusBarUI
.
height
=
systemInfo
.
statusBarHeight
statusBarUI
.
height
=
systemInfo
.
statusBarHeight
navigationBarUI
.
height
=
statusBarUI
.
height
+
44
navigationBarUI
.
height
=
statusBarUI
.
height
+
44
scrollViewUI
.
height1
=
systemInfo
.
screenHeight
-
navigationBarUI
.
height
-
systemInfo
.
safeAreaInsets
.
bottom
scrollViewUI
.
height1
=
systemInfo
.
screenHeight
-
navigationBarUI
.
height
-
systemInfo
.
safeAreaInsets
.
bottom
scrollViewUI
.
height2
=
systemInfo
.
screenHeight
-
navigationBarUI
.
height
-
44
-
systemInfo
.
safeAreaInsets
.
bottom
statusViewUI
.
width
=
systemInfo
.
screenWidth
statusViewUI
.
width
=
systemInfo
.
screenWidth
statusViewUI
.
height
=
systemInfo
.
screenHeight
-
navigationBarUI
.
height
-
44
-
systemInfo
.
safeAreaInsets
.
bottom
statusViewUI
.
height
=
systemInfo
.
screenHeight
-
navigationBarUI
.
height
-
44
-
systemInfo
.
safeAreaInsets
.
bottom
}
}
...
...
uni_modules/f-multi-text-01/changelog.md
View file @
d4e12198
## 1.0.2(2024-05-29)
1.
0.2
## 1.0.1(2024-05-28)
## 1.0.1(2024-05-28)
1.
0.1
1.
0.1
## 1.0.0(2024-05-28)
## 1.0.0(2024-05-28)
...
...
uni_modules/f-multi-text-01/components/f-multi-text-01/f-multi-text-01.vue
View file @
d4e12198
<
template
>
<
template
>
<!-- 表单显示/输入 -->
<!-- 表单显示/输入 -->
<view
class=
"f-multi-text flex-column"
@
click=
"onClick"
:class=
"
{'active': ui.clickActive}"
<view
class=
"f-multi-text flex-column"
:class=
"
{'active': ui.clickActive}"
:style="[ui.style ? ui.style : {}]">
:style="[ui.style ? ui.style : {}]">
<view
class=
"f-multi-text-v-middle flex-row row-center-v"
>
<view
class=
"f-multi-text-v-middle flex-row row-center-v"
>
<view
class=
"f-multi-text-v-left flex-row row-center-v"
>
<view
class=
"f-multi-text-v-left flex-row row-center-v"
>
...
@@ -110,6 +110,7 @@
...
@@ -110,6 +110,7 @@
}
}
.f-multi-text-v-right-c-text
{
.f-multi-text-v-right-c-text
{
height
:
100%
;
line-height
:
100%
;
line-height
:
100%
;
width
:
100%
;
width
:
100%
;
font-size
:
$uni-font-size-base
;
font-size
:
$uni-font-size-base
;
...
...
uni_modules/f-multi-text-01/package.json
View file @
d4e12198
{
{
"id"
:
"f-multi-text-01"
,
"id"
:
"f-multi-text-01"
,
"displayName"
:
"f-multi-text-01"
,
"displayName"
:
"f-multi-text-01"
,
"version"
:
"1.0.
1
"
,
"version"
:
"1.0.
2
"
,
"description"
:
"f-multi-text-01"
,
"description"
:
"f-multi-text-01"
,
"keywords"
:
[
"keywords"
:
[
"f-multi-text-01"
"f-multi-text-01"
...
...
uni_modules/f-status-view/changelog.md
View file @
d4e12198
## 1.0.2(2024-05-29)
1.
0.2
## 1.0.1(2024-05-29)
1.
0.1
## 1.0.0(2024-05-29)
## 1.0.0(2024-05-29)
f-status-view
f-status-view
uni_modules/f-status-view/components/f-status-view/f-status-view.vue
View file @
d4e12198
...
@@ -71,12 +71,12 @@
...
@@ -71,12 +71,12 @@
}
}
.i-status
{
.i-status
{
width
:
32
0rpx
;
width
:
48
0rpx
;
height
:
32
0rpx
;
height
:
48
0rpx
;
}
}
.t-status
{
.t-status
{
color
:
$uni-text-color-grey
;
color
:
$uni-text-color-grey
;
font-size
:
2
4
rpx
;
font-size
:
2
8
rpx
;
}
}
</
style
>
</
style
>
\ No newline at end of file
uni_modules/f-status-view/package.json
View file @
d4e12198
{
{
"id"
:
"f-status-view"
,
"id"
:
"f-status-view"
,
"displayName"
:
"f-status-view"
,
"displayName"
:
"f-status-view"
,
"version"
:
"1.0.
0
"
,
"version"
:
"1.0.
2
"
,
"description"
:
"页面状态(loading、empty、error)"
,
"description"
:
"页面状态(loading、empty、error)"
,
"keywords"
:
[
"keywords"
:
[
"f-status-view"
"f-status-view"
],
],
"repository"
:
""
,
"repository"
:
"
http://git.guoguodz.com/tangfh/fashion-ui
"
,
"engines"
:
{
"engines"
:
{
"HBuilderX"
:
"^3.1.0"
"HBuilderX"
:
"^3.1.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