Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Z
zhichan
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
蒋勇
zhichan
Commits
5619739e
Commit
5619739e
authored
Mar 18, 2020
by
尹亚亭
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
111
parent
555a596d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
39 additions
and
27 deletions
+39
-27
channel-access/src/views/fqembed/Cloudcompany.vue
+15
-12
channel-access/src/views/fqembed/Companysub.vue
+14
-11
channel-access/src/views/fqembed/companylist.vue
+10
-4
No files found.
channel-access/src/views/fqembed/Cloudcompany.vue
View file @
5619739e
...
@@ -79,6 +79,7 @@ import req from "axios";
...
@@ -79,6 +79,7 @@ import req from "axios";
export
default
{
export
default
{
data
()
{
data
()
{
return
{
return
{
passCloudAddDialog
:
false
,
name
:
""
,
name
:
""
,
region
:
""
,
region
:
""
,
gardenValue
:
""
,
gardenValue
:
""
,
...
@@ -175,6 +176,7 @@ export default {
...
@@ -175,6 +176,7 @@ export default {
}
}
console
.
log
(
console
.
log
(
this
.
passCloudAddDialog
,
"按提交按钮的提交前的参数:"
,
"按提交按钮的提交前的参数:"
,
"注册园区:"
,
"注册园区:"
,
this
.
gardenValue
,
this
.
gardenValue
,
...
@@ -185,7 +187,7 @@ export default {
...
@@ -185,7 +187,7 @@ export default {
"方案备注:"
,
"方案备注:"
,
this
.
notes
this
.
notes
);
);
// this.$emit("cloudAddDone", this.passCloudAddDialog);
req
req
.
post
(
.
post
(
"/api/web/action/icapi/springBoard"
,
"/api/web/action/icapi/springBoard"
,
...
@@ -196,20 +198,20 @@ export default {
...
@@ -196,20 +198,20 @@ export default {
needNo
:
this
.
$route
.
query
.
needNo
,
needNo
:
this
.
$route
.
query
.
needNo
,
solutionContent
:
{
solutionContent
:
{
bizType
:
"companyreg_cloud"
,
// 注册类型:
bizType
:
"companyreg_cloud"
,
// 注册类型:
notes
:
this
.
notes
,
// 方案备注
solution
:
{
solution
:
{
// 公司注册方案
// 公司注册方案
ent
Name
:
""
,
//公司名称
company
Name
:
""
,
//公司名称
province
:
""
,
// 注册地区:省
city
:
""
,
// 注册地区:省
city
:
""
,
// 注册地区:市
area
:
""
,
// 注册地区:市
taxpayerType
:
""
,
// 纳税人类型
companyCategory
:
""
,
// 纳税人类型
entNatur
e
:
""
,
// 公司性质
companyTyp
e
:
""
,
// 公司性质
org
anization
Type
:
""
,
// 组织类型
orgType
:
""
,
// 组织类型
industry
:
""
,
// 从事行业
industry
Type
:
""
,
// 从事行业
businessS
cope
:
""
,
// 经营范围
s
cope
:
""
,
// 经营范围
// 云上公司注册方案
// 云上公司注册方案
regPark
:
this
.
gardenValue
,
// 注册园区
remark
:
this
.
notes
,
// 方案备注
regType
:
park
:
this
.
gardenValue
,
// 注册园区
registerType
:
this
.
natureValue
==
"个体商户"
this
.
natureValue
==
"个体商户"
?
"person"
?
"person"
:
this
.
natureValue
==
"个人独资企业"
:
this
.
natureValue
==
"个人独资企业"
...
@@ -239,6 +241,7 @@ export default {
...
@@ -239,6 +241,7 @@ export default {
this
.
natureValue
=
""
;
this
.
natureValue
=
""
;
this
.
tissueValue
=
""
;
this
.
tissueValue
=
""
;
this
.
notes
=
""
;
this
.
notes
=
""
;
this
.
$emit
(
"cloudAddDone"
,
this
.
passCloudAddDialog
);
}
else
{
}
else
{
this
.
$message
(
"公司注册方案提交失败"
);
this
.
$message
(
"公司注册方案提交失败"
);
}
}
...
...
channel-access/src/views/fqembed/Companysub.vue
View file @
5619739e
...
@@ -125,6 +125,7 @@ import req from "axios";
...
@@ -125,6 +125,7 @@ import req from "axios";
export
default
{
export
default
{
data
()
{
data
()
{
return
{
return
{
passCompanyDialog
:
false
,
// 传递到父组件,关闭对话框
name
:
""
,
name
:
""
,
cities
:
[],
// 省对应的城市区域集合 实现联动
cities
:
[],
// 省对应的城市区域集合 实现联动
options
:
[
options
:
[
...
@@ -422,6 +423,7 @@ export default {
...
@@ -422,6 +423,7 @@ export default {
"方案备注:"
,
"方案备注:"
,
this
.
notes
this
.
notes
);
);
this
.
$emit
(
"companyAddDone"
,
this
.
passCompanyDialog
);
req
req
.
post
(
.
post
(
...
@@ -433,20 +435,20 @@ export default {
...
@@ -433,20 +435,20 @@ export default {
needNo
:
this
.
$route
.
query
.
needNo
,
needNo
:
this
.
$route
.
query
.
needNo
,
solutionContent
:
{
solutionContent
:
{
bizType
:
"companyreg"
,
// 注册类型:
bizType
:
"companyreg"
,
// 注册类型:
notes
:
this
.
notes
,
// 方案备注
solution
:
{
solution
:
{
// 公司注册方案
// 公司注册方案
entName
:
this
.
name
,
//公司名称
companyName
:
this
.
name
,
//公司名称
province
:
this
.
region
,
// 注册地区:省
city
:
this
.
region
,
// 注册地区:省
city
:
this
.
value
,
// 注册地区:市
area
:
this
.
value
,
// 注册地区:市
taxpayerType
:
this
.
taxpayerValue
,
// 纳税人类型
companyCategory
:
this
.
taxpayerValue
,
// 纳税人类型
entNature
:
this
.
natureValue
,
// 公司性质
companyType
:
this
.
natureValue
,
// 公司性质
organizationType
:
this
.
tissueValue
,
// 组织类型
orgType
:
this
.
tissueValue
,
// 组织类型
industry
:
this
.
industryValue
,
// 从事行业
industryType
:
this
.
industryValue
,
// 从事行业
businessScope
:
this
.
scope
,
// 经营范围
scope
:
this
.
scope
,
// 经营范围
remark
:
this
.
notes
,
// 方案备注
// 云上公司注册方案
// 云上公司注册方案
regP
ark
:
""
,
// 注册园区
p
ark
:
""
,
// 注册园区
regType
:
""
,
// 注册类型
reg
ister
Type
:
""
,
// 注册类型
productType
:
""
// 产品类型
productType
:
""
// 产品类型
}
}
}
}
...
@@ -474,6 +476,7 @@ export default {
...
@@ -474,6 +476,7 @@ export default {
this
.
industryValue
=
""
;
this
.
industryValue
=
""
;
this
.
scope
=
""
;
this
.
scope
=
""
;
this
.
notes
=
""
;
this
.
notes
=
""
;
// this.$emit("companyAddDone", this.passCompanyDialog);
}
else
{
}
else
{
this
.
$message
(
"公司注册方案提交失败"
);
this
.
$message
(
"公司注册方案提交失败"
);
}
}
...
...
channel-access/src/views/fqembed/companylist.vue
View file @
5619739e
...
@@ -119,7 +119,7 @@
...
@@ -119,7 +119,7 @@
</el-table-column>
</el-table-column>
</el-table>
</el-table>
<el-dialog
title=
"公司注册方案"
:visible
.
sync=
"companyDetailDialog"
width=
"60%"
center
>
<el-dialog
title=
"公司注册方案"
:visible
.
sync=
"companyDetailDialog"
width=
"60%"
center
>
<Companydetail
/>
<Companydetail
@
companyAddDone=
"closeCompanyAddDialog"
/>
</el-dialog>
</el-dialog>
</div>
</div>
<div
class=
"block"
>
<div
class=
"block"
>
...
@@ -135,7 +135,7 @@
...
@@ -135,7 +135,7 @@
</el-tab-pane>
</el-tab-pane>
<el-tab-pane
label=
"云上公司注册"
name=
"2"
>
<el-tab-pane
label=
"云上公司注册"
name=
"2"
>
<el-dialog
title=
"云上公司注册方案"
:visible
.
sync=
"cloudCompanyAddDialog"
width=
"60%"
center
>
<el-dialog
title=
"云上公司注册方案"
:visible
.
sync=
"cloudCompanyAddDialog"
width=
"60%"
center
>
<Cloudcompany
/
>
<Cloudcompany
@
cloudAddDone=
"closeCloudCompanyAddDialog"
></Cloudcompany
>
</el-dialog>
</el-dialog>
<div
class=
"company-find"
>
<div
class=
"company-find"
>
<div
class=
"box"
>
<div
class=
"box"
>
...
@@ -353,7 +353,6 @@ export default {
...
@@ -353,7 +353,6 @@ export default {
value
:
"广州"
,
value
:
"广州"
,
label
:
"广州"
label
:
"广州"
}
}
],
],
scheme
:
""
,
scheme
:
""
,
schemeOptions
:
[
schemeOptions
:
[
...
@@ -448,6 +447,13 @@ export default {
...
@@ -448,6 +447,13 @@ export default {
};
};
},
},
methods
:
{
methods
:
{
closeCompanyAddDialog
(
childPassedClose
)
{
console
.
log
(
childPassedClose
);
this
.
companyAddDialog
=
childPassedClose
;
},
closeCloudCompanyAddDialog
(
childPassedClose
)
{
this
.
cloudCompanyAddDialog
=
childPassedClose
;
},
addCompany
()
{
addCompany
()
{
console
.
log
(
"公司注册--添加--详情--test"
);
console
.
log
(
"公司注册--添加--详情--test"
);
this
.
companyAddDialog
=
true
;
this
.
companyAddDialog
=
true
;
...
@@ -626,7 +632,7 @@ export default {
...
@@ -626,7 +632,7 @@ export default {
},
},
watch
:
{},
watch
:
{},
created
()
{
created
()
{
console
.
log
(
JSON
.
parse
(
this
.
$route
.
query
.
data
));
//
console.log(JSON.parse(this.$route.query.data));
},
},
mounted
()
{
mounted
()
{
this
.
getListData
();
this
.
getListData
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment