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
063b07df
Commit
063b07df
authored
Dec 05, 2024
by
罗超
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改
parent
6180b6f2
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
580 additions
and
162 deletions
+580
-162
BuildingManager.vue
src/components/tradePavilion/BuildingManager.vue
+426
-0
brandClassification.vue
src/components/tradePavilion/brandClassification.vue
+81
-132
tradePavilionIndex.vue
src/components/tradePavilion/tradePavilionIndex.vue
+61
-30
index.js
src/router/index.js
+12
-0
No files found.
src/components/tradePavilion/BuildingManager.vue
0 → 100644
View file @
063b07df
<
style
>
.CarrierList
{
border-bottom
:
1px
dashed
#eee
;
padding-bottom
:
5px
;
margin-bottom
:
5px
;
}
.CarrierList
span
{
display
:
inline-block
;
margin-right
:
10px
;
}
</
style
>
<
template
>
<div
class=
"VehicleManagement"
>
<div
class=
"head-title"
>
楼宇管理
<div>
<el-button
@
click=
"checkAll=false,dialogVisible = true"
style=
"float: right; margin-top: -25px"
size=
"small"
type=
"primary"
>
批量导出
</el-button>
</div>
<div>
<el-button
type=
"primary"
style=
"float: right; margin: -25px 10px 0px 0px"
class=
"el-button--small"
@
click=
"CommonJump('editVehicle')"
>
新增楼宇
</el-button>
</div>
</div>
<div
class=
"content"
>
<div>
<div
class=
"searchInput"
style=
"width: 250px; margin-bottom: 10px"
>
<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.CarrierName"
size=
"small"
clearable
>
</el-input>
<span
@
click=
"(msg.pageIndex = 1), getList()"
class=
"el-icon-search"
style=
"
color: #979dad;
font-size: 14px;
position: relative;
top: 1px;
"
></span>
</div>
<div
class=
"searchInput"
style=
"width: 250px; margin-bottom: 10px"
>
<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.Developers"
size=
"small"
clearable
>
</el-input>
<span
@
click=
"(msg.pageIndex = 1), getList()"
class=
"el-icon-search"
style=
"
color: #979dad;
font-size: 14px;
position: relative;
top: 1px;
"
></span>
</div>
<div
class=
"searchInput"
style=
"width: 250px; margin-bottom: 10px"
>
<el-input
@
keyup
.
enter
.
native=
"(msg.pageIndex = 1), getList()"
@
clear=
"(msg.pageIndex = 1), getList()"
style=
"display: inline-block; width: 225px; height: 30px"
@
keyup
.
native=
"checkInteger(msg, 'MetroNum')"
placeholder=
"地铁线路"
v-model=
"msg.MetroNum"
size=
"small"
clearable
>
</el-input>
<span
@
click=
"(msg.pageIndex = 1), getList()"
class=
"el-icon-search"
style=
"
color: #979dad;
font-size: 14px;
position: relative;
top: 1px;
"
></span>
</div>
<div
class=
"searchInput"
style=
"width: 250px; margin-bottom: 10px"
>
<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.MetroName"
size=
"small"
clearable
>
</el-input>
<span
@
click=
"(msg.pageIndex = 1), getList()"
class=
"el-icon-search"
style=
"
color: #979dad;
font-size: 14px;
position: relative;
top: 1px;
"
></span>
</div>
<div
class=
"searchInput"
style=
"width: 200px; margin-bottom: 10px"
>
<el-select
size=
"small"
v-model=
"msg.UserId"
:filter-method=
"ChangeListName"
filterable
@
change=
"(msg.pageIndex = 1), getList()"
placeholder=
"请选择"
>
<el-option
label=
"不限"
:value=
"0"
></el-option>
<el-option
v-for=
"item in userList"
:key=
"item.Id"
:label=
"item.Name"
:value=
"item.Id"
>
</el-option>
</el-select>
</div>
<el-date-picker
class=
"indataPicker"
type=
"daterange"
v-model=
"dateStr"
range-separator=
"至"
start-placeholder=
"开业日期"
end-placeholder=
"开业日期"
size=
"small"
@
change=
"getList"
value-format=
"yyyy-MM-dd"
>
</el-date-picker>
</div>
<el-table
:data=
"tableData"
v-loading=
"loading"
border
style=
"width: 100%; margin: 20px 0"
>
<el-table-column
prop=
"CarrierName"
width=
"200"
label=
"项目名称"
>
</el-table-column>
<el-table-column
prop=
"CarrierMetroList"
label=
"地铁信息"
width=
"200"
>
<template
slot-scope=
"scope"
>
<div
v-for=
"(item, index) in scope.row.CarrierMetroList"
:key=
"index"
class=
"CarrierList"
>
<span>
{{
item
.
MetroNum
}}
号线
</span><span>
{{
item
.
MetroName
}}
</span><span>
{{
item
.
Distance
}}
</span>
</div>
</
template
>
</el-table-column>
<el-table-column
prop=
"Logo"
width=
"100"
label=
"logo"
>
<
template
slot-scope=
"scope"
>
<el-image
:src=
"scope.row.Logo"
style=
"width: 50px"
:preview-src-list=
"scope.row.LogoList"
>
</el-image>
</
template
>
</el-table-column>
<el-table-column
prop=
"Address"
width=
"200"
label=
"项目地址"
>
</el-table-column>
<el-table-column
prop=
"Developers"
width=
"200"
label=
"开发商"
>
</el-table-column>
<el-table-column
prop=
"OpenTime"
width=
"180"
label=
"开业时间"
>
</el-table-column>
<el-table-column
prop=
"ProjectType"
label=
"项目类型"
>
<
template
slot-scope=
"scope"
>
{{
getProject
(
scope
.
row
.
ProjectType
)
}}
</
template
>
</el-table-column>
<el-table-column
prop=
"CarrierSize"
label=
"商业体量"
>
</el-table-column>
<el-table-column
prop=
"LayersNum"
width=
"150"
label=
"商业层数"
></el-table-column>
<el-table-column
prop=
"UserName"
width=
"100"
label=
"认证用户"
></el-table-column>
<el-table-column
label=
"操作"
width=
"100"
>
<
template
slot-scope=
"scope"
>
<el-tooltip
class=
"item"
effect=
"dark"
content=
"修改"
placement=
"top"
>
<img
@
click=
"CommonJump('editVehicle',
{ ID: scope.row.ID })" src="../../assets/img/userman/edit.png"
alt="" />
</el-tooltip>
<el-tooltip
class=
"item"
effect=
"dark"
content=
"删除"
placement=
"top"
>
<img
@
click=
"delManage(scope.row)"
src=
"../../assets/img/userman/del.png"
alt=
""
/>
</el-tooltip>
</
template
>
</el-table-column>
</el-table>
<el-pagination
style=
"text-align: right"
background
@
current-change=
"handleCurrentChange"
:page-size=
"msg.pageSize"
:current-page
.
sync=
"msg.pageIndex"
layout=
"total,prev, pager, next"
:total=
"total"
>
</el-pagination>
</div>
<!-- 选择导出信息 -->
<el-dialog
title=
"选择导出信息"
:visible
.
sync=
"dialogVisible"
width=
"960px"
>
<div
v-loading=
"downLoadLoading"
:element-loading-text=
"loadingText"
>
<el-form
style=
"border: 1px solid #f0f2f7"
:model=
"addMsg"
ref=
"addMsg"
label-width=
"100px"
>
<div
style=
"
box-sizing: border-box;
background-color: #f3f5f6;
width: 100%;
padding-left: 20px;
height: 50px;
line-height: 50px;
"
>
<el-checkbox
:indeterminate=
"isIndeterminate"
v-model=
"checkAll"
@
change=
"handleCheckAllChange"
>
全选
</el-checkbox>
</div>
<div
style=
"margin: 15px 0"
></div>
<div
style=
"padding: 10px 25px 20px"
>
<el-checkbox-group
v-model=
"checkedCities"
@
change=
"handleCheckedCitiesChange"
>
<el-checkbox
style=
"margin-bottom: 10px; width: 135px"
v-for=
"city in cities"
:label=
"city.Id"
:key=
"city.Name"
>
{{ city.Name }}
</el-checkbox>
</el-checkbox-group>
</div>
</el-form>
<div
style=
"text-align: right; margin-top: 20px"
>
<el-button
size=
"small"
type=
"primary"
@
click=
"downLoadCarrier"
>
导出
</el-button>
</div>
</div>
</el-dialog>
</div>
</template>
<
script
>
import
{
setInterval
,
clearInterval
}
from
'timers'
;
export
default
{
data
()
{
return
{
msg
:
{
MetroName
:
""
,
//地铁站名称
pageIndex
:
1
,
pageSize
:
15
,
CarrierName
:
""
,
//载体名称
MetroNum
:
""
,
//地铁线路
Developers
:
""
,
//开发商
StartOpenTime
:
""
,
//开业开始时间
EndOpenTime
:
""
,
// 开业截止时间
ExcelEnumIds
:
[],
UserId
:
0
,
RandomNum
:
0
,
//随机数
},
usermsg
:
{
pageIndex
:
1
,
pageSize
:
20
,
Name
:
''
,
Source
:
0
,
MemberGrade
:
0
,
Id
:
0
,
Moblie
:
''
},
userList
:
[],
addMsg
:
{},
dialogVisible
:
false
,
dateStr
:
[],
//日期
total
:
0
,
tableData
:
[],
//数据列表
isShowAdd
:
false
,
//新增修改载体
ProjectTypeList
:
[],
//项目类型
checkAll
:
false
,
checkedCities
:
[],
cities
:
[],
cityOptions
:
[],
isIndeterminate
:
false
,
downLoadLoading
:
false
,
//导出Loading
download_timer
:
null
,
//下载文件timer
loadingText
:
""
,
//下载文件提示名称
};
},
created
()
{
this
.
getList
();
this
.
getTypeEnumList
();
this
.
getDown
();
this
.
getuserList
()
console
.
log
(
this
.
$route
.
name
)
},
methods
:
{
ChangeListName
(
val
)
{
this
.
usermsg
.
Name
=
val
;
this
.
getuserList
();
},
getuserList
()
{
this
.
apipost
(
"/api/user/GetMemberUserDropDownList"
,
this
.
usermsg
,
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
let
pageData
=
res
.
data
.
data
.
pageData
;
this
.
userList
=
pageData
;
}
})
},
getList
()
{
this
.
loading
=
true
;
if
(
this
.
dateStr
&&
this
.
dateStr
.
length
>
0
)
{
this
.
msg
.
StartOpenTime
=
this
.
dateStr
[
0
];
this
.
msg
.
EndOpenTime
=
this
.
dateStr
[
1
];
}
else
{
this
.
msg
.
StartOpenTime
=
""
;
this
.
msg
.
EndOpenTime
=
""
;
}
this
.
apipost
(
"/api/Trade/GetCarrierPageList"
,
this
.
msg
,
(
res
)
=>
{
this
.
loading
=
false
;
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
total
=
res
.
data
.
data
.
count
;
let
pageData
=
res
.
data
.
data
.
pageData
;
this
.
tableData
=
pageData
;
this
.
tableData
.
forEach
((
x
)
=>
{
x
.
LogoList
=
[];
x
.
LogoList
.
push
(
x
.
Logo
);
});
}
});
},
handleCheckAllChange
(
val
)
{
this
.
checkedCities
=
val
?
this
.
cityOptions
:
[];
this
.
isIndeterminate
=
false
;
},
handleCheckedCitiesChange
(
value
)
{
let
checkedCount
=
value
.
length
;
this
.
checkAll
=
checkedCount
===
this
.
cities
.
length
;
this
.
isIndeterminate
=
checkedCount
>
0
&&
checkedCount
<
this
.
cities
.
length
;
},
//下载载体文件
downLoadCarrier
()
{
this
.
msg
.
ExcelEnumIds
=
this
.
checkedCities
;
let
msg
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
msg
));
msg
.
RandomNum
=
Math
.
random
();
if
(
!
msg
.
Id
||
msg
.
Id
==
""
)
{
msg
.
Id
=
0
;
}
this
.
downLoadLoading
=
true
;
this
.
loadingText
=
"正在生成楼宇文件,请勿关闭或刷新页面..."
;
var
that
=
this
;
this
.
download_timer
=
setInterval
(
function
()
{
that
.
checkCarrierFile
(
msg
)
},
2000
);
},
checkCarrierFile
(
msg
)
{
var
fileName
=
"楼宇信息.xls"
;
var
that
=
this
;
this
.
apipost
(
"/api/Trade/CheckCarrierFile"
,
msg
,
(
res
)
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
clearInterval
(
this
.
download_timer
);
this
.
checkedCities
=
[];
this
.
loadingText
=
"正在下载楼宇文件,请勿关闭或刷新页面..."
;
var
fileUrl
=
res
.
data
.
data
.
fileUrl
;
var
filepath
=
res
.
data
.
data
.
filePath
;
var
key
=
res
.
data
.
message
;
var
params
=
{
fileUrl
:
fileUrl
}
//删除缓存和Key
var
deleteparams
=
{
key
:
key
,
fileUrl
:
fileUrl
,
filepath
:
filepath
,
};
var
apiurl
=
that
.
domainManager
().
DomainUrl
+
"/api/Trade/GetFile"
;
var
postData
=
that
.
GetPostData
(
""
,
params
,
""
);
that
.
$http
.
post
(
apiurl
,
postData
,
{
responseType
:
'arraybuffer'
,
onDownloadProgress
:
(
progressEvent
)
=>
{
const
progress
=
Math
.
round
((
progressEvent
.
loaded
/
progressEvent
.
total
)
*
100
);
that
.
loadingText
=
`正在下载楼宇文件`
+
progress
+
`%,请勿关闭或刷新页面...`
;
// 在这里处理下载进度, 如更新界面上的进度条
}
}).
then
((
res
)
=>
{
let
blob
=
new
Blob
([
res
.
data
],
{
type
:
"application/vnd.ms-excel"
})
let
url
=
URL
.
createObjectURL
(
blob
);
let
link
=
document
.
createElement
(
'a'
);
link
.
href
=
url
;
link
.
setAttribute
(
"download"
,
fileName
);
document
.
body
.
appendChild
(
link
);
link
.
click
();
that
.
downLoadLoading
=
false
;
that
.
loadingText
=
""
;
that
.
apipost
(
"/api/Trade/DeleteKey"
,
deleteparams
,
(
res
)
=>
{})
that
.
dialogVisible
=
false
;
}).
catch
(
function
(
res
)
{
console
.
log
(
res
);
});
}
}
);
},
getDown
()
{
this
.
cityOptions
=
[];
this
.
apipost
(
"/api/Trade/GetCarrierExportEnumList"
,
{},
(
res
)
=>
{
this
.
cities
=
res
.
data
.
data
;
let
data
=
res
.
data
.
data
;
data
.
forEach
((
item
)
=>
{
this
.
cityOptions
.
push
(
item
.
Id
);
});
});
},
//删除
delManage
(
obj
)
{
let
that
=
this
;
that
.
Confirm
(
"是否删除?"
,
function
()
{
that
.
apipost
(
"/api/Trade/RemoveCarrier"
,
{
CarrierId
:
obj
.
ID
,
Status
:
1
,
},
(
res
)
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
that
.
Success
(
res
.
data
.
message
);
that
.
getList
();
}
else
{
that
.
Error
(
res
.
data
.
message
);
}
}
);
});
},
handleCurrentChange
(
val
)
{
this
.
msg
.
pageIndex
=
val
;
this
.
getList
();
},
//获取项目类型
getTypeEnumList
()
{
this
.
apipost
(
"/api/Trade/GetProjectTypeEnumList"
,
{},
(
res
)
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
ProjectTypeList
=
res
.
data
.
data
;
}
});
},
//获取项目类型
getProject
(
type
)
{
let
str
=
""
;
this
.
ProjectTypeList
.
forEach
((
x
)
=>
{
if
(
x
.
Id
==
type
)
{
str
=
x
.
Name
;
}
});
return
str
;
},
},
mounted
()
{},
};
</
script
>
<
style
>
.VehicleManagement
.content
.searchInput
{
border
:
1px
solid
#dcdfe6
;
border-radius
:
4px
;
}
.VehicleManagement
.content
.searchInput
.el-input__inner
{
border
:
none
;
outline
:
none
;
height
:
30px
;
line-height
:
30px
;
}
.VehicleManagement
.content
.searchInput
{
line-height
:
normal
;
display
:
inline-table
;
width
:
100%
;
border-collapse
:
separate
;
border-spacing
:
0
;
width
:
250px
;
margin-right
:
20px
;
}
.VehicleManagement
.content
{
background
:
#fff
;
margin-top
:
10px
;
padding
:
20px
;
box-sizing
:
border-box
;
}
</
style
>
src/components/tradePavilion/brandClassification.vue
View file @
063b07df
...
...
@@ -2,60 +2,42 @@
<div
class=
"brandClassification"
>
<template
v-if=
"!isShowAdd"
>
<div
class=
"head-title"
>
品牌分类管理
<el-button
style=
"float: right; margin-top: -5px"
size=
"small"
type=
"primary"
@
click=
"(isShowAdd = true), clearMsg()"
>
新增
</el-button
>
分类管理
<el-button
style=
"float: right; margin-top: -5px"
size=
"small"
type=
"primary"
@
click=
"(isShowAdd = true), clearMsg()"
>
新增
</el-button>
</div>
<div
class=
"content"
>
<div
class=
"content"
v-loading=
"loading"
>
<el-tabs
v-model=
"activeType.Id"
@
tab-click=
"changeTypeHandler"
>
<el-tab-pane
v-for=
"(x, i) in tradeTypes"
:label=
"x.Name"
:name=
"x.Id.toString()"
:key=
"i"
></el-tab-pane>
</el-tabs>
<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.ClassName"
size=
"small"
clearable
>
<el-input
@
keyup
.
enter
.
native=
"(msg.pageIndex = 1), getList()"
@
clear=
"(msg.pageIndex = 1), getList()"
style=
"display: inline-block; width: 225px; height: 30px"
:placeholder=
"`请输入$
{activeType.Name}分类名称`" v-model="msg.ClassName"
size="small" clearable>
</el-input>
<span
@
click=
"(msg.pageIndex = 1), getList()"
class=
"el-icon-search"
style=
"
<span
@
click=
"(msg.pageIndex = 1), getList()"
class=
"el-icon-search"
style=
"
color: #979dad;
font-size: 14px;
position: relative;
top: 1px;
"
></span>
"
></span>
</div>
</div>
<el-table
:data=
"tableData"
v-loading=
"loading"
border
style=
"width: 100%; margin: 20px 0"
>
<el-table
:data=
"tableData"
v-loading=
"loading"
border
style=
"width: 100%; margin: 20px 0"
>
<el-table-column
prop=
"ID"
label=
"编号"
width=
"100"
>
</el-table-column>
<el-table-column
prop=
"ClassName"
label=
"
品牌
分类名称"
>
<el-table-column
prop=
"ClassName"
label=
"分类名称"
>
</el-table-column>
<el-table-column
prop=
"Logo"
width=
"150"
label=
"封面图"
>
<template
slot-scope=
"scope"
>
<div
class=
"app-image"
:style=
"
{
backgroundImage: 'url(' + scope.row.Logo + ')',
backgroundSize: 'cover',
}"
>
</div>
<!--
<div
class=
"app-image"
:style=
"
{
backgroundImage: 'url(' + scope.row.Logo + ')',
backgroundSize: 'cover',
}">
</div>
-->
<img
:src=
"scope.row.Logo"
style=
"object-fit: cover; max-width: 60px; max-height: 40px;"
>
</
template
>
</el-table-column>
<el-table-column
prop=
"CreateDate"
width=
"200"
label=
"创建时间"
>
...
...
@@ -63,119 +45,57 @@
<el-table-column
prop=
"address"
width=
"200"
label=
"操作"
>
<
template
slot-scope=
"scope"
>
<el-tooltip
class=
"item"
effect=
"dark"
content=
"编辑"
placement=
"top"
>
<img
@
click=
"editNews(scope.row)"
style=
"width: 32px; height: 32px"
src=
"../../assets/img/userman/edit.png"
alt=
""
/>
<el-tooltip
class=
"item"
effect=
"dark"
content=
"编辑"
placement=
"top"
>
<img
@
click=
"editNews(scope.row)"
style=
"width: 32px; height: 32px"
src=
"../../assets/img/userman/edit.png"
alt=
""
/>
</el-tooltip>
<el-tooltip
class=
"item"
effect=
"dark"
content=
"删除"
placement=
"top-start"
>
<img
@
click=
"delNews(scope.row)"
style=
"width: 32px; height: 32px; margin: 0 10px"
src=
"../../assets/img/userman/del.png"
alt=
""
/>
<el-tooltip
class=
"item"
effect=
"dark"
content=
"删除"
placement=
"top-start"
>
<img
@
click=
"delNews(scope.row)"
style=
"width: 32px; height: 32px; margin: 0 10px"
src=
"../../assets/img/userman/del.png"
alt=
""
/>
</el-tooltip>
</
template
>
</el-table-column>
</el-table>
<el-pagination
style=
"text-align: right"
background
@
current-change=
"handleCurrentChange"
:page-size=
"msg.pageSize"
:current-page
.
sync=
"msg.pageIndex"
layout=
"total,prev, pager, next"
:total=
"total"
>
<el-pagination
style=
"text-align: right"
background
@
current-change=
"handleCurrentChange"
:page-size=
"msg.pageSize"
:current-page
.
sync=
"msg.pageIndex"
layout=
"total,prev, pager, next"
:total=
"total"
>
</el-pagination>
</div>
</template>
<
template
v-else
>
<div
class=
"head-title"
>
<span
@
click=
"isShowAdd = false"
style=
"color: rgb(64, 158, 255); cursor: pointer"
>
品牌分类管理
</span
><span
style=
"margin: 0 9px; color: #c0c4cc"
>
/
</span
><span>
品牌分类信息
</span>
<span
@
click=
"isShowAdd = false"
style=
"color: rgb(64, 158, 255); cursor: pointer"
>
分类管理
</span><span
style=
"margin: 0 9px; color: #c0c4cc"
>
/
</span><span>
分类信息
</span>
</div>
<div
class=
"content"
>
<el-form
label-width=
"120px"
:model=
"addMsg"
:rules=
"rules"
ref=
"addMsg"
>
<el-form-item
label=
"品牌分类名称"
class=
"is-required"
prop=
"ClassName"
>
<el-input
type=
"text"
class=
"w400"
v-model=
"addMsg.ClassName"
size=
"small"
placeholder=
"品牌分类名称"
maxlength=
"100"
>
<el-form
label-width=
"120px"
:model=
"addMsg"
:rules=
"rules"
ref=
"addMsg"
>
<el-form-item
label=
"所属大类"
class=
"is-required"
prop=
"ClassName"
>
<el-select
v-model=
"addMsg.BrandCategory"
>
<el-option
v-for=
"(x,i) in tradeTypes"
:key=
"i"
:label=
"x.Name"
:value=
"x.Id"
></el-option>
</el-select>
</el-form-item>
<el-form-item
label=
"分类名称"
class=
"is-required"
prop=
"ClassName"
>
<el-input
type=
"text"
class=
"w400"
v-model=
"addMsg.ClassName"
size=
"small"
placeholder=
"分类名称"
maxlength=
"100"
>
</el-input>
</el-form-item>
<el-form-item
label=
"Logo"
size=
"small"
class=
"is-required"
prop=
"Logo"
>
<el-button
@
click=
"isShowImage = true"
size=
"small"
>
选择文件
</el-button
>
<div
class=
"app-gallery-item"
style=
"
<el-form-item
label=
"Logo"
size=
"small"
class=
"is-required"
prop=
"Logo"
>
<el-button
@
click=
"isShowImage = true"
size=
"small"
>
选择文件
</el-button>
<div
class=
"app-gallery-item"
style=
"
position: relative;
width: 100px;
margin-top: 10px;
border: none;
"
>
<img
v-if=
"!addMsg.Logo || addMsg.Logo == ''"
src=
"../../assets/img/default.png"
style=
"width: 80px; height: 80px"
alt=
""
/>
<img
v-else
style=
"width: 80px; height: 80px"
:src=
"addMsg.Logo"
alt=
""
/>
"
>
<img
v-if=
"!addMsg.Logo || addMsg.Logo == ''"
src=
"../../assets/img/default.png"
style=
"width: 80px; height: 80px"
alt=
""
/>
<img
v-else
style=
"width: 80px; height: 80px"
:src=
"addMsg.Logo"
alt=
""
/>
</div>
</el-form-item>
</el-form>
</div>
<el-button
size=
"small"
style=
"margin-top: 20px; padding: 9px 25px"
type=
"primary"
@
click=
"submitform('addMsg')"
>
保存
<el-button
size=
"small"
style=
"margin-top: 20px; padding: 9px 25px"
type=
"primary"
@
click=
"submitform('addMsg')"
>
保存
</el-button>
</
template
>
<!-- 选择文件 -->
...
...
@@ -210,6 +130,7 @@ export default {
isShowAdd
:
false
,
//是否显示新增
addMsg
:
{
ID
:
0
,
//主键编号
BrandCategory
:
1
,
Logo
:
""
,
//封面图
ClassName
:
""
,
//品牌分类标题
},
...
...
@@ -229,31 +150,58 @@ export default {
},
],
},
activeType
:
{
Id
:
'1'
,
Name
:
''
},
tradeTypes
:
[],
loading
:
false
};
},
created
()
{
this
.
getList
();
this
.
loading
=
true
this
.
initBrandCategory
()
},
methods
:
{
changeTypeHandler
(
e
)
{
this
.
activeType
.
Name
=
e
.
label
this
.
getList
()
},
initBrandCategory
()
{
this
.
apipost
(
"/api/Trade/GetBrandCategory"
,
this
.
msg
,
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
tradeTypes
=
res
.
data
.
data
this
.
activeType
.
Id
=
this
.
tradeTypes
[
0
].
Id
.
toString
()
this
.
activeType
.
Name
=
this
.
tradeTypes
[
0
].
Name
this
.
getList
()
}
else
{
this
.
loading
=
false
;
}
})
},
SelectId
(
msg
)
{
let
url
=
this
.
getIconLink
(
msg
.
url
);
this
.
addMsg
.
Logo
=
url
;
this
.
isShowImage
=
false
;
},
clearMsg
()
{
this
.
addMsg
.
BrandCategory
=
parseInt
(
this
.
activeType
.
Id
)
this
.
addMsg
.
ID
=
0
;
this
.
addMsg
.
Logo
=
""
;
this
.
addMsg
.
ClassName
=
""
;
},
getList
()
{
this
.
loading
=
true
;
this
.
msg
.
BrandCategory
=
this
.
activeType
.
Id
this
.
apipost
(
"/api/Trade/GetBrandClassPageList"
,
this
.
msg
,
(
res
)
=>
{
this
.
loading
=
false
;
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
total
=
res
.
data
.
data
.
count
;
let
pageData
=
res
.
data
.
data
.
pageData
;
this
.
tableData
=
pageData
;
}
this
.
loading
=
false
;
});
},
handleCurrentChange
(
val
)
{
...
...
@@ -293,6 +241,7 @@ export default {
this
.
isShowAdd
=
true
;
var
tempData
=
res
.
data
.
data
;
this
.
addMsg
.
ID
=
tempData
.
ID
;
this
.
addMsg
.
BrandCategory
=
tempData
.
BrandCategory
this
.
addMsg
.
Logo
=
tempData
.
Logo
;
this
.
addMsg
.
ClassName
=
tempData
.
ClassName
;
}
else
{
...
...
@@ -320,7 +269,7 @@ export default {
});
},
},
mounted
()
{},
mounted
()
{
},
};
</
script
>
<
style
>
...
...
src/components/tradePavilion/tradePavilionIndex.vue
View file @
063b07df
...
...
@@ -179,12 +179,70 @@
@click="isChecked='/companyList',CommonJump('companyList')">
<i
class=
"el-icon-menu"
></i><span>
公司资料
</span>
</li>
-->
<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 == '/brandClassification' }"
@click="
(isChecked = '/brandClassification'),
CommonJump('brandClassification')
"
>
<i
class=
"el-icon-menu"
></i><span>
分类管理
</span>
</li>
<!--
<li
class=
"menu_item"
:class=
"
{ Fchecked: isChecked == '/VehicleManagement' }"
@click="
(isChecked = '/VehicleManagement'),
CommonJump('VehicleManagement')
"
>
<i
class=
"el-icon-menu"
></i><span>
商业载体管理
</span>
</li>
-->
<li
class=
"menu_item"
:class=
"
{ Fchecked: isChecked == '/VehicleManagement' }"
@click="
(isChecked = '/BuildingServiceManager'),
CommonJump('BuildingServiceManager')
"
>
<i
class=
"el-icon-menu"
></i><span>
商业载体管理
</span>
</li>
<li
class=
"menu_item"
:class=
"
{ Fchecked: isChecked == '/BuildingManager' }"
@click="
(isChecked = '/BuildingManager'),
CommonJump('BuildingManager')
"
>
<i
class=
"el-icon-menu"
></i><span>
楼宇管理
</span>
</li>
<li
class=
"menu_item"
:class=
"
{ Fchecked: isChecked == '/brandManagement' }"
@click="
(isChecked = '/brandManagement'), CommonJump('brandManagement')
"
>
<i
class=
"el-icon-menu"
></i><span>
消费品牌管理
</span>
</li>
<li
class=
"menu_item"
:class=
"
{ Fchecked: isChecked == '/brandManagement' }"
@click="
(isChecked = '/brandManagement'), CommonJump('brandManagement')
"
>
<i
class=
"el-icon-menu"
></i><span>
企业服务管理
</span>
</li>
<li
class=
"menu_item"
...
...
@@ -229,16 +287,7 @@
@click="isChecked='/procurementList',CommonJump('procurementList')">
<i
class=
"el-icon-menu"
></i><span>
采购管理
</span>
</li>
-->
<li
class=
"menu_item"
:class=
"
{ Fchecked: isChecked == '/VehicleManagement' }"
@click="
(isChecked = '/VehicleManagement'),
CommonJump('VehicleManagement')
"
>
<i
class=
"el-icon-menu"
></i><span>
载体管理
</span>
</li>
<li
class=
"menu_item"
:class=
"
{ Fchecked: isChecked == '/realAuthentication' }"
...
...
@@ -249,25 +298,7 @@
>
<i
class=
"el-icon-menu"
></i><span>
企业认证
</span>
</li>
<li
class=
"menu_item"
:class=
"
{ Fchecked: isChecked == '/brandClassification' }"
@click="
(isChecked = '/brandClassification'),
CommonJump('brandClassification')
"
>
<i
class=
"el-icon-menu"
></i><span>
品牌分类
</span>
</li>
<li
class=
"menu_item"
:class=
"
{ Fchecked: isChecked == '/brandManagement' }"
@click="
(isChecked = '/brandManagement'), CommonJump('brandManagement')
"
>
<i
class=
"el-icon-menu"
></i><span>
品牌管理
</span>
</li>
<li
class=
"menu_item"
:class=
"
{ Fchecked: isChecked == '/firstStoreApply' }"
...
...
src/router/index.js
View file @
063b07df
...
...
@@ -802,6 +802,18 @@ export default new Router({
name
:
'VehicleManagement'
,
component
:
resolve
=>
require
([
'@/components/tradePavilion/VehicleManagement'
],
resolve
),
},
//楼宇
{
path
:
'/BuildingManager'
,
name
:
'BuildingManager'
,
component
:
resolve
=>
require
([
'@/components/tradePavilion/BuildingManager'
],
resolve
),
},
//商业载体
{
path
:
'/BuildingServiceManager'
,
name
:
'BuildingServiceManager'
,
component
:
resolve
=>
require
([
'@/components/tradePavilion/BuildingManager'
],
resolve
),
},
//贸易管理--载体管理编辑
{
path
:
'/editVehicle'
,
...
...
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