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
492a00df
Commit
492a00df
authored
Oct 31, 2023
by
dragondean@qq.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/dev' into dev
parents
0f2a06fa
0c89be3c
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
8 deletions
+11
-8
startUnloading.vue
...ecw/box/shippingAir/nodePage/unloading/startUnloading.vue
+3
-3
packaging-type.vue
src/views/ecw/channel/componrnts/packaging-type.vue
+4
-3
PackHistoryDetail.vue
src/views/ecw/order/components/PackHistoryDetail.vue
+4
-2
No files found.
src/views/ecw/box/shippingAir/nodePage/unloading/startUnloading.vue
View file @
492a00df
...
@@ -322,8 +322,8 @@ export default {
...
@@ -322,8 +322,8 @@ export default {
},
},
/** 取消 */
/** 取消 */
cancel
()
{
cancel
(
type
)
{
this
.
$emit
(
"
closeStart
"
,
"
submit
"
);
this
.
$emit
(
'
closeDialog
'
,
type
)
},
},
/* 关闭弹窗 */
/* 关闭弹窗 */
closeDialog
(
type
)
{
closeDialog
(
type
)
{
...
@@ -361,7 +361,7 @@ export default {
...
@@ -361,7 +361,7 @@ export default {
shipmentId
:
shipmentObj
.
id
,
shipmentId
:
shipmentObj
.
id
,
}).
then
((
res
)
=>
{
}).
then
((
res
)
=>
{
serviceMsg
(
res
,
this
).
then
(()
=>
{
serviceMsg
(
res
,
this
).
then
(()
=>
{
this
.
cancel
();
this
.
cancel
(
"
submit
"
);
});
});
});
});
},
},
...
...
src/views/ecw/channel/componrnts/packaging-type.vue
View file @
492a00df
...
@@ -80,8 +80,6 @@ export default {
...
@@ -80,8 +80,6 @@ export default {
name
:
"
packaging-type
"
,
name
:
"
packaging-type
"
,
components
:
{
Template
,
WeightSelect
,
CurrencySelect
},
components
:
{
Template
,
WeightSelect
,
CurrencySelect
},
created
()
{
created
()
{
console
.
log
(
this
.
getDictDatas
(
this
.
DICT_TYPE
.
AIR_CUSTOM_CLEARANCE
),
'
123
'
)
getCurrencyPage
(
this
.
params
).
then
(
res
=>
this
.
currencyList
=
res
.
data
.
list
)
getCurrencyPage
(
this
.
params
).
then
(
res
=>
this
.
currencyList
=
res
.
data
.
list
)
getUnitList
().
then
(
res
=>
this
.
unitList
=
res
.
data
)
getUnitList
().
then
(
res
=>
this
.
unitList
=
res
.
data
)
},
},
...
@@ -105,11 +103,14 @@ export default {
...
@@ -105,11 +103,14 @@ export default {
num
=
this
.
getDictDatas
(
this
.
DICT_TYPE
.
AIR_COMMODITY_CUSTOM_CLEARANCE
)[
0
]?.
value
num
=
this
.
getDictDatas
(
this
.
DICT_TYPE
.
AIR_COMMODITY_CUSTOM_CLEARANCE
)[
0
]?.
value
}
}
return
+
num
return
num
}
}
},
},
mounted
()
{
mounted
()
{
this
.
value1
=
this
.
value
this
.
value1
=
this
.
value
if
(
!
this
.
value1
.
airWeightLimit
){
this
.
value1
.
airWeightLimit
=
this
.
screenCom
}
this
.
$nextTick
(()
=>
{
this
.
$nextTick
(()
=>
{
if
(
this
.
value1
[
this
.
keyArr
]
&&
this
.
value1
[
this
.
keyArr
].
length
===
0
){
if
(
this
.
value1
[
this
.
keyArr
]
&&
this
.
value1
[
this
.
keyArr
].
length
===
0
){
this
.
addInterval
()
this
.
addInterval
()
...
...
src/views/ecw/order/components/PackHistoryDetail.vue
View file @
492a00df
...
@@ -18,9 +18,9 @@
...
@@ -18,9 +18,9 @@
<el-descriptions-item
:label=
"$t('商品特性')"
>
{{productAttr}}
</el-descriptions-item>
<el-descriptions-item
:label=
"$t('商品特性')"
>
{{productAttr}}
</el-descriptions-item>
<el-descriptions-item
:label=
"$t('用途')"
>
<el-descriptions-item
:label=
"$t('用途')"
>
<div
v-if=
"orderItem.usageIds"
>
<div
v-if=
"orderItem.usageIds"
>
<div
v-for=
"(item,index) in
row
.usageIds.split(',')"
>
<div
v-for=
"(item,index) in
orderItem
.usageIds.split(',')"
>
<dict-tag
:type=
"DICT_TYPE.OREER_ITEM_USAGE"
:value=
"item"
/>
<dict-tag
:type=
"DICT_TYPE.OREER_ITEM_USAGE"
:value=
"item"
/>
<span
v-if=
"(index+1)!=
row
.usageIds.split(',').length"
>
,
</span>
<span
v-if=
"(index+1)!=
orderItem
.usageIds.split(',').length"
>
,
</span>
</div>
</div>
</div>
</div>
</el-descriptions-item>
</el-descriptions-item>
...
@@ -163,12 +163,14 @@
...
@@ -163,12 +163,14 @@
</div>
</div>
</el-dialog>
</el-dialog>
<el-dialog
:title=
"$t('箱明细')"
:visible.sync=
"boxShow"
:before-close=
"closeBox"
:close-on-click-modal=
"false"
width=
"800px"
>
<el-dialog
:title=
"$t('箱明细')"
:visible.sync=
"boxShow"
:before-close=
"closeBox"
:close-on-click-modal=
"false"
width=
"800px"
>
<el-form>
<WarehouseRecordDetailItem
<WarehouseRecordDetailItem
v-for=
"(item, index) in boxData"
v-for=
"(item, index) in boxData"
:key=
"index"
v-model=
"boxData[index]"
:key=
"index"
v-model=
"boxData[index]"
:index=
"index"
:attr-list=
"attrList"
:index=
"index"
:attr-list=
"attrList"
:readonly=
"true"
:readonly=
"true"
/>
/>
</el-form>
</el-dialog>
</el-dialog>
</div>
</div>
</template>
</template>
...
...
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