|
@@ -23,7 +23,7 @@
|
|
<template #timeSlot="{ item }"> {{ item.startDate }} - {{ item.stopDate }} </template>
|
|
<template #timeSlot="{ item }"> {{ item.startDate }} - {{ item.stopDate }} </template>
|
|
</byTable>
|
|
</byTable>
|
|
</div>
|
|
</div>
|
|
- <el-dialog :title="modalType == 'add' ? '添加公司' : '编辑公司'" v-model="dialogVisible" width="800" v-loading="loading">
|
|
|
|
|
|
+ <el-dialog :title="modalType == 'add' ? '添加公司' : '编辑公司'" v-model="dialogVisible" width="600" v-loading="loading">
|
|
<byForm :formConfig="formConfig" :formOption="formOption" v-model="formData.data" :rules="rules" ref="byform">
|
|
<byForm :formConfig="formConfig" :formOption="formOption" v-model="formData.data" :rules="rules" ref="byform">
|
|
<template #timeGanger>
|
|
<template #timeGanger>
|
|
<div style="width: 100%">
|
|
<div style="width: 100%">
|
|
@@ -38,6 +38,84 @@
|
|
</el-row>
|
|
</el-row>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
|
|
+ <template #file>
|
|
|
|
+ <div style="width: 100%">
|
|
|
|
+ <el-row style="width: 100%">
|
|
|
|
+ <el-col :span="6">
|
|
|
|
+ <el-form-item label="企业logo">
|
|
|
|
+ <el-upload
|
|
|
|
+ class="avatar-uploader"
|
|
|
|
+ action="https://winfaster.obs.cn-south-1.myhuaweicloud.com"
|
|
|
|
+ :data="uploadDataOne"
|
|
|
|
+ :show-file-list="false"
|
|
|
|
+ :on-success="enterpriseLogoListSuccess"
|
|
|
|
+ :before-upload="uploadFileOne">
|
|
|
|
+ <el-image
|
|
|
|
+ v-if="formData.data.enterpriseLogoList && formData.data.enterpriseLogoList.length > 0"
|
|
|
|
+ :src="formData.data.enterpriseLogoList[0].fileUrl"
|
|
|
|
+ fit="scale-down"
|
|
|
|
+ class="avatar" />
|
|
|
|
+ <el-icon v-else class="avatar-uploader-icon"><Plus /></el-icon>
|
|
|
|
+ </el-upload>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-col>
|
|
|
|
+ <el-col :span="6">
|
|
|
|
+ <el-form-item label="法人签名">
|
|
|
|
+ <el-upload
|
|
|
|
+ class="avatar-uploader"
|
|
|
|
+ action="https://winfaster.obs.cn-south-1.myhuaweicloud.com"
|
|
|
|
+ :data="uploadDataTwo"
|
|
|
|
+ :show-file-list="false"
|
|
|
|
+ :on-success="larSignListSuccess"
|
|
|
|
+ :before-upload="uploadFileTwo">
|
|
|
|
+ <el-image
|
|
|
|
+ v-if="formData.data.larSignList && formData.data.larSignList.length > 0"
|
|
|
|
+ :src="formData.data.larSignList[0].fileUrl"
|
|
|
|
+ fit="scale-down"
|
|
|
|
+ class="avatar" />
|
|
|
|
+ <el-icon v-else class="avatar-uploader-icon"><Plus /></el-icon>
|
|
|
|
+ </el-upload>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-col>
|
|
|
|
+ <el-col :span="6">
|
|
|
|
+ <el-form-item label="公章">
|
|
|
|
+ <el-upload
|
|
|
|
+ class="avatar-uploader"
|
|
|
|
+ action="https://winfaster.obs.cn-south-1.myhuaweicloud.com"
|
|
|
|
+ :data="uploadDataThree"
|
|
|
|
+ :show-file-list="false"
|
|
|
|
+ :on-success="officialSealListSuccess"
|
|
|
|
+ :before-upload="uploadFileThree">
|
|
|
|
+ <el-image
|
|
|
|
+ v-if="formData.data.officialSealList && formData.data.officialSealList.length > 0"
|
|
|
|
+ :src="formData.data.officialSealList[0].fileUrl"
|
|
|
|
+ fit="scale-down"
|
|
|
|
+ class="avatar" />
|
|
|
|
+ <el-icon v-else class="avatar-uploader-icon"><Plus /></el-icon>
|
|
|
|
+ </el-upload>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-col>
|
|
|
|
+ <el-col :span="6">
|
|
|
|
+ <el-form-item label="合同章">
|
|
|
|
+ <el-upload
|
|
|
|
+ class="avatar-uploader"
|
|
|
|
+ action="https://winfaster.obs.cn-south-1.myhuaweicloud.com"
|
|
|
|
+ :data="uploadDataFour"
|
|
|
|
+ :show-file-list="false"
|
|
|
|
+ :on-success="contractSealListSuccess"
|
|
|
|
+ :before-upload="uploadFileFour">
|
|
|
|
+ <el-image
|
|
|
|
+ v-if="formData.data.contractSealList && formData.data.contractSealList.length > 0"
|
|
|
|
+ :src="formData.data.contractSealList[0].fileUrl"
|
|
|
|
+ fit="scale-down"
|
|
|
|
+ class="avatar" />
|
|
|
|
+ <el-icon v-else class="avatar-uploader-icon"><Plus /></el-icon>
|
|
|
|
+ </el-upload>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-col>
|
|
|
|
+ </el-row>
|
|
|
|
+ </div>
|
|
|
|
+ </template>
|
|
</byForm>
|
|
</byForm>
|
|
<template #footer>
|
|
<template #footer>
|
|
<el-button @click="dialogVisible = false" size="large">取 消</el-button>
|
|
<el-button @click="dialogVisible = false" size="large">取 消</el-button>
|
|
@@ -48,12 +126,12 @@
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<script setup>
|
|
<script setup>
|
|
-/* eslint-disable vue/no-unused-components */
|
|
|
|
import { ElMessage, ElMessageBox } from "element-plus";
|
|
import { ElMessage, ElMessageBox } from "element-plus";
|
|
import byTable from "@/components/byTable/index";
|
|
import byTable from "@/components/byTable/index";
|
|
import byForm from "@/components/byForm/index";
|
|
import byForm from "@/components/byForm/index";
|
|
import useUserStore from "@/store/modules/user";
|
|
import useUserStore from "@/store/modules/user";
|
|
import { computed, defineComponent, ref } from "vue";
|
|
import { computed, defineComponent, ref } from "vue";
|
|
|
|
+
|
|
const loading = ref(false);
|
|
const loading = ref(false);
|
|
const submitLoading = ref(false);
|
|
const submitLoading = ref(false);
|
|
const sourceList = ref({
|
|
const sourceList = ref({
|
|
@@ -189,10 +267,12 @@ const config = computed(() => {
|
|
},
|
|
},
|
|
];
|
|
];
|
|
});
|
|
});
|
|
-
|
|
|
|
let formData = reactive({
|
|
let formData = reactive({
|
|
data: {
|
|
data: {
|
|
- type: "1",
|
|
|
|
|
|
+ enterpriseLogoList: [],
|
|
|
|
+ larSignList: [],
|
|
|
|
+ officialSealList: [],
|
|
|
|
+ contractSealList: [],
|
|
},
|
|
},
|
|
treeData: [],
|
|
treeData: [],
|
|
});
|
|
});
|
|
@@ -247,19 +327,6 @@ const formConfig = reactive([
|
|
prop: "taxpayerQualification",
|
|
prop: "taxpayerQualification",
|
|
label: "纳税人资质",
|
|
label: "纳税人资质",
|
|
data: [],
|
|
data: [],
|
|
- // isLoad: {
|
|
|
|
- // url: "/dictTenantData/page",
|
|
|
|
- // labelKey: "dictValue",
|
|
|
|
- // labelVal: "dictKey",
|
|
|
|
- // method: "post",
|
|
|
|
- // req: {
|
|
|
|
- // pageNum: 1,
|
|
|
|
- // pageSize: 999,
|
|
|
|
- // dictCode: "customer_source",
|
|
|
|
- // tenantId: useUserStore().user.tenantId,
|
|
|
|
- // },
|
|
|
|
- // resUrl: "rows",
|
|
|
|
- // },
|
|
|
|
},
|
|
},
|
|
{
|
|
{
|
|
type: "input",
|
|
type: "input",
|
|
@@ -267,12 +334,23 @@ const formConfig = reactive([
|
|
label: "进出口企业代码",
|
|
label: "进出口企业代码",
|
|
required: true,
|
|
required: true,
|
|
},
|
|
},
|
|
|
|
+ {
|
|
|
|
+ type: "input",
|
|
|
|
+ prop: "crCode",
|
|
|
|
+ label: "海关注册代码",
|
|
|
|
+ required: true,
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ type: "slot",
|
|
|
|
+ prop: "file",
|
|
|
|
+ slotName: "file",
|
|
|
|
+ label: "签章",
|
|
|
|
+ },
|
|
]);
|
|
]);
|
|
const getList = async (req) => {
|
|
const getList = async (req) => {
|
|
sourceList.value.pagination = { ...sourceList.value.pagination, ...req };
|
|
sourceList.value.pagination = { ...sourceList.value.pagination, ...req };
|
|
loading.value = true;
|
|
loading.value = true;
|
|
proxy.post("/corporation/page", sourceList.value.pagination).then((message) => {
|
|
proxy.post("/corporation/page", sourceList.value.pagination).then((message) => {
|
|
- console.log(message);
|
|
|
|
sourceList.value.data = message.rows;
|
|
sourceList.value.data = message.rows;
|
|
sourceList.value.pagination.total = message.total;
|
|
sourceList.value.pagination.total = message.total;
|
|
setTimeout(() => {
|
|
setTimeout(() => {
|
|
@@ -283,17 +361,20 @@ const getList = async (req) => {
|
|
const openModal = () => {
|
|
const openModal = () => {
|
|
dialogVisible.value = true;
|
|
dialogVisible.value = true;
|
|
modalType.value = "add";
|
|
modalType.value = "add";
|
|
- formData.data = {};
|
|
|
|
|
|
+ formData.data = {
|
|
|
|
+ enterpriseLogoList: [],
|
|
|
|
+ larSignList: [],
|
|
|
|
+ officialSealList: [],
|
|
|
|
+ contractSealList: [],
|
|
|
|
+ };
|
|
};
|
|
};
|
|
const selection = ref({
|
|
const selection = ref({
|
|
data: [],
|
|
data: [],
|
|
});
|
|
});
|
|
const select = (_selection, row) => {
|
|
const select = (_selection, row) => {
|
|
selection.value.data = _selection;
|
|
selection.value.data = _selection;
|
|
- console.log(_selection.length);
|
|
|
|
};
|
|
};
|
|
const submitForm = () => {
|
|
const submitForm = () => {
|
|
- console.log(byform.value);
|
|
|
|
byform.value.handleSubmit(() => {
|
|
byform.value.handleSubmit(() => {
|
|
submitLoading.value = true;
|
|
submitLoading.value = true;
|
|
proxy.post("/corporation/" + modalType.value, formData.data).then(
|
|
proxy.post("/corporation/" + modalType.value, formData.data).then(
|
|
@@ -310,7 +391,6 @@ const submitForm = () => {
|
|
);
|
|
);
|
|
});
|
|
});
|
|
};
|
|
};
|
|
-
|
|
|
|
const getDtl = (row) => {
|
|
const getDtl = (row) => {
|
|
dialogVisible.value = true;
|
|
dialogVisible.value = true;
|
|
modalType.value = "edit";
|
|
modalType.value = "edit";
|
|
@@ -318,12 +398,22 @@ const getDtl = (row) => {
|
|
res.type = res.type + "";
|
|
res.type = res.type + "";
|
|
res.taxpayerQualification = res.taxpayerQualification + "";
|
|
res.taxpayerQualification = res.taxpayerQualification + "";
|
|
formData.data = res;
|
|
formData.data = res;
|
|
|
|
+ proxy.post("/fileInfo/getList", { businessIdList: [res.id], fileType: 1 }).then((resFile) => {
|
|
|
|
+ formData.data.enterpriseLogoList = resFile[res.id];
|
|
|
|
+ });
|
|
|
|
+ proxy.post("/fileInfo/getList", { businessIdList: [res.id], fileType: 2 }).then((resFile) => {
|
|
|
|
+ formData.data.larSignList = resFile[res.id];
|
|
|
|
+ });
|
|
|
|
+ proxy.post("/fileInfo/getList", { businessIdList: [res.id], fileType: 3 }).then((resFile) => {
|
|
|
|
+ formData.data.officialSealList = resFile[res.id];
|
|
|
|
+ });
|
|
|
|
+ proxy.post("/fileInfo/getList", { businessIdList: [res.id], fileType: 4 }).then((resFile) => {
|
|
|
|
+ formData.data.contractSealList = resFile[res.id];
|
|
|
|
+ });
|
|
});
|
|
});
|
|
};
|
|
};
|
|
-
|
|
|
|
const enterpriseType = ref([]);
|
|
const enterpriseType = ref([]);
|
|
const contactInformationType = ref([]);
|
|
const contactInformationType = ref([]);
|
|
-
|
|
|
|
const getDict = () => {
|
|
const getDict = () => {
|
|
const tenantId = useUserStore().user.tenantId;
|
|
const tenantId = useUserStore().user.tenantId;
|
|
proxy
|
|
proxy
|
|
@@ -340,7 +430,6 @@ const getDict = () => {
|
|
}));
|
|
}));
|
|
enterpriseType.value = res.rows;
|
|
enterpriseType.value = res.rows;
|
|
});
|
|
});
|
|
-
|
|
|
|
proxy
|
|
proxy
|
|
.post("/dictTenantData/page", {
|
|
.post("/dictTenantData/page", {
|
|
pageNum: 1,
|
|
pageNum: 1,
|
|
@@ -356,13 +445,109 @@ const getDict = () => {
|
|
contactInformationType.value = res.rows;
|
|
contactInformationType.value = res.rows;
|
|
});
|
|
});
|
|
};
|
|
};
|
|
-
|
|
|
|
getList();
|
|
getList();
|
|
getDict();
|
|
getDict();
|
|
|
|
+const uploadDataOne = ref({});
|
|
|
|
+const uploadFileOne = async (file) => {
|
|
|
|
+ const res = await proxy.post("/fileInfo/getSing", { fileName: file.name });
|
|
|
|
+ uploadDataOne.value = res.uploadBody;
|
|
|
|
+ file.id = res.id;
|
|
|
|
+ file.fileName = res.fileName;
|
|
|
|
+ file.fileUrl = res.fileUrl;
|
|
|
|
+ return true;
|
|
|
|
+};
|
|
|
|
+const uploadDataTwo = ref({});
|
|
|
|
+const uploadFileTwo = async (file) => {
|
|
|
|
+ const res = await proxy.post("/fileInfo/getSing", { fileName: file.name });
|
|
|
|
+ uploadDataTwo.value = res.uploadBody;
|
|
|
|
+ file.id = res.id;
|
|
|
|
+ file.fileName = res.fileName;
|
|
|
|
+ file.fileUrl = res.fileUrl;
|
|
|
|
+ return true;
|
|
|
|
+};
|
|
|
|
+const uploadDataThree = ref({});
|
|
|
|
+const uploadFileThree = async (file) => {
|
|
|
|
+ const res = await proxy.post("/fileInfo/getSing", { fileName: file.name });
|
|
|
|
+ uploadDataThree.value = res.uploadBody;
|
|
|
|
+ file.id = res.id;
|
|
|
|
+ file.fileName = res.fileName;
|
|
|
|
+ file.fileUrl = res.fileUrl;
|
|
|
|
+ return true;
|
|
|
|
+};
|
|
|
|
+const uploadDataFour = ref({});
|
|
|
|
+const uploadFileFour = async (file) => {
|
|
|
|
+ const res = await proxy.post("/fileInfo/getSing", { fileName: file.name });
|
|
|
|
+ uploadDataFour.value = res.uploadBody;
|
|
|
|
+ file.id = res.id;
|
|
|
|
+ file.fileName = res.fileName;
|
|
|
|
+ file.fileUrl = res.fileUrl;
|
|
|
|
+ return true;
|
|
|
|
+};
|
|
|
|
+const enterpriseLogoListSuccess = (response, uploadFile) => {
|
|
|
|
+ formData.data.enterpriseLogoList = [
|
|
|
|
+ {
|
|
|
|
+ id: uploadFile.raw.id,
|
|
|
|
+ fileName: uploadFile.raw.fileName,
|
|
|
|
+ fileUrl: uploadFile.raw.fileUrl,
|
|
|
|
+ },
|
|
|
|
+ ];
|
|
|
|
+};
|
|
|
|
+const larSignListSuccess = (response, uploadFile) => {
|
|
|
|
+ formData.data.larSignList = [
|
|
|
|
+ {
|
|
|
|
+ id: uploadFile.raw.id,
|
|
|
|
+ fileName: uploadFile.raw.fileName,
|
|
|
|
+ fileUrl: uploadFile.raw.fileUrl,
|
|
|
|
+ },
|
|
|
|
+ ];
|
|
|
|
+};
|
|
|
|
+const officialSealListSuccess = (response, uploadFile) => {
|
|
|
|
+ formData.data.officialSealList = [
|
|
|
|
+ {
|
|
|
|
+ id: uploadFile.raw.id,
|
|
|
|
+ fileName: uploadFile.raw.fileName,
|
|
|
|
+ fileUrl: uploadFile.raw.fileUrl,
|
|
|
|
+ },
|
|
|
|
+ ];
|
|
|
|
+};
|
|
|
|
+const contractSealListSuccess = (response, uploadFile) => {
|
|
|
|
+ formData.data.contractSealList = [
|
|
|
|
+ {
|
|
|
|
+ id: uploadFile.raw.id,
|
|
|
|
+ fileName: uploadFile.raw.fileName,
|
|
|
|
+ fileUrl: uploadFile.raw.fileUrl,
|
|
|
|
+ },
|
|
|
|
+ ];
|
|
|
|
+};
|
|
</script>
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
<style lang="scss" scoped>
|
|
.tenant {
|
|
.tenant {
|
|
padding: 20px;
|
|
padding: 20px;
|
|
}
|
|
}
|
|
|
|
+.avatar-uploader .avatar {
|
|
|
|
+ width: 110px;
|
|
|
|
+ height: 110px;
|
|
|
|
+ display: block;
|
|
|
|
+ background-color: black;
|
|
|
|
+}
|
|
|
|
+.avatar-uploader .el-upload {
|
|
|
|
+ border: 1px dashed var(--el-border-color);
|
|
|
|
+ border-radius: 6px;
|
|
|
|
+ cursor: pointer;
|
|
|
|
+ position: relative;
|
|
|
|
+ overflow: hidden;
|
|
|
|
+ transition: var(--el-transition-duration-fast);
|
|
|
|
+}
|
|
|
|
+.avatar-uploader .el-upload:hover {
|
|
|
|
+ border-color: var(--el-color-primary);
|
|
|
|
+}
|
|
|
|
+.el-icon.avatar-uploader-icon {
|
|
|
|
+ font-size: 28px;
|
|
|
|
+ color: #8c939d;
|
|
|
|
+ width: 110px;
|
|
|
|
+ height: 110px;
|
|
|
|
+ text-align: center;
|
|
|
|
+ border: 1px dashed var(--el-border-color);
|
|
|
|
+}
|
|
</style>
|
|
</style>
|