|
|
|
@ -14,47 +14,35 @@
|
|
|
|
|
<div class="commerceMessage_one">
|
|
|
|
|
<el-form
|
|
|
|
|
ref="commerceMessage_form"
|
|
|
|
|
:model="commerceMessage_form"
|
|
|
|
|
:model="form"
|
|
|
|
|
class="commerceMessage_form"
|
|
|
|
|
>
|
|
|
|
|
<el-form-item label="企业名称">
|
|
|
|
|
<el-input v-model="commerceMessage_form.companyName"></el-input>
|
|
|
|
|
<el-input v-model="form.companyName"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="统一社会信用代码">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="commerceMessage_form.socialCreditCode"
|
|
|
|
|
></el-input>
|
|
|
|
|
<el-input v-model="form.socialCreditCode"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="企业性质">
|
|
|
|
|
<el-input v-model="commerceMessage_form.companyNature"></el-input>
|
|
|
|
|
<el-input v-model="form.companyNature"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="营业期限">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="commerceMessage_form.businessTermDate"
|
|
|
|
|
></el-input>
|
|
|
|
|
<el-input v-model="form.businessTermDate"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="发照日期">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="commerceMessage_form.businessLicenseDate"
|
|
|
|
|
></el-input>
|
|
|
|
|
<el-input v-model="form.businessLicenseDate"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="成立日期">
|
|
|
|
|
<el-input v-model="commerceMessage_form.establishDate"></el-input>
|
|
|
|
|
<el-input v-model="form.establishDate"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="注册资本">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="commerceMessage_form.registerCapital"
|
|
|
|
|
></el-input>
|
|
|
|
|
<el-input v-model="form.registerCapital"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="登记机关">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="commerceMessage_form.registerAuthority"
|
|
|
|
|
></el-input>
|
|
|
|
|
<el-input v-model="form.registerAuthority"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="企业经营状态">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="commerceMessage_form.businessStatus"
|
|
|
|
|
></el-input>
|
|
|
|
|
<el-input v-model="form.businessStatus"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-form>
|
|
|
|
|
<el-upload
|
|
|
|
@ -65,38 +53,35 @@
|
|
|
|
|
:before-upload="beforeAvatarUpload"
|
|
|
|
|
>
|
|
|
|
|
<img v-if="imageUrl" :src="imageUrl" class="avatar" />
|
|
|
|
|
<i v-else class="el-icon-plus avatar-uploader-icon"></i>
|
|
|
|
|
<div v-else class="avatar-uploader-icon">
|
|
|
|
|
<div>点击上传企业封面图片</div>
|
|
|
|
|
</div>
|
|
|
|
|
</el-upload>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- 为适应上传图片表单布局把企业工商表单拆分,剩余部分 -->
|
|
|
|
|
<el-form
|
|
|
|
|
ref="commerceMessage_form_two"
|
|
|
|
|
:model="commerceMessage_form_two"
|
|
|
|
|
:model="form"
|
|
|
|
|
class="commerceMessage_form_two"
|
|
|
|
|
>
|
|
|
|
|
<el-form-item label="企业登记注册地">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="commerceMessage_form_two.registerAddress"
|
|
|
|
|
></el-input>
|
|
|
|
|
<el-input v-model="form.registerAddress"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="企业类型">
|
|
|
|
|
<el-checkbox-group v-model="commerceMessage_form_two.companyType">
|
|
|
|
|
<el-checkbox label="剧毒" name="companyType"></el-checkbox>
|
|
|
|
|
<el-checkbox label="易剧毒" name="companyType"></el-checkbox>
|
|
|
|
|
<el-checkbox label="易致爆" name="companyType"></el-checkbox>
|
|
|
|
|
<el-checkbox label="放射源" name="companyType"></el-checkbox>
|
|
|
|
|
<el-checkbox label="消防重点" name="companyType"></el-checkbox>
|
|
|
|
|
<el-checkbox label="所管消防" name="companyType"></el-checkbox>
|
|
|
|
|
<el-checkbox label="治安重点" name="companyType"></el-checkbox>
|
|
|
|
|
<el-checkbox label="创安单位" name="companyType"></el-checkbox>
|
|
|
|
|
<el-checkbox label="外资合资" name="companyType"></el-checkbox>
|
|
|
|
|
<el-checkbox-group v-model="form.companyTypes">
|
|
|
|
|
<el-checkbox label="剧毒" name="companyTypes"></el-checkbox>
|
|
|
|
|
<el-checkbox label="易剧毒" name="companyTypes"></el-checkbox>
|
|
|
|
|
<el-checkbox label="易致爆" name="companyTypes"></el-checkbox>
|
|
|
|
|
<el-checkbox label="放射源" name="companyTypes"></el-checkbox>
|
|
|
|
|
<el-checkbox label="消防重点" name="companyTypes"></el-checkbox>
|
|
|
|
|
<el-checkbox label="所管消防" name="companyTypes"></el-checkbox>
|
|
|
|
|
<el-checkbox label="治安重点" name="companyTypes"></el-checkbox>
|
|
|
|
|
<el-checkbox label="创安单位" name="companyTypes"></el-checkbox>
|
|
|
|
|
<el-checkbox label="外资合资" name="companyTypes"></el-checkbox>
|
|
|
|
|
</el-checkbox-group>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="企业主营范围">
|
|
|
|
|
<el-input
|
|
|
|
|
type="textarea"
|
|
|
|
|
v-model="commerceMessage_form_two.businessStatus"
|
|
|
|
|
></el-input>
|
|
|
|
|
<el-input type="textarea" v-model="form.businessScope"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-form>
|
|
|
|
|
</div>
|
|
|
|
@ -105,18 +90,14 @@
|
|
|
|
|
<p>企业联系人信息</p>
|
|
|
|
|
<el-form
|
|
|
|
|
ref="company_person_message_form"
|
|
|
|
|
:model="company_person_message_form"
|
|
|
|
|
:model="form"
|
|
|
|
|
class="company_person_message_form"
|
|
|
|
|
>
|
|
|
|
|
<el-form-item label="安全责任人">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="company_person_message_form.emergencyContact"
|
|
|
|
|
></el-input>
|
|
|
|
|
<el-input v-model="form.emergencyContact"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="责任人电话">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="company_person_message_form.emergencyContactPhone"
|
|
|
|
|
></el-input>
|
|
|
|
|
<el-input v-model="form.emergencyContactPhone"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-form>
|
|
|
|
|
</div>
|
|
|
|
@ -125,87 +106,91 @@
|
|
|
|
|
<p>企业位置信息</p>
|
|
|
|
|
<el-form
|
|
|
|
|
ref="company_position_form"
|
|
|
|
|
:model="company_position_form"
|
|
|
|
|
:model="form"
|
|
|
|
|
class="company_position_form"
|
|
|
|
|
>
|
|
|
|
|
<el-form-item label="省份名称">
|
|
|
|
|
<el-select
|
|
|
|
|
v-model="company_position_form.provinceName"
|
|
|
|
|
v-model="form.provinceName"
|
|
|
|
|
@change="checkCity"
|
|
|
|
|
placeholder="请选择省份名称"
|
|
|
|
|
>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in company_position_form.province"
|
|
|
|
|
:key="item.provinceCode"
|
|
|
|
|
:label="item.provinceName"
|
|
|
|
|
:value="item.provinceCode"
|
|
|
|
|
v-for="item in form.province"
|
|
|
|
|
:key="item.areaCode"
|
|
|
|
|
:label="item.areaName"
|
|
|
|
|
:value="item.areaCode"
|
|
|
|
|
>
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="城市名称">
|
|
|
|
|
<el-select
|
|
|
|
|
v-model="company_position_form.city"
|
|
|
|
|
v-model="form.cityName"
|
|
|
|
|
@change="checkCounty"
|
|
|
|
|
placeholder="请选择城市名称"
|
|
|
|
|
>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in company_position_form.city_name"
|
|
|
|
|
:key="item.city_code"
|
|
|
|
|
:label="item.city_name"
|
|
|
|
|
:value="item.city_code"
|
|
|
|
|
v-for="item in form.city"
|
|
|
|
|
:key="item.areaCode"
|
|
|
|
|
:label="item.areaName"
|
|
|
|
|
:value="item.areaCode"
|
|
|
|
|
>
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="区县名称">
|
|
|
|
|
<el-select
|
|
|
|
|
v-model="company_position_form.county"
|
|
|
|
|
v-model="form.areaName"
|
|
|
|
|
@change="checkTown"
|
|
|
|
|
placeholder="请选择区县名称"
|
|
|
|
|
>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in company_position_form.county_name"
|
|
|
|
|
:key="item.county_code"
|
|
|
|
|
:label="item.county_name"
|
|
|
|
|
:value="item.county_code"
|
|
|
|
|
v-for="item in form.county"
|
|
|
|
|
:key="item.areaCode"
|
|
|
|
|
:label="item.areaName"
|
|
|
|
|
:value="item.areaCode"
|
|
|
|
|
>
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="街道/乡镇名称">
|
|
|
|
|
<el-select
|
|
|
|
|
v-model="company_position_form.township"
|
|
|
|
|
v-model="form.blockName"
|
|
|
|
|
@change="checkCommunity"
|
|
|
|
|
placeholder="请选择街道/乡镇名称"
|
|
|
|
|
>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in company_position_form.township_name"
|
|
|
|
|
:key="item.township_code"
|
|
|
|
|
:label="item.township_name"
|
|
|
|
|
:value="item.township_code"
|
|
|
|
|
v-for="item in form.township"
|
|
|
|
|
:key="item.areaCode"
|
|
|
|
|
:label="item.areaName"
|
|
|
|
|
:value="item.areaCode"
|
|
|
|
|
>
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="社区/村名称">
|
|
|
|
|
<el-select
|
|
|
|
|
v-model="company_position_form.community"
|
|
|
|
|
v-model="form.streetName"
|
|
|
|
|
placeholder="请选择社区/村名称"
|
|
|
|
|
>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in company_position_form.community_name"
|
|
|
|
|
:key="item.community_code"
|
|
|
|
|
:label="item.community_name"
|
|
|
|
|
:value="item.community_code"
|
|
|
|
|
v-for="item in form.community"
|
|
|
|
|
:key="item.areaCode"
|
|
|
|
|
:label="item.areaName"
|
|
|
|
|
:value="item.areaCode"
|
|
|
|
|
>
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="经度">
|
|
|
|
|
<el-input v-model="company_position_form.longitude"></el-input>
|
|
|
|
|
<el-input v-model="form.longitude"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="纬度">
|
|
|
|
|
<el-input v-model="company_position_form.latitude"></el-input>
|
|
|
|
|
<el-input v-model="form.latitude"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="企业地址">
|
|
|
|
|
<el-input v-model="company_position_form.position"></el-input>
|
|
|
|
|
<el-input v-model="form.companyAddress"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-form>
|
|
|
|
|
</div>
|
|
|
|
@ -214,28 +199,28 @@
|
|
|
|
|
<p>管辖区信息</p>
|
|
|
|
|
<el-form
|
|
|
|
|
ref="jurisdiction_form"
|
|
|
|
|
:model="jurisdiction_form"
|
|
|
|
|
:model="form"
|
|
|
|
|
class="jurisdiction_form"
|
|
|
|
|
>
|
|
|
|
|
<el-form-item label="辖区派出所编码">
|
|
|
|
|
<el-input v-model="jurisdiction_form.jurisdiction_code"></el-input>
|
|
|
|
|
<el-input v-model="form.policeDistrictCode"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="辖区派出所名称">
|
|
|
|
|
<el-select
|
|
|
|
|
v-model="jurisdiction_form.jurisdiction"
|
|
|
|
|
v-model="form.policeDistrictCn"
|
|
|
|
|
placeholder="请选择辖区派出所名称"
|
|
|
|
|
>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in jurisdiction_form.jurisdiction_name"
|
|
|
|
|
:key="item.jurisdiction_code"
|
|
|
|
|
:label="item.jurisdiction_name"
|
|
|
|
|
:value="item.jurisdiction_code"
|
|
|
|
|
v-for="item in form.jurisdiction"
|
|
|
|
|
:key="item.dictValue"
|
|
|
|
|
:label="item.dictLabel"
|
|
|
|
|
:value="item.dictValue"
|
|
|
|
|
>
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="所属片区">
|
|
|
|
|
<el-input v-model="jurisdiction_form.region"></el-input>
|
|
|
|
|
<el-input v-model="form.belongingArea"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-form>
|
|
|
|
|
</div>
|
|
|
|
@ -247,7 +232,12 @@
|
|
|
|
|
</el-dialog>
|
|
|
|
|
</template>
|
|
|
|
|
<script>
|
|
|
|
|
import { debounce } from "@/utils/publicMethod_lxy/debounce.js";
|
|
|
|
|
import {
|
|
|
|
|
common,
|
|
|
|
|
commonDict,
|
|
|
|
|
postCompanyList,
|
|
|
|
|
putCompanyList,
|
|
|
|
|
} from "@/api/systemManagement";
|
|
|
|
|
export default {
|
|
|
|
|
name: "CompanyDataDialog",
|
|
|
|
|
data() {
|
|
|
|
@ -255,7 +245,8 @@ export default {
|
|
|
|
|
dialogTitle: "",
|
|
|
|
|
visible: false,
|
|
|
|
|
// 企业工商信息上半部分
|
|
|
|
|
commerceMessage_form: {
|
|
|
|
|
form: {
|
|
|
|
|
// 企业工商信息上半部分
|
|
|
|
|
companyName: "",
|
|
|
|
|
socialCreditCode: "",
|
|
|
|
|
companyNature: "",
|
|
|
|
@ -265,37 +256,41 @@ export default {
|
|
|
|
|
registerCapital: "",
|
|
|
|
|
registerAuthority: "",
|
|
|
|
|
businessStatus: "",
|
|
|
|
|
},
|
|
|
|
|
// 企业工商信息下半部分
|
|
|
|
|
commerceMessage_form_two: {
|
|
|
|
|
registerAddress: "",
|
|
|
|
|
companyType: [],
|
|
|
|
|
businessStatus: "",
|
|
|
|
|
},
|
|
|
|
|
// 企业联系人信息表单
|
|
|
|
|
company_person_message_form: {
|
|
|
|
|
companyTypes: [],
|
|
|
|
|
businessScope: "",
|
|
|
|
|
emergencyContact: "",
|
|
|
|
|
emergencyContactPhone: "",
|
|
|
|
|
},
|
|
|
|
|
// 企业位置信息表单
|
|
|
|
|
company_position_form: {
|
|
|
|
|
province: [],
|
|
|
|
|
city: [],
|
|
|
|
|
county: [],
|
|
|
|
|
township: [],
|
|
|
|
|
community: [],
|
|
|
|
|
provinceName: "",
|
|
|
|
|
cityName: "",
|
|
|
|
|
areaName: "",
|
|
|
|
|
blockName: "",
|
|
|
|
|
streetName: "",
|
|
|
|
|
longitude: "",
|
|
|
|
|
latitude: "",
|
|
|
|
|
position: "",
|
|
|
|
|
},
|
|
|
|
|
jurisdiction_form: {
|
|
|
|
|
companyAddress: "",
|
|
|
|
|
// 辖区表单
|
|
|
|
|
jurisdiction: [],
|
|
|
|
|
jurisdiction_code: "",
|
|
|
|
|
region: "",
|
|
|
|
|
policeDistrictCn: "",
|
|
|
|
|
policeDistrictCode: "",
|
|
|
|
|
belongingArea: "",
|
|
|
|
|
},
|
|
|
|
|
imageUrl: "",
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
created() {
|
|
|
|
|
this.getCheck();
|
|
|
|
|
this.policeDis();
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
open(num) {
|
|
|
|
|
open(num, item) {
|
|
|
|
|
this.visible = true;
|
|
|
|
|
if (num === 1) {
|
|
|
|
|
this.dialogTitle = "新建";
|
|
|
|
@ -303,11 +298,105 @@ export default {
|
|
|
|
|
this.dialogTitle = "查看档案";
|
|
|
|
|
} else if (num === 3) {
|
|
|
|
|
this.dialogTitle = "编辑";
|
|
|
|
|
console.log("item", item);
|
|
|
|
|
this.form = Object.assign(this.form, item);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
saveFormData: debounce(function () {
|
|
|
|
|
this.$message.success("232324234");
|
|
|
|
|
}, 300),
|
|
|
|
|
getCheck() {
|
|
|
|
|
const params = {
|
|
|
|
|
areaCode: "0",
|
|
|
|
|
};
|
|
|
|
|
common(params).then((res) => {
|
|
|
|
|
this.form.province = res.data;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
// 省下拉选中后,获取市级下拉
|
|
|
|
|
checkCity(val) {
|
|
|
|
|
this.form.cityName = "";
|
|
|
|
|
this.form.areaName = "";
|
|
|
|
|
this.form.blockName = "";
|
|
|
|
|
this.form.streetName = "";
|
|
|
|
|
const params = {
|
|
|
|
|
areaCode: "",
|
|
|
|
|
};
|
|
|
|
|
params.areaCode = val;
|
|
|
|
|
common(params).then((res) => {
|
|
|
|
|
this.form.city = res.data;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
// 市下拉选中后,获取县级下拉
|
|
|
|
|
checkCounty(val) {
|
|
|
|
|
this.form.areaName = "";
|
|
|
|
|
this.form.blockName = "";
|
|
|
|
|
this.form.streetName = "";
|
|
|
|
|
const params = {
|
|
|
|
|
areaCode: "",
|
|
|
|
|
};
|
|
|
|
|
params.areaCode = val;
|
|
|
|
|
common(params).then((res) => {
|
|
|
|
|
this.form.county = res.data;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
// 县级下拉选中后,获取街道下拉
|
|
|
|
|
checkTown(val) {
|
|
|
|
|
this.form.blockName = "";
|
|
|
|
|
this.form.streetName = "";
|
|
|
|
|
const params = {
|
|
|
|
|
areaCode: "",
|
|
|
|
|
};
|
|
|
|
|
params.areaCode = val;
|
|
|
|
|
common(params).then((res) => {
|
|
|
|
|
this.form.township = res.data;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
// 街道下拉选中后,获取社区下拉
|
|
|
|
|
checkCommunity(val) {
|
|
|
|
|
this.form.streetName = "";
|
|
|
|
|
const params = {
|
|
|
|
|
areaCode: "",
|
|
|
|
|
};
|
|
|
|
|
params.areaCode = val;
|
|
|
|
|
common(params).then((res) => {
|
|
|
|
|
this.form.community = res.data;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
// 辖区下拉查询
|
|
|
|
|
policeDis() {
|
|
|
|
|
const params = {
|
|
|
|
|
dictType: "police_district",
|
|
|
|
|
};
|
|
|
|
|
commonDict(params).then((res) => {
|
|
|
|
|
this.form.jurisdiction = res.data;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
// 确定数据
|
|
|
|
|
saveFormData() {
|
|
|
|
|
const params = this.form;
|
|
|
|
|
console.log('this.form',this.form);
|
|
|
|
|
if (this.dialogTitle === "新建") {
|
|
|
|
|
console.log(1111111);
|
|
|
|
|
postCompanyList(params).then((res) => {
|
|
|
|
|
if (res.code === 200) {
|
|
|
|
|
this.$message.success("新建成功");
|
|
|
|
|
this.visible = false;
|
|
|
|
|
this.form = {};
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.warning("新建失败");
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
} else if (this.dialogTitle === "编辑") {
|
|
|
|
|
putCompanyList(params).then((res) => {
|
|
|
|
|
if (res.code === 200) {
|
|
|
|
|
this.$message.success("编辑成功");
|
|
|
|
|
this.visible = false;
|
|
|
|
|
this.form = {};
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.warning("编辑失败");
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
this.$emit("back");
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
@ -386,6 +475,7 @@ export default {
|
|
|
|
|
.el-input__inner {
|
|
|
|
|
width: 170px;
|
|
|
|
|
border-radius: 0px;
|
|
|
|
|
border: 0.5px dashed;
|
|
|
|
|
background: #3c4b4a;
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
@ -403,7 +493,7 @@ export default {
|
|
|
|
|
.jurisdiction {
|
|
|
|
|
background: url("~@/assets/companyFile/242112.png") no-repeat !important;
|
|
|
|
|
background-size: 100% 100% !important;
|
|
|
|
|
margin-top: 16px;
|
|
|
|
|
margin-top: px;
|
|
|
|
|
}
|
|
|
|
|
/* 为适应上传图片表单布局把企业工商表单拆分 */
|
|
|
|
|
.commerceMessage_one {
|
|
|
|
@ -423,11 +513,18 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
.avatar-uploader-icon {
|
|
|
|
|
font-size: 28px;
|
|
|
|
|
position: relative;
|
|
|
|
|
color: #8c939d;
|
|
|
|
|
width: 178px;
|
|
|
|
|
height: 178px;
|
|
|
|
|
line-height: 178px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
width: 220px;
|
|
|
|
|
height: 220px;
|
|
|
|
|
background: url("~@/assets/companyFile/uploadicon.png") center no-repeat !important;
|
|
|
|
|
background-size: 40% 40% !important;
|
|
|
|
|
div {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 160px;
|
|
|
|
|
left: 16px;
|
|
|
|
|
font-size: 19px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.avatar {
|
|
|
|
|
width: 178px;
|
|
|
|
@ -455,10 +552,17 @@ export default {
|
|
|
|
|
.el-checkbox {
|
|
|
|
|
.el-checkbox__label {
|
|
|
|
|
color: #fff;
|
|
|
|
|
padding-right: 10px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.el-checkbox.is-checked {
|
|
|
|
|
background: #edf6f2;
|
|
|
|
|
background: #3c4b4a;
|
|
|
|
|
border-radius: 0px;
|
|
|
|
|
border: 0.5px dashed;
|
|
|
|
|
text-shadow: 0 0 9px rgba(21, 255, 198, 0.64);
|
|
|
|
|
}
|
|
|
|
|
.el-checkbox__inner {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.el-textarea {
|
|
|
|
@ -467,6 +571,7 @@ export default {
|
|
|
|
|
width: 650px;
|
|
|
|
|
border-radius: 0px;
|
|
|
|
|
background: #3c4b4a;
|
|
|
|
|
border: 0.5px dashed;
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
.el-textarea__inner:focus,
|
|
|
|
|