112 lines
2.8 KiB
Vue
112 lines
2.8 KiB
Vue
<template>
|
|
<el-dialog
|
|
:title="isEdit ? '编辑变量' : '添加变量'"
|
|
v-model="dialogVisible"
|
|
:close-on-click-modal="false"
|
|
:close-on-press-escape="false"
|
|
:destroy-on-close="true"
|
|
append-to-body
|
|
>
|
|
<el-form
|
|
label-position="top"
|
|
ref="fieldFormRef"
|
|
:rules="rules"
|
|
:model="form"
|
|
require-asterisk-position="right"
|
|
>
|
|
<el-form-item label="变量名" prop="name">
|
|
<el-input
|
|
v-model="form.name"
|
|
placeholder="请输入变量名"
|
|
maxlength="64"
|
|
show-word-limit
|
|
@blur="form.name = form.name.trim()"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="数据类型">
|
|
<el-select v-model="form.type">
|
|
<el-option v-for="item in typeOptions" :key="item" :label="item" :value="item" />
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item label="来源">
|
|
<el-select v-model="form.source">
|
|
<el-option label="引用变量" value="reference" />
|
|
<el-option label="自定义" value="custom" />
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item label="是否必填" @click.prevent>
|
|
<el-switch size="small" v-model="form.is_required"></el-switch>
|
|
</el-form-item>
|
|
</el-form>
|
|
<template #footer>
|
|
<span class="dialog-footer">
|
|
<el-button @click.prevent="dialogVisible = false"> 取消 </el-button>
|
|
<el-button type="primary" @click="submit(fieldFormRef)" :loading="loading">
|
|
{{ isEdit ? '保存' : '添加' }}
|
|
</el-button>
|
|
</span>
|
|
</template>
|
|
</el-dialog>
|
|
</template>
|
|
<script setup lang="ts">
|
|
import { ref, reactive, watch } from 'vue'
|
|
import type { FormInstance } from 'element-plus'
|
|
import { cloneDeep } from 'lodash'
|
|
|
|
const typeOptions = ['string', 'int', 'dict', 'array', 'float']
|
|
|
|
const emit = defineEmits(['refresh'])
|
|
|
|
const fieldFormRef = ref()
|
|
const loading = ref<boolean>(false)
|
|
const isEdit = ref(false)
|
|
|
|
const form = ref<any>({
|
|
name: '',
|
|
type: typeOptions[0],
|
|
source: 'reference',
|
|
is_required: true
|
|
})
|
|
|
|
const rules = reactive({
|
|
name: [{ required: true, message: '请输入变量名', trigger: 'blur' }]
|
|
})
|
|
|
|
const dialogVisible = ref<boolean>(false)
|
|
|
|
watch(dialogVisible, (bool) => {
|
|
if (!bool) {
|
|
form.value = {
|
|
name: '',
|
|
type: typeOptions[0],
|
|
source: 'reference',
|
|
is_required: true
|
|
}
|
|
isEdit.value = false
|
|
}
|
|
})
|
|
|
|
const open = (row: any) => {
|
|
if (row) {
|
|
form.value = cloneDeep(row)
|
|
isEdit.value = true
|
|
}
|
|
|
|
dialogVisible.value = true
|
|
}
|
|
|
|
|
|
const submit = async (formEl: FormInstance | undefined) => {
|
|
if (!formEl) return
|
|
await formEl.validate((valid) => {
|
|
if (valid) {
|
|
emit('refresh', form.value)
|
|
dialogVisible.value = false
|
|
}
|
|
})
|
|
}
|
|
|
|
defineExpose({ open })
|
|
</script>
|
|
<style lang="scss" scoped></style>
|