feat(): 增加规则引擎存储位置
parent
44e2f68813
commit
073b8e877a
|
@ -75,7 +75,7 @@ export default {
|
||||||
|
|
||||||
.CodeMirror {
|
.CodeMirror {
|
||||||
font-family: 'JetBrainsMono-Medium', monospace;
|
font-family: 'JetBrainsMono-Medium', monospace;
|
||||||
height: 500px;
|
height: 600px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.CodeMirror-lines {
|
.CodeMirror-lines {
|
||||||
|
|
|
@ -24,6 +24,30 @@
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
|
<el-row>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="win源码目录">
|
||||||
|
<el-input v-model="ruleEngineCommonConfig.sourceWin" disabled></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="win编译目录">
|
||||||
|
<el-input v-model="ruleEngineCommonConfig.targetWin" disabled></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<el-row>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="liunx源码目录">
|
||||||
|
<el-input v-model="ruleEngineCommonConfig.sourceLiunx" disabled></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="liunx编译目录">
|
||||||
|
<el-input v-model="ruleEngineCommonConfig.targetLiunx" disabled></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
</el-form>
|
</el-form>
|
||||||
</el-card>
|
</el-card>
|
||||||
<el-col>
|
<el-col>
|
||||||
|
@ -55,6 +79,10 @@ export default {
|
||||||
packageName: "com.muyu.rule.engine",
|
packageName: "com.muyu.rule.engine",
|
||||||
customName: "custom",
|
customName: "custom",
|
||||||
templateName: "template",
|
templateName: "template",
|
||||||
|
sourceWin: "D:\\config\\engine\\source",
|
||||||
|
targetWin: "D:\\config\\engine\\target",
|
||||||
|
sourceLiunx: "/home/config/source",
|
||||||
|
targetLiunx: "/home/config/target",
|
||||||
},
|
},
|
||||||
scopeList: [
|
scopeList: [
|
||||||
{ type: "任务", value: "taskContext", "code":
|
{ type: "任务", value: "taskContext", "code":
|
||||||
|
|
Loading…
Reference in New Issue