first commit

This commit is contained in:
JaguarJack
2022-12-05 23:01:12 +08:00
commit 0024080c28
322 changed files with 27698 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
<template>
<el-form :model="formData" label-width="120px" ref="form" v-loading="loading" class="pr-4">
{formItems}
<div class="flex justify-end">
<el-button type="primary" @click="submitForm(form)">{{ $t('system.confirm') }}</el-button>
</div>
</el-form>
</template>
<script lang="ts" setup>
import { useCreate } from '/admin/composables/curd/useCreate'
import { useShow } from '/admin/composables/curd/useShow'
import { onMounted, watch } from 'vue'
const props = defineProps({
primary: String | Number,
api: String,
})
const emit = defineEmits(['close'])
const { formData, form, loading, submitForm, isClose } = useCreate(props.api, props.primary)
watch(isClose, function (value) {
if (value) {
emit('close')
}
})
onMounted(() => {
if (props.primary) {
useShow(props.api, props.primary).then(r => {
formData.value = r.data
})
}
})
</script>

View File

@@ -0,0 +1,3 @@
<el-form-item label="{label}" prop="{prop}">
<el-cascader v-model="{model-value}" :options="options" />
</el-form-item>

View File

@@ -0,0 +1,9 @@
<el-form-item label="{label}" prop="{prop}">
<el-date-picker
v-model="{model-value}"
type="date"
name="{prop}"
placeholder="Pick a day"
clearable
/>
</el-form-item>

View File

@@ -0,0 +1,9 @@
<el-form-item label="{label}" prop="{prop}">
<el-date-picker
v-model="{model-value}"
type="datetime"
name="{prop}"
placeholder="Pick a day"
clearable
/>
</el-form-item>

View File

@@ -0,0 +1,3 @@
<el-form-item label="{label}" prop="{prop}">
<el-input-number v-model="{model-value}" name="{prop}" :min="1" />
</el-form-item>

View File

@@ -0,0 +1,3 @@
<el-form-item label="{label}" prop="{prop}">
<el-input v-model="{model-value}" name="{prop}" clearable />
</el-form-item>

View File

@@ -0,0 +1,5 @@
<el-form-item label="{label}" prop="{prop}">
<el-radio-group v-model="{model-value}">
<el-radio v-for="item in options" :key="item.value" :label="item.value" name="{prop}">{{ item.label }}</el-radio>
</el-radio-group>
</el-form-item>

View File

@@ -0,0 +1,3 @@
<el-form-item label="{label}" prop="{prop}">
<el-rate v-model="{model-value}" name="{prop}" clearable />
</el-form-item>

View File

@@ -0,0 +1,10 @@
<el-form-item label="{label}" prop="{prop}">
<el-select v-model="{model-value}" placeholder="请选择" clearable ${multiple}>
<el-option
v-for="item in options"
:key="item.value"
:label="item.label"
:value="item.value"
/>
</el-select>
</el-form-item>

View File

@@ -0,0 +1,3 @@
<el-form-item label="{label}" prop="{prop}">
<el-switch v-model="{model-value}" name="{prop}" />
</el-form-item>

View File

@@ -0,0 +1,9 @@
<el-form-item label="{label}" prop="{prop}">
<el-tree-select
v-model="{model-value}"
:data="data"
check-strictly
multiple
show-checkbox
/>
</el-form-item>

View File

@@ -0,0 +1,8 @@
<el-form-item label="{label}" prop="{prop}">
<el-tree
:data="data"
show-checkbox
node-key="id"
/>
</el-form-item>

View File

@@ -0,0 +1,12 @@
<div class="pt-2 pb-2 flex justify-end">
<el-pagination
background
layout="total,sizes,prev,pager,next"
:current-page="query.page"
:page-size="query.limit"
@current-change="changePage"
@size-change="changeLimit"
:total="total"
:page-sizes="[1, 10, 20, 30, 50]"
/>
</div>

View File

@@ -0,0 +1,78 @@
<template>
<div>
<div class="w-full min-h-0 bg-white dark:bg-regal-dark pl-5 pt-5 pr-5 rounded-lg">
<el-form :inline="true">
{search}
<el-form-item>
<el-button type="primary" @click="search()">
<Icon name="magnifying-glass" class="w-4 mr-1 -ml-1" />
搜索
</el-button>
<el-button @click="reset()">
<Icon name="arrow-path" class="w-4 mr-1 -ml-1" />
重置
</el-button>
</el-form-item>
</el-form>
</div>
<div class="pl-2 pr-2 bg-white dark:bg-regal-dark rounded-lg mt-4">
<div class="pt-5 pl-2">
<Add @click="show(null)" />
</div>
<el-table :data="tableData" class="mt-3" v-loading="loading">
{table}
<el-table-column label="操作" width="200">
<template #default="scope">
<Update @click="show(scope.row.id)" />
<Destroy @click="destroy(api, scope.row.id)" />
</template>
</el-table-column>
</el-table>
{paginate}
</div>
<Dialog v-model="visible" :title="title" destroy-on-close>
<Create @close="close" :primary="id" :api="api" />
</Dialog>
</div>
</template>
<script lang="ts" setup>
import { computed, onMounted, ref, watch } from 'vue'
import Create from './create.vue'
import { useGetList } from '/admin/composables/curd/useGetList'
import { useDestroy } from '/admin/composables/curd/useDestroy'
import { useEnabled } from '/admin/composables/curd/useEnabled'
import { t } from '/admin/support/helper'
const visible = ref<boolean>(false)
const id = ref(null)
const api = {api}
const title = ref<string>('');
{useList}
const { destroy, isDeleted } = useDestroy()
const { enabled } = useEnabled()
onMounted(() => search())
const tableData = computed(() => data.value?.data)
const total = computed(() => data.value?.total)
const close = () => {
visible.value = false
reset()
}
const show = primary => {
title.value = primary ? t('system.edit') : t('system.add')
id.value = primary
visible.value = true
}
watch(isDeleted, function (){
// change origin status
isDeleted.value = false
reset();
})
</script>