This commit is contained in:
qsh
2024-05-23 14:08:08 +08:00
parent 28c328d191
commit 3050b9a2fe
109 changed files with 479 additions and 3139 deletions

View File

@@ -1,5 +1,5 @@
<template>
<el-dialog :title="title" v-model="dialogVisible" width="800px">
<Dialog :title="title" v-model="dialogVisible" width="800px">
<el-form :model="form" ref="addForm" :rules="rules" label-width="100px">
<el-form-item label="知识库名称" prop="name">
<el-input v-model="form.name" placeholder="请输入" />
@@ -21,7 +21,7 @@
<el-button type="primary" @click="handleSave"> </el-button>
</span>
</template>
</el-dialog>
</Dialog>
</template>
<script setup>

View File

@@ -1,5 +1,5 @@
<template>
<el-dialog :title="title" v-model="show" width="800px">
<Dialog :title="title" v-model="show" width="800px">
<el-form :model="form" ref="resourceForm" :rules="rules" label-width="60px">
<el-row :gutter="20">
<el-col :span="12" :offset="0">
@@ -63,7 +63,7 @@
<el-button type="primary" @click="handleSave"> </el-button>
</span>
</template>
</el-dialog>
</Dialog>
</template>
<script setup>