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
5d2c6ac4
Commit
5d2c6ac4
authored
Sep 19, 2022
by
dcy
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/dev' into dev
parents
74d355f5
abf9d922
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
17 additions
and
4 deletions
+17
-4
productBrank.js
src/api/ecw/productBrank.js
+9
-0
tab.js
src/plugins/tab.js
+5
-1
editDialog.vue
src/views/ecw/order/warehousing/components/editDialog.vue
+1
-1
index.vue
src/views/ecw/order/warehousing/index.vue
+2
-2
No files found.
src/api/ecw/productBrank.js
View file @
5d2c6ac4
...
...
@@ -10,6 +10,15 @@ export function createProductBrank(data) {
}
// 更新品牌
export
function
updateProductBrank
(
data
)
{
return
request
({
url
:
'
/ecw/product-brank/update
'
,
method
:
'
put
'
,
data
:
data
})
}
// 修改品牌默认收费模式
export
function
changeFeeModel
(
data
)
{
return
request
({
url
:
'
/ecw/product-brank/changeFeeMode
'
,
...
...
src/plugins/tab.js
View file @
5d2c6ac4
...
...
@@ -32,7 +32,11 @@ export default {
// 关闭指定tab页签
closePage
(
obj
)
{
if
(
obj
===
undefined
)
{
return
store
.
dispatch
(
'
tagsView/delView
'
,
router
.
currentRoute
).
then
(({
lastPath
})
=>
{
return
store
.
dispatch
(
'
tagsView/delView
'
,
router
.
currentRoute
).
then
(({
visitedViews
})
=>
{
let
lastPath
=
'
/
'
if
(
visitedViews
.
length
>
0
){
lastPath
=
visitedViews
[
visitedViews
.
length
-
1
]
}
return
router
.
push
(
lastPath
||
'
/
'
);
});
}
...
...
src/views/ecw/order/warehousing/components/editDialog.vue
View file @
5d2c6ac4
<
template
>
<div>
<el-dialog
:title=
"(edit ? '入仓修改' : (warehousing.orderWarehouseInBackItemDoList.length > 0 ? '入仓补充' : '入仓操作')) + '
-货物入仓'
"
:title=
"(edit ? '入仓修改' : (warehousing.orderWarehouseInBackItemDoList.length > 0 ? '入仓补充' : '入仓操作')) + '
- ' + warehousing.orderNo
"
:visible.sync=
"opened"
width=
"1080px"
>
...
...
src/views/ecw/order/warehousing/index.vue
View file @
5d2c6ac4
...
...
@@ -86,8 +86,8 @@
</el-table>
<h2
v-if=
"orderSpecialNeeds.length > 0"
>
特殊需求
</h2>
<el-form
ref=
"form"
:model=
"form"
label-width=
"120px"
style=
"max-width: 550px;"
>
<el-form-item
:label=
"item.label"
v-for=
"(item, index) in orderSpecialNeeds"
:key=
"item.value"
style=
"width:
3
00px"
>
<el-form
ref=
"form"
:model=
"form"
label-width=
"120px"
>
<el-form-item
:label=
"item.label"
v-for=
"(item, index) in orderSpecialNeeds"
:key=
"item.value"
style=
"width:
4
00px"
>
<el-input
v-model=
"form.orderSpecialNeedReceivableReqVoList[index].receivableMoney"
:placeholder=
"'请输入' + item.label"
>
<el-select
v-model=
"form.orderSpecialNeedReceivableReqVoList[index].receivableMoneyCurrency"
placeholder=
"请选择"
slot=
"append"
style=
"width: 100px"
>
<el-option
...
...
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