zrj
2024-06-07 b07a3a9dcb89f9785b7b001d2d26b167376d597e
src/views/userHouse/components/householdManager.vue
@@ -25,10 +25,10 @@
    add,
    update,
    getDetatils
} from "@/api/userHouse/list/houseHold.js"
} from "@/ssoapi/userHouse/list/houseHold.js"
import {
    exportBlob
} from "@/api/common"
} from "@/ssoapi/common"
import {
    mapGetters
} from "vuex"
@@ -138,7 +138,7 @@
                        label: "与业主关系",
                        prop: "relationship",
                        type: "select",
                        dicUrl: "/api/blade-system/dict-biz/dictionary?code=roleRelation",
                        dicUrl: "/ssoapi/blade-system/dict-biz/dictionary?code=roleRelation",
                        dataType: "number",
                        hide: true,
                        props: {
@@ -175,7 +175,7 @@
                        label: "证件类型",
                        prop: "cardType",
                        type: "select",
                        dicUrl: "/api/blade-system/dict-biz/dictionary?code=cardType",
                        dicUrl: "/ssoapi/blade-system/dict-biz/dictionary?code=cardType",
                        dataType: "number",
                        props: {
                            label: "dictValue",
@@ -264,7 +264,7 @@
                        prop: "residentialStatus",
                        type: "select",
                        hide: true,
                        dicUrl: "/api/blade-system/dict-biz/dictionary?code=residentialStatusType",
                        dicUrl: "/ssoapi/blade-system/dict-biz/dictionary?code=residentialStatusType",
                        dataType: "number",
                        props: {
                            label: "dictValue",
@@ -288,7 +288,7 @@
                        label: "主要联系人",
                        prop: "isPrimaryContact",
                        type: "select",
                        dicUrl: "/api/blade-system/dict-biz/dictionary?code=primaryContactType",
                        dicUrl: "/ssoapi/blade-system/dict-biz/dictionary?code=primaryContactType",
                        dataType: "number",
                        hide: true,
                        props: {
@@ -329,7 +329,7 @@
                            label: 'name',
                            value: 'id'
                        },
                        dicUrl: `/api/blade-system/region/getBaseTree`,
                        dicUrl: `/ssoapi/blade-system/region/getBaseTree`,
                    },
                    {
@@ -337,7 +337,7 @@
                        label: "户籍类型",
                        prop: "residentType",
                        type: "select",
                        dicUrl: "/api/blade-system/dict-biz/dictionary?code=residentType",
                        dicUrl: "/ssoapi/blade-system/dict-biz/dictionary?code=residentType",
                        dataType: "number",
                        props: {
                            label: "dictValue",
@@ -362,7 +362,7 @@
                            label: 'name',
                            value: 'id'
                        },
                        dicUrl: `/api/blade-system/region/getBaseTree`,
                        dicUrl: `/ssoapi/blade-system/region/getBaseTree`,
                    },
                    {
@@ -381,7 +381,7 @@
                            label: 'name',
                            value: 'code'
                        },
                        dicUrl: `/api/blade-system/region/select?code=361102`,
                        dicUrl: `/ssoapi/blade-system/region/select?code=361102`,
                    },
                    {
@@ -396,7 +396,7 @@
                        prop: "ethnicity",
                        type: "select",
                        hide: true,
                        dicUrl: "/api/blade-system/dict-biz/dictionary?code=nationType",
                        dicUrl: "/ssoapi/blade-system/dict-biz/dictionary?code=nationType",
                        dataType: "number",
                        props: {
                            label: "dictValue",
@@ -409,7 +409,7 @@
                        prop: "education",
                        type: "select",
                        hide: true,
                        dicUrl: "/api/blade-system/dict-biz/dictionary?code=educationType",
                        dicUrl: "/ssoapi/blade-system/dict-biz/dictionary?code=educationType",
                        dataType: "number",
                        props: {
                            label: "dictValue",
@@ -442,7 +442,7 @@
                        prop: "workStatus",
                        type: "select",
                        hide: true,
                        dicUrl: "/api/blade-system/dict-biz/dictionary?code=workStatusType",
                        dicUrl: "/ssoapi/blade-system/dict-biz/dictionary?code=workStatusType",
                        dataType: "number",
                        props: {
                            label: "dictValue",
@@ -455,7 +455,7 @@
                        prop: "maritalStatus",
                        type: "select",
                        hide: true,
                        dicUrl: "/api/blade-system/dict-biz/dictionary?code=marriageStatusType",
                        dicUrl: "/ssoapi/blade-system/dict-biz/dictionary?code=marriageStatusType",
                        dataType: "number",
                        props: {
                            label: "dictValue",
@@ -475,7 +475,7 @@
                        label: "健康状态",
                        prop: "healthStatus",
                        type: "select",
                        dicUrl: "/api/blade-system/dict-biz/dictionary?code=healthStatus",
                        dicUrl: "/ssoapi/blade-system/dict-biz/dictionary?code=healthStatus",
                        dataType: "number",
                        props: {
                            label: "dictValue",
@@ -552,7 +552,7 @@
                        res: 'data'
                    },
                    tip: '请上传 .xls,.xlsx 标准格式文件',
                    action: "/api/blade-system/user/import-user"
                    action: "/ssoapi/blade-system/user/import-user"
                },
                {
                    label: "数据覆盖",
@@ -772,7 +772,7 @@
                }
                data = Qs.stringify(data)
                exportBlob(
                    `/api/blade-household/household/export-household?${this.website.tokenHeader}=${getToken()}&` + data
                    `/ssoapi/blade-household/household/export-household?${this.website.tokenHeader}=${getToken()}&` + data
                ).then(res => {
                    downloadXls(res.data, `住户数据表${dateNow()}.xlsx`)
                    NProgress.done()
@@ -780,7 +780,7 @@
            })
        },
        handleTemplate () {
            exportBlob(`/api/blade-system/user/export-template?${this.website.tokenHeader}=${getToken()}`).then(res => {
            exportBlob(`/ssoapi/blade-system/user/export-template?${this.website.tokenHeader}=${getToken()}`).then(res => {
                downloadXls(res.data, "住户数据模板.xlsx")
            })
        },