143 lines
4.2 KiB
Vue
143 lines
4.2 KiB
Vue
|
|
<template>
|
||
|
|
<div class="function-lib-list-container p-24" style="padding-top: 16px">
|
||
|
|
<div class="flex-between mb-16">
|
||
|
|
<h4>函数库</h4>
|
||
|
|
<el-input
|
||
|
|
v-model="searchValue"
|
||
|
|
@change="searchHandle"
|
||
|
|
placeholder="按函数名称搜索"
|
||
|
|
prefix-icon="Search"
|
||
|
|
class="w-240"
|
||
|
|
clearable
|
||
|
|
/>
|
||
|
|
</div>
|
||
|
|
<div v-loading.fullscreen.lock="paginationConfig.current_page === 1 && loading">
|
||
|
|
<InfiniteScroll
|
||
|
|
:size="functionLibList.length"
|
||
|
|
:total="paginationConfig.total"
|
||
|
|
:page_size="paginationConfig.page_size"
|
||
|
|
v-model:current_page="paginationConfig.current_page"
|
||
|
|
@load="getList"
|
||
|
|
:loading="loading"
|
||
|
|
>
|
||
|
|
<el-row :gutter="15">
|
||
|
|
<el-col :xs="24" :sm="12" :md="8" :lg="6" :xl="4" class="mb-16">
|
||
|
|
<CardAdd title="创建函数" @click="openCreateDialog()" />
|
||
|
|
</el-col>
|
||
|
|
<el-col
|
||
|
|
:xs="24"
|
||
|
|
:sm="12"
|
||
|
|
:md="8"
|
||
|
|
:lg="6"
|
||
|
|
:xl="4"
|
||
|
|
v-for="(item, index) in functionLibList"
|
||
|
|
:key="index"
|
||
|
|
class="mb-16"
|
||
|
|
>
|
||
|
|
<CardBox
|
||
|
|
:title="item.name"
|
||
|
|
:description="item.desc"
|
||
|
|
class="function-lib-card cursor"
|
||
|
|
@click="openCreateDialog(item)"
|
||
|
|
>
|
||
|
|
<template #icon>
|
||
|
|
<AppAvatar class="mr-12 avatar-green" shape="square" :size="32">
|
||
|
|
<img src="@/assets/icon_function_outlined.svg" style="width: 58%" alt="" />
|
||
|
|
</AppAvatar>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<template #footer>
|
||
|
|
<div class="footer-content">
|
||
|
|
<el-tooltip effect="dark" content="复制" placement="top">
|
||
|
|
<el-button text>
|
||
|
|
<AppIcon iconName="app-copy"></AppIcon>
|
||
|
|
</el-button>
|
||
|
|
</el-tooltip>
|
||
|
|
<el-divider direction="vertical" />
|
||
|
|
<el-tooltip effect="dark" content="删除" placement="top">
|
||
|
|
<el-button text @click.stop="deleteFunctionLib(item)">
|
||
|
|
<el-icon><Delete /></el-icon>
|
||
|
|
</el-button>
|
||
|
|
</el-tooltip>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
</CardBox>
|
||
|
|
</el-col>
|
||
|
|
</el-row>
|
||
|
|
</InfiniteScroll>
|
||
|
|
</div>
|
||
|
|
<FunctionFormDrawer ref="FunctionFormDrawerRef" @refresh="refresh" />
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
<script setup lang="ts">
|
||
|
|
import { ref, onMounted, reactive } from 'vue'
|
||
|
|
import functionLibApi from '@/api/function-lib'
|
||
|
|
import FunctionFormDrawer from './component/FunctionFormDrawer.vue'
|
||
|
|
|
||
|
|
const loading = ref(false)
|
||
|
|
|
||
|
|
const FunctionFormDrawerRef = ref()
|
||
|
|
|
||
|
|
const functionLibList = ref<any[]>([])
|
||
|
|
|
||
|
|
const paginationConfig = reactive({
|
||
|
|
current_page: 1,
|
||
|
|
page_size: 20,
|
||
|
|
total: 0
|
||
|
|
})
|
||
|
|
|
||
|
|
const searchValue = ref('')
|
||
|
|
|
||
|
|
function openCreateDialog(data?: any) {
|
||
|
|
FunctionFormDrawerRef.value.open(data)
|
||
|
|
}
|
||
|
|
|
||
|
|
function searchHandle() {
|
||
|
|
paginationConfig.total = 0
|
||
|
|
paginationConfig.current_page = 1
|
||
|
|
functionLibList.value = []
|
||
|
|
getList()
|
||
|
|
}
|
||
|
|
|
||
|
|
function deleteFunctionLib(row: any) {
|
||
|
|
// MsgConfirm(
|
||
|
|
// // @ts-ignore
|
||
|
|
// `${t('views.function-lib.function-libList.card.delete.confirmTitle')}${row.name} ?`,
|
||
|
|
// t('views.function-lib.function-libList.card.delete.confirmMessage'),
|
||
|
|
// {
|
||
|
|
// confirmButtonText: t('views.function-lib.function-libList.card.delete.confirmButton'),
|
||
|
|
// cancelButtonText: t('views.function-lib.function-libList.card.delete.cancelButton'),
|
||
|
|
// confirmButtonClass: 'danger'
|
||
|
|
// }
|
||
|
|
// )
|
||
|
|
// .then(() => {})
|
||
|
|
// .catch(() => {})
|
||
|
|
}
|
||
|
|
|
||
|
|
function getList() {
|
||
|
|
functionLibApi
|
||
|
|
.getFunctionLib(paginationConfig, searchValue.value && { name: searchValue.value }, loading)
|
||
|
|
.then((res: any) => {
|
||
|
|
functionLibList.value = [...functionLibList.value, ...res.data.records]
|
||
|
|
paginationConfig.total = res.data.total
|
||
|
|
})
|
||
|
|
}
|
||
|
|
|
||
|
|
function refresh(data: any) {
|
||
|
|
if (data) {
|
||
|
|
const index = functionLibList.value.findIndex((v) => v.id === data.id)
|
||
|
|
functionLibList.value.splice(index, 1, data)
|
||
|
|
} else {
|
||
|
|
paginationConfig.total = 0
|
||
|
|
paginationConfig.current_page = 1
|
||
|
|
functionLibList.value = []
|
||
|
|
getList()
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
onMounted(() => {
|
||
|
|
getList()
|
||
|
|
})
|
||
|
|
</script>
|
||
|
|
<style lang="scss" scoped></style>
|