Skip to content

Commit

Permalink
update new docs
Browse files Browse the repository at this point in the history
  • Loading branch information
smallweis committed Mar 31, 2019
1 parent 0cee0b5 commit 02c8cb3
Show file tree
Hide file tree
Showing 13 changed files with 212 additions and 93 deletions.
5 changes: 3 additions & 2 deletions examples/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -199,9 +199,10 @@ export default {
created() {
this.$notify.success({
title: "Avuex发布了,了解一下?",
title: "为了更好的满足企业需求,即将发布数据大屏解决方案",
dangerouslyUseHTMLString: true,
message: '<a target="_blank" href="https://avuex.avue.top">点击查看</a>',
message:
'<a target="_blank" href="https://avuex.avue.top/#/vip">点击查看</a>',
duration: 0,
type: "success"
});
Expand Down
2 changes: 1 addition & 1 deletion examples/components/header.vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
target="_blank">问题反馈</a>
</li>
<li class="header__nav-item">
<a href="https://promotion.aliyun.com/ntms/act/qwbk.html?userCode=vqed4m0j"
<a href="https://www.aliyun.com/acts/product-section-2019/home?spm=5176.section-products.4utv_eeferw.2.76b9327bi0UFCU&accounttraceid=2c88e9df-9588-4e64-b9fc-2fa81edd09b8&userCode=vqed4m0j"
target="_blank">阿里云服务器1折起</a>
</li>
<li class="header__nav-item">
Expand Down
173 changes: 173 additions & 0 deletions examples/docs/card.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,173 @@
<script>

export default {
data() {
return {
option: {
// addBtn:false,
props: {
img: 'img',
title: 'title',
info: 'text',
}
},
data: [{
title: 'Alipay',
text: '在中台产品的研发过程中,会出现不同的设计规范和实现方式,但其中往往存在很多类似的页面和组件,这些类似的,在中台产品的研发过程中,会出现不同的设计规范和实现方式,但其中往往存在很多类似的页面和组件,这些类似的',
img: 'https://gw.alipayobjects.com/zos/rmsportal/WdGqmHpayyMjiEhcKoVE.png'
}, {
title: 'Angular',
text: '在中台产品的研发过程中,会出现不同的设计规范和实现方式,但其中往往存在很多类似的页面和组件,这些类似的,在中台产品的研发过程中,会出现不同的设计规范和实现方式,但其中往往存在很多类似的页面和组件,这些类似的',
img: 'https://gw.alipayobjects.com/zos/rmsportal/zOsKZmFRdUtvpqCImOVY.png'
}, {
title: 'Ant Design',
text: '在中台产品的研发过程中,会出现不同的设计规范和实现方式,但其中往往存在很多类似的页面和组件,这些类似的,在中台产品的研发过程中,会出现不同的设计规范和实现方式,但其中往往存在很多类似的页面和组件,这些类似的',
img: 'https://gw.alipayobjects.com/zos/rmsportal/dURIMkkrRFpPgTuzkwnB.png'
}, {
title: 'Ant Design Pro',
text: '在中台产品的研发过程中,会出现不同的设计规范和实现方式,但其中往往存在很多类似的页面和组件,这些类似的,在中台产品的研发过程中,会出现不同的设计规范和实现方式,但其中往往存在很多类似的页面和组件,这些类似的',
img: 'https://gw.alipayobjects.com/zos/rmsportal/sfjbOqnsXXJgNCjCzDBL.png'
}, {
title: 'Bootstrap',
text: '在中台产品的研发过程中,会出现不同的设计规范和实现方式,但其中往往存在很多类似的页面和组件,这些类似的,在中台产品的研发过程中,会出现不同的设计规范和实现方式,但其中往往存在很多类似的页面和组件,这些类似的',
img: 'https://gw.alipayobjects.com/zos/rmsportal/siCrBXXhmvTQGWPNLBow.png'
}, {
title: 'React',
text: '在中台产品的研发过程中,会出现不同的设计规范和实现方式,但其中往往存在很多类似的页面和组件,这些类似的,在中台产品的研发过程中,会出现不同的设计规范和实现方式,但其中往往存在很多类似的页面和组件,这些类似的',
img: 'https://gw.alipayobjects.com/zos/rmsportal/kZzEzemZyKLKFsojXItE.png'
}, {
title: 'Vue',
text: '在中台产品的研发过程中,会出现不同的设计规范和实现方式,但其中往往存在很多类似的页面和组件,这些类似的,在中台产品的研发过程中,会出现不同的设计规范和实现方式,但其中往往存在很多类似的页面和组件,这些类似的',
img: 'https://gw.alipayobjects.com/zos/rmsportal/ComBAopevLwENQdKWiIn.png'
}, {
title: 'Webpack',
text: '在中台产品的研发过程中,会出现不同的设计规范和实现方式,但其中往往存在很多类似的页面和组件,这些类似的,在中台产品的研发过程中,会出现不同的设计规范和实现方式,但其中往往存在很多类似的页面和组件,这些类似的',
img: 'https://gw.alipayobjects.com/zos/rmsportal/nxkuOJlFJuAUhzlMTCEe.png'
}]
}
},
methods: {
tip(row, index) {
this.$message.success('查看控制台')
console.log(row, index)
}
}
}
</script>


# Card 卡片



## 普通用法
:::demo
```html
<avue-card :option="option" :data="data" @row-click="tip" @row-add="tip">
<template slot="menu" slot-scope="scope">
<span @click.stop="tip(scope.row,scope.index)">操作1</span>
<span @click.stop="tip(scope.row,scope.index)">操作2</span>
</template>
</avue-card>
<script>
export default {
data() {
return {
option: {
// addBtn:false,
props: {
img: 'img',
title: 'title',
info: 'text',
}
},
data: [{
title: 'Alipay',
text: '在中台产品的研发过程中,会出现不同的设计规范和实现方式,但其中往往存在很多类似的页面和组件,这些类似的,在中台产品的研发过程中,会出现不同的设计规范和实现方式,但其中往往存在很多类似的页面和组件,这些类似的',
img: 'https://gw.alipayobjects.com/zos/rmsportal/WdGqmHpayyMjiEhcKoVE.png'
}, {
title: 'Angular',
text: '在中台产品的研发过程中,会出现不同的设计规范和实现方式,但其中往往存在很多类似的页面和组件,这些类似的,在中台产品的研发过程中,会出现不同的设计规范和实现方式,但其中往往存在很多类似的页面和组件,这些类似的',
img: 'https://gw.alipayobjects.com/zos/rmsportal/zOsKZmFRdUtvpqCImOVY.png'
}, {
title: 'Ant Design',
text: '在中台产品的研发过程中,会出现不同的设计规范和实现方式,但其中往往存在很多类似的页面和组件,这些类似的,在中台产品的研发过程中,会出现不同的设计规范和实现方式,但其中往往存在很多类似的页面和组件,这些类似的',
img: 'https://gw.alipayobjects.com/zos/rmsportal/dURIMkkrRFpPgTuzkwnB.png'
}, {
title: 'Ant Design Pro',
text: '在中台产品的研发过程中,会出现不同的设计规范和实现方式,但其中往往存在很多类似的页面和组件,这些类似的,在中台产品的研发过程中,会出现不同的设计规范和实现方式,但其中往往存在很多类似的页面和组件,这些类似的',
img: 'https://gw.alipayobjects.com/zos/rmsportal/sfjbOqnsXXJgNCjCzDBL.png'
}, {
title: 'Bootstrap',
text: '在中台产品的研发过程中,会出现不同的设计规范和实现方式,但其中往往存在很多类似的页面和组件,这些类似的,在中台产品的研发过程中,会出现不同的设计规范和实现方式,但其中往往存在很多类似的页面和组件,这些类似的',
img: 'https://gw.alipayobjects.com/zos/rmsportal/siCrBXXhmvTQGWPNLBow.png'
}, {
title: 'React',
text: '在中台产品的研发过程中,会出现不同的设计规范和实现方式,但其中往往存在很多类似的页面和组件,这些类似的,在中台产品的研发过程中,会出现不同的设计规范和实现方式,但其中往往存在很多类似的页面和组件,这些类似的',
img: 'https://gw.alipayobjects.com/zos/rmsportal/kZzEzemZyKLKFsojXItE.png'
}, {
title: 'Vue',
text: '在中台产品的研发过程中,会出现不同的设计规范和实现方式,但其中往往存在很多类似的页面和组件,这些类似的,在中台产品的研发过程中,会出现不同的设计规范和实现方式,但其中往往存在很多类似的页面和组件,这些类似的',
img: 'https://gw.alipayobjects.com/zos/rmsportal/ComBAopevLwENQdKWiIn.png'
}, {
title: 'Webpack',
text: '在中台产品的研发过程中,会出现不同的设计规范和实现方式,但其中往往存在很多类似的页面和组件,这些类似的,在中台产品的研发过程中,会出现不同的设计规范和实现方式,但其中往往存在很多类似的页面和组件,这些类似的',
img: 'https://gw.alipayobjects.com/zos/rmsportal/nxkuOJlFJuAUhzlMTCEe.png'
}]
}
},
methods: {
tip(row, index) {
this.$message.success('查看控制台')
console.log(row, index)
}
}
}
</script>

```
:::


## Variables

|参数|说明|类型|可选值|默认值|
|-------------|-------------------------------------------------------------|--------|------|------|
|option|组件配置属性,详情见下面Option属性|Object|||
|data|显示的数据|Array|||



## Option Attributes

|参数|说明|类型|可选值|默认值|
|----------------|------------------------------------------------------------------------------------------------------------------|---------------|---------------------------|--------|
|addBtn|添加按钮|Boolean|true/false|true|
|span|表单栅列|Number|-|8|
|gutter|项之间的间|Number|-|20|


## Props Attributes

|参数|说明|类型|可选值|默认值|
|--------|------------------|------|------|------|
|title|列表的主标题|String||title|
|img|列表的头像|String||img|
|info|列表的副标题|String||info|


## Events

|事件名|说明|参数|
|------------------|---------------------------|-------------------------|
|row-add|新增数据后点击确定触发该事件|-|
|row-click|当某一行被点击时会触发该事件|row,index|

## Scoped Slot

|name|说明|
|---|-----|
|menu|操作栏目自定义参数为{row,index}|


13 changes: 13 additions & 0 deletions examples/docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
## 更新日志
### 1.6.1
#### 2019-3-31

- 移除mockjs的内置引用,采用导入式引用[demo](/#/component/form)
- 移除form组件中大量的多余代码,减少包的体积
- 移除type为phone时组件
- 调整icon-select组件的样式显示[demo](/#/component/form-icon-select)
- 修复tree组件props的children属性不起作用[#IUSM9](https://gitee.com/smallweigit/avue/issues/IUSM9)
- 修复表格中的datetime与表单中的datetime并不兼容[#IS233](https://gitee.com/smallweigit/avue/issues/IS233)
- 组件cascader新增showAllLevels和changeOnSelect属性
- 新增crud组件select和select-all事件
- 新增卡片展示card组件[demo](/#/component/card)

### 1.6.1-alpha.1
#### 2019-3-6

Expand Down
3 changes: 1 addition & 2 deletions examples/docs/crud-doc.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,6 @@
| input | 输入框 |
| select | 选择框 |
| radio | 单选框 |
| phone | 手机号输入框 |
| checkbox | 多选框 |
| textarea | 文本框 |
| cascader | 级联框 |
Expand Down Expand Up @@ -166,7 +165,7 @@
| span | 表单栅列 | Number | - | 12 |
| filterable | 是否可以输入搜索。 | Boolean | true / false | false |
| readonly | 只读 | Boolean | true / false | false |
| type | 类型 | String | input / select / radio / checkbox / textarea / cascader / date / time / datetime / daterange / timerange / datetimerange / week / month / year / dates / password / switch / tree / phone | input | - |
| type | 类型 | String | input / select / radio / checkbox / textarea / cascader / date / time / datetime / daterange / timerange / datetimerange / week / month / year / dates / password / switch / tree | input | - |
| disabled | 全部是否禁止 | Boolean | true / false | false |
| addDisabled | 表单新增时是否禁止 | Boolean | true / false | false |
| editDisabled | 表单编辑时是否禁止 | Boolean | true / false | false |
Expand Down
4 changes: 4 additions & 0 deletions examples/docs/docs.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
## 脚手架文档
- avue 功能已经**完全开源**, 为保证文档实时更新及其多终端阅读,已托管[看云](https://www.kancloud.cn/smallwei/avue)
- 关于文档价格,**全部章节 59.99元**,关键部署章节、Q&A 等已免费提供给大家
- 关于文档收费问题,**即使没有此文档,我相信大多数同学都能运行起来avue-cli**,文档中书写花费了大量时间,也是对我们团队的支持。
3 changes: 1 addition & 2 deletions examples/docs/form-doc.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@
| input | 输入框 |
| select | 选择框 |
| radio | 单选框 |
| phone | 手机号输入框 |
| checkbox | 多选框 |
| textarea | 文本框 |
| cascader | 级联框 |
Expand Down Expand Up @@ -95,7 +94,7 @@
| placeholder | 辅助语 | String || 请选择/请输入 + label |
| span | 表单栅列 | Number | - | 12 |
| readonly | 只读 | Boolean | true / false | false |
| type | 类型 | String | input / select / radio / checkbox / textarea / cascader / date / time / datetime / daterange / timerange / datetimerange / week / month / year / dates / ueditor / password / switch / tree / phone | input | - |
| type | 类型 | String | input / select / radio / checkbox / textarea / cascader / date / time / datetime / daterange / timerange / datetimerange / week / month / year / dates / ueditor / password / switch / tree | input | - |
| disabled | 全部是否禁止 | Boolean | true / false | false |
| visdiplay | 全部是否可见 | Boolean | true / false | true |
| multiple | 多选(当 type 为 select / tree 时) | Boolean | true / false | false |
Expand Down
Loading

0 comments on commit 02c8cb3

Please sign in to comment.