Showing
2 changed files
with
6 additions
and
0 deletions
| @@ -336,6 +336,9 @@ export struct ZhSingleRow03 { | @@ -336,6 +336,9 @@ export struct ZhSingleRow03 { | ||
| 336 | .fontSize(12) | 336 | .fontSize(12) |
| 337 | .textAlign(TextAlign.Center) | 337 | .textAlign(TextAlign.Center) |
| 338 | .borderRadius(3) | 338 | .borderRadius(3) |
| 339 | + .borderStyle(BorderStyle.Solid) | ||
| 340 | + .borderWidth(this.isReserved(Number(item.objectId)) ? 1 : 0) | ||
| 341 | + .borderColor('#e5e5e5') | ||
| 339 | .onClick(() => { | 342 | .onClick(() => { |
| 340 | 343 | ||
| 341 | const isSubscribe = !this.isReserved(Number(item.objectId)) | 344 | const isSubscribe = !this.isReserved(Number(item.objectId)) |
| @@ -166,6 +166,9 @@ export struct AppointmentListChildComponent { | @@ -166,6 +166,9 @@ export struct AppointmentListChildComponent { | ||
| 166 | .width(52) | 166 | .width(52) |
| 167 | .height(24) | 167 | .height(24) |
| 168 | .borderRadius(3) | 168 | .borderRadius(3) |
| 169 | + .borderStyle(BorderStyle.Solid) | ||
| 170 | + .borderWidth(this.isReserved(Number(item.objectId)) ? 1 : 0) | ||
| 171 | + .borderColor('#e5e5e5') | ||
| 169 | .onClick(() => { | 172 | .onClick(() => { |
| 170 | this.dialogController.open() | 173 | this.dialogController.open() |
| 171 | }) | 174 | }) |
-
Please register or login to post a comment