Toggle navigation
Toggle navigation
This project
Loading...
Sign in
developOne
/
harmonyPool
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
陈剑华
2024-10-10 11:04:39 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
4e4e4a8a23d51a6211d7f51bfa786eaf478a5caf
4e4e4a8a
1 parent
5014def7
feat: 已预约边框
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
sight_harmony/features/wdComponent/src/main/ets/components/compview/ZhSingleRow03.ets
sight_harmony/features/wdComponent/src/main/ets/components/mine/appointment/AppointmentListChildComponent.ets
sight_harmony/features/wdComponent/src/main/ets/components/compview/ZhSingleRow03.ets
View file @
4e4e4a8
...
...
@@ -336,6 +336,9 @@ export struct ZhSingleRow03 {
.fontSize(12)
.textAlign(TextAlign.Center)
.borderRadius(3)
.borderStyle(BorderStyle.Solid)
.borderWidth(this.isReserved(Number(item.objectId)) ? 1 : 0)
.borderColor('#e5e5e5')
.onClick(() => {
const isSubscribe = !this.isReserved(Number(item.objectId))
...
...
sight_harmony/features/wdComponent/src/main/ets/components/mine/appointment/AppointmentListChildComponent.ets
View file @
4e4e4a8
...
...
@@ -166,6 +166,9 @@ export struct AppointmentListChildComponent {
.width(52)
.height(24)
.borderRadius(3)
.borderStyle(BorderStyle.Solid)
.borderWidth(this.isReserved(Number(item.objectId)) ? 1 : 0)
.borderColor('#e5e5e5')
.onClick(() => {
this.dialogController.open()
})
...
...
Please
register
or
login
to post a comment