Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
store-system
Project
Project
Details
Activity
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
luoyangfei
store-system
Commits
bc444cb2
Commit
bc444cb2
authored
Nov 14, 2018
by
燕南天
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
串接口
parent
79cd054e
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
272 additions
and
218 deletions
+272
-218
index.js
2code/web/h5_pro/config/index.js
+2
-1
home.js
2code/web/h5_pro/src/api/home.js
+27
-0
hostCfg.js
2code/web/h5_pro/src/api/hostCfg.js
+4
-0
request.js
2code/web/h5_pro/src/api/request.js
+28
-0
shopList.js
2code/web/h5_pro/src/api/shopList.js
+45
-0
workerList.js
2code/web/h5_pro/src/api/workerList.js
+24
-0
index.js
2code/web/h5_pro/src/router/index.js
+7
-0
HBanner.vue
2code/web/h5_pro/src/views/home/components/HBanner.vue
+5
-4
HShopList.vue
2code/web/h5_pro/src/views/home/components/HShopList.vue
+3
-3
HStaff.vue
2code/web/h5_pro/src/views/home/components/HStaff.vue
+2
-2
index.vue
2code/web/h5_pro/src/views/home/index.vue
+45
-78
MoreShop.vue
2code/web/h5_pro/src/views/shopList/components/MoreShop.vue
+0
-0
SItem.vue
2code/web/h5_pro/src/views/shopList/components/SItem.vue
+4
-4
index.vue
2code/web/h5_pro/src/views/shopList/index.vue
+16
-25
index.vue
2code/web/h5_pro/src/views/webView/index.vue
+36
-0
MoreWorker.vue
...web/h5_pro/src/views/workerList/components/MoreWorker.vue
+0
-0
WStaff.vue
2code/web/h5_pro/src/views/workerList/components/WStaff.vue
+2
-2
index.vue
2code/web/h5_pro/src/views/workerList/index.vue
+22
-99
No files found.
2code/web/h5_pro/config/index.js
View file @
bc444cb2
...
...
@@ -13,7 +13,8 @@ module.exports = {
proxyTable
:
{},
// Various Dev Server settings
host
:
'localhost'
,
// can be overwritten by process.env.HOST
// host: 'localhost', // can be overwritten by process.env.HOST
host
:
'192.168.1.107'
,
// can be overwritten by process.env.HOST
port
:
8080
,
// can be overwritten by process.env.PORT, if port is in use, a free one will be determined
autoOpenBrowser
:
true
,
errorOverlay
:
true
,
...
...
2code/web/h5_pro/src/api/home.js
0 → 100644
View file @
bc444cb2
import
request
from
'./request'
import
qs
from
'qs'
export
function
getAdvertList
()
{
return
request
({
url
:
'/h5/index/getAdvertList'
,
method
:
'post'
,
})
}
export
function
getStoreList
()
{
return
request
({
url
:
'h5/index/getStoreList'
,
method
:
'post'
})
}
export
function
getWorkerList
()
{
return
request
({
url
:
'/h5/index/getWorkerList'
,
method
:
'post'
})
}
2code/web/h5_pro/src/api/hostCfg.js
0 → 100644
View file @
bc444cb2
const
host
=
"http://192.168.1.100:8080/store-system"
export
default
host
\ No newline at end of file
2code/web/h5_pro/src/api/request.js
0 → 100644
View file @
bc444cb2
import
axios
from
'axios'
import
host
from
'./hostCfg'
// create an axios instance
const
service
=
axios
.
create
({
baseURL
:
host
,
// api的base_url
timeout
:
5000
,
// request timeout
headers
:
{
'Content-Type'
:
'application/x-www-form-urlencoded'
}
})
console
.
log
(
'请求地址:'
+
process
.
env
.
BASE_API
);
// request interceptor
service
.
interceptors
.
request
.
use
(
config
=>
{
return
config
},
error
=>
{
alert
(
'请求拦截,出现错误了'
)
})
// respone interceptor
service
.
interceptors
.
response
.
use
(
response
=>
response
.
data
,
error
=>
{
alert
(
'响应拦截出现错误了'
)
})
export
default
service
2code/web/h5_pro/src/api/shopList.js
0 → 100644
View file @
bc444cb2
import
request
from
'./request'
import
qs
from
'qs'
export
function
searchShopResult
(
data
)
{
return
request
({
url
:
'/h5/index/searchShopResult'
,
method
:
'post'
,
data
:
qs
.
stringify
(
data
)
})
}
// 陕西省id写死 610000
export
function
getCityList
(
data
)
{
return
request
({
url
:
'/pca/getCityList'
,
method
:
'post'
,
data
:
qs
.
stringify
(
data
)
})
}
export
function
getAreaList
(
data
)
{
return
request
({
url
:
'/pca/getAreaList'
,
method
:
'post'
,
data
:
qs
.
stringify
(
data
)
})
}
export
function
getDataDictsStore
()
{
return
request
({
url
:
'/h5/config/getDataDictsStore'
,
method
:
'post'
})
}
2code/web/h5_pro/src/api/workerList.js
0 → 100644
View file @
bc444cb2
import
request
from
'./request'
import
qs
from
'qs'
export
function
searchWorkerResult
(
data
)
{
return
request
({
url
:
'/h5/index/searchWorkerResult'
,
method
:
'post'
,
data
:
qs
.
stringify
(
data
)
})
}
export
function
getDataDictsHight
()
{
return
request
({
url
:
'/h5/config/getDataDictsHight'
,
method
:
'post'
,
})
}
export
function
getDataDictsAge
()
{
return
request
({
url
:
'/h5/config/getDataDictsAge'
,
method
:
'post'
,
})
}
2code/web/h5_pro/src/router/index.js
View file @
bc444cb2
...
...
@@ -6,6 +6,8 @@ import ShopList from '@/views/shopList/index.vue'
import
WorkerList
from
'@/views/workerList/index.vue'
import
ShopDetails
from
'@/views/shopDetails/index.vue'
import
WebView
from
'@/views/webView/index.vue'
Vue
.
use
(
Router
)
export
default
new
Router
({
...
...
@@ -29,6 +31,11 @@ export default new Router({
path
:
'/shopDetails'
,
name
:
'shopDetails'
,
component
:
ShopDetails
},
{
path
:
'/webView'
,
name
:
'webView'
,
component
:
WebView
}
]
})
2code/web/h5_pro/src/views/home/components/HBanner.vue
View file @
bc444cb2
<
template
>
<swiper
:options=
"swiperOption"
>
<swiper-slide
v-for=
"(item,index) in data"
:key=
"index"
>
<img
:src=
"item.
url"
:alt=
"item.href"
:data-href=
"item.href"
@
click=
"toWebview
"
>
<img
:src=
"item.
advertPicUrl"
:alt=
"item.advertPicUrl"
@
click=
"toWebview(item)
"
>
</swiper-slide>
<div
class=
"swiper-pagination swiper-pagination-bullets"
slot=
"pagination"
></div>
...
...
@@ -22,9 +22,10 @@ export default {
};
},
methods
:
{
toWebview
(
e
)
{
const
href
=
e
.
target
.
dataset
.
href
;
alert
(
"跳转到:"
+
href
);
toWebview
(
item
)
{
// const href = e.target.dataset.href;
// window.location.href = href;
this
.
$router
.
push
({
name
:
'webView'
,
params
:
{
html
:
item
.
advertContent
,
title
:
item
.
advertTitle
}})
}
}
};
...
...
2code/web/h5_pro/src/views/home/components/HShopList.vue
View file @
bc444cb2
...
...
@@ -2,11 +2,11 @@
<div
class=
"shop-list-wrapper"
>
<div
class=
"list-item"
>
<div
class=
"img"
>
<img
:src=
"data.
url
"
alt=
""
>
<img
:src=
"data.
storeHomePic
"
alt=
""
>
</div>
<div
class=
"item-infro"
>
<div
class=
"name"
>
{{
data
.
titl
e
}}
</div>
<div
class=
"details"
>
{{
data
.
infro
}}
</div>
<div
class=
"name"
>
{{
data
.
storeNam
e
}}
</div>
<div
class=
"details"
>
{{
data
.
storePosition
}}
</div>
</div>
</div>
</div>
...
...
2code/web/h5_pro/src/views/home/components/HStaff.vue
View file @
bc444cb2
<
template
>
<div
class=
"staff-item"
>
<img
:src=
"data.
sr
c"
alt=
""
>
<div
class=
"infro"
>
{{
data
.
bref
}}
</div>
<img
:src=
"data.
workerHomePi
c"
alt=
""
>
<div
class=
"infro"
>
{{
data
.
workerName
}}
</div>
</div>
</
template
>
...
...
2code/web/h5_pro/src/views/home/index.vue
View file @
bc444cb2
...
...
@@ -3,11 +3,11 @@
<c-header
title=
"首页"
noBack=
"1"
></c-header>
<h-banner
:data=
"bannerData"
></h-banner>
<h-item-title
title=
"精选商家"
href=
"/shopList"
></h-item-title>
<h-shop-list
v-for=
"(item,index) in shopListData"
:key=
"index"
@
click
.
native=
"toShopDetails(item.
i
d)"
:data=
"item"
></h-shop-list>
<h-shop-list
v-for=
"(item,index) in shopListData"
:key=
"index"
@
click
.
native=
"toShopDetails(item.
storeI
d)"
:data=
"item"
></h-shop-list>
<h-item-title
title=
"闪亮之星"
href=
"/workerList"
></h-item-title>
<div
class=
"staff-wrapper"
>
<h-staff
v-for=
"(item,index) in staffData"
:key=
"index"
@
click
.
native=
"toDetails(item.
i
d)"
:data=
"item"
></h-staff>
<h-staff
v-for=
"(item,index) in staffData"
:key=
"index"
@
click
.
native=
"toDetails(item.
workerI
d)"
:data=
"item"
></h-staff>
</div>
</div>
...
...
@@ -20,102 +20,69 @@ import HShopList from "./components/HShopList";
import
HItemTitle
from
"./components/HItemTitle"
;
import
HStaff
from
"./components/HStaff"
;
import
*
as
home
from
"../../api/home"
;
import
axios
from
"axios"
;
export
default
{
components
:
{
CHeader
,
HBanner
,
HShopList
,
HItemTitle
,
HStaff
},
data
()
{
return
{
bannerData
:
[
{
url
:
"1"
,
href
:
"111"
},
{
url
:
"2"
,
href
:
"222"
}
],
shopListData
:
[
{
id
:
"1"
,
url
:
"12"
,
title
:
"123"
,
infro
:
"312321"
},
{
id
:
"2"
,
url
:
"12"
,
title
:
"123"
,
infro
:
"312321"
}
],
bannerData
:
[],
staffData
:
[
{
id
:
"1"
,
url
:
"1"
,
bref
:
"1"
},
{
id
:
"2"
,
url
:
"2"
,
bref
:
"2"
},
{
id
:
"1"
,
url
:
"1"
,
bref
:
"1"
},
{
id
:
"2"
,
url
:
"2"
,
bref
:
"2"
},
{
id
:
"1"
,
url
:
"1"
,
bref
:
"1"
},
{
id
:
"2"
,
url
:
"2"
,
bref
:
"2"
},
{
id
:
"1"
,
url
:
"1"
,
bref
:
"1"
},
{
id
:
"2"
,
url
:
"2"
,
bref
:
"2"
},
{
id
:
"1"
,
url
:
"1"
,
bref
:
"1"
}
]
shopListData
:
[],
staffData
:
[]
};
},
beforeMount
()
{
this
.
getPageData
();
},
methods
:
{
toShopDetails
(
id
)
{
this
.
$router
.
push
({
name
:
'shopDetails'
,
params
:
{
id
:
id
}})
this
.
$router
.
push
({
name
:
"shopDetails"
,
params
:
{
id
:
id
}
});
},
toDetails
(
id
)
{
alert
(
id
);
},
getPageData
(
cb
)
{
const
getAdvertList
=
()
=>
{
home
.
getAdvertList
().
then
(
res
=>
{
this
.
bannerData
=
res
.
data
;
});
};
const
getStoreList
=
()
=>
{
home
.
getStoreList
().
then
(
res
=>
{
this
.
shopListData
=
res
.
data
;
});
};
const
getWorkerList
=
()
=>
{
home
.
getWorkerList
().
then
(
res
=>
{
this
.
staffData
=
res
.
data
;
});
};
axios
.
all
([
getAdvertList
(),
getStoreList
(),
getWorkerList
()]).
then
((
s
,
f
)
=>
{
cb
?
cb
()
:
""
;
});
}
}
};
</
script
>
<
style
lang=
"less"
scoped
>
@r:100rem;
.staff-wrapper{
@r:
100rem;
.staff-wrapper
{
display: flex;
flex-wrap: wrap;
padding: 0 30/
@r;
padding: 0 30 /
@r;
}
</
style
>
...
...
2code/web/h5_pro/src/views/shopList/components/MoreShop.vue
View file @
bc444cb2
This diff is collapsed.
Click to expand it.
2code/web/h5_pro/src/views/shopList/components/SItem.vue
View file @
bc444cb2
<
template
>
<div
class=
"item"
>
<div
class=
"img"
>
<img
:src=
"data.s
r
c"
alt=
""
>
<img
:src=
"data.s
toreHomePi
c"
alt=
""
>
</div>
<div
class=
"item-infro"
>
<div
class=
"title"
>
{{
data
.
titl
e
}}
</div>
<div
class=
"infro"
>
{{
data
.
infro
}}
</div>
<div
class=
"adress"
>
{{
data
.
adress
}}
</div>
<div
class=
"title"
>
{{
data
.
storeNam
e
}}
</div>
<div
class=
"infro"
>
{{
data
.
storePosition
}}
</div>
<div
class=
"adress"
>
管理员:
{{
data
.
administratorsName
}}
</div>
</div>
</div>
</
template
>
...
...
2code/web/h5_pro/src/views/shopList/index.vue
View file @
bc444cb2
...
...
@@ -10,46 +10,37 @@
import
CHeader
from
'@/components/CHeader'
import
SItem
from
'./components/SItem'
import
MoreShop
from
'./components/MoreShop'
import
*
as
shopList
from
"../../api/shopList"
export
default
{
components
:{
CHeader
,
SItem
,
MoreShop
},
data
(){
return
{
shopListData
:[
{
id
:
'1'
,
url
:
'111'
,
title
:
'1111'
,
infro
:
'1111111'
,
adress
:
'111111'
},
{
id
:
'2'
,
url
:
'222222'
,
title
:
'22222222'
,
infro
:
'222222222'
,
adress
:
'22222222222'
},
{
id
:
'3333333'
,
url
:
'33333333333333'
,
title
:
'333333333333333'
,
infro
:
'3333333333333'
,
adress
:
'33333333333333333333'
}
]
shopListData
:[]
}
},
beforeMount
(){
this
.
getPageData
({})
},
methods
:{
toDetails
(
id
){
this
.
$router
.
push
({
name
:
'shopDetails'
,
params
:
{
id
:
id
}})
},
handleChooseSuccess
(
data
){
alert
(
'参数'
+
JSON
.
stringify
(
data
))
this
.
getPageData
(
data
,()
=>
{
this
.
$refs
.
chooseMore
.
handleCancle
()
})
},
getPageData
(
data
,
cb
){
shopList
.
searchShopResult
(
data
).
then
(
res
=>
{
this
.
shopListData
=
res
.
data
cb
?
cb
():
''
})
}
}
}
...
...
2code/web/h5_pro/src/views/webView/index.vue
0 → 100644
View file @
bc444cb2
<
template
>
<div
class=
"page-wrapper"
>
<c-header
:title=
"title"
></c-header>
<div
class=
"web-view-content"
v-html=
"html"
></div>
</div>
</
template
>
<
script
>
import
CHeader
from
"@/components/CHeader"
;
export
default
{
components
:{
CHeader
},
data
(){
return
{
html
:
''
,
title
:
''
}
},
beforeMount
(){
this
.
html
=
this
.
$route
.
params
.
html
this
.
title
=
this
.
$route
.
params
.
title
}
}
</
script
>
<
style
lang=
"less"
scoped
>
@r:100rem;
.web-view-content{
background: #ff0;
padding: 20/@r;
*{
font-size: inherit!important;
}
}
</
style
>
2code/web/h5_pro/src/views/workerList/components/MoreWorker.vue
View file @
bc444cb2
This diff is collapsed.
Click to expand it.
2code/web/h5_pro/src/views/workerList/components/WStaff.vue
View file @
bc444cb2
<
template
>
<div
class=
"staff-item"
>
<img
:src=
"data.
sr
c"
alt=
""
>
<div
class=
"infro"
>
{{
data
.
bref
}}
</div>
<img
:src=
"data.
workerHomePi
c"
alt=
""
>
<div
class=
"infro"
>
{{
data
.
workerName
}}
</div>
</div>
</
template
>
...
...
2code/web/h5_pro/src/views/workerList/index.vue
View file @
bc444cb2
...
...
@@ -2,122 +2,45 @@
<div
class=
"page-wrapper"
>
<c-header
title=
"人员列表"
></c-header>
<div
class=
"staff-wrapper"
>
<w-staff
v-for=
"(item,index) in staffData"
:key=
"index"
:data=
"item"
@
click
.
native=
"toWorkerDetails(item.
i
d)"
></w-staff>
<w-staff
v-for=
"(item,index) in staffData"
:key=
"index"
:data=
"item"
@
click
.
native=
"toWorkerDetails(item.
workerI
d)"
></w-staff>
</div>
<more-worker></more-worker>
<more-worker
ref=
"chooseMore"
@
emitSuccess=
"handleChooseSuccess"
></more-worker>
</div>
</
template
>
<
script
>
import
CHeader
from
"@/components/CHeader"
;
import
WStaff
from
"./components/WStaff"
;
import
MoreWorker
from
"./components/MoreWorker"
import
*
as
workerList
from
"../../api/workerList"
export
default
{
components
:
{
CHeader
,
WStaff
,
MoreWorker
},
data
()
{
return
{
staffData
:
[
{
id
:
"1"
,
url
:
"1"
,
bref
:
"1"
},
{
id
:
"2"
,
url
:
"2"
,
bref
:
"2"
},
{
id
:
"1"
,
url
:
"1"
,
bref
:
"1"
},
{
id
:
"2"
,
url
:
"2"
,
bref
:
"2"
},
{
id
:
"1"
,
url
:
"1"
,
bref
:
"1"
},
{
id
:
"2"
,
url
:
"2"
,
bref
:
"2"
},
{
id
:
"1"
,
url
:
"1"
,
bref
:
"1"
},
{
id
:
"1"
,
url
:
"1"
,
bref
:
"1"
},
{
id
:
"2"
,
url
:
"2"
,
bref
:
"2"
},
{
id
:
"1"
,
url
:
"1"
,
bref
:
"1"
},
{
id
:
"2"
,
url
:
"2"
,
bref
:
"2"
},
{
id
:
"1"
,
url
:
"1"
,
bref
:
"1"
},
{
id
:
"1"
,
url
:
"1"
,
bref
:
"1"
},
{
id
:
"2"
,
url
:
"2"
,
bref
:
"2"
},
{
id
:
"1"
,
url
:
"1"
,
bref
:
"1"
},
{
id
:
"2"
,
url
:
"2"
,
bref
:
"2"
},
{
id
:
"1"
,
url
:
"1"
,
bref
:
"1"
},
{
id
:
"2"
,
url
:
"2"
,
bref
:
"2"
},
{
id
:
"1"
,
url
:
"1"
,
bref
:
"1"
}
]
staffData
:
[]
};
},
beforeMount
(){
this
.
getPageData
({})
},
methods
:{
toWorkerDetails
(
id
){
alert
(
id
)
},
getPageData
(
data
,
cb
){
workerList
.
searchWorkerResult
(
data
).
then
(
res
=>
{
this
.
staffData
=
res
.
data
cb
?
cb
():
''
})
},
handleChooseSuccess
(
data
){
alert
(
'参数'
+
JSON
.
stringify
(
data
))
this
.
getPageData
(
data
,()
=>
{
this
.
$refs
.
chooseMore
.
handleCancle
()
})
}
}
};
...
...
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