46 lines
1.1 KiB
Vue
46 lines
1.1 KiB
Vue
|
|
<template>
|
||
|
|
<!-- 计算项目表达式生成向导 -->
|
||
|
|
<el-dialog title="计算项目表达式生成向导" width="600px" @close="onClose">
|
||
|
|
<el-row :gutter="0">
|
||
|
|
<el-input type="textarea" v-model="inputText"></el-input>
|
||
|
|
</el-row>
|
||
|
|
<el-row :gutter="0">
|
||
|
|
|
||
|
|
</el-row>
|
||
|
|
<!-- <el-form ref="form" :model="formData" label-width="80px">
|
||
|
|
<el-form-item>
|
||
|
|
<el-input type="textarea" v-model="formData.name"></el-input>
|
||
|
|
</el-form-item>
|
||
|
|
<el-form-item label="性别" prop="sex">
|
||
|
|
<el-select placeholder="请选择性别" v-model="formData.sex"></el-select>
|
||
|
|
</el-form-item>
|
||
|
|
<el-form-item label="" prop="">
|
||
|
|
<el-button size="small" @click="handleCancel">取 消</el-button>
|
||
|
|
<el-button size="small" type="primary" @click="handleOk">确 定</el-button>
|
||
|
|
</el-form-item>
|
||
|
|
</el-form> -->
|
||
|
|
</el-dialog>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script setup lang="ts">
|
||
|
|
import CustomTable from '@/components/elTable/index.vue'
|
||
|
|
|
||
|
|
const formData = ref()
|
||
|
|
const inputText = ref('')
|
||
|
|
|
||
|
|
const onClose = () => {
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
const handleOk = () => {
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
const handleCancel = () => {
|
||
|
|
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style scoped lang="scss">
|
||
|
|
</style>
|