forked from fanruan/fineui
iapyang
7 years ago
18 changed files with 261 additions and 137 deletions
@ -1,8 +1,8 @@ |
|||||||
.bi-page-table-cell { |
.bi-page-table-cell { |
||||||
-webkit-user-select: initial; |
-webkit-user-select: text; |
||||||
-khtml-user-select: initial; |
-khtml-user-select: text; |
||||||
-moz-user-select: initial; |
-moz-user-select: text; |
||||||
-ms-user-select: initial; |
-ms-user-select: text; |
||||||
-o-user-select: initial; |
-o-user-select: text; |
||||||
user-select: initial; |
user-select: text; |
||||||
} |
} |
||||||
|
@ -1,5 +1,5 @@ |
|||||||
@import "../../bibase"; |
@import "../../bibase"; |
||||||
|
|
||||||
.bi-page-table-cell { |
.bi-page-table-cell { |
||||||
.user-select(initial); |
.user-select-enable(); |
||||||
} |
} |
@ -1,2 +1,43 @@ |
|||||||
# custom_date_time |
# custom_date_time |
||||||
|
|
||||||
|
## 带方向的路径选择 |
||||||
|
|
||||||
|
{% method %} |
||||||
|
[source](https://jsfiddle.net/fineui/04h6gsps/) |
||||||
|
|
||||||
|
{% common %} |
||||||
|
```javascript |
||||||
|
BI.createWidget({ |
||||||
|
type: "bi.direction_path_chooser", |
||||||
|
element: "#wrapper", |
||||||
|
items: [[{ |
||||||
|
"region": "合同信息", |
||||||
|
"text": "客户ID", |
||||||
|
"value": "defa1f7ba8b2684a客户ID" |
||||||
|
}, { |
||||||
|
"region": "客户信息", |
||||||
|
"text": "主键", |
||||||
|
"value": "1f4711c201ef1842", |
||||||
|
"direction": -1 |
||||||
|
}, { |
||||||
|
"region": "合同的回款信息", |
||||||
|
"text": "合同ID", |
||||||
|
"value": "e351e9f1d8147947合同ID", |
||||||
|
"direction": -1 |
||||||
|
}]] |
||||||
|
}); |
||||||
|
``` |
||||||
|
|
||||||
|
{% endmethod %} |
||||||
|
|
||||||
|
##参数 |
||||||
|
|
||||||
|
| 参数 | 说明 | 类型 | 可选值 | 默认值 |
||||||
|
| :------ |:------------- | :-----| :----|:----| |
||||||
|
| items |二维数组,每个元素代表一条路径,相较于[path_chooser](path_chooser.md)多一个属性direction来指定方向 | array| | | |
||||||
|
--- --- |
||||||
|
type: "bi.year_month_combo", |
||||||
|
ref: function (_ref) { |
||||||
|
self.widget = _ref; |
||||||
|
}, |
||||||
|
width: 300 |
@ -1,2 +1,45 @@ |
|||||||
# file_manager |
# file_manager |
||||||
|
|
||||||
|
## 文件管理器 |
||||||
|
|
||||||
|
{% method %} |
||||||
|
[source](https://jsfiddle.net/fineui/2g4k0kxh/) |
||||||
|
|
||||||
|
{% common %} |
||||||
|
```javascript |
||||||
|
BI.createWidget({ |
||||||
|
type: "bi.file_manager", |
||||||
|
items: [{ |
||||||
|
id: "1", |
||||||
|
value: "1", |
||||||
|
text: "根目录" |
||||||
|
}, { |
||||||
|
id: "11", |
||||||
|
pId: "1", |
||||||
|
value: "11", |
||||||
|
text: "第一级子目录1" |
||||||
|
}, { |
||||||
|
id: "12", |
||||||
|
pId: "1", |
||||||
|
value: "12", |
||||||
|
text: "第一级子目录2" |
||||||
|
}] |
||||||
|
}) |
||||||
|
``` |
||||||
|
|
||||||
|
{% endmethod %} |
||||||
|
|
||||||
|
##参数 |
||||||
|
|
||||||
|
| 参数 | 说明 | 类型 | 可选值 | 默认值 |
||||||
|
| :------ |:------------- | :-----| :----|:----| |
||||||
|
|
||||||
|
--- --- |
||||||
|
|
||||||
|
##方法 |
||||||
|
|
||||||
|
| 方法 | 说明 | |
||||||
|
| :------ |:------------- | |
||||||
|
| getSelectedValue() | 获取当前选中项的value值 | |
||||||
|
| getSelectedId | 获取当前选中项的id属性 | |
||||||
|
--- --- |
@ -1,2 +1,38 @@ |
|||||||
# direction_path_chooser |
# direction_path_chooser |
||||||
|
|
||||||
|
## 带方向的路径选择 |
||||||
|
|
||||||
|
{% method %} |
||||||
|
[source](https://jsfiddle.net/fineui/04h6gsps/) |
||||||
|
|
||||||
|
{% common %} |
||||||
|
```javascript |
||||||
|
BI.createWidget({ |
||||||
|
type: "bi.direction_path_chooser", |
||||||
|
element: "#wrapper", |
||||||
|
items: [[{ |
||||||
|
"region": "合同信息", |
||||||
|
"text": "客户ID", |
||||||
|
"value": "defa1f7ba8b2684a客户ID" |
||||||
|
}, { |
||||||
|
"region": "客户信息", |
||||||
|
"text": "主键", |
||||||
|
"value": "1f4711c201ef1842", |
||||||
|
"direction": -1 |
||||||
|
}, { |
||||||
|
"region": "合同的回款信息", |
||||||
|
"text": "合同ID", |
||||||
|
"value": "e351e9f1d8147947合同ID", |
||||||
|
"direction": -1 |
||||||
|
}]] |
||||||
|
}); |
||||||
|
``` |
||||||
|
|
||||||
|
{% endmethod %} |
||||||
|
|
||||||
|
##参数 |
||||||
|
|
||||||
|
| 参数 | 说明 | 类型 | 可选值 | 默认值 |
||||||
|
| :------ |:------------- | :-----| :----|:----| |
||||||
|
| items |二维数组,每个元素代表一条路径,相较于[path_chooser](path_chooser.md)多一个属性direction来指定方向 | array| | | |
||||||
|
--- --- |
@ -1,2 +1,39 @@ |
|||||||
# path_chooser |
# path_chooser |
||||||
|
|
||||||
|
## 路径选择 |
||||||
|
|
||||||
|
{% method %} |
||||||
|
[source](https://jsfiddle.net/fineui/5519b4xo/) |
||||||
|
|
||||||
|
{% common %} |
||||||
|
```javascript |
||||||
|
BI.createWidget({ |
||||||
|
type: "bi.path_chooser", |
||||||
|
element: "#wrapper", |
||||||
|
items: [[{ |
||||||
|
"region": "8c4460bc3605685e", |
||||||
|
"regionText": "采购订单XXX", |
||||||
|
"text": "ID", |
||||||
|
"value": "1" |
||||||
|
}, { |
||||||
|
"region": "0fbd0dc648f41e97", |
||||||
|
"regionText": "采购订单", |
||||||
|
"text": "学号", |
||||||
|
"value": "3" |
||||||
|
}, { |
||||||
|
"region": "c6d72d6c7e19a667", |
||||||
|
"regionText": "供应商基本信息", |
||||||
|
"text": "ID", |
||||||
|
"value": "5" |
||||||
|
}]] |
||||||
|
}); |
||||||
|
``` |
||||||
|
|
||||||
|
{% endmethod %} |
||||||
|
|
||||||
|
##参数 |
||||||
|
|
||||||
|
| 参数 | 说明 | 类型 | 可选值 | 默认值 |
||||||
|
| :------ |:------------- | :-----| :----|:----| |
||||||
|
| items |二维数组,每个元素代表一条路径 | array| | | |
||||||
|
--- --- |
@ -1,2 +1,33 @@ |
|||||||
# relation_view |
# relation_view |
||||||
|
|
||||||
|
## 关联视图 |
||||||
|
|
||||||
|
{% method %} |
||||||
|
[source](https://jsfiddle.net/fineui/k19mvL7q/) |
||||||
|
|
||||||
|
{% common %} |
||||||
|
```javascript |
||||||
|
BI.createWidget({ |
||||||
|
type: "bi.relation_view", |
||||||
|
items: [{ |
||||||
|
primary: { |
||||||
|
region: "B", regionText: "比", |
||||||
|
title: "b2...", |
||||||
|
value: "b2", text: "b2字段" |
||||||
|
}, |
||||||
|
foreign: {region: "C", value: "c1", text: "c1字段"} |
||||||
|
}, { |
||||||
|
primary: {region: "A", value: "a1", text: "a1字段"}, |
||||||
|
foreign: {region: "C", value: "c2", text: "c2字段"} |
||||||
|
}] |
||||||
|
}); |
||||||
|
``` |
||||||
|
|
||||||
|
{% endmethod %} |
||||||
|
|
||||||
|
##参数 |
||||||
|
|
||||||
|
| 参数 | 说明 | 类型 | 可选值 | 默认值 |
||||||
|
| :------ |:------------- | :-----| :----|:----| |
||||||
|
|
||||||
|
--- --- |
Loading…
Reference in new issue