Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jiedao-app-operator-master
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
lanbaoming
jiedao-app-operator-master
Commits
3f68be88
Commit
3f68be88
authored
May 21, 2022
by
wanglianghe
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
始发港,目的港绑定
parent
a00800f8
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
118 additions
and
1 deletion
+118
-1
warehouse.js
src/api/ecw/warehouse.js
+18
-0
index.vue
src/views/ecw/warehouse/index.vue
+100
-1
No files found.
src/api/ecw/warehouse.js
View file @
3f68be88
...
...
@@ -52,3 +52,21 @@ export function exportWarehouseExcel(query) {
responseType
:
'
blob
'
})
}
export
function
routerList
(
data
)
{
return
request
({
url
:
'
/ecw/warehouse/routerList
'
,
method
:
'
post
'
,
data
:
data
})
}
export
function
changeRouteStatus
(
data
)
{
return
request
({
url
:
'
/ecw/warehouse/changeRouteStatus
'
,
method
:
'
post
'
,
data
:
data
})
}
src/views/ecw/warehouse/index.vue
View file @
3f68be88
...
...
@@ -59,6 +59,12 @@
<el-table-column
label=
"操作"
align=
"center"
class-name=
"small-padding fixed-width"
>
<
template
slot-scope=
"scope"
>
<el-button
size=
"mini"
type=
"text"
@
click=
"toRouteList(scope.row, '2')"
:disabled=
"scope.row.tradeType=='2'"
v-hasPermi=
"['ecw:warehouse:routerQuery']"
>
相关始发港
</el-button>
<el-button
size=
"mini"
type=
"text"
@
click=
"toRouteList(scope.row, '1')"
:disabled=
"scope.row.tradeType=='1'"
v-hasPermi=
"['ecw:warehouse:routerQuery']"
>
相关目的港
</el-button>
<el-button
size=
"mini"
type=
"text"
icon=
"el-icon-edit"
@
click=
"handleUpdate(scope.row)"
v-hasPermi=
"['ecw:warehouse:update']"
>
修改
</el-button>
</
template
>
...
...
@@ -68,6 +74,45 @@
<pagination
v-show=
"total > 0"
:total=
"total"
:page.sync=
"queryParams.pageNo"
:limit.sync=
"queryParams.pageSize"
@
pagination=
"getList"
/>
<el-dialog
:visible.sync=
"showRouteList"
width=
"900px"
append-to-body
>
<el-table
v-loading=
"routeLoadig"
:data=
"routeList"
>
<el-table-column
label=
"序号"
type=
"index"
width=
"50"
/>
<el-table-column
prop=
"tansportType"
label=
"运输方式"
align=
"center"
>
<
template
slot-scope=
"scope"
>
<div>
{{
transportName
(
scope
.
row
.
transportType
)
}}
</div>
</
template
>
</el-table-column>
<el-table-column
label=
"仓库编号"
align=
"center"
prop=
"number"
/>
<el-table-column
label=
"仓库名称"
align=
"center"
prop=
"titleZh"
/>
<el-table-column
label=
"仓库容量(m)³"
align=
"center"
prop=
"volume"
/>
<el-table-column
label=
"仓库地址"
align=
"center"
prop=
"addressZh"
/>
<el-table-column
prop=
"head"
label=
"负责人"
align=
"center"
>
<
template
slot-scope=
"scope"
>
<div>
<span>
{{
scope
.
row
.
head
}}
</span>
<br>
<span>
{{
scope
.
row
.
tell
}}
</span>
</div>
</
template
>
</el-table-column>
<el-table-column
label=
"操作"
align=
"center"
class-name=
"small-padding fixed-width"
>
<
template
slot-scope=
"scope"
>
<el-button
size=
"mini"
type=
"text"
@
click=
"routeStatusClick(scope.row)"
v-hasPermi=
"['ecw:warehouse:routerQuery']"
>
{{
scope
.
row
.
lineId
?
'
关闭线路
'
:
'
开通线路
'
}}
</el-button>
</
template
>
</el-table-column>
</el-table>
<!-- 分页组件 -->
<pagination
v-show=
"routeCount > 0"
:total=
"routeCount"
:page.sync=
"routeQueryParam.pageNo"
:limit.sync=
"routeQueryParam.pageSize"
@
pagination=
"getRouteList"
/>
</el-dialog>
<!-- 对话框(添加 / 修改) -->
<el-dialog
:title=
"title"
:visible.sync=
"open"
width=
"900px"
append-to-body
>
<el-form
ref=
"form"
:model=
"form"
:rules=
"rules"
label-width=
"90px"
>
...
...
@@ -176,7 +221,8 @@
</template>
<
script
>
import
{
createWarehouse
,
updateWarehouse
,
deleteWarehouse
,
getWarehouse
,
getWarehousePage
,
exportWarehouseExcel
}
from
"
@/api/ecw/warehouse
"
;
import
{
createWarehouse
,
updateWarehouse
,
deleteWarehouse
,
getWarehouse
,
getWarehousePage
,
exportWarehouseExcel
,
routerList
,
changeRouteStatus
}
from
"
@/api/ecw/warehouse
"
;
import
{
getNodePage
}
from
"
@/api/ecw/node
"
;
import
{
getListTree
}
from
"
@/api/ecw/region
"
;
import
{
getDictDatas
,
DICT_TYPE
}
from
'
@/utils/dict
'
;
...
...
@@ -231,6 +277,17 @@ export default {
nodeList
:
[],
routeLoadig
:
false
,
showRouteList
:
false
,
routeList
:
[],
routeCount
:
0
,
routeQueryParam
:
{
pageNo
:
1
,
pageSize
:
10
,
id
:
null
,
tradeType
:
null
},
// 查询参数
queryParams
:
{
pageNo
:
1
,
...
...
@@ -284,6 +341,20 @@ export default {
};
},
computed
:
{
transportName
()
{
return
transportType
=>
{
for
(
let
index
in
this
.
transportDatas
)
{
let
transportItem
=
this
.
transportDatas
[
index
];
if
(
transportItem
.
value
==
transportType
)
{
return
transportItem
.
label
;
}
}
}
},
},
watch
:
{
'
form.zhou
'
(
newV
,
oldV
)
{
if
(
oldV
&&
oldV
!=
newV
)
{
...
...
@@ -344,6 +415,34 @@ export default {
});
},
routeStatusClick
(
row
)
{
this
.
routeQueryParam
.
transportType
=
row
.
transportType
;
this
.
routeQueryParam
.
warehouseId
=
row
.
id
;
this
.
routeQueryParam
.
lineId
=
row
.
lineId
;
changeRouteStatus
(
this
.
routeQueryParam
).
then
(
response
=>
{
let
lineId
=
response
.
data
;
this
.
$set
(
row
,
"
lineId
"
,
lineId
);
row
.
lineId
=
lineId
;
this
.
$modal
.
msgSuccess
(
"
操作成功
"
);
})
},
toRouteList
(
row
,
tradeType
)
{
this
.
routeQueryParam
.
id
=
row
.
id
;
this
.
routeQueryParam
.
tradeType
=
tradeType
;
this
.
showRouteList
=
true
;
this
.
routeLoadig
=
true
;
this
.
getRouteList
();
},
getRouteList
()
{
routerList
(
this
.
routeQueryParam
).
then
(
response
=>
{
this
.
routeList
=
response
.
data
.
list
;
this
.
routeLoadig
=
false
;
});
},
//获取网点列表
getNodeList
()
{
let
params
=
{
pageNo
:
1
,
pageSize
:
100
};
...
...
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