Merge branch 'zb-drawer' of https://github.com/zouzhibin/zb-table
Conflicts: pages/table/all.js pages/table/index.vue unpackage/dist/dev/.sourcemap/mp-weixin/common/runtime.js.map unpackage/dist/dev/.sourcemap/mp-weixin/common/vendor.js.map unpackage/dist/dev/.sourcemap/mp-weixin/pages/index/index.js.map unpackage/dist/dev/mp-alipay/common/runtime.js unpackage/dist/dev/mp-alipay/common/vendor.js unpackage/dist/dev/mp-alipay/pages/index/index.js unpackage/dist/dev/mp-alipay/uni_modules/zb-table/components/zb-table/zb-table.json unpackage/dist/dev/mp-weixin/common/runtime.js unpackage/dist/dev/mp-weixin/common/vendor.js unpackage/dist/dev/mp-weixin/uni_modules/zb-table/components/zb-table/zb-table.json
This commit is contained in:
26
pages.json
26
pages.json
@@ -5,12 +5,6 @@
|
||||
"style": {
|
||||
"navigationBarTitleText": "uni-app"
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "pages/table/index",
|
||||
"style": {
|
||||
"navigationBarTitleText": "table"
|
||||
}
|
||||
}
|
||||
],
|
||||
"globalStyle": {
|
||||
@@ -18,25 +12,5 @@
|
||||
"navigationBarTitleText": "uni-app",
|
||||
"navigationBarBackgroundColor": "#F8F8F8",
|
||||
"backgroundColor": "#F8F8F8"
|
||||
},
|
||||
"tabBar": {
|
||||
"color": "#7A7E83",
|
||||
"selectedColor": "#007AFF",
|
||||
"borderStyle": "black",
|
||||
"backgroundColor": "#F8F8F8",
|
||||
"list": [
|
||||
{
|
||||
"pagePath": "pages/index/index",
|
||||
"iconPath": "static/home.png",
|
||||
"selectedIconPath": "static/home-active.png",
|
||||
"text": "主页"
|
||||
},
|
||||
{
|
||||
"pagePath": "pages/table/index",
|
||||
"iconPath": "static/component.png",
|
||||
"selectedIconPath": "static/componentHL.png",
|
||||
"text": "表格组件"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
|
||||
|
||||
## qq群 731805264
|
||||
## -- github 永远保持最新,有啥想法的可以提PR,共同开发 [地址](https://github.com/zouzhibin/vue-admin-perfect)
|
||||
## -- github 永远保持最新,有啥想法的可以提PR,共同开发 [地址](https://github.com/zouzhibin/zb-table.git)
|
||||
|
||||
## drawer属性
|
||||
| 参数 | 说明 | 类型 | 可选值 | 默认值 |是否必须|
|
||||
@@ -15,3 +15,14 @@
|
||||
| show-close | 是否显示关闭按钮 | boolean | -- | true|否|
|
||||
| title | Drawer 的标题,也可通过具名 slot (见下表)传入 | string | -- | --|否|
|
||||
| visible | 是否显示 Drawer,支持 .sync 修饰符 | boolean | -- | false|否|
|
||||
|
||||
## 示例
|
||||
```
|
||||
<zb-drawer
|
||||
:mode="mode"
|
||||
width="80%"
|
||||
:visible.sync="isShow1" >
|
||||
<view class="top-content"></view>
|
||||
</zb-drawer>
|
||||
```
|
||||
|
||||
|
||||
22
unpackage/dist/dev/mp-alipay/app.json
vendored
22
unpackage/dist/dev/mp-alipay/app.json
vendored
@@ -1,7 +1,6 @@
|
||||
{
|
||||
"pages": [
|
||||
"pages/index/index",
|
||||
"pages/table/index"
|
||||
"pages/index/index"
|
||||
],
|
||||
"subPackages": [],
|
||||
"window": {
|
||||
@@ -9,24 +8,5 @@
|
||||
"titleBarColor": "#F8F8F8",
|
||||
"backgroundColor": "#F8F8F8"
|
||||
},
|
||||
"tabBar": {
|
||||
"textColor": "#7A7E83",
|
||||
"selectedColor": "#007AFF",
|
||||
"backgroundColor": "#F8F8F8",
|
||||
"items": [
|
||||
{
|
||||
"pagePath": "pages/index/index",
|
||||
"name": "主页",
|
||||
"icon": "static/home.png",
|
||||
"activeIcon": "static/home-active.png"
|
||||
},
|
||||
{
|
||||
"pagePath": "pages/table/index",
|
||||
"name": "表格组件",
|
||||
"icon": "static/component.png",
|
||||
"activeIcon": "static/componentHL.png"
|
||||
}
|
||||
]
|
||||
},
|
||||
"usingComponents": {}
|
||||
}
|
||||
@@ -1,6 +1,4 @@
|
||||
{
|
||||
"defaultTitle": "uni-app",
|
||||
"usingComponents": {
|
||||
"zb-drawer": "/uni_modules/zb-drawer/components/zb-drawer/zb-drawer"
|
||||
}
|
||||
"usingComponents": {}
|
||||
}
|
||||
23
unpackage/dist/dev/mp-weixin/app.json
vendored
23
unpackage/dist/dev/mp-weixin/app.json
vendored
@@ -1,7 +1,6 @@
|
||||
{
|
||||
"pages": [
|
||||
"pages/index/index",
|
||||
"pages/table/index"
|
||||
"pages/index/index"
|
||||
],
|
||||
"subPackages": [],
|
||||
"window": {
|
||||
@@ -10,25 +9,5 @@
|
||||
"navigationBarBackgroundColor": "#F8F8F8",
|
||||
"backgroundColor": "#F8F8F8"
|
||||
},
|
||||
"tabBar": {
|
||||
"color": "#7A7E83",
|
||||
"selectedColor": "#007AFF",
|
||||
"borderStyle": "black",
|
||||
"backgroundColor": "#F8F8F8",
|
||||
"list": [
|
||||
{
|
||||
"pagePath": "pages/index/index",
|
||||
"iconPath": "static/home.png",
|
||||
"selectedIconPath": "static/home-active.png",
|
||||
"text": "主页"
|
||||
},
|
||||
{
|
||||
"pagePath": "pages/table/index",
|
||||
"iconPath": "static/component.png",
|
||||
"selectedIconPath": "static/componentHL.png",
|
||||
"text": "表格组件"
|
||||
}
|
||||
]
|
||||
},
|
||||
"usingComponents": {}
|
||||
}
|
||||
Reference in New Issue
Block a user