diff --git a/dist/calendar/calendar.wxml b/dist/calendar/calendar.wxml
index 09a60b3e..26938c1a 100644
--- a/dist/calendar/calendar.wxml
+++ b/dist/calendar/calendar.wxml
@@ -1,57 +1,65 @@
-
+
+
-
-
-
+ allowSameDay="{{ allowSameDay }}"
+ showMonthTitle="{{ index !== 0 || !showSubtitle }}"
+ bind:click="onClickDay"
+ />
+
-
-
-
-
-
-
-
+
-
+
+
+
diff --git a/dist/calendar/index.wxml b/dist/calendar/index.wxml
index d4849cc7..7df0b980 100644
--- a/dist/calendar/index.wxml
+++ b/dist/calendar/index.wxml
@@ -1,4 +1,5 @@
+
@@ -16,16 +17,9 @@
bind:after-enter="onOpened"
bind:after-leave="onClosed"
>
-
+
-
+
diff --git a/dist/picker/toolbar.wxml b/dist/picker/toolbar.wxml
index e41a7301..414f6120 100644
--- a/dist/picker/toolbar.wxml
+++ b/dist/picker/toolbar.wxml
@@ -1,28 +1,23 @@
-
+
-
- {{ cancelButtonText }}
-
- {{
- title
- }}
-
- {{ confirmButtonText }}
-
+ {{ cancelButtonText }}
-
+ {{
+ title
+ }}
+
+ {{ confirmButtonText }}
+
+
diff --git a/dist/uploader/index.js b/dist/uploader/index.js
index 955ca580..263c50e3 100644
--- a/dist/uploader/index.js
+++ b/dist/uploader/index.js
@@ -182,6 +182,13 @@ VantComponent({
},
});
},
+ onPreviewFile(event) {
+ const { index } = event.currentTarget.dataset;
+ wx.openDocument({
+ filePath: this.data.lists[index].url,
+ showMenu: true,
+ });
+ },
onClickPreview(event) {
const { index } = event.currentTarget.dataset;
const item = this.data.lists[index];
diff --git a/dist/uploader/index.wxml b/dist/uploader/index.wxml
index a44f80d2..50fb0c89 100644
--- a/dist/uploader/index.wxml
+++ b/dist/uploader/index.wxml
@@ -20,7 +20,7 @@
class="van-uploader__preview-image"
style="{{ computed.sizeStyle({ previewSize }) }}"
data-index="{{ index }}"
- bind:tap="onPreviewImage"
+ bindtap="onPreviewImage"
/>
{{ item.name || item.url }}
diff --git a/lib/calendar/calendar.wxml b/lib/calendar/calendar.wxml
index 09a60b3e..26938c1a 100644
--- a/lib/calendar/calendar.wxml
+++ b/lib/calendar/calendar.wxml
@@ -1,57 +1,65 @@
-
+
+
-
-
-
+ allowSameDay="{{ allowSameDay }}"
+ showMonthTitle="{{ index !== 0 || !showSubtitle }}"
+ bind:click="onClickDay"
+ />
+
-
-
-
-
-
-
-
+
-
+
+
+
diff --git a/lib/calendar/index.wxml b/lib/calendar/index.wxml
index d4849cc7..7df0b980 100644
--- a/lib/calendar/index.wxml
+++ b/lib/calendar/index.wxml
@@ -1,4 +1,5 @@
+
@@ -16,16 +17,9 @@
bind:after-enter="onOpened"
bind:after-leave="onClosed"
>
-
+
-
+
diff --git a/lib/picker/toolbar.wxml b/lib/picker/toolbar.wxml
index e41a7301..414f6120 100644
--- a/lib/picker/toolbar.wxml
+++ b/lib/picker/toolbar.wxml
@@ -1,28 +1,23 @@
-
+
-
- {{ cancelButtonText }}
-
- {{
- title
- }}
-
- {{ confirmButtonText }}
-
+ {{ cancelButtonText }}
-
+ {{
+ title
+ }}
+
+ {{ confirmButtonText }}
+
+
diff --git a/lib/uploader/index.js b/lib/uploader/index.js
index 4a233c1d..ca3c43ad 100644
--- a/lib/uploader/index.js
+++ b/lib/uploader/index.js
@@ -227,6 +227,13 @@ component_1.VantComponent({
},
});
},
+ onPreviewFile: function (event) {
+ var index = event.currentTarget.dataset.index;
+ wx.openDocument({
+ filePath: this.data.lists[index].url,
+ showMenu: true,
+ });
+ },
onClickPreview: function (event) {
var index = event.currentTarget.dataset.index;
var item = this.data.lists[index];
diff --git a/lib/uploader/index.wxml b/lib/uploader/index.wxml
index a44f80d2..50fb0c89 100644
--- a/lib/uploader/index.wxml
+++ b/lib/uploader/index.wxml
@@ -20,7 +20,7 @@
class="van-uploader__preview-image"
style="{{ computed.sizeStyle({ previewSize }) }}"
data-index="{{ index }}"
- bind:tap="onPreviewImage"
+ bindtap="onPreviewImage"
/>
{{ item.name || item.url }}