Commit e82afec7 authored by 张伯涛's avatar 张伯涛

政策推荐注册地址回显

parent e635fb90
......@@ -726,6 +726,17 @@ export default {
if (res.code === 200) {
this.enterpriseNotExist = false
this.form = res.data
if (this.form.address) {
// 转换地址
var province = this.form.address.slice(0, 4)
var city = this.form.address.slice(4, 8)
var area = this.form.address.slice(8, this.form.address.length)
var address = []
address.push(province)
address.push(city)
address.push(area)
this.address = address
}
this.form.fwEnterpriseOperateRelativeList = [
{
year: '2022',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment