freight-web/src/pagesShipment/shipmentSettlement.vue

377 lines
9.3 KiB
Vue
Raw Normal View History

2024-03-11 05:30:11 +00:00
<template>
<view class="search">
<view v-if="!isShowSearch" @click="isShowSearch = true">
2024-03-25 06:19:03 +00:00
<u-icon color="#C1C1C1" name="search"></u-icon><text></text>
2024-03-11 05:30:11 +00:00
</view>
<u-search
v-else
placeholder="请输入客户名称"
v-model="keyword"
:focus="true"
bgColor="#fff"
2024-04-26 06:13:57 +00:00
clearable
2024-03-11 05:30:11 +00:00
:showAction="false"
placeholderColor="#C1C1C1"
2024-03-25 06:19:03 +00:00
@search="handleSearch()"
@clear="handleSearch()"
2024-03-11 05:30:11 +00:00
></u-search>
</view>
<view class="card-box">
<view class="c-tab">
<text
v-for="(item, index) in tabList"
:key="index"
:class="{ active: currentTab === item.key }"
@click="handleTab(item)"
>
{{ item.name }}
</text>
</view>
2024-03-25 06:19:03 +00:00
<page-view
@loadList="
(v) => {
getList(v);
}
"
:noMoreData="pageList.noMoreData"
:list="pageList.list"
:height="ScaleStatus.ShipmentPaid === currentTab ? 160 : 240"
:isLoading="pageList.isLoading"
>
<block v-for="(item, index) in pageList.list" :key="index">
<view class="c-layout">
2024-04-16 07:53:59 +00:00
<view style="min-width: 20px"
2024-03-25 06:19:03 +00:00
><checkbox
v-if="
ScaleStatus.ToBeShipmentReview === currentTab ||
ScaleStatus.ToBeShipmentPay === currentTab
"
:color="'#00D2E3'"
:checked="item.isChecked"
style="transform: scale(0.5)"
@click="item.isChecked = !item.isChecked"
/></view>
<view class="inner-box">
<view class="top-flex-box">
2024-03-11 05:30:11 +00:00
<view>
2024-03-25 06:19:03 +00:00
<view>
<text class="number">出货单号{{ item.orderNumber }}</text>
</view>
<view>
<text class="name">{{ item.userName }}</text>
</view>
2024-03-11 05:30:11 +00:00
</view>
2024-03-25 06:19:03 +00:00
</view>
<view class="bottom-flex-box">
2024-03-11 05:30:11 +00:00
<view>
2024-03-25 06:19:03 +00:00
<view>
<text class="desc"
>过磅总净重{{ item.netWeight || 0 }}KG</text
>
</view>
2024-03-11 05:30:11 +00:00
</view>
<view>
2024-03-25 06:19:03 +00:00
<text class="btn">
<text
v-if="currentTab === 2"
@click="handleReview(item.id, 2)"
>出货结算</text
>
<text
v-if="currentTab === 3"
@click="handleReview(item.id, 3)"
>去结算</text
>
<text
v-if="currentTab === 4"
@click="handleReview(item.id, 4)"
>查看</text
>
</text>
2024-03-11 05:30:11 +00:00
</view>
</view>
</view>
</view>
2024-03-25 06:19:03 +00:00
<u-gap
height="10"
bgColor="#f8f8f8"
v-if="index < pageList.list.length - 1"
></u-gap>
</block>
</page-view>
2024-03-11 05:30:11 +00:00
</view>
2024-03-25 06:19:03 +00:00
<view
class="btn-box"
v-if="(currentTab === 2 || currentTab === 3) && pageList.list.length > 0"
>
2024-03-11 05:30:11 +00:00
<u-button
text="全选/取消"
color="#fff"
:customStyle="{ color: '#00DCEE', border: '1px solid #00DCEE' }"
@click="handleSelect"
></u-button>
2024-03-25 06:19:03 +00:00
<u-button
type="primary"
:text="`${currentTab === 2 ? '批量审核' : '批量支付'}`"
@click="handleReviewOrPay(currentTab)"
></u-button>
2024-03-11 05:30:11 +00:00
</view>
</template>
<script setup lang="ts">
import { ShipmentApi } from "@/services/index";
2024-03-25 06:19:03 +00:00
import { ScaleStatus, ScaleStatusBtnType } from "@/utils/enum";
2024-03-11 05:30:11 +00:00
import { onLoad } from "@dcloudio/uni-app";
2024-05-15 06:56:58 +00:00
import { onShow } from "@dcloudio/uni-app";
2024-03-25 06:19:03 +00:00
import PageView from "@/components/PageView/index.vue";
2024-03-11 05:30:11 +00:00
// scaleStatus
2024-03-12 05:34:36 +00:00
const pageList: PageResult<Shipment> = reactive({
2024-03-25 06:19:03 +00:00
isLoading: false,
noMoreData: false,
2024-03-11 05:30:11 +00:00
total: 0,
list: [],
pageNum: 1,
pageSize: 10,
});
2024-03-25 06:19:03 +00:00
const keyword = ref("");
2024-03-11 05:30:11 +00:00
const isShowSearch = ref(false);
const state = reactive<{
[attrName: string]: any;
}>({
checkMap: {},
isAll: false,
});
const tabList = reactive([
{
name: "待出货结算",
key: 2,
},
{
name: "已出未结算",
key: 3,
},
{
name: "已出已结算",
key: 4,
},
]);
const currentTab = ref(2);
const handleTab = (item: any) => {
currentTab.value = item.key;
2024-04-26 06:13:57 +00:00
resetPageList();
2024-03-25 06:19:03 +00:00
getList();
2024-03-11 05:30:11 +00:00
};
2024-03-12 05:34:36 +00:00
const handleReview = (id: string, scaleStatus: number) => {
2024-03-25 06:19:03 +00:00
let type = ScaleStatusBtnType.ShipmentSettlement;
2024-03-12 05:34:36 +00:00
if (scaleStatus === 2) {
2024-03-25 06:19:03 +00:00
type = ScaleStatusBtnType.ShipmentSettlement;
2024-03-12 05:34:36 +00:00
} else if (scaleStatus === 3) {
2024-03-25 06:19:03 +00:00
type = ScaleStatusBtnType.ShipmentNoPay;
2024-03-12 05:34:36 +00:00
} else if (scaleStatus === 4) {
2024-03-25 06:19:03 +00:00
type = ScaleStatusBtnType.ShipmentPay;
2024-03-12 05:34:36 +00:00
}
2024-04-16 07:53:59 +00:00
console.log("**************", type);
2024-03-11 05:30:11 +00:00
uni.navigateTo({
2024-03-12 05:34:36 +00:00
url: "/pagesShipment/review/index?id=" + id + `&scaleStatusBtnType=${type}`, // 要跳转到的页面路径
2024-03-11 05:30:11 +00:00
});
};
2024-03-25 06:19:03 +00:00
const handleReviewOrPay = (status: number) => {
// 批量审核
if (ScaleStatus.ToBeShipmentReview === status) {
updateStatus(ScaleStatus.ToBeShipmentPay);
} else if (ScaleStatus.ToBeShipmentPay === status) {
// 批量支付
updateStatus(ScaleStatus.ShipmentPaid);
}
};
const updateStatus = (status: number) => {
const list = pageList.list
.filter((item) => item.isChecked)
.map((item) => {
return { ...item, scaleStatus: status };
});
2024-04-16 07:53:59 +00:00
if (list.length === 0) {
uni.showToast({ icon: "none", title: "请至少选择一个出货单" });
return;
}
2024-03-25 06:19:03 +00:00
ShipmentApi.updateOrderIn({ orderOutPos: list }).then((res) => {
if (res.code === 200) {
resetPageList();
getList();
}
});
};
2024-03-11 05:30:11 +00:00
const handleSelect = () => {
state.isAll = !state.isAll;
2024-03-25 06:19:03 +00:00
console.log(state.isAll);
pageList.list = pageList.list.map((item) => {
return { ...item, isChecked: state.isAll };
2024-03-11 05:30:11 +00:00
});
};
2024-03-25 06:19:03 +00:00
const resetPageList = () => {
pageList.noMoreData = false;
pageList.total = 0;
pageList.list = [];
pageList.pageNum = 1;
pageList.pageSize = 10;
};
const handleSearch = () => {
resetPageList();
getList();
};
const getList = (v?: boolean) => {
if (v) {
if (Math.ceil(pageList.total / pageList.pageSize) > pageList.pageNum) {
pageList.pageNum++;
} else {
pageList.noMoreData = true;
return;
2024-03-11 05:30:11 +00:00
}
2024-03-25 06:19:03 +00:00
}
pageList.isLoading = true;
ShipmentApi.getOrderPage({
pageSize: pageList.pageSize,
pageNumber: pageList.pageNum,
scaleStatus: currentTab.value,
userName: keyword.value,
}).then((res) => {
if (res.code === 200) {
2024-04-16 01:52:13 +00:00
pageList.isLoading = false;
2024-04-26 06:13:57 +00:00
// (pageList as any).list = (res.data.list as any).map((item: any) => {
// return { ...item, isChecked: false };
// });
(pageList as any).list = (pageList as any).list.concat(
(res.data.list as any).map((item: any) => {
return { ...item, isChecked: false };
})
);
2024-03-25 06:19:03 +00:00
pageList.total = (res.data as any).total;
}
});
2024-03-11 05:30:11 +00:00
};
2024-05-15 06:56:58 +00:00
onShow(() => {
2024-05-20 01:24:03 +00:00
resetPageList()
2024-03-25 06:19:03 +00:00
getList();
2024-03-11 05:30:11 +00:00
});
onLoad((option) => {
currentTab.value = parseInt((option as any).scaleStatus);
2024-03-25 06:19:03 +00:00
console.log(option);
});
2024-03-11 05:30:11 +00:00
</script>
<style lang="scss" scoped>
.search {
box-shadow: 0rpx 3rpx 16rpx 5rpx rgba(0, 0, 0, 0.2);
border-radius: 28rpx;
background: rgba(255, 255, 255, 0.86);
width: 80%;
margin: 0px auto;
margin-top: 30rpx;
font-weight: 400;
font-size: 26rpx;
color: #c1c1c1;
> view {
line-height: 60rpx;
text-align: center;
display: flex;
justify-content: center;
}
text {
margin-left: 15rpx;
}
}
.card-box {
.c-tab {
font-family: Source Han Sans CN;
font-weight: 400;
font-size: 26rpx;
color: #999999;
line-height: 41rpx;
display: flex;
align-items: center;
justify-content: space-around;
border-bottom: 1rpx solid rgba(233, 233, 233, 0.76);
text {
padding: 16rpx;
}
.active {
color: $u-primary;
border-bottom: 5rpx solid $u-primary;
border-radius: 5rpx;
}
}
.c-layout {
display: flex;
justify-content: space-between;
padding: 30rpx 25rpx 30rpx 0rpx;
}
.inner-box {
width: 100%;
// padding: 40rpx 40rpx;
.bottom-flex-box {
display: flex;
justify-content: space-between;
align-items: center;
.btn {
border-radius: 24rpx;
border: 1px solid #00dcee;
padding: 10rpx 30rpx;
font-weight: 500;
font-size: 24rpx;
color: #00dcee;
line-height: 41rpx;
}
}
}
box-shadow: 0rpx 0rpx 10rpx 0rpx rgba(5, 68, 37, 0.12);
border-radius: 13rpx;
margin: 0rpx 25rpx;
margin-top: 35rpx;
font-family: Source Han Sans CN;
font-weight: 400;
font-size: 26rpx;
color: #000000;
line-height: 41rpx;
.desc {
font-size: 24rpx;
color: #999999;
margin-top: 30rpx;
display: inline-block;
}
.name {
font-size: 26rpx;
color: #000000;
font-weight: bold;
}
.flex-box {
font-weight: bold;
color: #000000;
line-height: 41rpx;
display: flex;
align-items: center;
justify-content: space-between;
}
}
.btn-box {
margin-top: 60rpx;
display: flex;
background: #ffffff;
box-shadow: 0rpx 0rpx 10rpx 0rpx rgba(0, 56, 93, 0.12);
border-radius: 13rpx 13rpx 0rpx 0rpx;
padding: 25rpx 50rpx;
position: absolute;
bottom: 0rpx;
width: calc(100vw - 100rpx);
::v-deep button {
border-radius: 43rpx;
}
::v-deep button + button {
margin-left: 50rpx;
}
}
</style>