123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367 |
- <template>
- <div class="system-edit-dic-container">
- <el-dialog :title="(ruleForm.id !== 0 ? '修改' : '添加') + '功能定义'" v-model="isShowDialog" width="769px">
- <el-form :model="ruleForm" ref="formRef" :rules="rules" label-width="120px">
- <el-form-item label="功能定义标识" prop="key">
- <el-input v-model="ruleForm.key" placeholder="请输入功能定义标识" :disabled="ruleForm.id !== 0 ? true : false" />
- </el-form-item>
- <el-form-item label="功能定义名称" prop="name">
- <el-input v-model="ruleForm.name" placeholder="请输入功能定义名称" />
- </el-form-item>
- <el-form-item label="输入参数" prop="maxLength">
- <div v-for="(item, index) in inputsdata" :key="index" class="jslist">
- <div class="jsonlist">
- <div>参数标识:{{ item.key }}</div>
- <div>参数名称:{{ item.name }}</div>
- <div>数据类型:{{ item.valueType.type }}</div>
- <div class="jsonoption">
- <el-link type="primary" @click="editjson(index, 'fun')">编辑</el-link>
- <el-link type="primary" @click="deljson(index, 'fun')">删除</el-link>
- </div>
- </div>
- </div>
- <div style="display: block; width: 100%">
- <div class="input-options" @click="addJson('fun')">
- <el-icon>
- <Plus />
- </el-icon>
- <div>添加参数</div>
- </div>
- </div>
- </el-form-item>
- <el-form-item label="输出参数" prop="">
- <div v-for="(item, index) in outputsdata" :key="index" class="jslist">
- <div class="jsonlist">
- <div>参数标识:{{ item.key }}</div>
- <div>参数名称:{{ item.name }}</div>
- <div>数据类型:{{ item.valueType.type }}</div>
- <div class="jsonoption">
- <el-link type="primary" @click="editjsonOut(index)">编辑</el-link>
- <el-link type="primary" @click="deljsonOut(index, 'fun')">删除</el-link>
- </div>
- </div>
- </div>
- <div style="display: block; width: 100%">
- <div class="input-options" @click="addJsonOut('fun')">
- <el-icon>
- <Plus />
- </el-icon>
- <div>添加参数</div>
- </div>
- </div>
- </el-form-item>
- <el-form-item label="功能定义描述 " prop="desc">
- <el-input v-model="ruleForm.desc" type="textarea" placeholder="请输入功能定义描述"></el-input>
- </el-form-item>
- </el-form>
- <template #footer>
- <span class="dialog-footer">
- <el-button @click="onCancel">取 消</el-button>
- <el-button type="primary" @click="onSubmit">{{ ruleForm.id !== 0 ? '修 改' : '添 加' }}</el-button>
- </span>
- </template>
- </el-dialog>
- <EditOption ref="editOptionRef" key="editOptionRef" @typeList="getOptionData" />
- <EditOption ref="editOptionOutRef" key="editOptionOutRef" @typeList="getOptionDataOut" />
- </div>
- </template>
- <script lang="ts">
- import { reactive, toRefs, defineComponent, ref, unref } from 'vue';
- import api from '/@/api/device';
- import { Plus, Minus, Right } from '@element-plus/icons-vue';
- import EditOption from './editOption.vue';
- import { validateNoSpace } from '/@/utils/validator';
- import { ElMessage } from 'element-plus';
- interface RuleFormState {
- id?: number;
- key: string;
- productKey: string;
- name: string;
- type: string;
- dictType: string;
- valueType: Object;
- inputs: any;
- outputs: any;
- status: number;
- desc: string;
- }
- interface DicState {
- isShowDialog: boolean;
- productKey: string;
- type: string;
- types: string;
- ruleForm: RuleFormState;
- typeData: any[];
- inputsdata: any[];
- outputsdata: any[];
- jsondata: any[];
- elementType: any;
- enumdata: any;
- valueType: any;
- rules: {};
- }
- const form = {
- productKey: '',
- type: '',
- name: '',
- key: '',
- status: 1,
- dictType: '',
- inputs: [],
- outputs: [],
- valueType: {
- type: '',
- maxLength: '',
- },
- desc: '',
- }
- export default defineComponent({
- name: 'deviceEditPro',
- components: { Plus, Minus, Right, EditOption },
- setup(prop, { emit }) {
- const formRef = ref<HTMLElement | null>(null);
- const editOptionRef = ref();
- const editOptionOutRef = ref();
- const state = reactive<DicState>({
- isShowDialog: false,
- typeData: [], //
- type: '',
- types: '',
- productKey: '',
- valueType: {
- type: '',
- maxLength: '',
- trueText: '是',
- trueValue: 'true',
- falseText: '否',
- falseValue: 'false',
- },
- elementType: {
- type: '',
- maxLength: '',
- },
- enumdata: [
- {
- text: '',
- value: '',
- },
- ],
- jsondata: [],
- inputsdata: [],
- outputsdata: [],
- ruleForm: JSON.parse(JSON.stringify(form)),
- rules: {
- name: [{ required: true, message: '功能定义名称不能为空', trigger: 'blur' },
- { max: 32, message: '功能定义名称不能超过32个字符', trigger: 'blur' },
- { validator: validateNoSpace, message: '功能定义名称不能包含空格', trigger: 'blur' }
- ],
- key: [{ required: true, message: '功能定义标识不能为空', trigger: 'blur' }],
- type: [{ required: true, message: '请选择数据类型', trigger: 'blur' }],
- },
- });
- // 打开弹窗
- const openDialog = (row: RuleFormState, productKey: string) => {
- resetForm();
- state.ruleForm = row;
- state.productKey = productKey;
- state.inputsdata = row.inputs || [];
- state.outputsdata = row.outputs || [];
- state.isShowDialog = true;
- };
- const resetForm = () => {
- state.ruleForm = JSON.parse(JSON.stringify(form))
- state.type = '';
- state.types = '';
- state.inputsdata = [];
- state.outputsdata = [];
- state.elementType = [];
- state.valueType = {};
- };
- const seletChange = (val: string) => {
- state.type = val;
- state.ruleForm.type = val;
- };
- const seletChanges = (val: string) => {
- state.types = val;
- };
- const addEnum = () => {
- state.enumdata.push({
- text: '',
- value: '',
- });
- };
- const delEnum = (index: number) => {
- state.enumdata.splice(index, 1);
- };
- const editjson = (index: number, type: string) => {
- if (type == 'fun') {
- editOptionRef.value.openDialog(state.inputsdata[index]);
- } else {
- editOptionRef.value.openDialog(state.jsondata[index]);
- }
- }
- const deljson = (index: number, type: string) => {
- if (type == 'fun') {
- state.inputsdata.splice(index, 1);
- } else {
- state.jsondata.splice(index, 1);
- }
- };
- const deljsonOut = (index: number, type: string) => {
- if (type == 'fun') {
- state.outputsdata.splice(index, 1);
- } else {
- state.outputsdata.splice(index, 1);
- }
- };
- const editjsonOut = (index: number) => {
- editOptionOutRef.value.openDialog(state.outputsdata[index]);
- }
- const addJson = (type: string) => {
- editOptionRef.value.openDialog({ productKey: '', id: 0, type_data: type });
- };
- const addJsonOut = (type: string) => {
- editOptionOutRef.value.openDialog({ productKey: '', id: 0, type_data: type });
- };
- const getOptionData = (data: any, type_data: any) => {
- if (type_data == 'fun') {
- state.inputsdata.push(data);
- } else {
- state.jsondata.push(data);
- }
- };
- const getOptionDataOut = (data: any, type_data: any) => {
- if (type_data == 'fun') {
- state.outputsdata.push(data);
- } else {
- state.outputsdata.push(data);
- }
- };
- // 关闭弹窗
- const closeDialog = () => {
- state.isShowDialog = false;
- };
- // 取消
- const onCancel = () => {
- closeDialog();
- };
- // 新增
- const onSubmit = () => {
- const formWrap = unref(formRef) as any;
- if (!formWrap) return;
- formWrap.validate((valid: boolean) => {
- if (valid) {
- state.ruleForm.inputs = state.inputsdata;
- state.ruleForm.outputs = state.outputsdata;
- if (state.ruleForm.id !== 0) {
- state.ruleForm.productKey = state.productKey;
- api.model.functionedit(state.ruleForm).then(() => {
- ElMessage.success('功能定义类型修改成功');
- closeDialog(); // 关闭弹窗
- emit('typeList');
- });
- } else {
- api.model.functionadd(state.ruleForm).then(() => {
- ElMessage.success('功能定义类型添加成功');
- closeDialog(); // 关闭弹窗
- emit('typeList');
- });
- }
- }
- });
- };
- return {
- editOptionRef,
- editOptionOutRef,
- getOptionData,
- getOptionDataOut,
- openDialog,
- editjson,
- editjsonOut,
- deljson,
- deljsonOut,
- addEnum,
- delEnum,
- addJson,
- addJsonOut,
- seletChange,
- seletChanges,
- closeDialog,
- onCancel,
- onSubmit,
- formRef,
- ...toRefs(state),
- };
- },
- });
- </script>
- <style scoped>
- .input-box {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- margin-top: 10px;
- }
- .input-option {
- line-height: 30px;
- padding-top: 5px;
- width: 140px;
- }
- .input-option i {
- margin: 0px 5px;
- border: 1px solid #c3c3c3;
- font-size: 16px;
- }
- .input-options {
- display: flex;
- align-items: center;
- color: #409eff;
- cursor: pointer;
- }
- .jslist {
- width: 100%;
- border: 1px solid #e8e8e8;
- padding: 10px;
- margin-bottom: 10px;
- }
- .jsonlist {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- }
- .jsonoption {}
- .jsonoption a {
- margin: 0px 10px;
- }
- </style>
|