同步现场代码

This commit is contained in:
GGJ
2024-05-09 18:00:04 +08:00
parent 06611f527a
commit 6d7f1bca56
46 changed files with 44063 additions and 1586 deletions

View File

@@ -20,6 +20,7 @@
<Detail ref="detailRef" :detail="detail" @close="detail = null" v-if="detail"></Detail>
</div>
</template>
<script setup lang="ts">
import { Plus } from '@element-plus/icons-vue'
import { ref, onMounted, provide } from 'vue'
@@ -39,6 +40,7 @@ const detail = ref<anyObj | null>(null)
const tableStore = new TableStore({
url: '/system-boot/dictType/list',
method: 'POST',
column: [
{ title: '序号', type: 'seq', width: '60' },
{ title: '名称', field: 'name' },
@@ -54,9 +56,9 @@ const tableStore = new TableStore({
width: '80',
render: 'tag',
custom: {
'正常': 'success',
'删除': 'danger'
},
正常: 'success',
删除: 'danger'
}
},
{
title: '操作',