test(): 小测试
parent
5a70a36003
commit
64e1c4e6ac
|
@ -22,7 +22,11 @@
|
||||||
<div slot="header" class="clearfix">
|
<div slot="header" class="clearfix">
|
||||||
<span>作用域</span>
|
<span>作用域</span>
|
||||||
</div>
|
</div>
|
||||||
|
<el-tabs type="border-card">
|
||||||
|
<el-tab-pane v-for="scope in scopeList" :label="scope.type" :name="scope.value">
|
||||||
|
{{scope.type}}
|
||||||
|
</el-tab-pane>
|
||||||
|
</el-tabs>
|
||||||
</el-card>
|
</el-card>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-col>
|
</el-col>
|
||||||
|
@ -38,7 +42,13 @@ export default {
|
||||||
code: "",
|
code: "",
|
||||||
ruleEngineCommonConfig: {
|
ruleEngineCommonConfig: {
|
||||||
packageName: "com.muyu.rule.engine",
|
packageName: "com.muyu.rule.engine",
|
||||||
}
|
},
|
||||||
|
scopeList: [
|
||||||
|
{ type: "任务1", value: "taskContext", },
|
||||||
|
{ type: "资产集", value: "recordContext", },
|
||||||
|
{ type: "资产记录", value: "dataSetContext", },
|
||||||
|
{ type: "资产模型", value: "dataModelContext", }
|
||||||
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
|
|
Loading…
Reference in New Issue