@uxda/appkit 4.0.14 → 4.0.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uxda/appkit",
3
- "version": "4.0.14",
3
+ "version": "4.0.16",
4
4
  "description": "小程序应用开发包",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.ts",
@@ -1,6 +1,6 @@
1
1
  <template>
2
2
  <div class="date-range" @click="openDateRangePicker">
3
- <div class="text number">{{ dateRangeDisplay }}</div>
3
+ <div class="text">{{ dateRangeDisplay }}</div>
4
4
  <img
5
5
  style="margin-top: -2px"
6
6
  class="time-icon"
@@ -51,7 +51,7 @@ const openDateRangePicker = () => {
51
51
  const dateRangeDisplay = computed(() => {
52
52
  let startTime = (model.value.from || '').replace(/-/g, '.').substring(2)
53
53
  let endTime = (model.value.to || '').replace(/-/g, '.').substring(2)
54
- return startTime + ' - ' + endTime
54
+ return startTime + '-' + endTime
55
55
  })
56
56
 
57
57
  </script>