马宇豪
2025-01-10 03f0e2a3220106ec2a9dd8f53d3ef5ab824c3ae7
src/views/license/licenseInfo/index.vue
@@ -416,11 +416,11 @@
                        <el-row style="margin-top: 92px;padding-left: 120px">
                            <el-col :span="4" style="font-weight: bold;">
                                <span v-if="type === 2">主要负责人</span>
                                <span v-if="type === 3">许可类型</span>
                                <span v-if="type === 3 || type === 4">许可类型</span>
                            </el-col>
                            <el-col :span="8">
                                <span v-if="type === 2">{{mainpersonname}}</span>
                                <span v-if="type === 3">{{licensetype}}</span>
                                <span v-if="type === 3 || type === 4">{{licensetype}}</span>
                            </el-col>
                        </el-row>
                        <el-row style="margin-top: 48px;margin-left: 120px;">
@@ -927,18 +927,22 @@
                this.district = val.district
                this.address = val.address
                if (val.type === 2) {
                    this.area = JSON.parse(val.licenseStorage)[0].area
                    if(JSON.parse(val.licenseStorage)[0] && JSON.parse(val.licenseStorage)[0].area){
                        this.area = JSON.parse(val.licenseStorage)[0].area
                    }else{
                        this.area = 0
                    }
                    this.storagearea = JSON.parse(val.licenseStorage)[0].storagearea
                    this.powder = JSON.parse(val.licenseStorage)[0].powder
                } else if (val.type === 3) {
                } else if (val.type === 3 || val.type === 4) {
                    this.area = val.dealingarea
                    this.powder = val.reservekg
                    if (val.licensetype === 2) {
                        this.licensetype = '临时零售'
                    } else {
                    if (val.licensetype === 1) {
                        this.licensetype = '长期零售'
                    } else{
                        this.licensetype = '短期零售'
                    }
                    if (val.dealingtype === 2) {
                    if (val.dealingtype === 2 || val.dealingtype === 4) {
                        this.dealingtype = '专店'
                    } else {
                        this.dealingtype = '专柜'
@@ -981,6 +985,7 @@
            },
            //打印正本
            giveData(val) {
                console.log(JSON.parse(val.licenseStorage)[0],'>>>>')
                this.code = val.code
                this.name = val.name
                this.mainpersonname = val.mainpersonname
@@ -989,18 +994,24 @@
                this.district = val.district
                this.address = val.address
                if (val.type === 2) {
                    this.area = JSON.parse(val.licenseStorage)[0].area
                    this.storagearea = JSON.parse(val.licenseStorage)[0].storagearea
                    this.powder = JSON.parse(val.licenseStorage)[0].powder
                    if(JSON.parse(val.licenseStorage)[0]){
                        this.area = JSON.parse(val.licenseStorage)[0].area
                        this.storagearea = JSON.parse(val.licenseStorage)[0].storagearea
                        this.powder = JSON.parse(val.licenseStorage)[0].powder
                    }else{
                        this.area = 0
                        this.storagearea = 0
                        this.powder = 0
                    }
                    // this.storagearea = JSON.parse(val.licenseStorage)[0].storagearea
                    // this.powder = JSON.parse(val.licenseStorage)[0].powder
                } else if (val.type === 3 || val.type === 4) {
                    this.area = val.dealingarea
                    this.powder = val.reservekg
                    if (val.licensetype === 2) {
                        this.licensetype = '临时'
                    } else if(val.licensetype === 3){
                        this.licensetype = '长期'
                    }else{
                        this.licensetype = '短期'
                    if (val.licensetype === 1) {
                        this.licensetype = '长期零售'
                    } else{
                        this.licensetype = '短期零售'
                    }
                    if (val.dealingtype === 2 || val.dealingtype === 4) {
                        this.dealingtype = '专店'