Commit 69f519aa by wusiyi

Merge branch 'dev_sorting_rule' into release_v2.27.0

parents 3f6b1d6d 1599e7b6
......@@ -271,14 +271,17 @@ const deleteArea = async (id: number) => {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
}).then(async () => {
loading.value = true
const res = await deleteAreaApi(id)
if (res.code !== 200) return
ElMessage.success('删除成功')
await getSortingRuleList()
})
loading.value = false
.then(async () => {
loading.value = true
const res = await deleteAreaApi(id)
if (res.code !== 200) return
ElMessage.success('删除成功')
await getSortingRuleList()
})
.finally(() => {
loading.value = false
})
}
// 查看日志
......
......@@ -186,7 +186,7 @@
<span class="box-top-item-box-index-text">号箱</span>
<span style="font-size: 30px">放入第</span>
<span style="font-size: 30px; white-space: nowrap">放入第</span>
<div
class="box-top-item-box-index-number"
:style="{
......@@ -206,7 +206,7 @@
podOrderDetailsData.pickingNumber ===
podOrderDetailsData.purchaseNumber
"
style="font-size: 30px"
style="font-size: 30px; white-space: nowrap"
>件已配齐</span
>
<span v-else style="font-size: 30px">件商品</span>
......@@ -1675,13 +1675,14 @@ const getSortingAreaList = async () => {
.box-top-item-box-index-text {
margin-right: 15px;
font-size: 30px;
white-space: nowrap;
}
.box-top-item-box-index-number {
font-size: 60px;
color: red;
display: inline-block;
text-align: center;
width: 80px;
flex: 1;
font-weight: 600;
}
.box-top-item-status {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment