Skip to content

Commit

Permalink
build: compile 1.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
chenjiahan committed Aug 18, 2021
1 parent 6dd42a0 commit 0b051dc
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions dist/calendar/index.wxml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
bind:after-enter="onOpened"
bind:after-leave="onClosed"
>
<include src="calendar.wxml" />
<include src="./calendar.wxml" />
</van-popup>

<include wx:else src="calendar.wxml" />
<include wx:else src="./calendar.wxml" />

<van-toast id="van-toast" />
4 changes: 2 additions & 2 deletions dist/field/index.wxml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
<view class="{{ utils.bem('field__control', [inputAlign, 'custom']) }}" bindtap="onClickInput">
<slot name="input" />
</view>
<include wx:if="{{ type === 'textarea' }}" src="textarea.wxml" />
<include wx:else src="input.wxml" />
<include wx:if="{{ type === 'textarea' }}" src="./textarea.wxml" />
<include wx:else src="./input.wxml" />

<van-icon
wx:if="{{ showClear }}"
Expand Down
4 changes: 2 additions & 2 deletions lib/calendar/index.wxml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
bind:after-enter="onOpened"
bind:after-leave="onClosed"
>
<include src="calendar.wxml" />
<include src="./calendar.wxml" />
</van-popup>

<include wx:else src="calendar.wxml" />
<include wx:else src="./calendar.wxml" />

<van-toast id="van-toast" />
4 changes: 2 additions & 2 deletions lib/field/index.wxml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
<view class="{{ utils.bem('field__control', [inputAlign, 'custom']) }}" bindtap="onClickInput">
<slot name="input" />
</view>
<include wx:if="{{ type === 'textarea' }}" src="textarea.wxml" />
<include wx:else src="input.wxml" />
<include wx:if="{{ type === 'textarea' }}" src="./textarea.wxml" />
<include wx:else src="./input.wxml" />

<van-icon
wx:if="{{ showClear }}"
Expand Down

0 comments on commit 0b051dc

Please sign in to comment.