Compare commits

...

6 Commits

Author SHA1 Message Date
46c72a9a68 update readme 2019-08-27 18:40:06 +08:00
1c33d4d7b8 update readme 2019-08-27 18:38:18 +08:00
0d59ebcc04 update version to v 2.3.9 2019-08-27 18:34:02 +08:00
c47f6133f4 update readme and add demo img 2019-08-27 18:33:14 +08:00
f8870f763a update change log for v 2.3.9 2019-08-27 18:27:54 +08:00
9f00506e73 Compatibility enhancement 2019-08-27 11:30:28 +08:00
8 changed files with 38 additions and 8 deletions

View File

@ -1,3 +1,9 @@
# 2.3.9-alpha (2019-08-27)
### Perfect
- **percentPond:** Compatibility enhancement.
# 2.3.8-alpha (2019-08-27)
### Bug Fixes

View File

@ -1,7 +1,6 @@
[ENGLISH](./README_EN.md)
<h1 align="center">DataV</h1>
<p align="center">
<a href="https://github.com/jiaming743/datav/blob/master/LICENSE">
<img src="https://img.shields.io/github/license/jiaming743/datav.svg" alt="LICENSE" />
@ -37,4 +36,17 @@ import { borderBox1 } from '@jiaminghi/data-view'
Vue.use(borderBox1)
```
详细文档及示例请移步[HomePage](http://datav.jiaminghi.com).
详细文档及示例请移步[HomePage](http://datav.jiaminghi.com).
### Demo
Demo页面使用了全屏组件请F11全屏后查看。
* [Construction Data](http://datav.jiaminghi.com/demo/construction-data/index.html)
![construction-data](./demoImg/construction-data.jpg)
* [Manage-Desk](http://datav.jiaminghi.com/demo/manage-desk/index.html)
![manage-desk](./demoImg/manage-desk.jpg)

View File

@ -37,4 +37,16 @@ import { borderBox1 } from '@jiaminghi/data-view'
Vue.use(borderBox1)
```
Detailed documents and examples can be viewed on the [HomePage](http://datav.jiaminghi.com).
Detailed documents and examples can be viewed on the [HomePage](http://datav.jiaminghi.com).
### Demo
The Demo page uses the full-screen component, please view it after F11 full screen.
* [施工养护综合数据](http://datav.jiaminghi.com/demo/construction-data/index.html)
![construction-data](./demoImg/construction-data.jpg)
* [机电运维管理台](http://datav.jiaminghi.com/demo/manage-desk/index.html)
![manage-desk](./demoImg/manage-desk.jpg)

Binary file not shown.

After

Width:  |  Height:  |  Size: 144 KiB

BIN
demoImg/manage-desk.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 151 KiB

View File

@ -22,8 +22,8 @@
fill="transparent"
:stroke-width="mergedConfig ? mergedConfig.borderWidth : '0'"
:stroke="`url(#${gradientId1})`"
:width="rectWidth"
:height="rectHeight"
:width="rectWidth > 0 ? rectWidth : 0"
:height="rectHeight > 0 ? rectHeight : 0"
/>
<polyline
:stroke-width="polylineWidth"

View File

@ -1,6 +1,6 @@
{
"name": "@jiaminghi/data-view",
"version": "2.3.8",
"version": "2.3.9",
"author": "JiaMing <743192023@qq.com>",
"description": "Vue Large screen data display component library",
"main": "lib/index.js",

View File

@ -22,8 +22,8 @@
fill="transparent"
:stroke-width="mergedConfig ? mergedConfig.borderWidth : '0'"
:stroke="`url(#${gradientId1})`"
:width="rectWidth"
:height="rectHeight"
:width="rectWidth > 0 ? rectWidth : 0"
:height="rectHeight > 0 ? rectHeight : 0"
/>
<polyline
:stroke-width="polylineWidth"