diff --git a/src/App.vue b/src/App.vue
index 7407d97..29300b2 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -22,7 +22,7 @@ const setDefaultTheme = () => {
}
appStore.setIsDark(isDarkTheme)
}
-setDefaultTheme()
+// setDefaultTheme()
diff --git a/src/api/enterprises/index.ts b/src/api/enterprises/index.ts
index 9074c6a..ab443c4 100644
--- a/src/api/enterprises/index.ts
+++ b/src/api/enterprises/index.ts
@@ -1,52 +1,52 @@
-import request from '@/config/axios'
-
-// 企业 VO
-export interface EnterprisesVO {
- id: number // 企业ID,主键
- departmentId: number // 所属部门ID
- userId: number // 邀请人
- type: string // 企业类型
- region: string // 企业所属区域
- enterprisesName: string // 企业名称
- address: string // 企业地址
- contactName: string // 环保负责人姓名
- environmentalContactPhone: string // 企业环保负责人联系电话
- registrationNumber: string // 企业注册号
- introduction: string // 企业图文介绍
- establishmentDate: Date // 企业成立时间
- gpsLocation: string // 企业经纬度
- managerDeptId: number // 管理部门
-}
-
-// 企业 API
-export const EnterprisesApi = {
- // 查询企业分页
- getEnterprisesPage: async (params: any) => {
- return await request.get({ url: `/system/enterprises/page`, params })
- },
-
- // 查询企业详情
- getEnterprises: async (id: number) => {
- return await request.get({ url: `/system/enterprises/get?id=` + id })
- },
-
- // 新增企业
- createEnterprises: async (data: EnterprisesVO) => {
- return await request.post({ url: `/system/enterprises/create`, data })
- },
-
- // 修改企业
- updateEnterprises: async (data: EnterprisesVO) => {
- return await request.put({ url: `/system/enterprises/update`, data })
- },
-
- // 删除企业
- deleteEnterprises: async (id: number) => {
- return await request.delete({ url: `/system/enterprises/delete?id=` + id })
- },
-
- // 导出企业 Excel
- exportEnterprises: async (params) => {
- return await request.download({ url: `/system/enterprises/export-excel`, params })
- },
-}
\ No newline at end of file
+import request from '@/config/axios'
+
+// 企业 VO
+export interface EnterprisesVO {
+ id: number // 企业ID,主键
+ departmentId: number // 所属部门ID
+ userId: number // 邀请人
+ type: string // 企业类型
+ region: string // 企业所属区域
+ enterprisesName: string // 企业名称
+ address: string // 企业地址
+ contactName: string // 环保负责人姓名
+ environmentalContactPhone: string // 企业环保负责人联系电话
+ registrationNumber: string // 企业注册号
+ introduction: string // 企业图文介绍
+ establishmentDate: Date // 企业成立时间
+ gpsLocation: string // 企业经纬度
+ managerDeptId: number // 管理部门
+}
+
+// 企业 API
+export const EnterprisesApi = {
+ // 查询企业分页
+ getEnterprisesPage: async (params: any) => {
+ return await request.get({ url: `/system/enterprise/page`, params })
+ },
+
+ // 查询企业详情
+ getEnterprises: async (id: number) => {
+ return await request.get({ url: `/system/enterprise/get?id=` + id })
+ },
+
+ // 新增企业
+ createEnterprises: async (data: EnterprisesVO) => {
+ return await request.post({ url: `/system/enterprise/create`, data })
+ },
+
+ // 修改企业
+ updateEnterprises: async (data: EnterprisesVO) => {
+ return await request.put({ url: `/system/enterprise/update`, data })
+ },
+
+ // 删除企业
+ deleteEnterprises: async (id: number) => {
+ return await request.delete({ url: `/system/enterprise/delete?id=` + id })
+ },
+
+ // 导出企业 Excel
+ exportEnterprises: async (params) => {
+ return await request.download({ url: `/system/enterprise/export-excel`, params })
+ },
+}
diff --git a/src/api/login/index.ts b/src/api/login/index.ts
index 8c69d9b..10f67c5 100644
--- a/src/api/login/index.ts
+++ b/src/api/login/index.ts
@@ -1,5 +1,5 @@
import request from '@/config/axios'
-import { getRefreshToken } from '@/utils/auth'
+// import { getRefreshToken } from '@/utils/auth'
import type { RegisterVO, UserLoginVO } from './types'
export interface SmsCodeVO {
diff --git a/src/components/Dialog/src/Dialog.vue b/src/components/Dialog/src/Dialog.vue
index a1eb550..c38eb83 100644
--- a/src/components/Dialog/src/Dialog.vue
+++ b/src/components/Dialog/src/Dialog.vue
@@ -11,7 +11,8 @@ const props = defineProps({
fullscreen: propTypes.bool.def(true),
width: propTypes.oneOfType([String, Number]).def('40%'),
scroll: propTypes.bool.def(false), // 是否开启滚动条。如果是的话,按照 maxHeight 设置最大高度
- maxHeight: propTypes.oneOfType([String, Number]).def('400px')
+ maxHeight: propTypes.oneOfType([String, Number]).def('400px'),
+
})
const getBindValue = computed(() => {
diff --git a/src/components/UploadFile/src/UploadImgs.vue b/src/components/UploadFile/src/UploadImgs.vue
index 59857a9..c2280bc 100644
--- a/src/components/UploadFile/src/UploadImgs.vue
+++ b/src/components/UploadFile/src/UploadImgs.vue
@@ -10,7 +10,7 @@
:drag="drag"
:http-request="httpRequest"
:limit="limit"
- :multiple="true"
+ :multiple="false"
:on-error="uploadError"
:on-exceed="handleExceed"
:on-success="uploadSuccess"
@@ -86,9 +86,9 @@ const props = defineProps({
const { uploadUrl, httpRequest } = useUpload()
-const fileList = ref([])
+const fileList = ref([])
const uploadNumber = ref(0)
-const uploadList = ref([])
+const uploadList = ref([])
/**
* @description 文件上传之前判断
* @param rawFile 上传的文件
@@ -123,7 +123,7 @@ const uploadSuccess: UploadProps['onSuccess'] = (res: any): void => {
// 删除自身
const index = fileList.value.findIndex((item) => item.response?.data === res.data)
fileList.value.splice(index, 1)
- uploadList.value.push({ name: res.data, url: res.data })
+ uploadList.value.push({ id: res.data.file_id, url: res.data.url })
if (uploadList.value.length == uploadNumber.value) {
fileList.value.push(...uploadList.value)
uploadList.value = []
@@ -142,26 +142,19 @@ watch(
}
fileList.value = [] // 保障数据为空
- fileList.value.push(
- ...(val as string[]).map((url) => ({ name: url.substring(url.lastIndexOf('/') + 1), url }))
- )
+ fileList.value.push(...val)
},
{ immediate: true, deep: true }
)
// 发送图片链接列表更新
const emitUpdateModelValue = () => {
- let result: string[] = fileList.value.map((file) => file.url!)
+ let result = fileList.value
emit('update:modelValue', result)
}
// 删除图片
-const handleRemove = (uploadFile: UploadFile) => {
- fileList.value = fileList.value.filter(
- (item) => item.url !== uploadFile.url || item.name !== uploadFile.name
- )
- emit(
- 'update:modelValue',
- fileList.value.map((file) => file.url!)
- )
+const handleRemove = (uploadFile) => {
+ fileList.value = fileList.value.filter((item) => item.id !== uploadFile.id)
+ emit('update:modelValue', fileList.value)
}
// 图片上传错误提示
diff --git a/src/config/axios/config.ts b/src/config/axios/config.ts
index 8116508..069a7cd 100644
--- a/src/config/axios/config.ts
+++ b/src/config/axios/config.ts
@@ -25,4 +25,5 @@ const config: {
default_headers: 'application/json'
}
+
export { config }
diff --git a/src/utils/dict.ts b/src/utils/dict.ts
index 99c1800..6fe28b5 100644
--- a/src/utils/dict.ts
+++ b/src/utils/dict.ts
@@ -112,7 +112,9 @@ export enum DICT_TYPE {
COMMON_STATUS = 'common_status',
TERMINAL = 'terminal', // 终端
DATE_INTERVAL = 'date_interval', // 数据间隔
-
+ //========== 企业 ==========
+ ENTERPRISES_AREA = 'enterprises_area',
+ ENTERPRISES_TYPE = 'enterprises_type',
// ========== SYSTEM 模块 ==========
SYSTEM_USER_SEX = 'system_user_sex',
SYSTEM_MENU_TYPE = 'system_menu_type',
@@ -132,12 +134,6 @@ export enum DICT_TYPE {
USER_AUDIT_TYPE = 'user_audit_type',
WX_USER_TYPE = 'wx_user_type',
TAG_TYPE = 'tag_type',
-
- // ========== 企业 模块 ==========
- ENTERPRISES_TYPE='enterprises_type',
- ENTERPRISES_AREA='enterprises_area',
-
-
// ========== INFRA 模块 ==========
INFRA_BOOLEAN_STRING = 'infra_boolean_string',
INFRA_JOB_STATUS = 'infra_job_status',
diff --git a/src/views/enterprises/EnterprisesForm.vue b/src/views/enterprises/EnterprisesForm.vue
index 2a57cbb..96399d6 100644
--- a/src/views/enterprises/EnterprisesForm.vue
+++ b/src/views/enterprises/EnterprisesForm.vue
@@ -53,7 +53,6 @@
@handler-remove="uploadRemove"
/>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-s
+
+
+ 企业名称
+ {{ formData.enterprisesName }}
+
+
+ 企业类型
+ {{ getDictLabel(DICT_TYPE.ENTERPRISES_TYPE, formData.type) }}
+
+
+ 企业所属区域
+ {{ getDictLabel(DICT_TYPE.ENTERPRISES_AREA, formData.region) }}
+
+
+ 企业地址
+ {{ formData.address }}
+
+
+ 负责人
+ {{ formData.contactName }} {{ formData.environmentalContactPhone }}
+
+
+ 成立时间
+ {{ formData.establishmentDate }}
+
+
+ 成立时间
+ {{ formData.establishmentDate }}
+
+
+ 企业介绍
+ {{ formData.introduction }}
+
+
+ 图片介绍
+
+
+
+
+s
diff --git a/src/views/enterprises/index.vue b/src/views/enterprises/index.vue
index 2f1c5d4..37a44df 100644
--- a/src/views/enterprises/index.vue
+++ b/src/views/enterprises/index.vue
@@ -17,16 +17,16 @@
class="!w-240px"
/>
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
-
搜索
重置
-
+
新增
-
+
导出
@@ -108,7 +95,6 @@
-
@@ -124,7 +110,11 @@
-
+
-
-
-
+
+
+
@@ -219,7 +187,7 @@ const queryParams = reactive({
establishmentDate: [],
gpsLocation: undefined,
createTime: [],
- managerDeptId: undefined,
+ managerDeptId: undefined
})
const queryFormRef = ref() // 搜索的表单
const exportLoading = ref(false) // 导出的加载中
@@ -236,7 +204,6 @@ const getList = async () => {
}
}
-
/** 搜索按钮操作 */
const handleQuery = () => {
queryParams.pageNo = 1
@@ -255,23 +222,18 @@ const openForm = (type: string, id?: number) => {
formRef.value.open(type, id)
}
-
/*详情*/
const { push } = useRouter() // 路由
-
-const detailformRef = ( id?: number) => {
-push({
- path:'/enterprises/detailEnterprises',
- query:{
- id
- }
-})
+const detailformRef = (id?: number) => {
+ push({
+ path: '/enterprises/detailEnterprises',
+ query: {
+ id
+ }
+ })
}
-
-
-
/** 删除按钮操作 */
const handleDelete = async (id: number) => {
try {
diff --git a/src/views/qualification/index.vue b/src/views/qualification/index.vue
index 04176f7..cc93514 100644
--- a/src/views/qualification/index.vue
+++ b/src/views/qualification/index.vue
@@ -93,7 +93,7 @@
type="primary"
plain
@click="openForm('create')"
- v-hasPermi="['system:enterprise-qualification:create']"
+ v-hasPermi="['system:enterprises-qualification:create']"
>
新增
@@ -102,7 +102,7 @@
plain
@click="handleExport"
:loading="exportLoading"
- v-hasPermi="['system:enterprise-qualification:export']"
+ v-hasPermi="['system:enterprises-qualification:export']"
>
导出
@@ -135,7 +135,7 @@
link
type="primary"
@click="openForm('update', scope.row.id)"
- v-hasPermi="['system:enterprise-qualification:update']"
+ v-hasPermi="['system:enterprises-qualification:update']"
>
编辑
@@ -143,7 +143,7 @@
link
type="danger"
@click="handleDelete(scope.row.id)"
- v-hasPermi="['system:enterprise-qualification:delete']"
+ v-hasPermi="['system:enterprises-qualification:delete']"
>
删除
diff --git a/src/views/system/dict/index.vue b/src/views/system/dict/index.vue
index acc737c..1d44874 100644
--- a/src/views/system/dict/index.vue
+++ b/src/views/system/dict/index.vue
@@ -90,6 +90,12 @@
+
+
+ {{ row.type.toUpperCase() }}
+
+
+
diff --git a/src/views/system/task/index.vue b/src/views/system/task/index.vue
index ca212d6..790f9cd 100644
--- a/src/views/system/task/index.vue
+++ b/src/views/system/task/index.vue
@@ -141,7 +141,7 @@