Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
contractmanage
Project
Project
Details
Activity
Releases
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张伯涛
contractmanage
Commits
968a2794
Commit
968a2794
authored
Apr 29, 2022
by
张伯涛
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改
parent
29e54c61
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
30 additions
and
2 deletions
+30
-2
CompanyDialog.vue
src/views/list/CompanyDialog.vue
+15
-1
addProject.vue
src/views/projectInfo/addProject.vue
+15
-1
No files found.
src/views/list/CompanyDialog.vue
View file @
968a2794
...
...
@@ -51,7 +51,11 @@
>
<el-table-column
type=
"selection"
width=
"55"
/>
<el-table-column
label=
"序号"
type=
"index"
width=
"55"
/>
<el-table-column
label=
"单位中文名称"
prop=
"ZBPNAME_ZH"
width=
"400"
:show-overflow-tooltip=
"true"
/>
<el-table-column
label=
"单位中文名称"
prop=
"ZBPNAME_ZH"
:show-overflow-tooltip=
"true"
>
<template
slot-scope=
"
{ row }">
<el-link
type=
"primary"
@
click
.
stop=
"checkDetails(row)"
>
{{
row
.
ZBPNAME_ZH
}}
</el-link>
</
template
>
</el-table-column>
<el-table-column
label=
"核算组织编码"
prop=
"ZACORGNO"
width=
"200"
:show-overflow-tooltip=
"true"
/>
<el-table-column
label=
"单位编码"
prop=
"ZBP"
width=
"150"
:show-overflow-tooltip=
"true"
/>
<el-table-column
label=
"公司/个人"
prop=
"ZBPTYPENAME"
width=
"100"
:show-overflow-tooltip=
"true"
/>
...
...
@@ -125,6 +129,16 @@ export default {
this
.
getList
()
},
methods
:
{
/** 查看按钮 */
checkDetails
(
row
)
{
this
.
$router
.
push
({
path
:
'/contactsUnit/contactsUnitDetails'
,
query
:
{
id
:
row
.
ZBP
}
})
// this.unitOpen = true
},
handleSelectionChange
(
val
)
{
this
.
companyName
=
val
[
0
].
ZBPNAME_ZH
this
.
companyCode
=
val
[
0
].
ZBP
...
...
src/views/projectInfo/addProject.vue
View file @
968a2794
...
...
@@ -538,7 +538,11 @@
<el-table
ref=
"unitInfoData"
:data=
"unitInfoData"
border
@
select=
"dialogCheck"
@
selection-change=
"handleSelected"
>
<el-table-column
type=
"selection"
width=
"55"
/>
<el-table-column
label=
"序号"
type=
"index"
width=
"55"
/>
<el-table-column
label=
"单位中文名称"
prop=
"ZBPNAME_ZH"
:show-overflow-tooltip=
"true"
/>
<el-table-column
label=
"单位中文名称"
prop=
"ZBPNAME_ZH"
:show-overflow-tooltip=
"true"
>
<template
slot-scope=
"
{ row }">
<el-link
type=
"primary"
@
click
.
stop=
"proCheckDetails(row)"
>
{{
row
.
ZBPNAME_ZH
}}
</el-link>
</
template
>
</el-table-column>
<el-table-column
label=
"核算组织编码"
prop=
"ZACORGNO"
:show-overflow-tooltip=
"true"
/>
<el-table-column
label=
"单位编码"
prop=
"ZBP"
:show-overflow-tooltip=
"true"
/>
<el-table-column
label=
"公司/个人"
prop=
"ZBPTYPENAME"
:show-overflow-tooltip=
"true"
/>
...
...
@@ -1400,6 +1404,16 @@ export default {
}
},
methods
:
{
/** 查看按钮 */
proCheckDetails
(
row
)
{
this
.
$router
.
push
({
path
:
'/contactsUnit/contactsUnitDetails'
,
query
:
{
id
:
row
.
ZBP
}
})
// this.unitOpen = true
},
/** 获取服务器时间*/
getNewDate
()
{
ServerTime
().
then
(
res
=>
{
...
...
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