Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
logistics-center
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
前端
logistics-center
Commits
60dbcc31
Commit
60dbcc31
authored
Jun 29, 2021
by
冯腾骁
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
线上发货配置
parent
c019aba0
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
402 additions
and
1 deletion
+402
-1
index.js
src/router/deliveryChannelConfiguration/index.js
+13
-0
index.js
src/router/index.js
+2
-1
onlineDelivery.vue
src/views/deliveryChannelConfiguration/onlineDelivery.vue
+376
-0
companyChannels.vue
src/views/logisticsConfiguration/companyChannels.vue
+2
-0
index.js
src/vuex/global/index.js
+9
-0
No files found.
src/router/deliveryChannelConfiguration/index.js
0 → 100644
View file @
60dbcc31
const
onlineDelivery
=
resolve
=>
require
([
'@/views/deliveryChannelConfiguration/onlineDelivery'
],
resolve
);
export
default
[
{
path
:
'/deliveryChannelConfiguration/onlineDelivery'
,
name
:
'onlineDelivery'
,
component
:
onlineDelivery
,
meta
:
{
title
:
'线上发货配置'
}
}
]
src/router/index.js
View file @
60dbcc31
...
@@ -3,6 +3,7 @@
...
@@ -3,6 +3,7 @@
// import 'vueConfig'
// import 'vueConfig'
import
warehouseConfiguration
from
'./warehouseConfiguration'
import
warehouseConfiguration
from
'./warehouseConfiguration'
import
logisticsConfiguration
from
'./logisticsConfiguration'
import
logisticsConfiguration
from
'./logisticsConfiguration'
import
deliveryChannelConfiguration
from
'./deliveryChannelConfiguration'
const
login
=
resolve
=>
require
([
'@/views/Login'
],
resolve
);
const
login
=
resolve
=>
require
([
'@/views/Login'
],
resolve
);
import
index
from
'./index/index'
import
index
from
'./index/index'
// const parent = resolve => require(['@/components/parent'], resolve);//子页面
// const parent = resolve => require(['@/components/parent'], resolve);//子页面
...
@@ -26,7 +27,7 @@ const routes = [{ // 404
...
@@ -26,7 +27,7 @@ const routes = [{ // 404
// redirect: '/',
// redirect: '/',
name
:
'home'
,
name
:
'home'
,
component
:
Home
,
component
:
Home
,
children
:
[].
concat
(
index
,
warehouseConfiguration
,
logisticsConfiguration
)
children
:
[].
concat
(
index
,
warehouseConfiguration
,
logisticsConfiguration
,
deliveryChannelConfiguration
)
},
},
].
reverse
();
].
reverse
();
export
const
router
=
new
VueRouter
({
export
const
router
=
new
VueRouter
({
...
...
src/views/deliveryChannelConfiguration/onlineDelivery.vue
0 → 100644
View file @
60dbcc31
This diff is collapsed.
Click to expand it.
src/views/logisticsConfiguration/companyChannels.vue
View file @
60dbcc31
...
@@ -499,6 +499,8 @@ export default {
...
@@ -499,6 +499,8 @@ export default {
this
.
searchCompanyPage
();
this
.
searchCompanyPage
();
this
.
searchChannelPage
();
this
.
searchChannelPage
();
this
.
getCompanyList
();
this
.
getCompanyList
();
console
.
log
(
"host"
,
window
.
location
.
host
)
console
.
log
(
"protocol"
,
window
.
location
.
protocol
)
},
},
activated
()
{
activated
()
{
this
.
tableMaxHeight
=
window
.
innerHeight
-
263
;
this
.
tableMaxHeight
=
window
.
innerHeight
-
263
;
...
...
src/vuex/global/index.js
View file @
60dbcc31
...
@@ -41,6 +41,15 @@ const state = {
...
@@ -41,6 +41,15 @@ const state = {
{
path
:
'/logisticsConfiguration/companyChannels'
,
name
:
'公司物流渠道'
},
{
path
:
'/logisticsConfiguration/companyChannels'
,
name
:
'公司物流渠道'
},
]
]
},
},
{
path
:
'/'
,
name
:
'平台渠道配置'
,
iconCls
:
'el-icon-film'
,
leaf
:
false
,
children
:
[
{
path
:
'/deliveryChannelConfiguration/onlineDelivery'
,
name
:
'线上发货配置'
},
]
},
]
]
};
};
const
getters
=
{
const
getters
=
{
...
...
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