|
@@ -740,6 +740,7 @@ export default {
|
|
|
onMounted(() => {
|
|
|
var id = JSON.parse(router.currentRoute.value.query.id);
|
|
|
new placeRegister().queryById(id).then((res) => {
|
|
|
+ console.log(res,'=====================>res');
|
|
|
dataitem.value = res;
|
|
|
const rN = Object.assign(dataitem.value, {
|
|
|
religiousName: getreligiousT(dataitem.value.religiousType),
|
|
@@ -1044,7 +1045,7 @@ export default {
|
|
|
name: "file",
|
|
|
url:
|
|
|
$base +
|
|
|
- `/sys/file/webupload/upload?uploadPath=/religioussites/siteinfo/religiousSitesInfo`,
|
|
|
+ `/sys/file/webupload/upload?uploadPath=religioussites/siteinfo/religiousSitesInfo`,
|
|
|
headers: {
|
|
|
"Content-Type": "multipart/form-data",
|
|
|
token: window.localStorage.getItem("MZ_TOKEN"),
|
|
@@ -1110,29 +1111,30 @@ export default {
|
|
|
let hs_SetupTime = ref(false);
|
|
|
const getSetupTime = ({ selectedOptions }) => {
|
|
|
hs_SetupTime.value = false;
|
|
|
- const json = Object.assign(inputForm.value, {
|
|
|
+ const json = Object.assign(dataitem.value, {
|
|
|
approvedEstablishmentTime:
|
|
|
selectedOptions[0].text +
|
|
|
"-" +
|
|
|
selectedOptions[1].text +
|
|
|
"-" +
|
|
|
- selectedOptions[2].text,
|
|
|
+ selectedOptions[2].text
|
|
|
+ +" 00:00:00",
|
|
|
});
|
|
|
- inputForm.value = json;
|
|
|
+ dataitem.value = json;
|
|
|
};
|
|
|
- //批准设立时间
|
|
|
let hs_SignTime = ref(false);
|
|
|
const getSignTime = ({ selectedOptions }) => {
|
|
|
hs_SignTime.value = false;
|
|
|
- const json = Object.assign(inputForm.value, {
|
|
|
+ const json = Object.assign(dataitem.value, {
|
|
|
registrationDate:
|
|
|
selectedOptions[0].text +
|
|
|
"-" +
|
|
|
selectedOptions[1].text +
|
|
|
"-" +
|
|
|
- selectedOptions[2].text,
|
|
|
+ selectedOptions[2].text
|
|
|
+ +" 00:00:00",
|
|
|
});
|
|
|
- inputForm.value = json;
|
|
|
+ dataitem.value = json;
|
|
|
};
|
|
|
// 互联网专区
|
|
|
const internetForm = ref({
|