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
1a5a35f2
Commit
1a5a35f2
authored
Jun 07, 2024
by
tangfh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
+
parent
d6a24957
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
47 additions
and
18 deletions
+47
-18
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
+1
-1
package.json
uni_modules/f-multi-text-01/package.json
+1
-1
changelog.md
uni_modules/f-status-view/changelog.md
+6
-0
f-status-view.vue
.../f-status-view/components/f-status-view/f-status-view.vue
+14
-4
package.json
uni_modules/f-status-view/package.json
+1
-1
changelog.md
uni_modules/f-text-01/changelog.md
+4
-0
f-text-01.vue
uni_modules/f-text-01/components/f-text-01/f-text-01.vue
+2
-7
package.json
uni_modules/f-text-01/package.json
+2
-2
changelog.md
uni_modules/f-view-bottom-fixed/changelog.md
+6
-0
f-view-bottom-fixed.vue
...ed/components/f-view-bottom-fixed/f-view-bottom-fixed.vue
+7
-1
package.json
uni_modules/f-view-bottom-fixed/package.json
+1
-1
No files found.
uni_modules/f-multi-text-01/changelog.md
View file @
1a5a35f2
## 1.0.1(2024-06-07)
1.
0.1
## 1.0.0(2024-06-07)
## 1.0.0(2024-06-07)
1.
0.0
1.
0.0
## 1.0.12(2024-06-05)
## 1.0.12(2024-06-05)
...
...
uni_modules/f-multi-text-01/components/f-multi-text-01/f-multi-text-01.vue
View file @
1a5a35f2
...
@@ -130,4 +130,4 @@
...
@@ -130,4 +130,4 @@
height
:
48rpx
;
height
:
48rpx
;
margin-left
:
8rpx
;
margin-left
:
8rpx
;
}
}
</
style
>
</
style
>
\ No newline at end of file
uni_modules/f-multi-text-01/package.json
View file @
1a5a35f2
{
{
"id"
:
"f-multi-text-01"
,
"id"
:
"f-multi-text-01"
,
"displayName"
:
"f-multi-text-01"
,
"displayName"
:
"f-multi-text-01"
,
"version"
:
"1.0.
0
"
,
"version"
:
"1.0.
1
"
,
"description"
:
"通用表单项"
,
"description"
:
"通用表单项"
,
"keywords"
:
[
"keywords"
:
[
"f-multi-text-01"
"f-multi-text-01"
...
...
uni_modules/f-status-view/changelog.md
View file @
1a5a35f2
## 1.0.3(2024-06-07)
1.
0.3
## 1.0.2(2024-06-07)
1.
0.2
## 1.0.1(2024-06-07)
1.
0.1
## 1.0.0(2024-06-07)
## 1.0.0(2024-06-07)
1.
0.0
1.
0.0
## 1.0.2(2024-05-29)
## 1.0.2(2024-05-29)
...
...
uni_modules/f-status-view/components/f-status-view/f-status-view.vue
View file @
1a5a35f2
...
@@ -2,7 +2,8 @@
...
@@ -2,7 +2,8 @@
<view
class=
"f-status-view flex-column"
:style=
"[style]"
>
<view
class=
"f-status-view flex-column"
:style=
"[style]"
>
<uni-load-more
v-if=
"statusUI.value == 'loading'"
:status=
"statusUI.value"
:showText=
"false"
<uni-load-more
v-if=
"statusUI.value == 'loading'"
:status=
"statusUI.value"
:showText=
"false"
style=
"margin-top: -44px;"
></uni-load-more>
style=
"margin-top: -44px;"
></uni-load-more>
<image
class=
"i-status"
v-if=
"statusUI.value != 'loading'"
:src=
"statusUI.src"
style=
"margin-top: -44px;"
></image>
<image
class=
"i-status"
v-if=
"statusUI.value != 'loading'"
:src=
"statusUI.src"
style=
"margin-top: -44px;"
>
</image>
<text
class=
"t-status"
>
{{
statusUI
.
text
}}
</text>
<text
class=
"t-status"
>
{{
statusUI
.
text
}}
</text>
</view>
</view>
</
template
>
</
template
>
...
@@ -35,10 +36,18 @@
...
@@ -35,10 +36,18 @@
type
:
Object
,
type
:
Object
,
default
:
statusViewUI
.
status
.
error
default
:
statusViewUI
.
status
.
error
},
},
height
:
{
type
:
String
,
default
:
''
}
},
},
watch
:
{
watch
:
{
status
(
newVal
,
oldVal
)
{
status
(
newVal
,
oldVal
)
{
this
.
statusTextInit
(
newVal
)
this
.
statusTextInit
(
newVal
)
},
height
(
newVal
,
oldVal
)
{
console
.
log
(
"watch height: "
,
newVal
+
"-"
+
oldVal
);
this
.
style
.
height
=
newVal
}
}
},
},
created
()
{
created
()
{
...
@@ -46,6 +55,7 @@
...
@@ -46,6 +55,7 @@
width
:
ui
.
statusViewUI
.
width
+
"px"
,
width
:
ui
.
statusViewUI
.
width
+
"px"
,
height
:
ui
.
statusViewUI
.
height
+
"px"
height
:
ui
.
statusViewUI
.
height
+
"px"
}
}
console
.
log
(
"created this.style.height: "
,
this
.
style
.
height
);
this
.
statusTextInit
(
this
.
status
)
this
.
statusTextInit
(
this
.
status
)
},
},
methods
:
{
methods
:
{
...
@@ -71,12 +81,12 @@
...
@@ -71,12 +81,12 @@
}
}
.i-status
{
.i-status
{
width
:
48
0rpx
;
width
:
50
0rpx
;
height
:
48
0rpx
;
height
:
50
0rpx
;
}
}
.t-status
{
.t-status
{
color
:
$uni-text-color-grey
;
color
:
$uni-text-color-grey
;
font-size
:
2
8
rpx
;
font-size
:
2
4
rpx
;
}
}
</
style
>
</
style
>
\ No newline at end of file
uni_modules/f-status-view/package.json
View file @
1a5a35f2
{
{
"id"
:
"f-status-view"
,
"id"
:
"f-status-view"
,
"displayName"
:
"f-status-view"
,
"displayName"
:
"f-status-view"
,
"version"
:
"1.0.
0
"
,
"version"
:
"1.0.
3
"
,
"description"
:
"页面状态(loading、empty、error)"
,
"description"
:
"页面状态(loading、empty、error)"
,
"keywords"
:
[
"keywords"
:
[
"f-status-view"
"f-status-view"
...
...
uni_modules/f-text-01/changelog.md
View file @
1a5a35f2
## 1.0.3(2024-06-07)
1.
0.3
## 1.0.2(2024-06-07)
1.
0.2
## 1.0.1(2024-06-07)
## 1.0.1(2024-06-07)
1.
0.1
1.
0.1
## 1.0.0(2024-06-07)
## 1.0.0(2024-06-07)
...
...
uni_modules/f-text-01/components/f-text-01/f-text-01.vue
View file @
1a5a35f2
<
template
>
<
template
>
<view
class=
"flex-row row-center-v"
:style=
"[ui.style]"
@
click
.
stop=
""
@
click=
"onClick"
>
<view
class=
"flex-row row-center-v"
:style=
"[ui.style]"
>
<image
class=
"i-icon"
:src=
"ui.uiIcon.value"
></image>
<image
class=
"i-icon"
:src=
"ui.uiIcon.value"
></image>
<text
class=
"t-txt"
:style=
"[ui.uiTxt.style]"
>
{{
ui
.
uiTxt
.
value
}}
</text>
<text
class=
"t-txt"
:style=
"[ui.uiTxt.style]"
>
{{
ui
.
uiTxt
.
value
}}
</text>
</view>
</view>
...
@@ -21,7 +21,7 @@
...
@@ -21,7 +21,7 @@
},
},
uiIcon
:
{
uiIcon
:
{
value
:
""
,
value
:
""
},
},
uiTxt
:
{
uiTxt
:
{
value
:
""
,
value
:
""
,
...
@@ -32,11 +32,6 @@
...
@@ -32,11 +32,6 @@
},
},
required
:
true
,
required
:
true
,
}
}
},
methods
:
{
onClick
()
{
this
.
$emit
(
"click"
)
}
}
}
}
}
</
script
>
</
script
>
...
...
uni_modules/f-text-01/package.json
View file @
1a5a35f2
{
{
"id"
:
"f-text-01"
,
"id"
:
"f-text-01"
,
"displayName"
:
"f-text-01"
,
"displayName"
:
"f-text-01"
,
"version"
:
"1.0.
1
"
,
"version"
:
"1.0.
3
"
,
"description"
:
"
f-text-01
"
,
"description"
:
"
带按钮文本
"
,
"keywords"
:
[
"keywords"
:
[
"f-text-01"
"f-text-01"
],
],
...
...
uni_modules/f-view-bottom-fixed/changelog.md
View file @
1a5a35f2
## 1.0.3(2024-06-07)
1.
0.3
## 1.0.2(2024-06-07)
1.
0.2
## 1.0.1(2024-06-07)
1.
0.1
## 1.0.0(2024-06-07)
## 1.0.0(2024-06-07)
1.
0.0
1.
0.0
## 1.0.4(2024-05-31)
## 1.0.4(2024-05-31)
...
...
uni_modules/f-view-bottom-fixed/components/f-view-bottom-fixed/f-view-bottom-fixed.vue
View file @
1a5a35f2
<
template
>
<
template
>
<view
class=
"v-row-bottom-fixed"
:style=
"
{'width': width, 'padding': padding}">
<view
class=
"v-row-bottom-fixed"
:style=
"
{'width': width, 'padding': padding
, 'background-color': backgroundColor
}">
<slot></slot>
<slot></slot>
</view>
</view>
</
template
>
</
template
>
...
@@ -13,6 +13,12 @@
...
@@ -13,6 +13,12 @@
padding
:
""
,
padding
:
""
,
}
}
},
},
props
:
{
backgroundColor
:
{
type
:
String
,
default
:
"white"
}
},
created
()
{
created
()
{
this
.
width
=
ui
.
appUI
.
screenWidth
+
"px"
this
.
width
=
ui
.
appUI
.
screenWidth
+
"px"
this
.
padding
=
`5px 0
${
ui
.
appUI
.
saftBottom
+
'px'
}
0`
this
.
padding
=
`5px 0
${
ui
.
appUI
.
saftBottom
+
'px'
}
0`
...
...
uni_modules/f-view-bottom-fixed/package.json
View file @
1a5a35f2
{
{
"id"
:
"f-view-bottom-fixed"
,
"id"
:
"f-view-bottom-fixed"
,
"displayName"
:
"f-view-bottom-fixed"
,
"displayName"
:
"f-view-bottom-fixed"
,
"version"
:
"1.0.
0
"
,
"version"
:
"1.0.
3
"
,
"description"
:
"底部按钮父view"
,
"description"
:
"底部按钮父view"
,
"keywords"
:
[
"keywords"
:
[
"f-view-bottom-fixed"
"f-view-bottom-fixed"
...
...
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