fix(Field): template url should be relative path

This commit is contained in:
chenjiahan 2021-08-18 11:05:13 +08:00
parent 7f7cf62ee0
commit 6dd42a0473

View File

@ -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 }}"