fix:(规则引擎版本)
parent
57f894455d
commit
654025f3c3
|
@ -122,14 +122,14 @@
|
||||||
<!-- @click="testMethod(scope.row)"-->
|
<!-- @click="testMethod(scope.row)"-->
|
||||||
<!-- >调用测试</el-button>-->
|
<!-- >调用测试</el-button>-->
|
||||||
<el-button type="primary" @click="testMethod(scope.row)">调用测试</el-button>
|
<el-button type="primary" @click="testMethod(scope.row)">调用测试</el-button>
|
||||||
<!-- <el-button-->
|
<el-button
|
||||||
<!-- size="mini"-->
|
size="mini"
|
||||||
<!-- type="text"-->
|
type="text"
|
||||||
<!-- icon="el-icon-takeaway-box"-->
|
icon="el-icon-takeaway-box"
|
||||||
<!-- @click="toEngineVersion(scope.row)"-->
|
@click="toEngineVersion(scope.row)"
|
||||||
<!-- v-hasPermi="['system:engine:edit']"-->
|
v-hasPermi="['system:engine:edit']"
|
||||||
<!-- >规则维护</el-button>-->
|
>规则维护</el-button>
|
||||||
<el-button type="primary" @click="toEngineVersion(scope.row)">规则维护</el-button>
|
<!-- <el-button type="primary" @click="toEngineVersion(scope.row)">规则维护</el-button>-->
|
||||||
<el-button
|
<el-button
|
||||||
size="mini"
|
size="mini"
|
||||||
type="text"
|
type="text"
|
||||||
|
@ -243,18 +243,18 @@
|
||||||
|
|
||||||
<!--dummy dialog-->
|
<!--dummy dialog-->
|
||||||
|
|
||||||
<el-dialog title="提示" :visible.sync="dialogVisible" width="30%" :before-close="handleClose">
|
<!-- <el-dialog title="提示" :visible.sync="dialogVisible" width="30%" :before-close="handleClose">-->
|
||||||
<el-card style="height: 90%">
|
<!-- <el-card style="height: 90%">-->
|
||||||
<div slot="header" class="clearfix">
|
<!-- <div slot="header" class="clearfix">-->
|
||||||
<span>{{ruleEngineInfo.name}}</span>
|
<!-- <span>{{ruleEngineInfo.name}}</span>-->
|
||||||
<el-button @click="updRuleEngine(ruleEngineInfo)" style="float: right;" type="primary">保存</el-button>
|
<!-- <el-button @click="updRuleEngine(ruleEngineInfo)" style="float: right;" type="primary">保存</el-button>-->
|
||||||
</div>
|
<!-- </div>-->
|
||||||
<div class="text item">
|
<!-- <div class="text item">-->
|
||||||
<encoding ref="encoding" style="height: 800px" :modification="modification" :value="ruleEngineInfo.codeText"></encoding>
|
<!-- <encoding ref="encoding" style="height: 800px" :modification="modification" :value="ruleEngineInfo.codeText"></encoding>-->
|
||||||
</div>
|
<!-- </div>-->
|
||||||
</el-card>
|
<!-- </el-card>-->
|
||||||
|
|
||||||
</el-dialog>
|
<!-- </el-dialog>-->
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
@ -350,15 +350,18 @@ export default {
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
|
||||||
updRuleEngine(ruleEngineInfo){
|
toEngineVersion(row){
|
||||||
|
this.$router.push({ path: `/ruleEngine/engineVersion/${row.id}`});
|
||||||
this.modification = parseInt(ruleEngineInfo.id)
|
|
||||||
setTimeout(() => {
|
|
||||||
this.modification = null
|
|
||||||
this.dialogVisible = false
|
|
||||||
},50)
|
|
||||||
},
|
},
|
||||||
|
|
||||||
|
// updRuleEngine(ruleEngineInfo){
|
||||||
|
// this.modification = parseInt(ruleEngineInfo.id)
|
||||||
|
// setTimeout(() => {
|
||||||
|
// this.modification = null
|
||||||
|
// this.dialogVisible = false
|
||||||
|
// },50)
|
||||||
|
// },
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
handleClose(done) {
|
handleClose(done) {
|
||||||
|
@ -399,14 +402,14 @@ export default {
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
toEngineVersion(row){
|
// toEngineVersion(row){
|
||||||
getMaintenance(row.id).then(res => {
|
// getMaintenance(row.id).then(res => {
|
||||||
this.ruleEngineInfo = res.data
|
// this.ruleEngineInfo = res.data
|
||||||
console.log(this.ruleEngineInfo)
|
// console.log(this.ruleEngineInfo)
|
||||||
})
|
// })
|
||||||
this.dialogVisible=true
|
// this.dialogVisible=true
|
||||||
|
//
|
||||||
},
|
// },
|
||||||
/** 查询规则引擎列表 */
|
/** 查询规则引擎列表 */
|
||||||
getList() {
|
getList() {
|
||||||
this.loading = true;
|
this.loading = true;
|
||||||
|
|
|
@ -1,67 +1,656 @@
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div class="app-container">
|
||||||
<el-card style="height: 90%">
|
<el-descriptions class="margin-top" :title="ruleEngineInfo.name" :column="3" border>
|
||||||
|
<template slot="extra">
|
||||||
|
<el-dropdown split-button type="primary" @command="handleClick">
|
||||||
|
更多操作
|
||||||
|
<el-dropdown-menu slot="dropdown">
|
||||||
|
<el-dropdown-item command="add">版本添加</el-dropdown-item>
|
||||||
|
<el-dropdown-item command="activate">{{(ruleEngineInfo.isActivate === 'no-activate' ? "激活": "禁用")+'引擎'}}</el-dropdown-item>
|
||||||
|
<el-dropdown-item command="status">{{(ruleEngineInfo.status === '0' ? "关闭": "开启")+'引擎'}}</el-dropdown-item>
|
||||||
|
</el-dropdown-menu>
|
||||||
|
</el-dropdown>
|
||||||
|
|
||||||
|
</template>
|
||||||
|
<el-descriptions-item label="规则名称"> {{ruleEngineInfo.name}} </el-descriptions-item>
|
||||||
|
<el-descriptions-item label="规则类型">
|
||||||
|
<dict-tag :options="dict.type.rule_engine_type" :value="ruleEngineInfo.type"/>
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="规则作用域">
|
||||||
|
<dict-tag :options="dict.type.rule_engine_level" :value="ruleEngineInfo.level"/>
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="引擎编码"> {{ruleEngineInfo.code + " ("+ruleEngineInfo.engineCode+")"}} </el-descriptions-item>
|
||||||
|
<el-descriptions-item label="是否激活">
|
||||||
|
<dict-tag :options="dict.type.rule_engine_activate_status" :value="ruleEngineInfo.isActivate"/>
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="规则状态">
|
||||||
|
<dict-tag :options="dict.type.sys_normal_disable" :value="ruleEngineInfo.status"/>
|
||||||
|
</el-descriptions-item>
|
||||||
|
</el-descriptions>
|
||||||
|
<editor style="margin-top: 20px" :read-only="true" v-model="ruleEngineInfo.description"></editor>
|
||||||
|
<el-card class="box-card">
|
||||||
<div slot="header" class="clearfix">
|
<div slot="header" class="clearfix">
|
||||||
<span>{{ruleEngineInfo.name}}</span>
|
<span>规则引擎版本</span>
|
||||||
<el-button @click="dialogVisible = true" style="float: right;" type="primary">保存</el-button>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="text item">
|
<el-row :gutter="20">
|
||||||
<encoding ref="encoding" style="height: 800px" :modification="modification" :value="ruleEngineInfo.codeText"></encoding>
|
<el-col :span="12" v-for="ruleEngineVersion in ruleEngineInfo.ruleEngineVersionList">
|
||||||
|
<el-card class="box-card">
|
||||||
|
<div slot="header" class="clearfix">
|
||||||
|
<span>{{ruleEngineVersion.name + "-" + ruleEngineVersion.code}}</span>
|
||||||
|
<el-dropdown style="float: right; padding: 3px 0" @command="checkRuleEngineVersion">
|
||||||
|
<span class="el-dropdown-link">
|
||||||
|
更多操作<i class="el-icon-arrow-down el-icon--right"></i>
|
||||||
|
</span>
|
||||||
|
<el-dropdown-menu slot="dropdown">
|
||||||
|
<el-dropdown-item :command="{event: 'info', ruleEngineVersion: ruleEngineVersion}">规则详情</el-dropdown-item>
|
||||||
|
<el-dropdown-item :command="{event: 'test', ruleEngineVersion: ruleEngineVersion}"
|
||||||
|
:disabled="ruleEngineVersion.status === '0'"
|
||||||
|
>测试规则</el-dropdown-item>
|
||||||
|
<el-dropdown-item :command="{event: 'status', ruleEngineVersion: ruleEngineVersion}" :disabled="ruleEngineVersion.status !== '2'">
|
||||||
|
{{ruleEngineVersion.isActivate !== 'no-activate' ? "禁用" : "激活"}}规则
|
||||||
|
</el-dropdown-item>
|
||||||
|
<el-dropdown-item
|
||||||
|
:command="{event: 'publish', ruleEngineVersion: ruleEngineVersion}"
|
||||||
|
v-if="ruleEngineVersion.status === '1' && ruleEngineVersion.isTest === '1'">
|
||||||
|
发布规则
|
||||||
|
</el-dropdown-item>
|
||||||
|
</el-dropdown-menu>
|
||||||
|
</el-dropdown>
|
||||||
</div>
|
</div>
|
||||||
|
<el-descriptions class="margin-top" :column="2" border>
|
||||||
|
<el-descriptions-item label="版本类" :span="2"> {{ruleEngineVersion.versionCode}} </el-descriptions-item>
|
||||||
|
<el-descriptions-item label="版本名称"> {{ruleEngineVersion.name}} </el-descriptions-item>
|
||||||
|
<el-descriptions-item label="版本CODE"> {{ruleEngineVersion.code}} </el-descriptions-item>
|
||||||
|
<el-descriptions-item label="是否激活">
|
||||||
|
<dict-tag :options="dict.type.rule_engine_activate_status" :value="ruleEngineVersion.isActivate"/>
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="版本状态">
|
||||||
|
<dict-tag :options="dict.type.rule_engine_version_status" :value="ruleEngineVersion.status"/>
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="是否测试">
|
||||||
|
<dict-tag :options="dict.type.rule_engine_activate_is_test" :value="ruleEngineVersion.isTest"/>
|
||||||
|
</el-descriptions-item>
|
||||||
|
</el-descriptions>
|
||||||
|
<editor style="margin-top: 10px" :read-only="true" v-model="ruleEngineVersion.description"></editor>
|
||||||
|
</el-card>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</el-card>
|
||||||
|
<el-dialog
|
||||||
|
title="新增版本" :visible.sync="addVersionStatus"
|
||||||
|
width="75%">
|
||||||
|
<el-card class="box-card">
|
||||||
|
<div slot="header" class="clearfix">
|
||||||
|
<span>基本信息</span>
|
||||||
|
<el-button style="float: right; padding: 3px 0" type="text" @click="genEngineVersion">生成引擎版本类</el-button>
|
||||||
|
</div>
|
||||||
|
<el-form :label-position="engineVersionForm" label-width="80px" :model="engineVersionForm">
|
||||||
|
<el-row>
|
||||||
|
<el-col :span="24">
|
||||||
|
<el-form-item label="版本类">
|
||||||
|
<el-input v-model="engineVersionForm.versionCode" disabled placeholder="点击类生成自动生成类名称"></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<el-row>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="名称">
|
||||||
|
<el-input v-model="engineVersionForm.name"></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="编码">
|
||||||
|
<el-input v-model="engineVersionForm.code"></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<el-row>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="状态">
|
||||||
|
<dict-tag :options="dict.type.rule_engine_version_status" :value="engineVersionForm.status"/>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="是否激活">
|
||||||
|
<dict-tag :options="dict.type.rule_engine_activate_status" :value="engineVersionForm.isActivate"/>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</el-form>
|
||||||
|
<editor v-model="engineVersionForm.description" :min-height="150"/>
|
||||||
|
</el-card>
|
||||||
|
<el-card class="box-card" v-if="engineVersionForm.codeIng != null">
|
||||||
|
<div slot="header" class="clearfix">
|
||||||
|
<span>引擎编码</span>
|
||||||
|
</div>
|
||||||
|
<encoding style="height: 800px" v-model="engineVersionForm.codeIng"></encoding>
|
||||||
</el-card>
|
</el-card>
|
||||||
|
|
||||||
<el-dialog
|
|
||||||
title="提示"
|
|
||||||
:visible.sync="dialogVisible"
|
|
||||||
width="20%">
|
|
||||||
<span style="font-size: 16px;align-content: center">确认保存吗?</span>
|
|
||||||
<span slot="footer" class="dialog-footer">
|
<span slot="footer" class="dialog-footer">
|
||||||
<el-button @click="dialogVisible = false">取 消</el-button>
|
<el-button @click="addVersionCancel">取 消</el-button>
|
||||||
<el-button type="primary" @click="updRuleEngine">确 定</el-button>
|
<el-button type="primary" @click="addVersionSubmission">确 定</el-button>
|
||||||
</span>
|
</span>
|
||||||
</el-dialog>
|
</el-dialog>
|
||||||
|
<el-drawer
|
||||||
|
title="规则版本详情" size="80%" :before-close="ruleEngineVersionInfoStatusClose"
|
||||||
|
:visible.sync="ruleEngineVersionInfoStatus"
|
||||||
|
:direction="'rtl'">
|
||||||
|
<div class="app-container">
|
||||||
|
<el-descriptions v-if="ruleEngineVersionInfoAndTest != null" class="margin-top" :column="2" border>
|
||||||
|
<el-descriptions-item label="版本类" :span="2"> {{ruleEngineVersionInfoAndTest.versionCode}} </el-descriptions-item>
|
||||||
|
<el-descriptions-item label="版本名称"> {{ruleEngineVersionInfoAndTest.name}} </el-descriptions-item>
|
||||||
|
<el-descriptions-item label="版本CODE"> {{ruleEngineVersionInfoAndTest.code}} </el-descriptions-item>
|
||||||
|
<el-descriptions-item label="是否激活">
|
||||||
|
<dict-tag :options="dict.type.rule_engine_activate_status" :value="ruleEngineVersionInfoAndTest.isActivate"/>
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="版本状态">
|
||||||
|
<dict-tag :options="dict.type.rule_engine_version_status" :value="ruleEngineVersionInfoAndTest.status"/>
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="是否测试">
|
||||||
|
<dict-tag :options="dict.type.rule_engine_activate_is_test" :value="ruleEngineVersionInfoAndTest.isTest"/>
|
||||||
|
</el-descriptions-item>
|
||||||
|
</el-descriptions>
|
||||||
|
<editor style="margin-top: 10px" :read-only="true" :min-height="100" v-model="ruleEngineVersionInfoAndTest.description"></editor>
|
||||||
|
<el-row style="margin-top: 10px">
|
||||||
|
<el-button @click="saveCoding">保存代码</el-button>
|
||||||
|
</el-row>
|
||||||
|
<encoding style="height: 800px; margin-top: 20px" v-model="ruleEngineVersionInfoAndTest.codeIng"></encoding>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</el-drawer>
|
||||||
|
<el-drawer
|
||||||
|
title="规则版本测试" size="80%" :before-close="ruleEngineVersionTestStatusClose"
|
||||||
|
:visible.sync="ruleEngineVersionTestStatus"
|
||||||
|
:direction="'rtl'">
|
||||||
|
<el-row :gutter="20">
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-descriptions v-if="ruleEngineVersionInfoAndTest != null" class="margin-top" :column="2" border>
|
||||||
|
<el-descriptions-item label="版本类" :span="2"> {{ruleEngineVersionInfoAndTest.versionCode}} </el-descriptions-item>
|
||||||
|
<el-descriptions-item label="版本名称"> {{ruleEngineVersionInfoAndTest.name}} </el-descriptions-item>
|
||||||
|
<el-descriptions-item label="版本CODE"> {{ruleEngineVersionInfoAndTest.code}} </el-descriptions-item>
|
||||||
|
<el-descriptions-item label="是否激活">
|
||||||
|
<dict-tag :options="dict.type.rule_engine_activate_status" :value="ruleEngineVersionInfoAndTest.isActivate"/>
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="版本状态">
|
||||||
|
<dict-tag :options="dict.type.rule_engine_version_status" :value="ruleEngineVersionInfoAndTest.status"/>
|
||||||
|
</el-descriptions-item>
|
||||||
|
<el-descriptions-item label="是否测试">
|
||||||
|
<dict-tag :options="dict.type.rule_engine_activate_is_test" :value="ruleEngineVersionInfoAndTest.isTest"/>
|
||||||
|
</el-descriptions-item>
|
||||||
|
</el-descriptions>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="12">
|
||||||
|
<editor style="margin-top: 10px" :read-only="true" :min-height="105" v-model="ruleEngineVersionInfoAndTest.description"></editor>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<el-row :gutter="20">
|
||||||
|
<el-col :span="12">
|
||||||
|
<encoding style="margin-top: 20px" v-model="ruleEngineVersionInfoAndTest.codeIng" :read-only="true"></encoding>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-col :span="assetStructure == null ? 24 : 12">
|
||||||
|
<el-card class="box-card">
|
||||||
|
<div slot="header" class="clearfix">
|
||||||
|
<span>选择数据接入</span>
|
||||||
|
</div>
|
||||||
|
<el-select v-model="assetStructure" style="width: 100%;">
|
||||||
|
<el-option v-for="_assetStructure in assetStructureList"
|
||||||
|
:key="_assetStructure.name"
|
||||||
|
:value="_assetStructure.name"
|
||||||
|
:label="_assetStructure.name+'('+_assetStructure.systemName+')'"
|
||||||
|
></el-option>
|
||||||
|
</el-select>
|
||||||
|
</el-card>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="12" v-if="assetStructure != null">
|
||||||
|
<el-card class="box-card" >
|
||||||
|
<div slot="header" class="clearfix">
|
||||||
|
<span>选择资产结构</span>
|
||||||
|
</div>
|
||||||
|
<el-select v-model="assets" style="width: 100%;">
|
||||||
|
<el-option v-for="_assets in assetsList"
|
||||||
|
:key="_assets.name"
|
||||||
|
:value="_assets.name"
|
||||||
|
:label="_assets.name+'('+_assets.as+')'"
|
||||||
|
></el-option>
|
||||||
|
</el-select>
|
||||||
|
</el-card>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="24">
|
||||||
|
<el-card class="box-card" v-if="assets != null">
|
||||||
|
<div slot="header" class="clearfix">
|
||||||
|
<span>选择资产模型</span>
|
||||||
|
</div>
|
||||||
|
<el-descriptions direction="vertical" :column="3" border>
|
||||||
|
<el-descriptions-item v-for="_dataModel in dataModelList"
|
||||||
|
:label='_dataModel.name + "("+_dataModel.comment+")"'>
|
||||||
|
<el-radio v-model="dataMode" :label="_dataModel.name" :value="_dataModel.id">{{dataModeMap[_dataModel.name]}}</el-radio>
|
||||||
|
</el-descriptions-item>
|
||||||
|
</el-descriptions>
|
||||||
|
</el-card>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="24" style="margin-top: 10px" v-if="dataMode != null">
|
||||||
|
<el-button>测试</el-button>
|
||||||
|
<el-input style="margin-top: 10px" v-model="testResult" type="textarea" placeholder="请点击测试" />
|
||||||
|
</el-col>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</el-drawer>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import {getMaintenance, updateMaintenance} from "@/api/ruleEngine/maintenance";
|
|
||||||
import Encoding from "@/components/Encoding/index.vue";
|
import Encoding from "@/components/Encoding/index.vue";
|
||||||
|
import {getVersion, listVersion} from "@/api/ruleEngine/version";
|
||||||
|
import {getMaintenance} from "@/api/ruleEngine/maintenance";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "EngineVersion",
|
name: "EngineVersion",
|
||||||
components: {Encoding},
|
components: {Encoding},
|
||||||
|
dicts: ['rule_engine_activate_status', 'rule_engine_type', 'sys_normal_disable',
|
||||||
|
'rule_engine_level', 'rule_engine_version_status', 'rule_engine_activate_is_test'],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
dialogVisible: false,
|
ruleEngineId: this.$route.params && this.$route.params.ruleEngineId,
|
||||||
ruleEngineId: this.$route.params.ruleEngineId,
|
ruleEngineInfo: {
|
||||||
ruleEngineInfo:{},
|
id: 0,
|
||||||
modification: null
|
name: null,
|
||||||
|
type: null,
|
||||||
|
isActivate: null,
|
||||||
|
status: null,
|
||||||
|
description: null,
|
||||||
|
remark:null,
|
||||||
|
code: null,
|
||||||
|
engineCode: null,
|
||||||
|
level: null,
|
||||||
|
ruleEngineVersionList: []
|
||||||
|
},
|
||||||
|
|
||||||
|
// 新增版本
|
||||||
|
addVersionStatus: false,
|
||||||
|
engineVersionForm: {
|
||||||
|
"name": "", "code": "", "status": "0",
|
||||||
|
"versionCode": "",
|
||||||
|
"isActivate": "no-activate",
|
||||||
|
"description": "",
|
||||||
|
"codeIng": null
|
||||||
|
},
|
||||||
|
// 详情抽屉状态
|
||||||
|
ruleEngineVersionInfoStatus: false,
|
||||||
|
// 测试抽屉状态
|
||||||
|
ruleEngineVersionTestStatus: false,
|
||||||
|
// 弹框抽屉
|
||||||
|
ruleEngineVersionInfoAndTest: {},
|
||||||
|
// 数据接入集合
|
||||||
|
assetStructureList: [
|
||||||
|
{
|
||||||
|
name: "测试1",
|
||||||
|
systemName: "云计算系统",
|
||||||
|
databaseName: "yunjisuan",
|
||||||
|
type: "dataSource"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "测试2",
|
||||||
|
systemName: "网站系统",
|
||||||
|
databaseName: "wangzhan",
|
||||||
|
type: "dataSource"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "测试3",
|
||||||
|
systemName: "物联网系统",
|
||||||
|
databaseName: "wulianwang",
|
||||||
|
type: "dataSource"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "测试4",
|
||||||
|
systemName: "传媒系统",
|
||||||
|
databaseName: "chuanmei",
|
||||||
|
type: "dataSource"
|
||||||
|
},
|
||||||
|
],
|
||||||
|
// 数据接入集合选择
|
||||||
|
assetStructure: null,
|
||||||
|
// 数据资产
|
||||||
|
assetsList: [
|
||||||
|
{
|
||||||
|
name: "sys_user",
|
||||||
|
as: "用户表",
|
||||||
|
dataTotal: 635847,
|
||||||
|
type: "dataTable",
|
||||||
|
childrenList: []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "sys_dept",
|
||||||
|
as: "部门表",
|
||||||
|
dataTotal: 362548,
|
||||||
|
type: "dataTable",
|
||||||
|
childrenList: []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "sys_notice",
|
||||||
|
as: "通知公告",
|
||||||
|
dataTotal: 6347,
|
||||||
|
type: "dataTable",
|
||||||
|
childrenList: []
|
||||||
|
}
|
||||||
|
],
|
||||||
|
// 数据资产选择
|
||||||
|
assets: null,
|
||||||
|
// 数据模型
|
||||||
|
dataModelList: [
|
||||||
|
{
|
||||||
|
id: 1,
|
||||||
|
name: "id",
|
||||||
|
comment: "主键",
|
||||||
|
isPrimaryKey: "Y",
|
||||||
|
type: "bigint",
|
||||||
|
mappingType: "Long",
|
||||||
|
length: "-",
|
||||||
|
decimalPlaces: "-",
|
||||||
|
isNull: "N",
|
||||||
|
defaultValue: "-",
|
||||||
|
isDict: "N",
|
||||||
|
dictKey: "-",
|
||||||
|
}, {
|
||||||
|
id: 2,
|
||||||
|
name: "name",
|
||||||
|
comment: "姓名",
|
||||||
|
isPrimaryKey: "N",
|
||||||
|
type: "varchar",
|
||||||
|
mappingType: "String",
|
||||||
|
length: "64",
|
||||||
|
decimalPlaces: "-",
|
||||||
|
isNull: "N",
|
||||||
|
defaultValue: "-",
|
||||||
|
isDict: "N",
|
||||||
|
dictKey: "-",
|
||||||
|
}, {
|
||||||
|
id: 3,
|
||||||
|
name: "sex",
|
||||||
|
comment: "性别",
|
||||||
|
isPrimaryKey: "N",
|
||||||
|
type: "char",
|
||||||
|
mappingType: "String",
|
||||||
|
length: "1",
|
||||||
|
decimalPlaces: "-",
|
||||||
|
isNull: "N",
|
||||||
|
defaultValue: "-",
|
||||||
|
isDict: "Y",
|
||||||
|
dictKey: "system_sex",
|
||||||
|
}, {
|
||||||
|
id: 4,
|
||||||
|
name: "price",
|
||||||
|
comment: "金额",
|
||||||
|
isPrimaryKey: "N",
|
||||||
|
type: "double",
|
||||||
|
mappingType: "BigDecimal",
|
||||||
|
length: "10",
|
||||||
|
decimalPlaces: "2",
|
||||||
|
isNull: "N",
|
||||||
|
defaultValue: "0.00",
|
||||||
|
isDict: "N",
|
||||||
|
dictKey: "-",
|
||||||
|
}, {
|
||||||
|
id: 5,
|
||||||
|
name: "create_time",
|
||||||
|
comment: "创建时间",
|
||||||
|
isPrimaryKey: "N",
|
||||||
|
type: "datetime",
|
||||||
|
mappingType: "Date",
|
||||||
|
length: "-",
|
||||||
|
decimalPlaces: "-",
|
||||||
|
isNull: "Y",
|
||||||
|
defaultValue: "-",
|
||||||
|
isDict: "N",
|
||||||
|
dictKey: "-",
|
||||||
|
},
|
||||||
|
],
|
||||||
|
// 数据模型选择
|
||||||
|
dataMode: null,
|
||||||
|
// 数据示例
|
||||||
|
dataModeMap: {
|
||||||
|
id: 1,
|
||||||
|
name: "张三",
|
||||||
|
sex: 1,
|
||||||
|
price: "653.69",
|
||||||
|
create_time: "2024-5-7 16:37:16",
|
||||||
|
},
|
||||||
|
testResult: ""
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
this.getInfo()
|
// this.initRuleEngine();
|
||||||
|
this.getListEngineMaintenance();
|
||||||
|
this.getListVersion()
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
updRuleEngine(){
|
|
||||||
console.log(this.modification)
|
|
||||||
this.modification = parseInt(this.ruleEngineId)
|
|
||||||
|
|
||||||
setTimeout(() => {
|
saveCoding(){
|
||||||
this.modification = null
|
this.$message.success('编码保存成功');
|
||||||
this.dialogVisible = false
|
|
||||||
},100)
|
|
||||||
},
|
},
|
||||||
getInfo(){
|
ruleEngineVersionInfoStatusClose(done) {
|
||||||
getMaintenance(this.$route.params.ruleEngineId).then(res => {
|
this.$confirm('确认关闭?')
|
||||||
this.ruleEngineInfo = res.data
|
.then(_ => {
|
||||||
console.log(this.ruleEngineInfo)
|
this.ruleEngineVersionInfoAndTest = {};
|
||||||
|
done();
|
||||||
})
|
})
|
||||||
|
.catch(_ => {});
|
||||||
|
},
|
||||||
|
ruleEngineVersionTestStatusClose(done) {
|
||||||
|
this.$confirm('确认关闭?')
|
||||||
|
.then(_ => {
|
||||||
|
this.ruleEngineVersionInfoAndTest = {};
|
||||||
|
done();
|
||||||
|
})
|
||||||
|
.catch(_ => {});
|
||||||
|
},
|
||||||
|
// 点击规则事件
|
||||||
|
checkRuleEngineVersion(command) {
|
||||||
|
switch (command.event) {
|
||||||
|
case "info"://详情
|
||||||
|
this.ruleEngineVersionInfoStatus = true;
|
||||||
|
this.ruleEngineVersionInfoAndTest = command.ruleEngineVersion;
|
||||||
|
break;
|
||||||
|
case "test"://测试
|
||||||
|
this.ruleEngineVersionTestStatus = true;
|
||||||
|
this.ruleEngineVersionInfoAndTest = command.ruleEngineVersion;
|
||||||
|
break;
|
||||||
|
case "status"://激活状态
|
||||||
|
command.ruleEngineVersion.isActivate = 'no-activate' === command.ruleEngineVersion.isActivate ? 'activated' : 'no-activate'
|
||||||
|
break;
|
||||||
|
case "publish"://发布
|
||||||
|
command.ruleEngineVersion.status = '2'
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
console.log(command.event);
|
||||||
|
console.log(command.ruleEngineVersion);
|
||||||
|
},
|
||||||
|
// 生成规则版本
|
||||||
|
genEngineVersion(){
|
||||||
|
if (this.engineVersionForm.name == null || this.engineVersionForm.name === "") {
|
||||||
|
this.$message.error('规则名称不可为空');
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (this.engineVersionForm.code == null || this.engineVersionForm.code === "") {
|
||||||
|
this.$message.error('规则CODE不可为空');
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (this.engineVersionForm.description == null || this.engineVersionForm.description === "") {
|
||||||
|
this.$message.error('规则版本使用描述不可为空');
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
this.engineVersionForm.versionCode = this.ruleEngineInfo.engineCode + "_" + this.engineVersionForm.code
|
||||||
|
this.engineVersionForm.codeIng = this.getCodeIng()
|
||||||
|
},
|
||||||
|
// 确定新增
|
||||||
|
addVersionSubmission(){
|
||||||
|
this.ruleEngineInfo.ruleEngineVersionList.push({... this.engineVersionForm})
|
||||||
|
this.addVersionStatus = false;
|
||||||
|
},
|
||||||
|
// 取消新增
|
||||||
|
addVersionCancel(){
|
||||||
|
this.engineVersionForm = {
|
||||||
|
"name": "", "code": "", "status": "0", "isTest": "0",
|
||||||
|
"versionCode": "",
|
||||||
|
"isActivate": "no-activate",
|
||||||
|
"description": "",
|
||||||
|
"codeIng": null, "ruleEngineVersionList": []
|
||||||
|
};
|
||||||
|
this.addVersionStatus = false;
|
||||||
|
},
|
||||||
|
handleClick(clickType){
|
||||||
|
if (clickType === "add"){
|
||||||
|
this.addVersionStatus = true;
|
||||||
|
}else if(clickType === "activate"){
|
||||||
|
this.ruleEngineInfo.isActivate = 'no-activate' === this.ruleEngineInfo.isActivate ? 'activated' : 'no-activate'
|
||||||
|
this.$modal.msgSuccess("引擎激活状态修改成功");
|
||||||
|
}else if(clickType === "status"){
|
||||||
|
this.ruleEngineInfo.status = '0' === this.ruleEngineInfo.status ? '1' : '0'
|
||||||
|
this.$modal.msgSuccess("引擎状态操作成功");
|
||||||
|
}
|
||||||
|
},
|
||||||
|
getListEngineMaintenance(){
|
||||||
|
getMaintenance(this.ruleEngineId).then(res=>{
|
||||||
|
console.log(res,'1')
|
||||||
|
this.ruleEngineInfo = res.data
|
||||||
|
})
|
||||||
|
//获取版本的列表
|
||||||
|
},
|
||||||
|
getListVersion(){
|
||||||
|
getVersion(this.ruleEngineId).then(res=>{
|
||||||
|
console.log(res,'2')
|
||||||
|
this.ruleEngineInfo.ruleEngineVersionList = res.data
|
||||||
|
})
|
||||||
|
},
|
||||||
|
|
||||||
|
// initRuleEngine(){
|
||||||
|
// let response = {
|
||||||
|
// "code": 200,
|
||||||
|
// "msg": "查询成功",
|
||||||
|
// "data": {
|
||||||
|
// "id": 1,
|
||||||
|
// "name": "邮箱规则",
|
||||||
|
// "type": "rule-custom",
|
||||||
|
// "isActivate": "no-activate",
|
||||||
|
// "status": "0",
|
||||||
|
// "description": "<p>根据邮箱规则进行数据校验,内包含所有邮箱校验规则</p>",
|
||||||
|
// "remark": "-",
|
||||||
|
// "code": "email",
|
||||||
|
// "engineCode": "engine_custom_email",
|
||||||
|
// "level": "data-field",
|
||||||
|
// "ruleEngineVersionList": [
|
||||||
|
// {
|
||||||
|
// "name": "163剔除", "code": "IAW3S02", "status": "0", "isTest": "0",
|
||||||
|
// "versionCode": "engine_custom_email_IAW3S02", "isActivate": "no-activate",
|
||||||
|
// "description": "<p>根据邮箱规则进行数据校验,内包含所有邮箱校验规则</p>","codeIng": "package com.muyu.rule.engine.custom;\n" +
|
||||||
|
// "\n" +
|
||||||
|
// "import com.muyu.engine.action.ActionDiscard;\n" +
|
||||||
|
// "import com.muyu.engine.scope.DataModelEngine;\n" +
|
||||||
|
// "\n" +
|
||||||
|
// "/**\n" +
|
||||||
|
// " * @Author: DongZeLiang\n" +
|
||||||
|
// " * @date: 2024/5/6\n" +
|
||||||
|
// " * @Description: ce-IAW3S02\n" +
|
||||||
|
// " * @Version: 1.0\n" +
|
||||||
|
// " */\n" +
|
||||||
|
// "public class engine_custom_email_IAW3S02 extends DataModelEngine {\n" +
|
||||||
|
// " @Override\n" +
|
||||||
|
// " public void execution () {\n" +
|
||||||
|
// " Object value = getValue();\n" +
|
||||||
|
// "\n" +
|
||||||
|
// " if (value == null || \"\".equals(value) || \"null\".equals(value)) {\n" +
|
||||||
|
// " throw new ActionDiscard();\n" +
|
||||||
|
// " }\n" +
|
||||||
|
// " }\n" +
|
||||||
|
// "}"
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// "name": "筛选不合规邮箱", "code": "JISID8S", "status": "2", "isTest": "1",
|
||||||
|
// "versionCode": "engine_custom_email_JISID8S", "isActivate": "activated",
|
||||||
|
// "description": "<p>根据邮箱规则进行数据校验,内包含所有邮箱校验规则</p>","codeIng": "package com.muyu.rule.engine.custom;\n" +
|
||||||
|
// "\n" +
|
||||||
|
// "import com.muyu.engine.action.ActionDiscard;\n" +
|
||||||
|
// "import com.muyu.engine.scope.DataModelEngine;\n" +
|
||||||
|
// "\n" +
|
||||||
|
// "/**\n" +
|
||||||
|
// " * @Author: DongZeLiang\n" +
|
||||||
|
// " * @date: 2024/5/6\n" +
|
||||||
|
// " * @Description: ce-JISID8S\n" +
|
||||||
|
// " * @Version: 1.0\n" +
|
||||||
|
// " */\n" +
|
||||||
|
// "public class engine_custom_email_JISID8S extends DataModelEngine {\n" +
|
||||||
|
// " @Override\n" +
|
||||||
|
// " public void execution () {\n" +
|
||||||
|
// " Object value = getValue();\n" +
|
||||||
|
// "\n" +
|
||||||
|
// " if (value == null || \"\".equals(value) || \"null\".equals(value)) {\n" +
|
||||||
|
// " throw new ActionDiscard();\n" +
|
||||||
|
// " }\n" +
|
||||||
|
// " }\n" +
|
||||||
|
// "}"
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// "name": "剔除自定义邮箱", "code": "DJ8S9EA", "status": "2", "isTest": "2",
|
||||||
|
// "versionCode": "engine_custom_email_DJ8S9EA", "isActivate": "no-activate",
|
||||||
|
// "description": "<p>根据邮箱规则进行数据校验,内包含所有邮箱校验规则</p>"
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// "name": "邮箱默认值操作", "code": "XJS9E0S", "status": "1", "isTest": "0",
|
||||||
|
// "versionCode": "engine_custom_email_XJS9E0S", "isActivate": "no-activate",
|
||||||
|
// "description": "<p>根据邮箱规则进行数据校验,内包含所有邮箱校验规则</p>"
|
||||||
|
// }
|
||||||
|
// ]
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
// this.ruleEngineInfo = response.data
|
||||||
|
// },
|
||||||
|
// 获取代码模板
|
||||||
|
getCodeIng(){
|
||||||
|
|
||||||
|
let packageName = "com.muyu.rule.engine";
|
||||||
|
let customName = "custom";
|
||||||
|
let templateName = "template";
|
||||||
|
let parentClass = "DataModelEngine";
|
||||||
|
let codeIng = `package ${packageName}.${customName};
|
||||||
|
|
||||||
|
import com.muyu.engine.action.ActionDiscard;
|
||||||
|
import com.muyu.engine.scope.${parentClass};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Author: DongZeLiang
|
||||||
|
* @date: 2024/5/6
|
||||||
|
* @Description: ${this.engineVersionForm.name}-${this.engineVersionForm.code}
|
||||||
|
* @Version: 1.0
|
||||||
|
*/
|
||||||
|
public class ${this.engineVersionForm.versionCode} extends ${parentClass} {
|
||||||
|
@Override
|
||||||
|
public void execution () {
|
||||||
|
Object value = getValue();
|
||||||
|
|
||||||
|
if (value == null || "".equals(value) || "null".equals(value)) {
|
||||||
|
throw new ActionDiscard();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}`;
|
||||||
|
return codeIng;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
|
.box-card{
|
||||||
|
margin-top: 20px;
|
||||||
|
}
|
||||||
|
.el-dropdown-link {
|
||||||
|
cursor: pointer;
|
||||||
|
color: #409EFF;
|
||||||
|
}
|
||||||
|
.el-icon-arrow-down {
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
|
.CodeMirror {
|
||||||
|
height: 600px;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue