This commit is contained in:
Nino 2016-12-22 10:48:50 +08:00
parent 728f76e6cf
commit 6cded1d97b
9 changed files with 103 additions and 6 deletions

6
app.js
View File

@ -1,5 +1,5 @@
App({
globalData:{
}
})
globalData: {
},
});

View File

@ -14,7 +14,8 @@
"example/form/index",
"example/steps/index",
"example/namecard/index",
"example/toast/index"
"example/toast/index",
"example/icon/index"
],
"window":{
"navigationBarBackgroundColor": "#FAFAFA",
@ -22,5 +23,6 @@
"navigationBarTextStyle":"black",
"backgroundTextStyle":"dark",
"backgroundColor": "#f9f9f9"
}
},
"debug": true
}

55
dist/icon/index.wxss vendored Normal file
View File

@ -0,0 +1,55 @@
/* DO NOT EDIT! Generated by fount */
@font-face {
font-family: 'zuiicon';
src: url('https://b.yzcdn.cn/zui/font/zuiicon-1e1c3fdf13.eot');
src: url('https://b.yzcdn.cn/zui/font/zuiicon-1e1c3fdf13.eot?#iefix') format('embedded-opentype'),
url('https://b.yzcdn.cn/zui/font/zuiicon-1e1c3fdf13.woff2') format('woff2'),
url('https://b.yzcdn.cn/zui/font/zuiicon-1e1c3fdf13.woff') format('woff'),
url('https://b.yzcdn.cn/zui/font/zuiicon-1e1c3fdf13.ttf') format('truetype')
}
.zui-icon {
display: inline-block;
}
.zui-icon:before {
font-family: "zuiicon" !important;
font-style: normal;
font-weight: normal;
speak: none;
display: inline-block;
text-decoration: inherit;
width: 1em;
text-align: center;
/* For safety - reset parent styles, that can break glyph codes*/
font-variant: normal;
text-transform: none;
/* fix buttons height, for twitter bootstrap */
line-height: 1em;
/* Animation center compensation - margins should be symmetric */
/* remove if not needed */
/* margin-left: .2em; */
/* you can be more comfortable with increased icons size */
/* font-size: 120%; */
/* Font smoothing. That was taken from TWBS */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
/* Uncomment for 3D effect */
/* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
/* DO NOT EDIT! Generated by fount */
.zui-icon-cancel:before { content: '\e800'; } /* '' */
.zui-icon-store:before { content: '\e801'; } /* '' */
.zui-icon-certificate:before { content: '\e802'; } /* '' */
.zui-icon-arrow:before { content: '\e803'; } /* '' */
.zui-icon-shopping-cart:before { content: '\e804'; } /* '' */
.zui-icon-store:before { content: '\e805'; } /* '' */

1
dist/index.wxss vendored
View File

@ -14,3 +14,4 @@
@import "steps/index.wxss";
@import "toast/index.wxss";
@import "toptips/index.wxss";
@import "icon/index.wxss";

View File

@ -4,7 +4,9 @@ function handle(e, num) {
var disabled = dataset.disabled;
var quantity = +dataset.quantity;
if (disabled == 'true') return null;
console.error(disabled, typeof disabled);
if (disabled == true) return null;
callback.call(this, componentId, quantity + num);
}

View File

@ -5,6 +5,10 @@
<view class="zui-cell__bd">Button</view>
<view class="zui-cell__ft"></view>
</navigator>
<navigator class="zui-cell zui-cell--access" url="/example/icon/index">
<view class="zui-cell__bd">Icon</view>
<view class="zui-cell__ft"></view>
</navigator>
<navigator class="zui-cell zui-cell--access" url="/example/loadmore/index">
<view class="zui-cell__bd">Loadmore</view>
<view class="zui-cell__ft"></view>

21
example/icon/index.js Normal file
View File

@ -0,0 +1,21 @@
var app = getApp()
Page({
data: {
icons: [
'cancel',
'store',
'certificate',
'arrow',
'shopping-cart',
]
},
onLoad: function () {
},
onShow: function() {
},
})

8
example/icon/index.wxml Normal file
View File

@ -0,0 +1,8 @@
<view class="container">
<view class="zui-panel">
<view wx:for="{{ icons }}" wx:for-item="icon">
<view class="zui-icon zui-icon-{{ icon }}"></view>
<view style="display: inline-block;">zui-icon-{{ icon }}</view>
</view>
</view>
</view>

4
example/icon/index.wxss Normal file
View File

@ -0,0 +1,4 @@
.zui-icon {
font-size: 32px;
margin: 20px;
}