Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
ElectricitySheep
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
黄媛媛
ElectricitySheep
Commits
8e5ffd3b
Commit
8e5ffd3b
authored
3 years ago
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
daedf24f
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
50 additions
and
18 deletions
+50
-18
signList.vue
src/components/tradePavilion/signList.vue
+50
-18
No files found.
src/components/tradePavilion/signList.vue
View file @
8e5ffd3b
<
style
>
.signList_Table
{
width
:
100%
;
border-collapse
:
collapse
;
margin-top
:
20px
;
.signList_Table
{
width
:
100%
;
border-collapse
:
collapse
;
margin-top
:
20px
;
}
.signTableDiv
{
width
:
100%
;
.signTableDiv
{
width
:
100%
;
min-width
:
800px
;
/* overflow: hidden; */
overflow-x
:
auto
;
}
.signList_Table
th
{
border
:
1px
solid
#EBEEF5
;
height
:
48px
;
.signList_Table
th
{
border
:
1px
solid
#EBEEF5
;
height
:
48px
;
line-height
:
48px
;
text-align
:
center
;
color
:
#909399
;
padding
:
0
10px
;
color
:
#909399
;
padding
:
0
10px
;
text-align
:
left
;
}
.signList_Table
td
{
border
:
1px
solid
#EBEEF5
;
height
:
48px
;
.signList_Table
td
{
border
:
1px
solid
#EBEEF5
;
height
:
48px
;
line-height
:
48px
;
text-align
:
center
;
color
:
#606266
;
font-size
:
14px
;
padding
:
0
10px
;
color
:
#606266
;
font-size
:
14px
;
padding
:
0
10px
;
text-align
:
left
;
}
.signList_Table
tr
:hover
>
td
{
.signList_Table
tr
:hover
>
td
{
background-color
:
#F5F7FA
;
}
</
style
>
<
template
>
<div
class=
"signList tradeactivity"
>
...
...
@@ -86,6 +91,9 @@
<th>
地址
</th>
<th>
操作
</th>
</tr>
</thead>
<tbody
v-for=
"(item,index) in tableData"
:key=
"index"
>
...
...
@@ -120,6 +128,11 @@
<td>
{{
sItem
.
CountryInfo
}}
</td>
<td>
<el-tooltip
class=
"item"
effect=
"dark"
content=
"删除"
placement=
"top"
style=
"cursor:pointer;"
>
<img
@
click=
"delSign(sItem)"
src=
"../../assets/img/userman/del.png"
alt=
""
/>
</el-tooltip>
</td>
</tr>
</tbody>
...
...
@@ -173,6 +186,25 @@
this
.
msg
.
pageIndex
=
val
;
this
.
getList
();
},
//删除报名
delSign
(
item
)
{
let
that
=
this
;
that
.
Confirm
(
"是否删除此报名人员?"
,
function
()
{
that
.
apipost
(
"/api/AppletTrade/DeleteTrdceConsult"
,
{
Id
:
item
.
Id
,
},
(
res
)
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
that
.
Success
(
res
.
data
.
message
);
that
.
getList
();
}
else
{
that
.
Error
(
res
.
data
.
message
);
}
}
);
});
}
}
};
...
...
This diff is collapsed.
Click to expand it.
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