[improvement] NoticeBar: optimize wxml (#1576)

This commit is contained in:
neverland 2019-04-28 14:31:27 +08:00 committed by GitHub
parent 0bc1505b19
commit 2cef9ad091
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 18 additions and 13 deletions

View File

@ -97,5 +97,6 @@
"van-collapse": "../../dist/collapse/index",
"van-collapse-item": "../../dist/collapse-item/index",
"van-picker": "../../dist/picker/index"
}
}
},
"sitemapLocation": "sitemap.json"
}

7
example/sitemap.json Normal file
View File

@ -0,0 +1,7 @@
{
"desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html",
"rules": [{
"action": "allow",
"page": "*"
}]
}

View File

@ -12,14 +12,9 @@
}
&__left-icon {
height: 18px;
min-width: 20px;
box-sizing: border-box;
&-image {
width: 16px;
height: 16px;
}
width: 16px;
height: 16px;
margin-right: 4px;
}
&__right-icon {

View File

@ -4,9 +4,11 @@
style="color: {{ color }}; background-color: {{ backgroundColor }};"
bind:tap="onClick"
>
<view wx:if="{{ leftIcon }}" class="van-notice-bar__left-icon">
<image class="van-notice-bar__left-icon-image" src="{{ leftIcon }}" />
</view>
<image
wx:if="{{ leftIcon }}"
src="{{ leftIcon }}"
class="van-notice-bar__left-icon"
/>
<view class="van-notice-bar__content-wrap">
<view class="van-notice-bar__content {{ scrollable ? '' : 'van-ellipsis' }}" animation="{{ animationData }}">
{{ text }}