123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485 |
- <template>
- <view class="uni-column" style="height: 100%; background-color: #f5f5f5;">
- <view class="box-bg uni-row">
- <view class="input-view uni-row">
- <uni-icons class="input-uni-icon" type="search" size="18" color="#999" />
- <input class="nav-bar-input" type="text" v-model="keywords" placeholder="请输入批次号" />
- </view>
- <uni-data-select clase="select-view" style="min-width: 70px" @change="handleSearch" v-model="taksStatus"
- :localdata="statusList" :clear="false"></uni-data-select>
- <view class="search" @click="handleSearch">
- 搜索
- </view>
- </view>
- <scroll-view class="scroll-container" scroll-y @scrolltolower="handleScrollToLower"
- style="padding-bottom: 150rpx">
- <view v-if="listData.length == 0" style="text-align: center;
- font-size: 12px;
- color: #666;
- padding-top: 16px;">
- <text>暂无批次</text>
- </view>
- <!-- 批次列表 -->
- <view v-else v-for="(item, index) in listData" :key="index" class="list-item">
- <view class="title-container uni-row" style="justify-content: flex-start;">
- <view class="title uni-row">
- <text class="label">批次号:</text>
- <text class="label code">{{ item['lotCode'] }}</text>
- </view>
- <view class=" uni-row" style="margin-left: 16rpx;">
- <view v-if="item['isTaksStock'] == 0" class="tag finished"><text class="label">未盘点</text></view>
- <view v-else type="default finished" class="tag turnover"><text class="label">已盘点</text></view>
- </view>
- </view>
- <view class="item-info uni-row">
- <text class="label">产品描述</text>
- <text class="label right">{{ item['productDescription'] }}</text>
- </view>
- <view class="item-info uni-row">
- <text class="label">工序</text>
- <text class="label right">{{ item['processAlias'] ? item['processAlias'] : '-' }}</text>
- </view>
- <view class="item-info uni-row">
- <text class="label">投产数</text>
- <text class="label right">{{ item['prodNum']}}</text>
- </view>
- <view class="item-info uni-row">
- <text class="label">盘点数量</text>
- <text class="label right">{{ item['taksStockNum']}}</text>
- </view>
- </view>
- </scroll-view>
- <view class="bottom uni-row">
- <button class="add" type="primary" v-if="listData.length != 0" @click="handleScanCode">扫码盘点批次</button>
- </view>
- </view>
- </template>
- <script setup>
- import {
- normalizeProps,
- reactive,
- onMounted,
- ref
- } from 'vue'
- import {
- onLoad,
- onReady,
- onUnload,
- onShow,
- onReachBottom
- } from '@dcloudio/uni-app'
- import {
- getTakesStockList,
- getTakesStockByCarrierCode
- } from '@/api/business/taksStackLot.js'
- import {
- store
- } from '@/store/index.js'
- import {
- toHHmmss
- } from '@/utils/common.js'
- import {
- onPullDownRefresh
- } from "@dcloudio/uni-app"
- const listData = ref([])
- const taksStatus = ref(0);
- const keywords = ref(null)
- const pageSize = ref(10)
- const pageNum = ref(1)
- const status = ref(true)
- const statusList = [{
- value: 0,
- text: '未盘点'
- }, {
- value: 1,
- text: '已盘点'
- }, {
- value: 2,
- text: '全 部'
- }]
- // 页面下拉刷新操作
- onPullDownRefresh(() => {
- uni.stopPullDownRefresh();
- reflush();
- })
- onShow(() => {
- reflush();
- })
- function handleScrollToLower() {
- console.log(status.value)
- if (status.value) {
- pageNum.value += 1
- getTakesStockList({
- deptId: store.curDeptDetails.deptId,
- keywords: keywords.value,
- isTaksStock: taksStatus.value,
- pageSize: pageSize.value,
- pageNum: pageNum.value
- }).then(res => {
- const existingIds = new Set(listData.value.map(item => item.id));
- // 过滤出那些不在 existingIds 中的项,即新数据
- const newRows = res.rows.filter(row => !existingIds.has(row.id));
- // 如果有新数据,将其添加到 listData
- if (newRows.length > 0) {
- listData.value = listData.value.concat(newRows);
- } else {
- // 如果没有新数据,更新状态表示没有更多数据
- status.value = false;
- }
- })
- }
- }
- function reflush() {
- init(store.curDeptDetails.deptId);
- }
- function init(id) {
- uni.showLoading({
- title: '加载中'
- });
- getTakesStockList({
- deptId: id,
- keywords: keywords.value,
- isTaksStock: taksStatus.value,
- pageSize: pageSize.value,
- pageNum: pageNum.value
- }).then(res => {
- listData.value = res.rows
- uni.hideLoading();
- })
- }
- function handleSearch() {
- init(store.curDeptDetails.deptId);
- }
- function handleScanCode() {
- // 引入原生插件
- const mpaasScanModule = uni.requireNativePlugin("Mpaas-Scan-Module");
- if (mpaasScanModule) {
- // 调用插件的 mpaasScan 方法
- mpaasScanModule.mpaasScan({
- // 扫码识别类型,参数可多选,qrCode、barCode,
- // 如不设置,默认识别所有扫码类型,可能有些许影响识别效率
- scanType: ["qrCode", "barCode"],
- // 是否隐藏相册,默认false不隐藏
- hideAlbum: false,
- },
- (ret) => {
- console.log(ret);
- /* 原有代码,之前二维码中存的信息比较多,用一个JSON格式存储。
- let vehicleObj = JSON.parse(ret.resp_result);
- if (!vehicleObj.carrierId || vehicleObj.carrierId == "") {
- uni.showToast({
- icon: "none",
- title: "请扫载具码",
- duration: 1000
- })
- return;
- }
- */
- let vehicleObj = {
- carrierCode: ret.resp_result
- };
- if (!vehicleObj.carrierCode || vehicleObj.carrierCode == "") {
- uni.showToast({
- icon: "none",
- title: "请扫载具码",
- duration: 1000
- })
- return;
- }
- getTakesStockByCarrierCode({
- carrierCode: vehicleObj.carrierCode
- }).then(response => {
- if (response.code == 200) {
- // if (response.data[0].deptId !== store.curDeptDetails.deptId) {
- // uni.showToast({
- // icon: 'none',
- // title: '该批次不在当前工段',
- // duration: 2000
- // })
- // return
- // }
- handleTurnToDetailsPages(response.data)
- } else {
- uni.showToast({
- icon: 'none',
- title: response.msg,
- duration: 2000
- })
- }
- })
- }
- );
- } else {
- // 测试时用
- getTakesStockByCarrierCode({
- carrierCode: '000033',
- }).then(response => {
- if (response.code == 200) {
- // if (response.data[0].deptId !== store.curDeptDetails.deptId) {
- // uni.showToast({
- // icon: 'none',
- // title: '该批次不在当前工段',
- // duration: 2000
- // })
- // return
- // }
- handleTurnToDetailsPages(response.data)
- } else {
- uni.showToast({
- icon: 'none',
- title: response.msg,
- duration: 2000
- })
- }
- })
- }
- }
- //跳转
- function handleTurnToDetailsPages(data) {
- store.takeStockDetails = data
- uni.navigateTo({
- url: "/pages/takeStock/details"
- })
- }
- </script>
- <style lang="scss">
- $nav-height: 60rpx;
- .box-bg {
- width: 94%;
- background-color: #F5F5F5;
- padding: 5rpx 16rpx;
- justify-content: space-around;
- align-items: center;
- margin: 24rpx auto 0;
- .input-view {
- width: 100%;
- flex: 4;
- background-color: #f8f8f8;
- height: $nav-height;
- border: 1rpx solid #999;
- border-radius: 15rpx;
- padding: 0 15rpx;
- flex-wrap: nowrap;
- margin: 0 10rpx 0;
- line-height: $nav-height;
- .input-uni-icon {
- line-height: $nav-height;
- }
- .nav-bar-input {
- width: 80%;
- height: $nav-height;
- line-height: $nav-height;
- padding: 0 5rpx;
- background-color: #f8f8f8;
- }
- }
- .select-view {
- flex-shrink: 0;
- /* 防止压缩 */
- margin-left: 16rpx;
- }
- /* 防止下拉选项换行 */
- .uni-data-select-dropdown .uni-data-select__list {
- white-space: nowrap !important;
- min-width: fit-content !important;
- }
- .uni-data-select__text {
- white-space: nowrap !important;
- overflow: hidden !important;
- text-overflow: ellipsis !important;
- }
- .search {
- width: 20%;
- text-align: center;
- color: #808080;
- }
- }
- .list-title {
- width: 100%;
- margin-top: 16rpx;
- height: 64rpx;
- line-height: 64rpx;
- align-items: center;
- margin-left: 32rpx;
- .label {
- font-size: 32rpx;
- margin-right: 24rpx;
- }
- .icon-gear {
- font-size: 56rpx;
- }
- }
- .switch {
- margin-top: -8rpx;
- transform: scale(0.7);
- }
- .scroll-container {
- width: 92%;
- margin: 24rpx auto 0 auto;
- height: calc(87% - 90rpx);
- // overflow: auto;
- }
- .list-item {
- background-color: #fff;
- position: relative;
- padding: 16rpx;
- padding-bottom: 24rpx;
- margin-bottom: 24rpx;
- border-radius: 24rpx;
- .title-container {
- margin-top: 8rpx;
- margin-bottom: 16rpx;
- .title {
- height: 48rpx;
- align-items: center;
- .label {
- font-size: 32rpx;
- font-weight: bold;
- &.code {
- margin-left: 8rpx;
- }
- }
- }
- .tag {
- border: 1px solid #1CE5B0;
- background-color: #F6FFFD;
- padding: 8rpx;
- border-radius: 8rpx;
- .label {
- color: #1CE5B0;
- font-size: 24rpx;
- }
- &.finished {
- border: 1px solid #BBBBBB;
- background-color: #F5F5F5;
- .label {
- color: #BBBBBB;
- }
- }
- &.turnover {
- border: 1px solid #FF7901;
- background-color: #F6FFFD;
- .label {
- color: #FF7901;
- }
- }
- }
- }
- .item-info {
- margin-bottom: 8rpx;
- .label {
- font-size: 28rpx;
- width: 220rpx;
- color: #808080;
- &.right {
- flex: 1;
- color: #000000;
- }
- }
- }
- .status-btn {
- justify-content: flex-end;
- align-items: center;
- .turnover-tag {
- padding-right: 12rpx;
- padding-left: 12rpx;
- border-radius: 8rpx;
- border: 1rpx solid #FF7901;
- background-color: #FF7901;
- font-size: 28rpx;
- color: #FFFFFF;
- }
- .reporting-tag {
- padding-right: 12rpx;
- padding-left: 12rpx;
- border-radius: 8rpx;
- margin-left: 16rpx;
- border: 1rpx solid #1684fc;
- background-color: #1684fc;
- font-size: 28rpx;
- color: #FFFFFF;
- }
- }
- }
- .page {
- background-color: white;
- width: 100%;
- position: fixed;
- bottom: 90rpx;
- align-items: center;
- background-color: #ffffff;
- padding: 16rpx 0;
- }
- .bottom {
- background-color: white;
- width: 100%;
- position: fixed;
- bottom: 0;
- align-items: center;
- background-color: #ffffff;
- padding: 16rpx 0;
- .add {
- margin: 0 auto;
- width: 80%;
- height: 80rpx;
- }
- }
- </style>
|