fix(Picker): template url should be relative path (#4408)

This commit is contained in:
neverland 2021-08-18 10:25:35 +08:00 committed by GitHub
parent 383ad317e2
commit bcf7c9c131
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,7 +1,7 @@
<wxs src="./index.wxs" module="computed" /> <wxs src="./index.wxs" module="computed" />
<view class="van-picker custom-class"> <view class="van-picker custom-class">
<include wx:if="{{ toolbarPosition === 'top' }}" src="toolbar.wxml" /> <include wx:if="{{ toolbarPosition === 'top' }}" src="./toolbar.wxml" />
<view wx:if="{{ loading }}" class="van-picker__loading"> <view wx:if="{{ loading }}" class="van-picker__loading">
<loading color="#1989fa"/> <loading color="#1989fa"/>
@ -33,5 +33,5 @@
/> />
</view> </view>
<include wx:if="{{ toolbarPosition === 'bottom' }}" src="toolbar.wxml" /> <include wx:if="{{ toolbarPosition === 'bottom' }}" src="./toolbar.wxml" />
</view> </view>