|
|
|
@ -60,26 +60,17 @@
|
|
|
|
|
<el-form-item label="企业介绍" prop="introduction"> |
|
|
|
|
<el-input v-model="formData.introduction" type="textarea" placeholder="请输入企业介绍" /> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="企业照片" prop="size"> |
|
|
|
|
<InnerUploadImg |
|
|
|
|
:uploadList="uploadList" |
|
|
|
|
@handler-success="uploadSuccess" |
|
|
|
|
ref="uploadRef" |
|
|
|
|
@handler-remove="uploadRemove" |
|
|
|
|
/> |
|
|
|
|
<el-form-item label="企业照片" prop="fileIds"> |
|
|
|
|
<UploadImgs v-model="formData.fileIds" :limit="3" height="100px" width="100px" /> |
|
|
|
|
</el-form-item> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-form-item label="企业资质照片" prop="size"> |
|
|
|
|
<InnerUploadImg |
|
|
|
|
:uploadList="uploadList" |
|
|
|
|
@handler-success="uploadSuccess" |
|
|
|
|
ref="uploadRef" |
|
|
|
|
@handler-remove="uploadRemove" |
|
|
|
|
/> |
|
|
|
|
<el-form-item label="企业资质" prop="fileIds"> |
|
|
|
|
<UploadImgs v-model="formData.fileIds" :limit="3" height="100px" width="100px" /> |
|
|
|
|
</el-form-item> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-form-item label="企业成立时间" prop="establishmentDate"> |
|
|
|
|
<el-date-picker |
|
|
|
|
v-model="formData.establishmentDate" |
|
|
|
@ -120,7 +111,6 @@
|
|
|
|
|
<el-button type="primary" @click="showMap = false">确定</el-button> |
|
|
|
|
</template> |
|
|
|
|
</el-dialog> |
|
|
|
|
|
|
|
|
|
<el-form-item label="签到半径" prop="gpsLocation"> |
|
|
|
|
<el-input |
|
|
|
|
v-model="formData.signRadius" |
|
|
|
@ -135,26 +125,94 @@
|
|
|
|
|
</section> |
|
|
|
|
<SelectUser ref="selectUserRef" @select-user="echoUser" /> |
|
|
|
|
</ContentWrap> |
|
|
|
|
|
|
|
|
|
<ContentWrap title="资质记录" v-if="formType === 'update'"> |
|
|
|
|
<el-table v-loading="loading" :data="qualificationlist" :stripe="true" :show-overflow-tooltip="true"> |
|
|
|
|
<el-table-column label="资质编号" align="center" fixed="left" prop="enterpriseAuth" /> |
|
|
|
|
<el-table-column label="资质名称" align="center" fixed="left" prop="qualificationName" /> |
|
|
|
|
<el-table-column label="资质描述" align="center" fixed="left" prop="qualificationDescription" /> |
|
|
|
|
<el-table-column |
|
|
|
|
label="资质到期日期" |
|
|
|
|
align="center" |
|
|
|
|
prop="expiryDate" |
|
|
|
|
:formatter="dateFormatter" |
|
|
|
|
width="180px" |
|
|
|
|
/> |
|
|
|
|
</el-table> |
|
|
|
|
</ContentWrap> |
|
|
|
|
|
|
|
|
|
<ContentWrap title="执法记录" v-if="formType === 'update'"> |
|
|
|
|
<div class="demo-collapse"> |
|
|
|
|
<el-collapse v-model="activeNames" @change="handleChange"> |
|
|
|
|
<el-collapse-item |
|
|
|
|
v-for="item in inspectionslist" |
|
|
|
|
:key="item.taskId" |
|
|
|
|
:name="item.taskName" @click="getInspectionsLogList(item.id)"> |
|
|
|
|
<template #title> |
|
|
|
|
<div class="custom-title"> |
|
|
|
|
任务编号: {{item.taskName}} |
|
|
|
|
</div> |
|
|
|
|
<div class="custom-title"> |
|
|
|
|
任务名称: {{item.taskName}} |
|
|
|
|
</div> |
|
|
|
|
<div class="custom-title"> |
|
|
|
|
计划开始时间: {{formatDate(item.taskStartTime)}} |
|
|
|
|
</div> |
|
|
|
|
<div class="custom-title"> |
|
|
|
|
计划结束时间: {{formatDate(item.taskEndTime)}} |
|
|
|
|
</div> |
|
|
|
|
</template> |
|
|
|
|
<el-table v-loading="loading" :data="inspectionsLogList" :stripe="true" :show-overflow-tooltip="true"> |
|
|
|
|
<el-table-column label="执法人员" align="center" prop="inspectName" /> |
|
|
|
|
<el-table-column label="协同执法" align="center" prop="cooperateWithName" /> |
|
|
|
|
<el-table-column label="进度状态" align="center" prop="status"> |
|
|
|
|
<template #default="scope"> |
|
|
|
|
<dict-tag :type="DICT_TYPE.INSPECTIONS_STATUS" :value="scope.row.status" /> |
|
|
|
|
</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
<el-table-column |
|
|
|
|
label="执法时间" |
|
|
|
|
align="center" |
|
|
|
|
prop="createTime" |
|
|
|
|
:formatter="dateFormatter" |
|
|
|
|
width="180px" |
|
|
|
|
/> |
|
|
|
|
</el-table> |
|
|
|
|
</el-collapse-item> |
|
|
|
|
</el-collapse> |
|
|
|
|
</div> |
|
|
|
|
</ContentWrap> |
|
|
|
|
|
|
|
|
|
</template> |
|
|
|
|
<script setup lang="ts"> |
|
|
|
|
import { getStrDictOptions, DICT_TYPE } from '@/utils/dict' |
|
|
|
|
import { EnterprisesApi, EnterprisesVO } from '@/api/enterprises' |
|
|
|
|
import { FileInfoApi } from '@/api/enterprises/fileinfo' |
|
|
|
|
import { EnterpriseQualificationApi, EnterpriseQualificationVO } from '@/api/qualification' |
|
|
|
|
import { EnterpriseInspectionsApi, EnterpriseInspectionsVO } from '@/api/enterpriseinspections' |
|
|
|
|
import { UploadImgs } from '@/components/UploadFile' |
|
|
|
|
import * as FileApi from '@/api/infra/file' |
|
|
|
|
import { ElMessage } from 'element-plus' |
|
|
|
|
import SelectUser from './components/SelectUser.vue' |
|
|
|
|
import * as UserApi from '@/api/system/user' |
|
|
|
|
import {useTagsViewStore} from "@/store/modules/tagsView"; |
|
|
|
|
import {dateFormatter, formatDate} from "@/utils/formatTime"; |
|
|
|
|
|
|
|
|
|
/** 企业 表单 */ |
|
|
|
|
defineOptions({ name: 'UpdateEnterprises' }) |
|
|
|
|
|
|
|
|
|
const { t } = useI18n() // 国际化 |
|
|
|
|
const message = useMessage() // 消息弹窗 |
|
|
|
|
const dialogVisible = ref(false) // 弹窗的是否展示 |
|
|
|
|
const dialogTitle = ref('') // 弹窗的标题 |
|
|
|
|
const formLoading = ref(false) // 表单的加载中:1)修改时的数据加载;2)提交的按钮禁用 |
|
|
|
|
const formType = ref('') // 表单的类型:create - 新增;update - 修改 |
|
|
|
|
const selectUserRef = ref() |
|
|
|
|
const loading = ref(false) |
|
|
|
|
const selectedUser = ref() |
|
|
|
|
const router=useRouter() |
|
|
|
|
const route=useRoute() |
|
|
|
|
const tagView=useTagsViewStore() |
|
|
|
|
const fileIds = ref([]); |
|
|
|
|
const qualificationlist = ref([]); |
|
|
|
|
const inspectionslist = ref([]); |
|
|
|
|
const inspectionsLogList = ref([]); |
|
|
|
|
|
|
|
|
|
const formData = ref({ |
|
|
|
|
id: undefined, |
|
|
|
@ -174,7 +232,8 @@ const formData = ref({
|
|
|
|
|
searchQuery: undefined, |
|
|
|
|
managerDeptId: undefined, |
|
|
|
|
ides: undefined, |
|
|
|
|
startUserSelectAssignees:undefined |
|
|
|
|
startUserSelectAssignees:undefined, |
|
|
|
|
fileIds:[] |
|
|
|
|
}) |
|
|
|
|
const formRules = reactive({ |
|
|
|
|
type: [{ required: true, message: '企业类型不能为空', trigger: 'change' }], |
|
|
|
@ -188,7 +247,7 @@ const { query } = useRoute()
|
|
|
|
|
function init() { |
|
|
|
|
if (query.id) { |
|
|
|
|
// 修改:如果有 id 则设置为 'update' |
|
|
|
|
formType.value = 'update' |
|
|
|
|
formType.value = 'update' |
|
|
|
|
EnterprisesApi.getEnterprises(query.id).then((res) => { |
|
|
|
|
selectedUser.value=res.inviterName; |
|
|
|
|
// formData.value.startUserSelectAssignees=res.userId; |
|
|
|
@ -222,7 +281,6 @@ const initMap = () => {
|
|
|
|
|
zoom: 14 |
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 添加地图点击事件监听器 |
|
|
|
|
window.qq.maps.event.addListener(map, 'click', (event: any) => { |
|
|
|
|
const latLng = event.latLng |
|
|
|
@ -279,12 +337,11 @@ const handleSearch = () => {
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
onMounted(() => { |
|
|
|
|
init() |
|
|
|
|
|
|
|
|
|
getQualificationList() |
|
|
|
|
getInspectionslList() |
|
|
|
|
//getInspectionsLogList() |
|
|
|
|
const openMapAndInit = async () => { |
|
|
|
|
if (showMap.value) { |
|
|
|
|
await nextTick() // 等待 DOM 更新 |
|
|
|
@ -319,20 +376,22 @@ function handlerSelectUser(row) {
|
|
|
|
|
/** 提交表单 */ |
|
|
|
|
const emit = defineEmits(['success']) // 定义 success 事件,用于操作成功后的回调 |
|
|
|
|
const submitForm = async () => { |
|
|
|
|
//console.log(formData.value) |
|
|
|
|
// 校验表单 |
|
|
|
|
await formRef.value.validate() |
|
|
|
|
formData.value.enterprisesStatus=1; |
|
|
|
|
// 提交请求 |
|
|
|
|
loading.value = true |
|
|
|
|
try { |
|
|
|
|
|
|
|
|
|
const data = formData.value as unknown as EnterprisesVO |
|
|
|
|
if (formType.value === 'create') { |
|
|
|
|
|
|
|
|
|
const data = formData.value |
|
|
|
|
if (formType.value == 'create') { |
|
|
|
|
await EnterprisesApi.pccreateEnterprises(data) |
|
|
|
|
message.success(t('common.createSuccess')) |
|
|
|
|
tagView.delView(route) |
|
|
|
|
router.go(-1) |
|
|
|
|
} else { |
|
|
|
|
await EnterprisesApi.updateEnterprises(data) |
|
|
|
|
|
|
|
|
|
message.success(t('common.updateSuccess')) |
|
|
|
|
} |
|
|
|
|
dialogVisible.value = false |
|
|
|
@ -376,8 +435,11 @@ const resetForm = () => {
|
|
|
|
|
const uploadList: any = ref([]) |
|
|
|
|
|
|
|
|
|
async function uploadSuccess(res) { |
|
|
|
|
console.log('1111111111111111111'); |
|
|
|
|
console.log(res.data.file_id) |
|
|
|
|
fileIds.value.push(res.data.file_id); |
|
|
|
|
if (res) { |
|
|
|
|
await FileInfoApi.createFileInfo({ |
|
|
|
|
await FileApi.createFile({ |
|
|
|
|
unitId: formData.value.id || id.value, |
|
|
|
|
attachmentPath: res.data, |
|
|
|
|
attachmentName: res.filename, |
|
|
|
@ -395,25 +457,49 @@ async function uploadSuccess(res) {
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
function getCarImg() { |
|
|
|
|
|
|
|
|
|
/** 资质查询列表 BY-ZY */ |
|
|
|
|
const getQualificationList = async () => { |
|
|
|
|
loading.value = true |
|
|
|
|
FileInfoApi.getFileInfoPage({ unitId: formData.value.id, type: 4 }).then((res) => { |
|
|
|
|
uploadList.value = res.list.map((item) => { |
|
|
|
|
return { |
|
|
|
|
...item, |
|
|
|
|
url: item.attachmentPath, |
|
|
|
|
name: item.attachmentName |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
try { |
|
|
|
|
const data = await EnterpriseQualificationApi.getEnterpriseQualificationPage({"enterpriseId":query.id}) |
|
|
|
|
qualificationlist.value = data.list |
|
|
|
|
} finally { |
|
|
|
|
loading.value = false |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
function uploadRemove(file) { |
|
|
|
|
FileInfoApi.deleteFileInfo(file.id).then(() => { |
|
|
|
|
ElMessage.success('删除成功') |
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** 执法记录查询列表 by zy*/ |
|
|
|
|
const getInspectionslList = async () => { |
|
|
|
|
loading.value = true |
|
|
|
|
try { |
|
|
|
|
const data = await EnterpriseInspectionsApi.getEnterpriseInspectionsPage({"enterpriseId":query.id}) |
|
|
|
|
inspectionslist.value = data.list |
|
|
|
|
} finally { |
|
|
|
|
loading.value = false |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** 执法记录查询列表 by zy*/ |
|
|
|
|
const getInspectionsLogList = async (insprctionsId) => { |
|
|
|
|
console.log(insprctionsId) |
|
|
|
|
loading.value = true |
|
|
|
|
try { |
|
|
|
|
const data = await EnterpriseInspectionsApi.inspectionsLogList({"inspectionsId":insprctionsId}) |
|
|
|
|
inspectionsLogList.value = data |
|
|
|
|
} finally { |
|
|
|
|
loading.value = false |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</script> |
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped> |
|
|
|
@ -467,4 +553,9 @@ function uploadRemove(file) {
|
|
|
|
|
height: 400px; |
|
|
|
|
margin-top: 20px; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.custom-title { |
|
|
|
|
font-size: 14px; |
|
|
|
|
margin: 2% auto; |
|
|
|
|
} |
|
|
|
|
</style> |
|
|
|
|