1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| <template>
| <c-common-toast></c-common-toast>
| <template if:true={isShowReminder}>
| <div
| style="
| border: 1px solid #d4d4d4;
| border-radius: 5px;
| margin-bottom: 7px;
| color: #ff6a00;
| font-size: 18px;
| "
| >
| <lightning-icon
| style="margin: 2px"
| icon-name="custom:custom53"
| size="small"
| ></lightning-icon>
| <strong style="padding-top: 2px"
| > 提醒:{msg}</strong
| >
| </div>
| </template>
| </template>
|
|