js-service-widget-basic-calendar.md 6.3 KB
Newer Older
Z
zengyawen 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
# calendar


日历组件,用于呈现日历界面。

> **说明:**
>
> 从API Version 8 开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。

## 子组件

不支持。


## 属性

支持[通用属性](js-service-widget-common-attributes.md)外,还支持如下属性:

H
HelloCrease 已提交
19 20 21 22 23 24 25 26
| 名称             | 类型     | 默认值   | 必填   | 描述                                       |
| -------------- | ------ | ----- | ---- | ---------------------------------------- |
| date           | string | 当前日期  | 否    | 当前页面选中的日期,默认是当前日期,格式为年-月-日,如"2019-11-22"。 |
| cardcalendar   | bool   | false | 否    | 标识当前日历是否为卡片日历。                           |
| startdayofweek | int    | 6     | 否    | 标识卡片显示的起始天,默认是星期天(取值范围:0-6)。             |
| offdays        | string | 5,6   | 否    | 标识卡片显示的休息日,默认是星期六、星期天(取值范围:0-6)。         |
| calendardata   | string | -     | 是    | 卡片需要显示的月视图数据信息,包括5\*7或者6\*7格的日数据信息,格式为JSON字符串。"data"标签属性信息见**表1** calendardata的日属性。 |
| showholiday    | bool   | true  | 否    | 标识当前是否显示节假日信息。                           |
Z
zengyawen 已提交
27 28 29

 **表1** calendardata的日属性

H
HelloCrease 已提交
30 31 32 33 34 35 36 37 38 39 40 41 42
| 名称             | 类型     | 描述                                      |
| -------------- | ------ | --------------------------------------- |
| index          | int    | 数据的索引,表示第几个日期。                          |
| day            | int    | 表示具体哪一天。                                |
| month          | int    | 表示月份。                                   |
| year           | int    | 表示年份。                                   |
| isFirstOfLuanr | bool   | 表示是否是农历的第一天,在农历第一天的数据下绘制横线。             |
| hasSchedule    | bool   | 表示是否有日程,在有日程的日期数据上绘制圆。                  |
| markLunarDay   | bool   | 表示节假日,农历数据会变成蓝色。                        |
| lunarDay       | string | 农历日期。                                   |
| lunarMonth     | string | 农历月份。                                   |
| dayMark        | string | 表示工作日。<br>- “work”:工作日。<br>- “off”:休息日。 |
| dayMarkValue   | string | 表示具体需要显示的“班”、“休”信息。                     |
Z
zengyawen 已提交
43 44 45

calendardata示例:

H
HelloCrease 已提交
46
```
Z
zengyawen 已提交
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
{
"year":2021,
"month":1,
"data": [{
    "index": 0,    
    "lunarMonth": "十一",
    "lunarDay": "十三",    
    "year": 2020,    
    "month ": 12,    
    "day": 27,    
    "dayMark": "work",    
    "dayMarkValue": "班",
    "isFirstOfLunar": true,
    "hasSchedule": true,
    "markLunarDay": true
  },  {
    "index": 1,
    "lunarMonth": "十一",
    "lunarDay": "十四",    
    "year": 2020,    
    "month ": 12,    
    "day": 28,    
    "dayMark": "work",    
    "dayMarkValue": "班",
    "isFirstOfLunar": true,
    "hasSchedule": true,
    "markLunarDay": true
  },  {
    "index": 2,
    "lunarMonth": "十一",
    "lunarDay": "十五",    
    "year": 2020,    
    "month ": 12,    
    "day": 29,    
    "dayMark": "work",    
    "dayMarkValue": "班",
    "isFirstOfLunar": true,
    "hasSchedule": true,
    "markLunarDay": true
  },
  ...
  ]
}
```



## 样式

H
HelloCrease 已提交
96 97 98
| 名称               | 类型            | 默认值  | 必填   | 描述      |
| ---------------- | ------------- | ---- | ---- | ------- |
| background-color | &lt;color&gt; | -    | 否    | 设置背景颜色。 |
Z
zengyawen 已提交
99 100 101 102


## 事件

H
HelloCrease 已提交
103 104 105 106
| 名称             | 参数           | 描述              |
| -------------- | ------------ | --------------- |
| selectedchange | changeEvent  | 在点击日期和上下月跳转时触发。 |
| requestdata    | requestEvent | 请求日期时触发。        |
Z
zengyawen 已提交
107 108 109

  **表2** changeEvent

H
HelloCrease 已提交
110 111 112
| 名称           | 类型     | 描述     |
| ------------ | ------ | ------ |
| $event.day   | string | 选择的日期。 |
Z
zengyawen 已提交
113
| $event.month | string | 选择的月份。 |
H
HelloCrease 已提交
114
| $event.year  | string | 选择的年份。 |
Z
zengyawen 已提交
115 116 117

  **表3** requestEvent

H
HelloCrease 已提交
118 119 120 121 122
| 名称                  | 类型     | 描述       |
| ------------------- | ------ | -------- |
| $event.month        | string | 请求的月份。   |
| $event.year         | string | 请求的年份。   |
| $event.currentYear  | string | 当前显示的年份。 |
Z
zengyawen 已提交
123 124 125 126
| $event.currentMonth | string | 当前显示的月份。 |

## 示例

W
wangshuainan 已提交
127 128
当前数据仅为示例数据,实际使用时请补充完整的日期数据。

Z
zengyawen 已提交
129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199

```html
<!-- xxx.hml -->
<div class="container">
    <calendar class="container_test"
        cardcalendar="true"
        onselectedchange="clickOneDay"
        onrequestdata="messageEventData"
        date="{{currentDate}}"
        offdays="{{offDays}}"
        showholiday="{{showHoliday}}"
        startdayofweek="{{startDayOfWeek}}"
        calendardata="{{calendarData}}">
   </calendar>
</div>
```


```css
/* xxx.css */ 
.container {
    flex-direction:column;
    width: 100%;
    height: 100%;
    align-items:center;
    padding-start: 4px;
    padding-end: 4px;
}
.container_test {
    background-color: white;
}
```


```json
{
    "data": {
        "currentDate": "",
        "offDays": "",
        "startDayOfWeek": 6,
        "showHoliday": true,
        "calendarData": ""
    },
    "actions": {
        "clickOneDay": {
            "action": "router",
            "bundleName": "com.example.calendar",
            "abilityName": "com.example.calendar.MainAbility",
            "params": {
                "action": "click_month_view_event",
                "day": "$event.day",
                "month": "$event.month",
                "year": "$event.year"
            }
        },
        "messageEventData": {
            "action": "message",
            "params": {
                "month": "$event.month",
                "year": "$event.year",
                "currentMonth": "$event.currentMonth",
                "currentYear": "$event.currentYear"
            }
        }
    }
}
```
**4*4卡片**

![zh-cn_image_0000001231452477](figures/zh-cn_image_0000001231452477.png)