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
c8cee3d4
Commit
c8cee3d4
authored
Mar 01, 2021
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增页面
parent
3508da5e
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
354 additions
and
34 deletions
+354
-34
investmentList.vue
src/components/tradePavilion/investmentList.vue
+1
-1
newsList.vue
src/components/tradePavilion/newsList.vue
+11
-5
serviceTypeList.vue
src/components/tradePavilion/serviceTypeList.vue
+305
-0
tradePavilionIndex.vue
src/components/tradePavilion/tradePavilionIndex.vue
+16
-11
index.js
src/router/index.js
+21
-17
No files found.
src/components/tradePavilion/investmentList.vue
View file @
c8cee3d4
...
...
@@ -2,7 +2,7 @@
<div
class=
"investmentList"
>
<template
v-if=
"!isShowInfo"
>
<div
class=
"head-title"
>
投资
管理
招商
管理
</div>
<div
class=
"content"
>
<div>
...
...
src/components/tradePavilion/newsList.vue
View file @
c8cee3d4
...
...
@@ -10,7 +10,7 @@
<div>
<div
class=
"searchInput"
style=
"width:250px"
>
<el-input
@
keyup
.
enter
.
native=
"msg.pageIndex=1,getList()"
@
clear=
"msg.pageIndex=1,getList()"
style=
"display:inline-block;width:225px;height:30px"
placeholder=
"请输入标题"
v-model=
"msg.Title"
size=
"small"
style=
"display:inline-block;width:225px;height:30px"
placeholder=
"请输入
新闻
标题"
v-model=
"msg.Title"
size=
"small"
clearable
>
</el-input>
<span
@
click=
"msg.pageIndex=1,getList()"
class=
"el-icon-search"
...
...
@@ -59,14 +59,16 @@
<div
class=
"content"
>
<el-form
label-width=
"120px"
:model=
"addMsg"
:rules=
"rules"
ref=
"addMsg"
>
<el-form-item
label=
"新闻标题"
class=
"is-required"
prop=
"Title"
>
<el-input
type=
"text"
class=
"w400"
v-model=
"addMsg.Title"
size=
"small"
placeholder=
"新闻标题"
maxlength=
"100"
></el-input>
<el-input
type=
"text"
class=
"w400"
v-model=
"addMsg.Title"
size=
"small"
placeholder=
"新闻标题"
maxlength=
"100"
>
</el-input>
</el-form-item>
<el-form-item
label=
"发布时间"
class=
"is-required"
prop=
"PublishTime"
>
<el-date-picker
class=
"w400"
v-model=
"addMsg.PublishTime"
size=
"small"
type=
"date"
placeholder=
"发布时间"
>
</el-date-picker>
</el-form-item>
<el-form-item
label=
"行业"
class=
"is-required"
prop=
"Industry"
>
<el-input
type=
"text"
class=
"w400"
v-model=
"addMsg.Industry"
size=
"small"
placeholder=
"行业"
maxlength=
"50"
></el-input>
<el-input
type=
"text"
class=
"w400"
v-model=
"addMsg.Industry"
size=
"small"
placeholder=
"行业"
maxlength=
"50"
>
</el-input>
</el-form-item>
<el-form-item
label=
"封面图"
size=
"small"
>
<el-button
@
click=
"isShowImage=true"
size=
"small"
>
选择文件
</el-button>
...
...
@@ -76,7 +78,7 @@
<img
v-else
style=
"width:80px;height:80px"
:src=
"addMsg.CoverImg"
alt=
""
>
</div>
</el-form-item>
<el-form-item
label=
"
活动
详情"
style=
"line-height:0;"
>
<el-form-item
label=
"
新闻
详情"
style=
"line-height:0;"
>
<UE
style=
"width:750px;"
:defaultMsg=
"defaultMsg"
:config=
"config"
:IsMultiple=
"true"
ref=
"ue"
></UE>
</el-form-item>
</el-form>
...
...
@@ -109,6 +111,7 @@
pageIndex
:
1
,
pageSize
:
10
,
Title
:
''
,
Type
:
1
,
},
total
:
0
,
tableData
:
[],
//数据列表
...
...
@@ -121,6 +124,7 @@
Industry
:
""
,
//行业
PublishTime
:
""
,
//发布时间
NewsInfo
:
""
,
//新闻详情
Type
:
1
,
},
rules
:
{
Title
:
[{
...
...
@@ -157,7 +161,8 @@
this
.
addMsg
.
Industry
=
""
;
this
.
addMsg
.
PublishTime
=
""
;
this
.
addMsg
.
NewsInfo
=
""
;
this
.
defaultMsg
=
""
;
this
.
addMsg
.
Type
=
1
;
this
.
defaultMsg
=
""
;
},
getList
()
{
this
.
loading
=
true
;
...
...
@@ -208,6 +213,7 @@
this
.
addMsg
.
Industry
=
tempData
.
Industry
;
this
.
addMsg
.
PublishTime
=
tempData
.
PublishTime
;
this
.
addMsg
.
NewsInfo
=
tempData
.
NewsInfo
;
this
.
addMsg
.
Type
=
tempData
.
Type
;
if
(
tempData
.
NewsInfo
)
{
this
.
defaultMsg
=
tempData
.
NewsInfo
;
}
...
...
src/components/tradePavilion/serviceTypeList.vue
0 → 100644
View file @
c8cee3d4
This diff is collapsed.
Click to expand it.
src/components/tradePavilion/tradePavilionIndex.vue
View file @
c8cee3d4
...
...
@@ -174,14 +174,14 @@
</div>
</div>
<ul
class=
"FsettingUU"
>
<li
class=
"menu_item"
:class=
"
{'Fchecked':isChecked=='/contactus'}"
@click="isChecked='/contactus',CommonJump('contactus')">
<i
class=
"el-icon-menu"
></i><span>
联系我们
</span>
</li>
<li
class=
"menu_item"
:class=
"
{'Fchecked':isChecked=='/companyList'}"
@click="isChecked='/companyList',CommonJump('companyList')">
<i
class=
"el-icon-menu"
></i><span>
公司资料
</span>
</li>
<li
class=
"menu_item"
:class=
"
{'Fchecked':isChecked=='/contactus'}"
@click="isChecked='/contactus',CommonJump('contactus')">
<i
class=
"el-icon-menu"
></i><span>
联系我们
</span>
</li>
<li
class=
"menu_item"
:class=
"
{'Fchecked':isChecked=='/activityType'}"
@click="isChecked='/activityType',CommonJump('activityType')">
<i
class=
"el-icon-menu"
></i><span>
活动类型管理
</span>
...
...
@@ -194,18 +194,23 @@
@click="isChecked='/newsList',CommonJump('newsList')">
<i
class=
"el-icon-menu"
></i><span>
新闻列表
</span>
</li>
<li
class=
"menu_item"
:class=
"
{'Fchecked':isChecked=='/serviceTypeList'}"
@click="isChecked='/serviceTypeList',CommonJump('serviceTypeList')">
<i
class=
"el-icon-menu"
></i><span>
服务类型列表
</span>
</li>
<li
class=
"menu_item"
:class=
"
{'Fchecked':isChecked=='/consultList'}"
@click="isChecked='/consultList',CommonJump('consultList')">
<i
class=
"el-icon-menu"
></i><span>
咨询管理
</span>
</li>
<li
class=
"menu_item"
:class=
"
{'Fchecked':isChecked=='/investmentList'}"
@click="isChecked='/investmentList',CommonJump('investmentList')">
<i
class=
"el-icon-menu"
></i><span>
投资
管理
</span>
<i
class=
"el-icon-menu"
></i><span>
招商
管理
</span>
</li>
<li
class=
"menu_item"
:class=
"
{'Fchecked':isChecked=='/procurementList'}"
@click="isChecked='/procurementList',CommonJump('procurementList')">
<i
class=
"el-icon-menu"
></i><span>
采购管理
</span>
</li>
<li
class=
"menu_item"
:class=
"
{'Fchecked':isChecked=='/consultList'}"
@click="isChecked='/consultList',CommonJump('consultList')">
<i
class=
"el-icon-menu"
></i><span>
咨询管理
</span>
</li>
</ul>
</div>
</div>
...
...
@@ -261,8 +266,8 @@
this
.
ERPEmpId
=
this
.
currentUser
.
ERPEmpId
this
.
isChecked
=
this
.
$route
.
path
;
if
(
this
.
$route
.
query
.
FIndex
)
{
this
.
CommonJump
(
'co
ntactus
'
);
this
.
isChecked
=
'/co
ntactus
'
this
.
CommonJump
(
'co
mpanyList
'
);
this
.
isChecked
=
'/co
mpanyList
'
}
},
methods
:
{},
...
...
src/router/index.js
View file @
c8cee3d4
...
...
@@ -274,17 +274,15 @@ export default new Router({
path
:
'/blindDateIndex'
,
//相亲专区
name
:
'blindDateIndex'
,
component
:
resolve
=>
require
([
'@/components/blindDate/blindDateIndex'
],
resolve
),
children
:[
{
path
:
'/plateList'
,
name
:
'plateList'
,
component
:
resolve
=>
require
([
'@/components/blindDate/plateList'
],
resolve
),
},{
path
:
'/addplate'
,
name
:
'addplate'
,
component
:
resolve
=>
require
([
'@/components/blindDate/addplate'
],
resolve
),
},
]
children
:
[{
path
:
'/plateList'
,
name
:
'plateList'
,
component
:
resolve
=>
require
([
'@/components/blindDate/plateList'
],
resolve
),
},
{
path
:
'/addplate'
,
name
:
'addplate'
,
component
:
resolve
=>
require
([
'@/components/blindDate/addplate'
],
resolve
),
},
]
},
{
path
:
'/educationIndex'
,
//网课专区
...
...
@@ -616,6 +614,12 @@ export default new Router({
name
:
'newsList'
,
component
:
resolve
=>
require
([
'@/components/tradePavilion/newsList'
],
resolve
),
},
//贸易管理--服务类型
{
path
:
'/serviceTypeList'
,
name
:
'serviceTypeList'
,
component
:
resolve
=>
require
([
'@/components/tradePavilion/serviceTypeList'
],
resolve
),
},
//贸易管理--投资列表
{
path
:
'/investmentList'
,
...
...
@@ -628,12 +632,12 @@ export default new Router({
name
:
'procurementList'
,
component
:
resolve
=>
require
([
'@/components/tradePavilion/procurementList'
],
resolve
),
},
//贸易管理--咨询管理
{
path
:
'/consultList'
,
name
:
'consultList'
,
component
:
resolve
=>
require
([
'@/components/tradePavilion/consultList'
],
resolve
),
},
//贸易管理--咨询管理
{
path
:
'/consultList'
,
name
:
'consultList'
,
component
:
resolve
=>
require
([
'@/components/tradePavilion/consultList'
],
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