|
@@ -3,25 +3,20 @@ import { ContentWrap } from '@/components/ContentWrap'
|
|
|
import { Search } from '@/components/Search'
|
|
|
import { Dialog } from '@/components/Dialog'
|
|
|
import { useI18n } from '@/hooks/web/useI18n'
|
|
|
-import { ElButton } from 'element-plus'
|
|
|
+import { ElButton, ElTag } from 'element-plus'
|
|
|
import { Table } from '@/components/Table'
|
|
|
-import { getDepartmentTableApi, saveDepartmentApi, deleteDepartmentApi } from '@/api/department'
|
|
|
+import { getListApi, saveApi, deleteApi, updateApi } from '@/api/department'
|
|
|
import type { DepartmentItem } from '@/api/department/types'
|
|
|
import { useTable } from '@/hooks/web/useTable'
|
|
|
import { ref, unref, reactive } from 'vue'
|
|
|
import Write from './components/Write.vue'
|
|
|
-import Detail from './components/Detail.vue'
|
|
|
import { CrudSchema, useCrudSchemas } from '@/hooks/web/useCrudSchemas'
|
|
|
-import { getQiniuToken } from '@/api/common'
|
|
|
-import SparkMd5 from 'spark-md5'
|
|
|
-import { useStorage } from '@/hooks/web/useStorage'
|
|
|
|
|
|
const ids = ref<string[]>([])
|
|
|
-const { getStorage } = useStorage()
|
|
|
const { tableRegister, tableState, tableMethods } = useTable({
|
|
|
fetchDataApi: async () => {
|
|
|
const { currentPage, pageSize } = tableState
|
|
|
- const res = await getDepartmentTableApi({
|
|
|
+ const res = await getListApi({
|
|
|
order: '',
|
|
|
orderField: '',
|
|
|
page: unref(currentPage),
|
|
@@ -34,7 +29,7 @@ const { tableRegister, tableState, tableMethods } = useTable({
|
|
|
}
|
|
|
},
|
|
|
fetchDelApi: async () => {
|
|
|
- const res = await deleteDepartmentApi(unref(ids))
|
|
|
+ const res = await deleteApi(unref(ids))
|
|
|
return !!res
|
|
|
}
|
|
|
})
|
|
@@ -48,35 +43,52 @@ const setSearchParams = (params: any) => {
|
|
|
}
|
|
|
|
|
|
const { t } = useI18n()
|
|
|
-const qiniuUrl = 'http://img.ailinzn.com'
|
|
|
-const qiniuUploadUrl = 'https://up-z1.qiniup.com'
|
|
|
-const currentRow = ref<any>()
|
|
|
-const dataObj = ref({
|
|
|
- key: '',
|
|
|
- token: ''
|
|
|
-})
|
|
|
+
|
|
|
const crudSchemas = reactive<CrudSchema[]>([
|
|
|
{
|
|
|
field: 'name',
|
|
|
- label: t('userDemo.departmentName')
|
|
|
+ label: '部门名称'
|
|
|
},
|
|
|
+
|
|
|
{
|
|
|
- field: 'tel',
|
|
|
- label: '电话',
|
|
|
+ field: 'enabled',
|
|
|
+ label: '是否启用',
|
|
|
search: {
|
|
|
hidden: true
|
|
|
+ },
|
|
|
+ form: {
|
|
|
+ component: 'Switch',
|
|
|
+ value: 1,
|
|
|
+ componentProps: {
|
|
|
+ activeValue: 1,
|
|
|
+ inactiveValue: 0
|
|
|
+ }
|
|
|
+ },
|
|
|
+ table: {
|
|
|
+ slots: {
|
|
|
+ default: (data: any) => {
|
|
|
+ const row = data.row
|
|
|
+ return (
|
|
|
+ <>
|
|
|
+ <ElTag type={row.enabled == '1' ? 'success' : 'danger'}>
|
|
|
+ {row.enabled == '1' ? '启用' : '关闭'}
|
|
|
+ </ElTag>
|
|
|
+ </>
|
|
|
+ )
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
},
|
|
|
{
|
|
|
- field: 'code',
|
|
|
- label: '编码',
|
|
|
+ field: 'tel',
|
|
|
+ label: '电话',
|
|
|
search: {
|
|
|
hidden: true
|
|
|
}
|
|
|
},
|
|
|
{
|
|
|
- field: 'description',
|
|
|
- label: '描述',
|
|
|
+ field: 'memo',
|
|
|
+ label: '备注',
|
|
|
search: {
|
|
|
hidden: true
|
|
|
},
|
|
@@ -91,96 +103,6 @@ const crudSchemas = reactive<CrudSchema[]>([
|
|
|
}
|
|
|
}
|
|
|
},
|
|
|
- {
|
|
|
- field: 'photo',
|
|
|
- label: 'logo',
|
|
|
- search: {
|
|
|
- hidden: true
|
|
|
- },
|
|
|
- form: {
|
|
|
- colProps: {
|
|
|
- span: 24
|
|
|
- },
|
|
|
- component: 'Upload',
|
|
|
- componentProps: {
|
|
|
- action: qiniuUploadUrl,
|
|
|
- class: 'filePageUploader',
|
|
|
- data: dataObj.value,
|
|
|
- fileList: currentRow.value?.photo
|
|
|
- ? [
|
|
|
- {
|
|
|
- url: currentRow.value?.photo
|
|
|
- }
|
|
|
- ]
|
|
|
- : [],
|
|
|
- headers: {
|
|
|
- token: getStorage('token')
|
|
|
- },
|
|
|
- beforeUpload: (file) => {
|
|
|
- return new Promise((resolve, reject) => {
|
|
|
- getQiniuToken()
|
|
|
- .then((response) => {
|
|
|
- var photoExt = file.name.substr(file.name.lastIndexOf('.')).toLowerCase() // 获得文件后缀名
|
|
|
- const fileReader = new FileReader()
|
|
|
- const chunkSize = 1024 * 1024 * 2 // 每个分片的大小 2MB
|
|
|
- const chunks = Math.ceil(file.size / chunkSize)
|
|
|
- let currentChunk = 0
|
|
|
- var spark = new SparkMd5.ArrayBuffer()
|
|
|
- const loadFile = (e) => {
|
|
|
- spark.append(e.target.result)
|
|
|
- currentChunk++
|
|
|
- if (currentChunk < chunks) {
|
|
|
- // 未读取完继续读取
|
|
|
- loadNext()
|
|
|
- } else {
|
|
|
- // 文件读取完
|
|
|
- const md5 = spark.end() // 获取文件的md5值
|
|
|
- dataObj.value.token = response.data.data
|
|
|
- dataObj.value.key = md5 + photoExt
|
|
|
- resolve(true)
|
|
|
- }
|
|
|
- }
|
|
|
- const loadError = () => {
|
|
|
- // 读取文件失败
|
|
|
- reject('compute file md5 error')
|
|
|
- }
|
|
|
- const loadNext = () => {
|
|
|
- fileReader.onload = loadFile
|
|
|
- fileReader.onerror = loadError
|
|
|
- const start = currentChunk * chunkSize
|
|
|
- const end = start + chunkSize >= file.size ? file.size : start + chunkSize
|
|
|
- const data = file.slice(start, end)
|
|
|
- fileReader.readAsArrayBuffer(data)
|
|
|
- }
|
|
|
- loadNext()
|
|
|
- })
|
|
|
- .catch((err) => {
|
|
|
- console.log(err)
|
|
|
- reject(false)
|
|
|
- })
|
|
|
- })
|
|
|
- },
|
|
|
- onSuccess: (response) => {
|
|
|
- const url = qiniuUrl + '/' + response.key
|
|
|
- currentRow.value.photo = url
|
|
|
- },
|
|
|
- slots: {
|
|
|
- default: () => <ElButton type="primary">上传文件</ElButton>
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- },
|
|
|
-
|
|
|
- {
|
|
|
- field: 'createTime',
|
|
|
- label: t('tableDemo.displayTime'),
|
|
|
- search: {
|
|
|
- hidden: true
|
|
|
- },
|
|
|
- form: {
|
|
|
- hidden: true
|
|
|
- }
|
|
|
- },
|
|
|
{
|
|
|
field: 'action',
|
|
|
width: '260px',
|
|
@@ -220,7 +142,7 @@ const dialogVisible = ref(false)
|
|
|
const dialogTitle = ref('')
|
|
|
|
|
|
const actionType = ref('')
|
|
|
-
|
|
|
+const currentRow = ref()
|
|
|
const AddAction = () => {
|
|
|
dialogTitle.value = t('exampleDemo.add')
|
|
|
currentRow.value = null
|
|
@@ -257,15 +179,28 @@ const save = async () => {
|
|
|
const formData = await write?.submit()
|
|
|
if (formData) {
|
|
|
saveLoading.value = true
|
|
|
- const res = await saveDepartmentApi(formData)
|
|
|
- .catch(() => {})
|
|
|
- .finally(() => {
|
|
|
- saveLoading.value = false
|
|
|
- })
|
|
|
- if (res) {
|
|
|
- dialogVisible.value = false
|
|
|
- currentPage.value = 1
|
|
|
- getList()
|
|
|
+ if (formData.id) {
|
|
|
+ const res = await updateApi(formData)
|
|
|
+ .catch(() => {})
|
|
|
+ .finally(() => {
|
|
|
+ saveLoading.value = false
|
|
|
+ })
|
|
|
+ if (res) {
|
|
|
+ dialogVisible.value = false
|
|
|
+ currentPage.value = 1
|
|
|
+ getList()
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ const res = await saveApi(formData)
|
|
|
+ .catch(() => {})
|
|
|
+ .finally(() => {
|
|
|
+ saveLoading.value = false
|
|
|
+ })
|
|
|
+ if (res) {
|
|
|
+ dialogVisible.value = false
|
|
|
+ currentPage.value = 1
|
|
|
+ getList()
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -302,13 +237,6 @@ const save = async () => {
|
|
|
:form-schema="allSchemas.formSchema"
|
|
|
:current-row="currentRow"
|
|
|
/>
|
|
|
-
|
|
|
- <Detail
|
|
|
- v-if="actionType === 'detail'"
|
|
|
- :detail-schema="allSchemas.detailSchema"
|
|
|
- :current-row="currentRow"
|
|
|
- />
|
|
|
-
|
|
|
<template #footer>
|
|
|
<ElButton v-if="actionType !== 'detail'" type="primary" :loading="saveLoading" @click="save">
|
|
|
{{ t('exampleDemo.save') }}
|