|
42 | 42 | >
|
43 | 43 | <el-row :gutter="15">
|
44 | 44 | <el-col :xs="24" :sm="12" :md="8" :lg="6" :xl="6" class="mb-16">
|
45 |
| - <CardAdd :title="$t('views.functionLib.createFunction')" @click="openCreateDialog()" /> |
| 45 | + <el-card shadow="hover" class="application-card-add" style="--el-card-padding: 8px"> |
| 46 | + <div class="card-add-button flex align-center cursor p-8" @click="openCreateDialog"> |
| 47 | + <AppIcon iconName="app-add-application" class="mr-8"></AppIcon> |
| 48 | + {{ $t('views.functionLib.createFunction') }} |
| 49 | + </div> |
| 50 | + <el-divider style="margin: 8px 0" /> |
| 51 | + <el-upload |
| 52 | + ref="elUploadRef" |
| 53 | + :file-list="[]" |
| 54 | + action="#" |
| 55 | + multiple |
| 56 | + :auto-upload="false" |
| 57 | + :show-file-list="false" |
| 58 | + :limit="1" |
| 59 | + :on-change="(file: any, fileList: any) => importFunctionLib(file)" |
| 60 | + class="card-add-button" |
| 61 | + > |
| 62 | + <div class="flex align-center cursor p-8"> |
| 63 | + <AppIcon iconName="app-import" class="mr-8"></AppIcon> |
| 64 | + {{ $t('views.functionLib.importFunction') }} |
| 65 | + </div> |
| 66 | + </el-upload> |
| 67 | + </el-card> |
46 | 68 | </el-col>
|
47 | 69 | <el-col
|
48 | 70 | :xs="24"
|
|
98 | 120 | </el-button>
|
99 | 121 | </el-tooltip>
|
100 | 122 | <el-divider direction="vertical" />
|
| 123 | + <el-tooltip effect="dark" :content="$t('common.export')" placement="top"> |
| 124 | + <el-button text @click.stop="exportFunctionLib(item)"> |
| 125 | + <AppIcon iconName="app-export"></AppIcon> |
| 126 | + </el-button> |
| 127 | + </el-tooltip> |
| 128 | + <el-divider direction="vertical" /> |
101 | 129 | <el-tooltip effect="dark" :content="$t('common.delete')" placement="top">
|
102 | 130 | <el-button
|
103 | 131 | :disabled="item.permission_type === 'PUBLIC' && !canEdit(item)"
|
@@ -131,7 +159,7 @@ import { ref, onMounted, reactive } from 'vue'
|
131 | 159 | import { cloneDeep } from 'lodash'
|
132 | 160 | import functionLibApi from '@/api/function-lib'
|
133 | 161 | import FunctionFormDrawer from './component/FunctionFormDrawer.vue'
|
134 |
| -import { MsgSuccess, MsgConfirm } from '@/utils/message' |
| 162 | +import { MsgSuccess, MsgConfirm, MsgError } from '@/utils/message' |
135 | 163 | import useStore from '@/stores'
|
136 | 164 | import applicationApi from '@/api/application'
|
137 | 165 | import { t } from '@/locales'
|
@@ -161,6 +189,7 @@ interface UserOption {
|
161 | 189 | const userOptions = ref<UserOption[]>([])
|
162 | 190 |
|
163 | 191 | const selectUserId = ref('all')
|
| 192 | +const elUploadRef = ref<any>() |
164 | 193 |
|
165 | 194 | const canEdit = (row: any) => {
|
166 | 195 | return user.userInfo?.id === row?.user_id
|
@@ -242,6 +271,40 @@ function copyFunctionLib(row: any) {
|
242 | 271 | FunctionFormDrawerRef.value.open(obj)
|
243 | 272 | }
|
244 | 273 |
|
| 274 | +function exportFunctionLib(row: any) { |
| 275 | + functionLibApi.exportFunctionLib(row.id, row.name, loading) |
| 276 | + .catch((e: any) => { |
| 277 | + if (e.response.status !== 403) { |
| 278 | + e.response.data.text().then((res: string) => { |
| 279 | + MsgError(`${t('views.application.tip.ExportError')}:${JSON.parse(res).message}`) |
| 280 | + }) |
| 281 | + } |
| 282 | + }) |
| 283 | +} |
| 284 | +
|
| 285 | +function importFunctionLib(file: any) { |
| 286 | + const formData = new FormData() |
| 287 | + formData.append('file', file.raw, file.name) |
| 288 | + elUploadRef.value.clearFiles() |
| 289 | + functionLibApi |
| 290 | + .importFunctionLib(formData, loading) |
| 291 | + .then(async (res: any) => { |
| 292 | + if (res?.data) { |
| 293 | + searchHandle() |
| 294 | + } |
| 295 | + }) |
| 296 | + .catch((e: any) => { |
| 297 | + if (e.code === 400) { |
| 298 | + MsgConfirm(t('common.tip'), t('views.application.tip.professionalMessage'), { |
| 299 | + cancelButtonText: t('common.confirm'), |
| 300 | + confirmButtonText: t('common.professional') |
| 301 | + }).then(() => { |
| 302 | + window.open('https://maxkb.cn/#.html', '_blank') |
| 303 | + }) |
| 304 | + } |
| 305 | + }) |
| 306 | +} |
| 307 | +
|
245 | 308 | function getList() {
|
246 | 309 | const params = {
|
247 | 310 | ...(searchValue.value && { name: searchValue.value }),
|
@@ -303,6 +366,42 @@ onMounted(() => {
|
303 | 366 | })
|
304 | 367 | </script>
|
305 | 368 | <style lang="scss" scoped>
|
| 369 | +.application-card-add { |
| 370 | + width: 100%; |
| 371 | + font-size: 14px; |
| 372 | + min-height: var(--card-min-height); |
| 373 | + border: 1px dashed var(--el-border-color); |
| 374 | + background: var(--el-disabled-bg-color); |
| 375 | + border-radius: 8px; |
| 376 | + box-sizing: border-box; |
| 377 | +
|
| 378 | + &:hover { |
| 379 | + border: 1px solid var(--el-card-bg-color); |
| 380 | + background-color: var(--el-card-bg-color); |
| 381 | + } |
| 382 | +
|
| 383 | + .card-add-button { |
| 384 | + &:hover { |
| 385 | + border-radius: 4px; |
| 386 | + background: var(--app-text-color-light-1); |
| 387 | + } |
| 388 | +
|
| 389 | + :deep(.el-upload) { |
| 390 | + display: block; |
| 391 | + width: 100%; |
| 392 | + color: var(--el-text-color-regular); |
| 393 | + } |
| 394 | + } |
| 395 | +} |
| 396 | +
|
| 397 | +.application-card { |
| 398 | + .status-tag { |
| 399 | + position: absolute; |
| 400 | + right: 16px; |
| 401 | + top: 15px; |
| 402 | + } |
| 403 | +} |
| 404 | +
|
306 | 405 | .function-lib-list-container {
|
307 | 406 | .status-button {
|
308 | 407 | position: absolute;
|
|
0 commit comments