You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
778 B
35 lines
778 B
7 years ago
|
# relation_view
|
||
|
|
||
7 years ago
|
## 关联视图
|
||
|
|
||
|
{% 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 %}
|
||
|
|
||
|
##参数
|
||
|
|
||
|
| 参数 | 说明 | 类型 | 可选值 | 默认值
|
||
|
| :------ |:------------- | :-----| :----|:----|
|
||
|
|
||
7 years ago
|
|
||
|
|
||
|
---
|