|
@@ -1,6 +1,15 @@
|
|
|
<template>
|
|
|
- <scroll-view class="scroll-height" :scroll-y="true" :data-theme="'theme-' + proxy.$settingStore.themeColor.name">
|
|
|
- <view id="unitInfoCollection">
|
|
|
+ <oa-scroll
|
|
|
+ customClass="unitInfoCollection-container scroll-height"
|
|
|
+ :refresherLoad="false"
|
|
|
+ :refresherEnabled="false"
|
|
|
+ :refresherEnabledTitle="false"
|
|
|
+ :refresherDefaultStyle="'none'"
|
|
|
+ :refresherThreshold="44"
|
|
|
+ :refresherBackground="'#f5f6f7'"
|
|
|
+ :data-theme="'theme-' + proxy.$settingStore.themeColor.name"
|
|
|
+ >
|
|
|
+ <template #default>
|
|
|
<view>
|
|
|
<u-notice-bar text="注:信息提交后不可修改,提交前请核对填写是否有误" :duration="7000" color="#FF0000" bgColor="#FFFFFF"></u-notice-bar>
|
|
|
</view>
|
|
@@ -188,7 +197,7 @@
|
|
|
</view>
|
|
|
|
|
|
<u-form-item label="消防设施设置" :prop="`baseBuildList.${index}.baseBuild.fireFacilitySystem`" required :borderBottom="true">
|
|
|
- <u-checkbox-group v-model="li.baseBuild.fireFacilitySystem" placement="column" @change="checkboxChange">
|
|
|
+ <u-checkbox-group v-model="li.baseBuild.fireFacilitySystem" placement="column" :size="14" @change="checkboxChange">
|
|
|
<u-checkbox :customStyle="{ marginBottom: '8px' }" label="自动喷水灭火系统" :name="1"> </u-checkbox>
|
|
|
<u-checkbox :customStyle="{ marginBottom: '8px' }" label="火灾自动报警系统" :name="2"> </u-checkbox>
|
|
|
<u-checkbox :customStyle="{ marginBottom: '8px' }" label="防排烟与排烟系统" :name="3"> </u-checkbox>
|
|
@@ -197,7 +206,7 @@
|
|
|
</u-form-item>
|
|
|
|
|
|
<u-form-item label="其他设施" :prop="`li.baseBuildList.baseBuild.otherSystem`" :borderBottom="true">
|
|
|
- <u-checkbox-group v-model="li.baseBuild.otherSystem" placement="column" @change="checkboxChange">
|
|
|
+ <u-checkbox-group v-model="li.baseBuild.otherSystem" placement="column" :size="14" @change="checkboxChange">
|
|
|
<u-checkbox :customStyle="{ marginBottom: '8px' }" label="泡沫灭火系统" :name="1"> </u-checkbox>
|
|
|
<u-checkbox :customStyle="{ marginBottom: '8px' }" label="水喷雾、细水雾灭火系统" :name="2"> </u-checkbox>
|
|
|
<u-checkbox :customStyle="{ marginBottom: '8px' }" label="消防炮、自动跟踪定位射流灭火系统" :name="3"> </u-checkbox>
|
|
@@ -251,7 +260,7 @@
|
|
|
</view>
|
|
|
<view class="app-button-fixed">
|
|
|
<view class="app-flex">
|
|
|
- <u-button class="app-buttom" style="margin-right: 15px" @click="handleSubmit('上一步')" shape="circle"> 上一步 </u-button>
|
|
|
+ <u-button class="app-buttom" @click="handleSubmit('上一步')" shape="circle"> 上一步 </u-button>
|
|
|
<u-button class="app-buttom" type="primary" @click="handleSubmit('提交')" shape="circle"> 提交 </u-button>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -300,23 +309,25 @@
|
|
|
<view style="text-align: center; font-size: 13px; color: #ff0000">注:“修改”则点击修改,“新增”将提交一条新的记录,如需“取消”操作可点击空白区域</view>
|
|
|
</view>
|
|
|
</u-modal>
|
|
|
- </view>
|
|
|
- </scroll-view>
|
|
|
+ </template>
|
|
|
+ </oa-scroll>
|
|
|
</template>
|
|
|
|
|
|
<script setup>
|
|
|
+/*----------------------------------依赖引入-----------------------------------*/
|
|
|
import { onLoad, onShow, onHide, onLaunch, onReady } from "@dcloudio/uni-app";
|
|
|
import { ref, onMounted, inject, shallowRef, reactive, toRefs, getCurrentInstance } from "vue";
|
|
|
+/*----------------------------------接口引入-----------------------------------*/
|
|
|
+import { companyByNameSelect, addBaseCompany, delBaseBuild, delBaseBuildExtinguish } from "@/api/business/mhxf/unitInfoCollection";
|
|
|
+/*----------------------------------组件引入-----------------------------------*/
|
|
|
+/*----------------------------------store引入-----------------------------------*/
|
|
|
import { useStores, commonStores } from "@/store/modules/index";
|
|
|
+/*----------------------------------公共方法引入-----------------------------------*/
|
|
|
import { getToken } from "@/utils/auth";
|
|
|
-
|
|
|
-import { companyByNameSelect, addBaseCompany, delBaseBuild, delBaseBuildExtinguish } from "@/api/business/mhxf/unitInfoCollection";
|
|
|
-
|
|
|
+/*----------------------------------公共变量-----------------------------------*/
|
|
|
const { proxy } = getCurrentInstance();
|
|
|
-
|
|
|
const commonStore = commonStores();
|
|
|
-
|
|
|
-const checkboxValue = ref([]);
|
|
|
+/*----------------------------------变量声明-----------------------------------*/
|
|
|
|
|
|
//基本信息-单位使用性质下拉数据存储
|
|
|
const companyNatureList = ref([
|
|
@@ -473,185 +484,45 @@ const dataList = reactive({
|
|
|
},
|
|
|
|
|
|
rules: {
|
|
|
- companyName: [
|
|
|
- {
|
|
|
- required: true,
|
|
|
- message: "请输入营业执照单位名称",
|
|
|
- trigger: ["blur", "change"],
|
|
|
- },
|
|
|
- ],
|
|
|
+ companyName: [{ required: true, message: "请输入营业执照单位名称", trigger: ["blur", "change"] }],
|
|
|
organization: [
|
|
|
- {
|
|
|
- required: true,
|
|
|
- message: "请输入统一社会信用代码",
|
|
|
- trigger: ["blur", "change"],
|
|
|
- },
|
|
|
- {
|
|
|
- type: "string",
|
|
|
- min: 18,
|
|
|
- required: true,
|
|
|
- message: "请输入18位统一社会信用代码",
|
|
|
- trigger: ["change"],
|
|
|
- },
|
|
|
- ],
|
|
|
- delegateName: [
|
|
|
- {
|
|
|
- required: true,
|
|
|
- message: "请输入法人代表",
|
|
|
- trigger: ["blur", "change"],
|
|
|
- },
|
|
|
- ],
|
|
|
- streetTown: [
|
|
|
- {
|
|
|
- required: true,
|
|
|
- message: "请选择所属街镇",
|
|
|
- trigger: ["blur", "change"],
|
|
|
- },
|
|
|
- ],
|
|
|
- address: [
|
|
|
- {
|
|
|
- required: true,
|
|
|
- message: "请输入单位地址",
|
|
|
- trigger: ["blur", "change"],
|
|
|
- },
|
|
|
+ { required: true, message: "请输入统一社会信用代码", trigger: ["blur", "change"] },
|
|
|
+ { type: "string", min: 18, required: true, message: "请输入18位统一社会信用代码", trigger: ["change"] },
|
|
|
],
|
|
|
+ delegateName: [{ required: true, message: "请输入法人代表", trigger: ["blur", "change"] }],
|
|
|
+ streetTown: [{ required: true, message: "请选择所属街镇", trigger: ["blur", "change"] }],
|
|
|
+ address: [{ required: true, message: "请输入单位地址", trigger: ["blur", "change"] }],
|
|
|
fireManagePhone: [
|
|
|
- {
|
|
|
- required: true,
|
|
|
- message: "请输入消防管理人电话",
|
|
|
- trigger: ["blur", "change"],
|
|
|
- },
|
|
|
- {
|
|
|
- type: "string",
|
|
|
- min: 11,
|
|
|
- required: true,
|
|
|
- message: "请输入正确11位消防管理人电话",
|
|
|
- pattern: /^1[3|4|5|6|7|8|9][0-9]\d{8}$/,
|
|
|
- trigger: ["blur", "change"],
|
|
|
- },
|
|
|
- ],
|
|
|
- foundTime: [
|
|
|
- {
|
|
|
- required: true,
|
|
|
- message: "请选择成立时间",
|
|
|
- trigger: ["blur", "change"],
|
|
|
- },
|
|
|
- ],
|
|
|
- companyNature: [
|
|
|
- {
|
|
|
- required: true,
|
|
|
- message: "请选择单位使用性质",
|
|
|
- trigger: ["blur", "change"],
|
|
|
- },
|
|
|
- ],
|
|
|
- birthCert: [
|
|
|
- {
|
|
|
- required: true,
|
|
|
- message: "请选择产证",
|
|
|
- trigger: ["blur", "change"],
|
|
|
- },
|
|
|
- ],
|
|
|
- buildArea: [
|
|
|
- {
|
|
|
- required: true,
|
|
|
- message: "请输入单位建筑面积",
|
|
|
- trigger: ["blur", "change"],
|
|
|
- },
|
|
|
+ { required: true, message: "请输入消防管理人电话", trigger: ["blur", "change"] },
|
|
|
+ { type: "string", min: 11, required: true, message: "请输入正确11位消防管理人电话", pattern: /^1[3|4|5|6|7|8|9][0-9]\d{8}$/, trigger: ["blur", "change"] },
|
|
|
],
|
|
|
+ foundTime: [{ required: true, message: "请选择成立时间", trigger: ["blur", "change"] }],
|
|
|
+ companyNature: [{ required: true, message: "请选择单位使用性质", trigger: ["blur", "change"] }],
|
|
|
+ birthCert: [{ required: true, message: "请选择产证", trigger: ["blur", "change"] }],
|
|
|
+ buildArea: [{ required: true, message: "请输入单位建筑面积", trigger: ["blur", "change"] }],
|
|
|
|
|
|
baseBuildList: [],
|
|
|
},
|
|
|
|
|
|
baseBuildListRules: {
|
|
|
baseBuild: {
|
|
|
- buildName: [
|
|
|
- {
|
|
|
- required: true,
|
|
|
- message: "请输入建筑名称",
|
|
|
- trigger: ["blur", "change"],
|
|
|
- },
|
|
|
- ],
|
|
|
- address: [
|
|
|
- {
|
|
|
- required: true,
|
|
|
- message: "请输入建筑地址",
|
|
|
- trigger: ["blur", "change"],
|
|
|
- },
|
|
|
- ],
|
|
|
- buildStructure: [
|
|
|
- {
|
|
|
- required: true,
|
|
|
- message: "请选择建筑结构",
|
|
|
- trigger: ["blur", "change"],
|
|
|
- },
|
|
|
- ],
|
|
|
- buildHigh: [
|
|
|
- {
|
|
|
- type: "number",
|
|
|
- required: true,
|
|
|
- message: "请输入建筑高度",
|
|
|
- trigger: ["blur", "change"],
|
|
|
- },
|
|
|
- ],
|
|
|
- aboveFloor: [
|
|
|
- {
|
|
|
- type: "number",
|
|
|
- required: true,
|
|
|
- message: "请输入地上层数",
|
|
|
- trigger: ["blur", "change"],
|
|
|
- },
|
|
|
- ],
|
|
|
- buildArea: [
|
|
|
- {
|
|
|
- type: "number",
|
|
|
- required: true,
|
|
|
- message: "请输入建筑面积",
|
|
|
- trigger: ["blur", "change"],
|
|
|
- },
|
|
|
- ],
|
|
|
- completeYear: [
|
|
|
- {
|
|
|
- required: true,
|
|
|
- message: "请选择建成年份",
|
|
|
- trigger: ["blur", "change"],
|
|
|
- },
|
|
|
- ],
|
|
|
- useCharacter: [
|
|
|
- {
|
|
|
- required: true,
|
|
|
- message: "请输入使用性质",
|
|
|
- trigger: ["blur", "change"],
|
|
|
- },
|
|
|
- ],
|
|
|
-
|
|
|
- fireFacilitySystem: [
|
|
|
- {
|
|
|
- type: "array",
|
|
|
- required: true,
|
|
|
- message: "请选择消防设施设置",
|
|
|
- trigger: ["change"],
|
|
|
- },
|
|
|
- ],
|
|
|
+ buildName: [{ required: true, message: "请输入建筑名称", trigger: ["blur", "change"] }],
|
|
|
+ address: [{ required: true, message: "请输入建筑地址", trigger: ["blur", "change"] }],
|
|
|
+ buildStructure: [{ required: true, message: "请选择建筑结构", trigger: ["blur", "change"] }],
|
|
|
+ buildHigh: [{ type: "number", required: true, message: "请输入建筑高度", trigger: ["blur", "change"] }],
|
|
|
+ aboveFloor: [{ type: "number", required: true, message: "请输入地上层数", trigger: ["blur", "change"] }],
|
|
|
+ buildArea: [{ type: "number", required: true, message: "请输入建筑面积", trigger: ["blur", "change"] }],
|
|
|
+ completeYear: [{ required: true, message: "请选择建成年份", trigger: ["blur", "change"] }],
|
|
|
+ useCharacter: [{ required: true, message: "请输入使用性质", trigger: ["blur", "change"] }],
|
|
|
+
|
|
|
+ fireFacilitySystem: [{ type: "array", required: true, message: "请选择消防设施设置", trigger: ["change"] }],
|
|
|
},
|
|
|
baseBuildExtinguishList: [],
|
|
|
},
|
|
|
|
|
|
baseBuildExtinguishRules: {
|
|
|
- extinguishType: [
|
|
|
- {
|
|
|
- required: true,
|
|
|
- message: "请选择灭火器类型",
|
|
|
- trigger: ["blur", "change"],
|
|
|
- },
|
|
|
- ],
|
|
|
- extinguishNum: [
|
|
|
- {
|
|
|
- type: "number",
|
|
|
- required: true,
|
|
|
- message: "请输入灭火器数量",
|
|
|
- trigger: ["blur", "change"],
|
|
|
- },
|
|
|
- ],
|
|
|
+ extinguishType: [{ required: true, message: "请选择灭火器类型", trigger: ["blur", "change"] }],
|
|
|
+ extinguishNum: [{ type: "number", required: true, message: "请输入灭火器数量", trigger: ["blur", "change"] }],
|
|
|
},
|
|
|
|
|
|
pagingBool: true,
|
|
@@ -691,8 +562,6 @@ const {
|
|
|
modalShow,
|
|
|
} = toRefs(dataList);
|
|
|
|
|
|
-const uForm = ref(null);
|
|
|
-const uForm1 = ref(null);
|
|
|
const newCompanyName = ref("");
|
|
|
const scanBool = ref(false);
|
|
|
|
|
@@ -731,14 +600,14 @@ function handleSubmit(value) {
|
|
|
if (value === "上一步") {
|
|
|
pagingBool.value = true;
|
|
|
} else if (value === "下一步") {
|
|
|
- uForm.value
|
|
|
+ proxy.$refs["uForm"]
|
|
|
.validate()
|
|
|
.then((res) => {
|
|
|
- uni.$u.toast("校验通过");
|
|
|
+ proxy.$modal.msg("校验通过");
|
|
|
pagingBool.value = false;
|
|
|
})
|
|
|
.catch((errors) => {
|
|
|
- uni.$u.toast("校验失败");
|
|
|
+ proxy.$modal.msg("校验失败");
|
|
|
});
|
|
|
} else if (value === "提交") {
|
|
|
if (newCompanyName.value == "") {
|
|
@@ -755,10 +624,10 @@ function handleSubmit(value) {
|
|
|
function handleSubmitApi(value) {
|
|
|
let param = {};
|
|
|
|
|
|
- uForm1.value
|
|
|
+ proxy.$refs["uForm1"]
|
|
|
.validate()
|
|
|
.then((res) => {
|
|
|
- uni.$u.toast("校验通过");
|
|
|
+ proxy.$modal.msg("校验通过");
|
|
|
|
|
|
param = {
|
|
|
baseCompany: {
|
|
@@ -853,9 +722,7 @@ function handleSubmitApi(value) {
|
|
|
if (scanBool.value) {
|
|
|
proxy.$tab.reLaunch(`/pages/common/success/index?codeName=提交成功&showNow=${false}`);
|
|
|
} else {
|
|
|
- uni.showToast({
|
|
|
- title: "提交成功",
|
|
|
- });
|
|
|
+ proxy.$modal.msg("提交成功");
|
|
|
setTimeout(() => {
|
|
|
proxy.$tab.reLaunch("/pages/index");
|
|
|
}, 2000);
|
|
@@ -864,7 +731,7 @@ function handleSubmitApi(value) {
|
|
|
});
|
|
|
})
|
|
|
.catch((errors) => {
|
|
|
- uni.$u.toast("校验失败");
|
|
|
+ proxy.$modal.msg("校验失败");
|
|
|
});
|
|
|
}
|
|
|
|
|
@@ -884,90 +751,20 @@ function handleAction(value, index, ind) {
|
|
|
|
|
|
actionsList.value = [
|
|
|
[
|
|
|
- {
|
|
|
- name: "江川路街道",
|
|
|
- value: 1201,
|
|
|
- x: 121.399126538181,
|
|
|
- y: 31.0099719391863,
|
|
|
- },
|
|
|
- {
|
|
|
- name: "新虹街道",
|
|
|
- value: 1217,
|
|
|
- x: 121.319329296294,
|
|
|
- y: 31.1983901916889,
|
|
|
- },
|
|
|
- {
|
|
|
- name: "古美路街道",
|
|
|
- value: 1206,
|
|
|
- x: 121.388451866936,
|
|
|
- y: 31.1478233480159,
|
|
|
- },
|
|
|
- {
|
|
|
- name: "浦锦街道",
|
|
|
- value: 1218,
|
|
|
- x: 121.483929120352,
|
|
|
- y: 31.089967318558,
|
|
|
- },
|
|
|
- {
|
|
|
- name: "浦江镇",
|
|
|
- value: 1215,
|
|
|
- x: 121.524058543447,
|
|
|
- y: 31.0540039472667,
|
|
|
- },
|
|
|
- {
|
|
|
- name: "吴泾镇",
|
|
|
- value: 1213,
|
|
|
- x: 121.454076463728,
|
|
|
- y: 31.04860402113,
|
|
|
- },
|
|
|
- {
|
|
|
- name: "马桥镇",
|
|
|
- value: 1214,
|
|
|
- x: 121.352680027718,
|
|
|
- y: 31.0213512298508,
|
|
|
- },
|
|
|
- {
|
|
|
- name: "颛桥镇",
|
|
|
- value: 1209,
|
|
|
- x: 121.40607138504,
|
|
|
- y: 31.0612972443508,
|
|
|
- },
|
|
|
- {
|
|
|
- name: "莘庄镇",
|
|
|
- value: 1207,
|
|
|
- x: 121.37064864047,
|
|
|
- y: 31.1154549548722,
|
|
|
- },
|
|
|
- {
|
|
|
- name: "梅陇镇",
|
|
|
- value: 1212,
|
|
|
- x: 121.421346814491,
|
|
|
- y: 31.1069718313722,
|
|
|
- },
|
|
|
- {
|
|
|
- name: "七宝镇",
|
|
|
- value: 1208,
|
|
|
- x: 121.350366186317,
|
|
|
- y: 31.1553292680362,
|
|
|
- },
|
|
|
- {
|
|
|
- name: "虹桥镇",
|
|
|
- value: 1211,
|
|
|
- x: 121.37956256207,
|
|
|
- y: 31.1806219953212,
|
|
|
- },
|
|
|
- {
|
|
|
- name: "华漕镇",
|
|
|
- value: 1210,
|
|
|
- x: 121.277541517147,
|
|
|
- y: 31.2289121171624,
|
|
|
- },
|
|
|
- {
|
|
|
- name: "莘庄工业区",
|
|
|
- value: 1216,
|
|
|
- x: 121.376508452784,
|
|
|
- y: 31.0678185611843,
|
|
|
- },
|
|
|
+ { name: "江川路街道", value: 1201, x: 121.399126538181, y: 31.0099719391863 },
|
|
|
+ { name: "新虹街道", value: 1217, x: 121.319329296294, y: 31.1983901916889 },
|
|
|
+ { name: "古美路街道", value: 1206, x: 121.388451866936, y: 31.1478233480159 },
|
|
|
+ { name: "浦锦街道", value: 1218, x: 121.483929120352, y: 31.089967318558 },
|
|
|
+ { name: "浦江镇", value: 1215, x: 121.524058543447, y: 31.0540039472667 },
|
|
|
+ { name: "吴泾镇", value: 1213, x: 121.454076463728, y: 31.04860402113 },
|
|
|
+ { name: "马桥镇", value: 1214, x: 121.352680027718, y: 31.0213512298508 },
|
|
|
+ { name: "颛桥镇", value: 1209, x: 121.40607138504, y: 31.0612972443508 },
|
|
|
+ { name: "莘庄镇", value: 1207, x: 121.37064864047, y: 31.1154549548722 },
|
|
|
+ { name: "梅陇镇", value: 1212, x: 121.421346814491, y: 31.1069718313722 },
|
|
|
+ { name: "七宝镇", value: 1208, x: 121.350366186317, y: 31.1553292680362 },
|
|
|
+ { name: "虹桥镇", value: 1211, x: 121.37956256207, y: 31.1806219953212 },
|
|
|
+ { name: "华漕镇", value: 1210, x: 121.277541517147, y: 31.2289121171624 },
|
|
|
+ { name: "莘庄工业区", value: 1216, x: 121.376508452784, y: 31.0678185611843 },
|
|
|
],
|
|
|
];
|
|
|
|
|
@@ -984,52 +781,24 @@ function handleAction(value, index, ind) {
|
|
|
|
|
|
if (value == "单位使用性质") {
|
|
|
actionTitle.value = "单位使用性质";
|
|
|
-
|
|
|
actionsList.value = companyNatureList.value;
|
|
|
-
|
|
|
actionDefaultIndex.value = 0;
|
|
|
}
|
|
|
|
|
|
if (value == "产证") {
|
|
|
actionTitle.value = "产证";
|
|
|
-
|
|
|
actionsList.value = [
|
|
|
[
|
|
|
- {
|
|
|
- value: 1,
|
|
|
- name: "商业服务业设施用地(商业设施、商务设施、娱乐康体设施、公用设施营业网点、其它服务设施等)",
|
|
|
- },
|
|
|
- {
|
|
|
- value: 2,
|
|
|
- name: "工业用地",
|
|
|
- },
|
|
|
- {
|
|
|
- value: 3,
|
|
|
- name: "居住用地",
|
|
|
- },
|
|
|
- {
|
|
|
- value: 4,
|
|
|
- name: "公共管理与公共服务用地(行政办公、文化设施、教育科研、体育、医疗卫生、社会福利设施、文物古迹、外事、宗教设施等",
|
|
|
- },
|
|
|
- {
|
|
|
- value: 5,
|
|
|
- name: "物流仓储用地",
|
|
|
- },
|
|
|
- {
|
|
|
- value: 6,
|
|
|
- name: "道路与交通设施用地",
|
|
|
- },
|
|
|
- {
|
|
|
- value: 7,
|
|
|
- name: "公用设施用地",
|
|
|
- },
|
|
|
- {
|
|
|
- value: 8,
|
|
|
- name: "绿地与广场用地",
|
|
|
- },
|
|
|
+ { value: 1, name: "商业服务业设施用地(商业设施、商务设施、娱乐康体设施、公用设施营业网点、其它服务设施等)" },
|
|
|
+ { value: 2, name: "工业用地" },
|
|
|
+ { value: 3, name: "居住用地" },
|
|
|
+ { value: 4, name: "公共管理与公共服务用地(行政办公、文化设施、教育科研、体育、医疗卫生、社会福利设施、文物古迹、外事、宗教设施等" },
|
|
|
+ { value: 5, name: "物流仓储用地" },
|
|
|
+ { value: 6, name: "道路与交通设施用地" },
|
|
|
+ { value: 7, name: "公用设施用地" },
|
|
|
+ { value: 8, name: "绿地与广场用地" },
|
|
|
],
|
|
|
];
|
|
|
-
|
|
|
actionDefaultIndex.value = 0;
|
|
|
}
|
|
|
|
|
@@ -1194,7 +963,7 @@ function handleDateTime(value, index, time) {
|
|
|
* @确定按钮事件
|
|
|
*/
|
|
|
function timeSubmit(data) {
|
|
|
- let time = commonStore.formatterDateTime(data.value);
|
|
|
+ let time = proxy.$time.getFormatterDate(data.value);
|
|
|
let timeData = time.split(" ")[0];
|
|
|
if (timeTitle.value == "成立时间") {
|
|
|
form.value.foundTime = timeData;
|
|
@@ -1272,7 +1041,7 @@ onShow(() => {
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss">
|
|
|
-#unitInfoCollection {
|
|
|
+.unitInfoCollection-container {
|
|
|
.centerOne,
|
|
|
.centerTwo {
|
|
|
.title {
|