mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
Merge branch 'master' of gitlab.qima-inc.com:weapp/zui
This commit is contained in:
commit
fcdfe960e0
13
dist/btn/index.wxss
vendored
13
dist/btn/index.wxss
vendored
@ -60,7 +60,7 @@
|
||||
padding-left: 5px;
|
||||
padding-right: 5px;
|
||||
}
|
||||
.zui-btn--big {
|
||||
.zui-btn--large {
|
||||
border-radius: 0;
|
||||
margin-bottom: 0;
|
||||
border: none;
|
||||
@ -125,11 +125,12 @@
|
||||
|
||||
/* disabled */
|
||||
.zui-btn.zui-btn--disabled {
|
||||
color: #999;
|
||||
background: #f8f8f8;
|
||||
border-color: #e5e5e5;
|
||||
cursor: not-allowed;
|
||||
opacity: 1;
|
||||
/* 防止样式被 button[disabled] 的规则覆盖,所以使用了important */
|
||||
color: #999 ! important;
|
||||
background: #f8f8f8 ! important;
|
||||
border-color: #e5e5e5 ! important;
|
||||
cursor: not-allowed ! important;
|
||||
opacity: 1 ! important;
|
||||
}
|
||||
|
||||
/* ::last-child */
|
||||
|
2
dist/quantity/index.wxml
vendored
2
dist/quantity/index.wxml
vendored
@ -1,5 +1,5 @@
|
||||
<template name="zui-quantity">
|
||||
<view class="zui-quantity">
|
||||
<view class="zui-quantity {{ size === 'small' ? 'zui-quantity--small' : '' }}">
|
||||
<view
|
||||
class="zui-quantity__minus {{ quantity <= min ? 'zui-quantity--disabled' : '' }}"
|
||||
data-component-id="{{ componentId }}"
|
||||
|
9
dist/quantity/index.wxss
vendored
9
dist/quantity/index.wxss
vendored
@ -35,3 +35,12 @@
|
||||
color: #bbb;
|
||||
border-color: #e8e8e8;
|
||||
}
|
||||
.zui-quantity--small view {
|
||||
min-width: 36px;
|
||||
line-height: 18px;
|
||||
}
|
||||
.zui-quantity--small .zui-quantity__text {
|
||||
width: 36px;
|
||||
line-height: 28px;
|
||||
height: 28px;
|
||||
}
|
||||
|
@ -8,9 +8,9 @@
|
||||
</view>
|
||||
|
||||
<view class="zui-panel">
|
||||
<button class="zui-btn zui-btn--big zui-btn--primary">确认付款</button>
|
||||
<button class="zui-btn zui-btn--big zui-btn--warn">立即购买</button>
|
||||
<button class="zui-btn zui-btn--big zui-btn--danger">立即购买</button>
|
||||
<button class="zui-btn zui-btn--large zui-btn--primary">确认付款</button>
|
||||
<button class="zui-btn zui-btn--large zui-btn--warn">立即购买</button>
|
||||
<button class="zui-btn zui-btn--large zui-btn--danger">立即购买</button>
|
||||
</view>
|
||||
|
||||
<view class="zui-panel" style="padding: 15px;">
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
<view class="zui-btns">
|
||||
<button
|
||||
class="zui-btn zui-btn--primary zui-btn--big"
|
||||
class="zui-btn zui-btn--primary zui-btn--large"
|
||||
bindtap="toggleDialog"
|
||||
style="margin-top: 40vh;"
|
||||
>
|
||||
|
@ -3,7 +3,7 @@ var ZUI = require('../../dist/index');
|
||||
Page(Object.assign({}, ZUI.Quantity, {
|
||||
data: {
|
||||
quantity1: {
|
||||
quantity: 1,
|
||||
quantity: 10,
|
||||
min: 1,
|
||||
max: 20
|
||||
},
|
||||
@ -11,6 +11,11 @@ Page(Object.assign({}, ZUI.Quantity, {
|
||||
quantity: 1,
|
||||
min: 1,
|
||||
max: 1
|
||||
},
|
||||
quantity3: {
|
||||
quantity: 10,
|
||||
min: 1,
|
||||
max: 20
|
||||
}
|
||||
},
|
||||
|
||||
|
@ -4,7 +4,14 @@
|
||||
<view style="padding: 40px 15px">
|
||||
<template is="zui-quantity" data="{{ ...quantity1, componentId: 'quantity1' }}" />
|
||||
</view>
|
||||
|
||||
<!-- 当最大值等于最小值时,组件不可用 -->
|
||||
<view style="padding: 40px 15px ">
|
||||
<template is="zui-quantity" data="{{ ...quantity2, componentId: 'quantity2' }}" />
|
||||
</view>
|
||||
|
||||
<!-- small size -->
|
||||
<view style="padding: 40px 15px ">
|
||||
<template is="zui-quantity" data="{{ ...quantity3, componentId: 'quantity3', size: 'small' }}" />
|
||||
</view>
|
||||
</view>
|
||||
|
@ -3,7 +3,7 @@
|
||||
<view class="container">
|
||||
<view class="zui-btns">
|
||||
<button
|
||||
class="zui-btn zui-btn--primary zui-btn--big"
|
||||
class="zui-btn zui-btn--primary zui-btn--large"
|
||||
catchtap="showToast"
|
||||
style="margin-top: 40vh;"
|
||||
>
|
||||
|
@ -3,7 +3,7 @@
|
||||
<view class="container">
|
||||
<view class="zui-btns">
|
||||
<button
|
||||
class="zui-btn zui-btn--primary zui-btn--big"
|
||||
class="zui-btn zui-btn--primary zui-btn--large"
|
||||
catchtap="showTopTips"
|
||||
style="margin-top: 40vh;"
|
||||
>
|
||||
|
Loading…
x
Reference in New Issue
Block a user