Merge branch 'master' of gitlab.qima-inc.com:fe/oxygen

This commit is contained in:
cookfront 2017-02-17 16:05:49 +08:00
commit 8f227dfcd6
7 changed files with 47 additions and 42 deletions

View File

@ -1,3 +1,4 @@
lib/ lib/
dist/ dist/
node_modules/ node_modules/
build/

View File

@ -12,11 +12,7 @@ export default {
}, },
methods: { methods: {
updateState(newState) { updateState(newState) {
console.log('changing');
this.switchState = newState; this.switchState = newState;
},
handleClick() {
alert('click');
} }
} }
}; };
@ -26,12 +22,15 @@ export default {
@component switch { @component switch {
padding: 0 15px 15px; padding: 0 15px 15px;
@descendent sample { @descendent wrapper {
margin: 0 15px; margin: 30px;
width: 100px;
float: left;
text-align: center;
} }
@descendent text { @descendent text {
margin-right: 20px; margin: 20px 0;
} }
} }
} }
@ -44,9 +43,14 @@ export default {
:::demo 样例代码 :::demo 样例代码
```html ```html
<div class="page-switch"> <div class="page-switch">
<span class="page-switch-text">Switch state: {{switchStateText}}</span> <div class="page-switch-wrapper">
<z-switch class="page-switch-sample" :checked="switchState" :on-change="updateState"></z-switch> <o2-switch class="some-customized-class" :checked="switchState" :on-change="updateState"></o2-switch>
<z-switch class="page-switch-sample" :checked="false" :disabled="true"></z-switch> <div class="page-switch-text">{{switchStateText}}</div>
</div>
<div class="page-switch-wrapper">
<o2-switch class="some-customized-class" :checked="true" :disabled="true"></o2-switch>
<div class="page-switch-text">OFF, DISABLED</div>
</div>
</div> </div>
``` ```
@ -55,17 +59,16 @@ export default {
export default { export default {
data() { data() {
return { return {
switchState: false switchState: true
}; };
}, },
computed: { computed: {
switchStateText() { switchStateText() {
return this.switchState ? 'on' : 'off'; return this.switchState ? ' ON' : 'OFF';
} }
}, },
methods: { methods: {
updateState(newState) { updateState(newState) {
console.log('changing');
this.switchState = newState; this.switchState = newState;
} }
} }

View File

@ -32,15 +32,13 @@
* @example * @example
* <z-button size="large" type="primary">按钮</z-button> * <z-button size="large" type="primary">按钮</z-button>
*/ */
const allowedSize = ['mini', 'small', 'normal', 'large'];
const allowedType = ['default', 'danger', 'primary'];
export default { export default {
name: 'z-button', name: 'z-button',
methods: {
handleClick(e) {
this.$emit('click', e);
}
},
props: { props: {
disabled: Boolean, disabled: Boolean,
loading: Boolean, loading: Boolean,
@ -49,23 +47,14 @@ export default {
type: String, type: String,
default: 'default', default: 'default',
validator(value) { validator(value) {
return [ return allowedSize.indexOf(value) > -1;
'default',
'danger',
'primary'
].indexOf(value) > -1;
} }
}, },
size: { size: {
type: String, type: String,
default: 'normal', default: 'normal',
validator(value) { validator(value) {
return [ return allowedType.indexOf(value) > -1;
'mini',
'small',
'normal',
'large'
].indexOf(value) > -1;
} }
} }
} }

View File

@ -1,12 +1,12 @@
<template> <template>
<div class="z-switch" :class="['is-' + switchState]" @click="toggleState"> <div class="o2-switch" :class="['is-' + switchState]" @click="toggleState">
<div class="z-switch-node"></div> <div class="o2-switch-node" :class="['is-' + switchState]"></div>
</div> </div>
</template> </template>
<script> <script>
/** /**
* z-switch * o2-switch
* @module components/switch * @module components/switch
* @desc 开关 * @desc 开关
* @param {boolean} [checked=false] - 开关状态 * @param {boolean} [checked=false] - 开关状态
@ -15,10 +15,10 @@
* @param {callback} [onChange] - 开关状态改变回调函数 * @param {callback} [onChange] - 开关状态改变回调函数
* *
* @example * @example
* <z-switch checked="true" disabled="false"></z-switch> * <o2-switch checked="true" disabled="false"></o2-switch>
*/ */
export default { export default {
name: 'z-switch', name: 'o2-switch',
props: { props: {
checked: { checked: {
type: Boolean, type: Boolean,

View File

@ -28,16 +28,19 @@
@modifier default { @modifier default {
color: $button-default-color; color: $button-default-color;
background-color: $button-default-background-color; background-color: $button-default-background-color;
border: 1px solid $button-default-border-color;
} }
@modifier primary { @modifier primary {
color: $button-primary-color; color: $button-primary-color;
background-color: $button-primary-background-color; background-color: $button-primary-background-color;
border: 1px solid $button-primary-border-color;
} }
@modifier danger { @modifier danger {
color: $button-danger-color; color: $button-danger-color;
background-color: $button-danger-background-color; background-color: $button-danger-background-color;
border: 1px solid $button-danger-border-color;
} }
@modifier large { @modifier large {

View File

@ -17,12 +17,15 @@ $c-blue: #38f;
$c-background: #f8f8f8; $c-background: #f8f8f8;
/* 按钮颜色 */ /* 按钮颜色 */
$button-default-color: $c-white; $button-primary-color: $c-white;
$button-default-background-color: $c-green-wx; $button-primary-background-color: $c-green-wx;
$button-primary-color: $c-black; $button-primary-border-color: #0a0;
$button-primary-background-color: $c-white; $button-default-color: $c-black;
$button-default-background-color: $c-white;
$button-default-border-color: #bbb;
$button-danger-color: $c-white; $button-danger-color: $c-white;
$button-danger-background-color: #f44; $button-danger-background-color: #f44;
$button-danger-border-color: #e33;
:root{ :root{

View File

@ -28,11 +28,17 @@
@when on { @when on {
background-color: #44db5e; background-color: #44db5e;
border-color: #44db5e; border-color: #44db5e;
@descendent node {
left: 0;
}
} }
@when off { @when off {
background-color: #fff; background-color: #fff;
border-color: rgba(0, 0, 0, .1); border-color: rgba(0, 0, 0, .1);
@descendent node {
right: 0;
}
} }
@when loading { @when loading {