mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
Merge branch 'switch' of gitlab.qima-inc.com:fe/oxygen into switch
This commit is contained in:
commit
06eedfef4a
@ -1,5 +1,8 @@
|
||||
{
|
||||
"sample": "./packages/sample/index.js",
|
||||
"button": "./packages/button/index.js",
|
||||
"switch": "./packages/switch/index.js"
|
||||
"switch": "./packages/switch/index.js",
|
||||
"field": "./packages/field/index.js",
|
||||
"radio": "./packages/radio/index.js",
|
||||
"cell": "./packages/cell/index.js"
|
||||
}
|
||||
|
15
docs/examples/cell.md
Normal file
15
docs/examples/cell.md
Normal file
@ -0,0 +1,15 @@
|
||||
## Cell 组件
|
||||
|
||||
### API
|
||||
|
||||
| 参数 | 说明 | 类型 | 默认值 | 可选值 |
|
||||
|-----------|-----------|-----------|-------------|-------------|
|
||||
| className | 自定义额外类名 | string | '' | '' |
|
||||
|
||||
### Slot
|
||||
|
||||
| name | 描述 |
|
||||
|-----------|-----------|
|
||||
| - | 自定义显示内容 |
|
||||
| icon | |
|
||||
| name | |
|
1
docs/examples/checkbox.md
Normal file
1
docs/examples/checkbox.md
Normal file
@ -0,0 +1 @@
|
||||
## Checkbox组件
|
1
docs/examples/field.md
Normal file
1
docs/examples/field.md
Normal file
@ -0,0 +1 @@
|
||||
## Field组件
|
1
docs/examples/radio.md
Normal file
1
docs/examples/radio.md
Normal file
@ -0,0 +1 @@
|
||||
## Radio组件
|
@ -8,15 +8,41 @@
|
||||
"list": [
|
||||
{
|
||||
"path": "/sample",
|
||||
"title": "Sample组件"
|
||||
"title": "Sample"
|
||||
},
|
||||
{
|
||||
"path": "/button",
|
||||
"title": "Button组件"
|
||||
},
|
||||
"title": "Button"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"groupName": "CSS组件",
|
||||
"list": [
|
||||
{
|
||||
"path": "/cell",
|
||||
"title": "Cell"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"groupName": "Form",
|
||||
"list": [
|
||||
{
|
||||
"path": "/switch",
|
||||
"title": "Switch组件"
|
||||
"title": "Switch"
|
||||
},
|
||||
{
|
||||
"path": "/field",
|
||||
"title": "Field"
|
||||
},
|
||||
{
|
||||
"path": "/radio",
|
||||
"title": "Radio"
|
||||
},
|
||||
{
|
||||
"path": "/checkbox",
|
||||
"title": "Checkbox"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -12,7 +12,7 @@
|
||||
"scripts": {
|
||||
"bootstrap": "npm i --registry=http://registry.npm.qima-inc.com",
|
||||
"build:file": "node build/bin/build-entry.js",
|
||||
"build": "npm run clean && npm run build:file && npm run concat:dev && npm run concat:prod",
|
||||
"build": "npm run clean && npm run lint && npm run build:file && npm run concat:dev && npm run concat:prod",
|
||||
"dev": "npm run bootstrap && npm run build:file",
|
||||
"builddocs": "webpack --progress --hide-modules --config build/webpack.config.js && set NODE_ENV=production webpack --progress --hide-modules --config build/webpack.config.js",
|
||||
"docs": "npm run dev && webpack-dev-server --inline --hot --config build/webpack.config.js",
|
||||
|
8
packages/cell/CHANGELOG.md
Normal file
8
packages/cell/CHANGELOG.md
Normal file
@ -0,0 +1,8 @@
|
||||
## 0.0.2 (2017-01-20)
|
||||
|
||||
* 改了bug A
|
||||
* 加了功能B
|
||||
|
||||
## 0.0.1 (2017-01-10)
|
||||
|
||||
* 第一版
|
26
packages/cell/README.md
Normal file
26
packages/cell/README.md
Normal file
@ -0,0 +1,26 @@
|
||||
# @youzan/<%= name %>
|
||||
|
||||
!!! 请在此处填写你的文档最简单描述 !!!
|
||||
|
||||
[![version][version-image]][download-url]
|
||||
[![download][download-image]][download-url]
|
||||
|
||||
[version-image]: http://npm.qima-inc.com/badge/v/@youzan/<%= name %>.svg?style=flat-square
|
||||
[download-image]: http://npm.qima-inc.com/badge/d/@youzan/<%= name %>.svg?style=flat-square
|
||||
[download-url]: http://npm.qima-inc.com/package/@youzan/<%= name %>
|
||||
|
||||
## Demo
|
||||
|
||||
## Usage
|
||||
|
||||
## API
|
||||
|
||||
| 参数 | 说明 | 类型 | 默认值 | 可选值 |
|
||||
|-----------|-----------|-----------|-------------|-------------|
|
||||
| className | 自定义额外类名 | string | '' | '' |
|
||||
|
||||
|
||||
|
||||
|
||||
## License
|
||||
[MIT](https://opensource.org/licenses/MIT)
|
3
packages/cell/index.js
Normal file
3
packages/cell/index.js
Normal file
@ -0,0 +1,3 @@
|
||||
import Cell from './src/cell';
|
||||
|
||||
export default Cell;
|
10
packages/cell/package.json
Normal file
10
packages/cell/package.json
Normal file
@ -0,0 +1,10 @@
|
||||
{
|
||||
"name": "<%= name %>",
|
||||
"version": "<%= version %>",
|
||||
"description": "<%= description %>",
|
||||
"main": "./lib/index.js",
|
||||
"author": "<%= author %>",
|
||||
"license": "<%= license %>",
|
||||
"devDependencies": {},
|
||||
"dependencies": {}
|
||||
}
|
28
packages/cell/src/cell.vue
Normal file
28
packages/cell/src/cell.vue
Normal file
@ -0,0 +1,28 @@
|
||||
<template>
|
||||
<div class="o2-cell">
|
||||
<div class="o2-cell-title">
|
||||
<slot name="icon">
|
||||
<i v-if="icon" class="o2-icon" :class="'o2-icon-' + icon"></i>
|
||||
</slot>
|
||||
<slot name="title">
|
||||
</slot>
|
||||
</div>
|
||||
<div class="o2-cell-value">
|
||||
<slot>
|
||||
|
||||
</slot>
|
||||
</div>
|
||||
<i class="o2-cell-arrow-right"></i>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'o2-cell',
|
||||
|
||||
props: {
|
||||
icon: String,
|
||||
title: String
|
||||
}
|
||||
};
|
||||
</script>
|
8
packages/field/CHANGELOG.md
Normal file
8
packages/field/CHANGELOG.md
Normal file
@ -0,0 +1,8 @@
|
||||
## 0.0.2 (2017-01-20)
|
||||
|
||||
* 改了bug A
|
||||
* 加了功能B
|
||||
|
||||
## 0.0.1 (2017-01-10)
|
||||
|
||||
* 第一版
|
26
packages/field/README.md
Normal file
26
packages/field/README.md
Normal file
@ -0,0 +1,26 @@
|
||||
# @youzan/<%= name %>
|
||||
|
||||
!!! 请在此处填写你的文档最简单描述 !!!
|
||||
|
||||
[![version][version-image]][download-url]
|
||||
[![download][download-image]][download-url]
|
||||
|
||||
[version-image]: http://npm.qima-inc.com/badge/v/@youzan/<%= name %>.svg?style=flat-square
|
||||
[download-image]: http://npm.qima-inc.com/badge/d/@youzan/<%= name %>.svg?style=flat-square
|
||||
[download-url]: http://npm.qima-inc.com/package/@youzan/<%= name %>
|
||||
|
||||
## Demo
|
||||
|
||||
## Usage
|
||||
|
||||
## API
|
||||
|
||||
| 参数 | 说明 | 类型 | 默认值 | 可选值 |
|
||||
|-----------|-----------|-----------|-------------|-------------|
|
||||
| className | 自定义额外类名 | string | '' | '' |
|
||||
|
||||
|
||||
|
||||
|
||||
## License
|
||||
[MIT](https://opensource.org/licenses/MIT)
|
3
packages/field/index.js
Normal file
3
packages/field/index.js
Normal file
@ -0,0 +1,3 @@
|
||||
import Field from './src/field';
|
||||
|
||||
export default Field;
|
3
packages/field/package.json
Normal file
3
packages/field/package.json
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"name": "o2-field"
|
||||
}
|
11
packages/field/src/field.vue
Normal file
11
packages/field/src/field.vue
Normal file
@ -0,0 +1,11 @@
|
||||
<template>
|
||||
<div>
|
||||
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'o2-filed'
|
||||
};
|
||||
</script>
|
8
packages/radio/CHANGELOG.md
Normal file
8
packages/radio/CHANGELOG.md
Normal file
@ -0,0 +1,8 @@
|
||||
## 0.0.2 (2017-01-20)
|
||||
|
||||
* 改了bug A
|
||||
* 加了功能B
|
||||
|
||||
## 0.0.1 (2017-01-10)
|
||||
|
||||
* 第一版
|
26
packages/radio/README.md
Normal file
26
packages/radio/README.md
Normal file
@ -0,0 +1,26 @@
|
||||
# @youzan/<%= name %>
|
||||
|
||||
!!! 请在此处填写你的文档最简单描述 !!!
|
||||
|
||||
[![version][version-image]][download-url]
|
||||
[![download][download-image]][download-url]
|
||||
|
||||
[version-image]: http://npm.qima-inc.com/badge/v/@youzan/<%= name %>.svg?style=flat-square
|
||||
[download-image]: http://npm.qima-inc.com/badge/d/@youzan/<%= name %>.svg?style=flat-square
|
||||
[download-url]: http://npm.qima-inc.com/package/@youzan/<%= name %>
|
||||
|
||||
## Demo
|
||||
|
||||
## Usage
|
||||
|
||||
## API
|
||||
|
||||
| 参数 | 说明 | 类型 | 默认值 | 可选值 |
|
||||
|-----------|-----------|-----------|-------------|-------------|
|
||||
| className | 自定义额外类名 | string | '' | '' |
|
||||
|
||||
|
||||
|
||||
|
||||
## License
|
||||
[MIT](https://opensource.org/licenses/MIT)
|
3
packages/radio/index.js
Normal file
3
packages/radio/index.js
Normal file
@ -0,0 +1,3 @@
|
||||
import Radio from './src/radio';
|
||||
|
||||
export default Radio;
|
10
packages/radio/package.json
Normal file
10
packages/radio/package.json
Normal file
@ -0,0 +1,10 @@
|
||||
{
|
||||
"name": "<%= name %>",
|
||||
"version": "<%= version %>",
|
||||
"description": "<%= description %>",
|
||||
"main": "./lib/index.js",
|
||||
"author": "<%= author %>",
|
||||
"license": "<%= license %>",
|
||||
"devDependencies": {},
|
||||
"dependencies": {}
|
||||
}
|
11
packages/radio/src/radio.vue
Normal file
11
packages/radio/src/radio.vue
Normal file
@ -0,0 +1,11 @@
|
||||
<template>
|
||||
<div>
|
||||
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'o2-radio'
|
||||
};
|
||||
</script>
|
11
src/index.js
11
src/index.js
@ -1,6 +1,9 @@
|
||||
import Sample from '../packages/sample/index.js';
|
||||
import Button from '../packages/button/index.js';
|
||||
import Switch from '../packages/switch/index.js';
|
||||
import Field from '../packages/field/index.js';
|
||||
import Radio from '../packages/radio/index.js';
|
||||
import Cell from '../packages/cell/index.js';
|
||||
// zenui
|
||||
import '../packages/zenui/src/index.pcss';
|
||||
|
||||
@ -10,6 +13,9 @@ const install = function(Vue) {
|
||||
Vue.component(Sample.name, Sample);
|
||||
Vue.component(Button.name, Button);
|
||||
Vue.component(Switch.name, Switch);
|
||||
Vue.component(Field.name, Field);
|
||||
Vue.component(Radio.name, Radio);
|
||||
Vue.component(Cell.name, Cell);
|
||||
};
|
||||
|
||||
// auto install
|
||||
@ -22,5 +28,8 @@ module.exports = {
|
||||
version: '0.0.1',
|
||||
Sample,
|
||||
Button,
|
||||
Switch
|
||||
Switch,
|
||||
Field,
|
||||
Radio,
|
||||
Cell
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user