@tuya-miniapp/smart-ui 2.1.2-beta-1 → 2.1.2
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/calendar/demo/index.js +1 -1
- package/dist/calendar-month-list/index.wxml +1 -1
- package/dist/calendar-year-list/index.wxml +1 -1
- package/lib/calendar/demo/index.js +1 -1
- package/lib/calendar-month-list/index.wxml +1 -1
- package/lib/calendar-year-list/index.wxml +1 -1
- package/package.json +1 -1
@@ -1,6 +1,6 @@
|
|
1
1
|
<view class="contain">
|
2
2
|
<smart-row>
|
3
|
-
<smart-col wx:for="{{months}}" span="6" custom-class="col_item">
|
3
|
+
<smart-col wx:for="{{months}}" wx:key="index" span="6" custom-class="col_item">
|
4
4
|
<view wx:if="{{item.type === 'disabled'}}" class="item item_disabled" data-index="{{index}}">
|
5
5
|
{{item.text}}
|
6
6
|
</view>
|
@@ -1,6 +1,6 @@
|
|
1
1
|
<view class="contain">
|
2
2
|
<smart-row>
|
3
|
-
<smart-col wx:for="{{years}}" span="6" custom-class="col_item">
|
3
|
+
<smart-col wx:for="{{years}}" wx:key="index" span="6" custom-class="col_item">
|
4
4
|
<view wx:if="{{item.type === 'disabled'}}" class="item item_disabled" data-index="{{index}}">
|
5
5
|
{{item.text}}
|
6
6
|
</view>
|
@@ -1,6 +1,6 @@
|
|
1
1
|
<view class="contain">
|
2
2
|
<smart-row>
|
3
|
-
<smart-col wx:for="{{months}}" span="6" custom-class="col_item">
|
3
|
+
<smart-col wx:for="{{months}}" wx:key="index" span="6" custom-class="col_item">
|
4
4
|
<view wx:if="{{item.type === 'disabled'}}" class="item item_disabled" data-index="{{index}}">
|
5
5
|
{{item.text}}
|
6
6
|
</view>
|
@@ -1,6 +1,6 @@
|
|
1
1
|
<view class="contain">
|
2
2
|
<smart-row>
|
3
|
-
<smart-col wx:for="{{years}}" span="6" custom-class="col_item">
|
3
|
+
<smart-col wx:for="{{years}}" wx:key="index" span="6" custom-class="col_item">
|
4
4
|
<view wx:if="{{item.type === 'disabled'}}" class="item item_disabled" data-index="{{index}}">
|
5
5
|
{{item.text}}
|
6
6
|
</view>
|