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
eaf96a66
Commit
eaf96a66
authored
Aug 30, 2021
by
Mac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
f658e01c
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
447 additions
and
98 deletions
+447
-98
reset.png
src/assets/img/userman/reset.png
+0
-0
addbillboard.vue
src/components/tradePavilion/addbillboard.vue
+0
-13
billboardList.vue
src/components/tradePavilion/billboardList.vue
+19
-7
listRegistration.vue
src/components/tradePavilion/listRegistration.vue
+79
-78
publishAlist.vue
src/components/tradePavilion/publishAlist.vue
+343
-0
index.js
src/router/index.js
+6
-0
No files found.
src/assets/img/userman/reset.png
0 → 100644
View file @
eaf96a66
983 Bytes
src/components/tradePavilion/addbillboard.vue
View file @
eaf96a66
...
...
@@ -203,19 +203,6 @@
//广告
let
advertising
=
this
.
$refs
.
ue
.
getUEContent
();
this
.
addMsg
.
content
=
advertising
;
if
(
this
.
addMsg
.
BuiltUpArea
===
''
||
this
.
addMsg
.
EndBuiltUpArea
===
''
)
{
this
.
Error
(
'请输入建筑面积'
)
return
}
if
(
this
.
addMsg
.
AreaRequirement
===
''
||
this
.
addMsg
.
EndAreaRequirement
===
''
)
{
this
.
Error
(
'请输入需求面积'
)
return
}
if
(
this
.
ShopWish
==
0
)
{
this
.
addMsg
.
OpenShopWish
=
-
1
}
this
.
$refs
[
formName
].
validate
((
valid
)
=>
{
if
(
valid
)
{
this
.
apipost
(
"/api/Trade/GetSetBrand"
,
this
.
addMsg
,
(
res
)
=>
{
...
...
src/components/tradePavilion/billboardList.vue
View file @
eaf96a66
...
...
@@ -74,7 +74,7 @@
</el-table-column>
<el-table-column
prop=
"JoinNum"
label=
"报名人数"
>
<
template
slot-scope=
"scope"
>
<el-button
type=
"text"
@
click=
"
dialogTableVisible = true,
getItem(scope.row)"
>
<el-button
type=
"text"
@
click=
"getItem(scope.row)"
>
{{
scope
.
row
.
JoinNum
}}
人
</el-button>
</
template
>
...
...
@@ -84,7 +84,7 @@
<
template
slot-scope=
"scope"
>
<el-tooltip
class=
"item"
effect=
"dark"
content=
"放榜"
placement=
"top"
>
<img
src=
"../../assets/img/setup/fangbang.png"
alt=
""
class=
"imgstyle"
/>
<img
src=
"../../assets/img/setup/fangbang.png"
alt=
""
class=
"imgstyle"
@
click=
"fangbang(scope.row)"
/>
</el-tooltip>
<el-tooltip
class=
"item"
effect=
"dark"
content=
"编辑"
placement=
"top"
>
<img
src=
"../../assets/img/setup/edit.png"
alt=
""
class=
"imgstyle"
...
...
@@ -103,8 +103,6 @@
:total=
"total"
>
</el-pagination>
</div>
<!-- 报名人数的展示 -->
<el-dialog
title=
"报名信息"
:visible
.
sync=
"dialogTableVisible"
>
<el-table
:data=
"joinData"
>
...
...
@@ -196,14 +194,28 @@
},
});
},
getItem
(
row
)
{
getItem
(
row
)
{
//跳转到报名列表
this
.
$router
.
push
({
name
:
"listRegistration"
,
query
:
{
UserId
:
0
,
blank
:
"y"
,
},
});
},
goadd
()
{
//新增修改
this
.
$router
.
push
({
name
:
"addbillboard"
,
});
}
},
fangbang
(){
//放榜功能
this
.
$router
.
push
({
name
:
"publishAlist"
,
query
:
{
UserId
:
0
,
},
});
},
},
mounted
()
{
}
...
...
src/components/tradePavilion/listRegistration.vue
View file @
eaf96a66
This diff is collapsed.
Click to expand it.
src/components/tradePavilion/publishAlist.vue
0 → 100644
View file @
eaf96a66
This diff is collapsed.
Click to expand it.
src/router/index.js
View file @
eaf96a66
...
...
@@ -830,6 +830,12 @@ export default new Router({
name
:
'listRegistration'
,
component
:
resolve
=>
require
([
'@/components/tradePavilion/listRegistration'
],
resolve
),
},
//贸易管理--放榜页面
{
path
:
'/publishAlist'
,
name
:
'publishAlist'
,
component
:
resolve
=>
require
([
'@/components/tradePavilion/publishAlist'
],
resolve
),
},
]
...
...
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