Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
Y
ybf
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
xulili
ybf
Commits
12b871be
Commit
12b871be
authored
Feb 07, 2020
by
Z
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Z: Dot: New Org page's main page done;new page almost done.
parent
3e5c8148
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
1630 additions
and
1 deletion
+1630
-1
org.js
ybf_admin/src/api/in/org.js
+67
-0
Bk_org.vue
ybf_admin/src/pages/in/contact/Bk_org.vue
+986
-0
index.vue
ybf_admin/src/pages/in/contact/index.vue
+11
-0
org.vue
ybf_admin/src/pages/in/contact/org.vue
+564
-0
store.vue
ybf_admin/src/pages/in/contact/store.vue
+2
-1
No files found.
ybf_admin/src/api/in/org.js
0 → 100644
View file @
12b871be
import
request
from
'@/utils/request'
import
qs
from
'qs'
export
function
ApiStoreGetMainList
(
inData
)
{
return
request
({
url
:
'/admin/auth/stall/stallPage'
,
method
:
'get'
,
params
:
inData
})
}
export
function
ApiStoreGetStoreDetail
(
inData
)
{
return
request
({
url
:
'/admin/auth/stall/getById'
,
method
:
'get'
,
params
:
inData
})
}
export
function
ApiStoreAddStore
(
inData
)
{
return
request
({
url
:
'/admin/auth/stall/save'
,
method
:
'post'
,
data
:
qs
.
stringify
(
inData
)
})
}
export
function
ApiStoreDelStore
(
inData
)
{
return
request
({
url
:
`/admin/auth/stall/delete`
,
method
:
'post'
,
data
:
qs
.
stringify
(
inData
,
{
arrayFormat
:
'repeat'
})
})
}
export
function
ApiStoreGetUnGroupManList
(
inData
)
{
return
request
({
url
:
'/admin/auth/addressbook/getUserUnselectedList'
,
method
:
'get'
,
params
:
inData
})
}
export
function
ApiStoreEditStore
(
inData
)
{
return
request
({
url
:
'/admin/auth/stall/update'
,
method
:
'put'
,
data
:
qs
.
stringify
(
inData
)
})
}
export
function
ApiStoreGetBarList
(
inData
)
{
return
request
({
url
:
'/admin/auth/shop/shopList'
,
method
:
'get'
,
params
:
inData
})
}
export
function
ApiStoreSearch
(
inData
)
{
return
request
({
url
:
'/admin/auth/stall/getStallByKeyWords'
,
method
:
'get'
,
params
:
inData
})
}
ybf_admin/src/pages/in/contact/Bk_org.vue
0 → 100644
View file @
12b871be
This diff is collapsed.
Click to expand it.
ybf_admin/src/pages/in/contact/index.vue
View file @
12b871be
...
...
@@ -12,14 +12,21 @@
<span
class=
"circle"
><d2-icon-svg
name=
"mail"
/></span>
<span
slot=
"title"
>
通讯录管理
</span>
</el-menu-item>
<el-menu-item
index=
"2"
@
click=
"handleMenuChange('2')"
>
<span
class=
"circle"
><d2-icon-svg
name=
"counters"
/></span>
<span
slot=
"title"
>
柜组管理
</span>
</el-menu-item>
<el-menu-item
index=
"3"
@
click=
"handleMenuChange('3')"
>
<span
class=
"circle"
><d2-icon-svg
name=
"store"
/></span>
<span
slot=
"title"
>
品牌管理
</span>
</el-menu-item>
<el-menu-item
index=
"4"
@
click=
"handleMenuChange('4')"
>
<span
class=
"circle"
><d2-icon-svg
name=
"store"
/></span>
<span
slot=
"title"
>
组织架构管理
</span>
</el-menu-item>
</el-menu>
<!--
</div>
-->
</div>
...
...
@@ -27,6 +34,8 @@
<mail
v-if=
"index == '1' && isHistoryShow == false"
@
isShow=
"contorlHistoryShow"
></mail>
<counter
v-if=
"index == '2'"
></counter>
<store
v-if=
"index == '3'"
></store>
<org
v-if=
"index == '4'"
></org>
<history
v-if=
"isHistoryShow == true"
@
isShow=
"contorlHistoryShow"
></history>
</div>
</d2-container>
...
...
@@ -35,12 +44,14 @@
<
script
>
import
Mail
from
"./mail"
;
import
Store
from
"./store"
;
import
Org
from
"./org"
;
import
Counter
from
"./counter"
;
import
History
from
"./components/history"
;
export
default
{
components
:
{
Mail
,
Store
,
Org
,
Counter
,
History
},
...
...
ybf_admin/src/pages/in/contact/org.vue
0 → 100644
View file @
12b871be
This diff is collapsed.
Click to expand it.
ybf_admin/src/pages/in/contact/store.vue
View file @
12b871be
<
template
>
<div
class=
"main"
>
<div
class=
"title"
>
全部品牌( 共
5
个 )
</div>
<div
class=
"title"
>
全部品牌( 共
{{
zcache
.
page
.
allItem
}}
个 )
</div>
<!-- 搜索区 -->
<div
class=
"searchs"
>
<div
class=
"buttons"
>
...
...
@@ -397,6 +397,7 @@ export default {
},
data
()
{
return
{
zcache
:
{
status
:
{
newDialog
:
false
,
...
...
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