剩余模块:生产退料

This commit is contained in:
2025-06-03 02:55:34 +08:00
parent eb2c8d2d7a
commit a12f56d2be
100 changed files with 9219 additions and 7499 deletions

View File

@@ -2,19 +2,11 @@
<view class="app status-bar-gap">
<view class="page">
<l-header :title="t('index.ctll')" sticky></l-header>
<view class="input-box">
<view class="input-item">
<up-input :placeholder="t('index.scdd')" border="none" clearable inputAlign="left"
v-model="state.queryString" @change="changeFun">
<template #prefix>
<up-icon name="search" color="#2979ff" size="24"></up-icon>
</template>
</up-input>
</view>
</view>
<architecture ref="architectureRef" :dataType="t('index.ctll')" :placeholder="t('index.scdd')"
@scanConfirm="scanConfirmFun" @inputConfirm="changeFun" />
<view class="receive-listBox" ref="listBoxRef">
<scroll-view id="scroll-box" class="scroll-box" scroll-y="true"
:style="{'height':state.scrollHeight+'px'}" @scrolltolower="fnScrollBottom()">
<scroll-view id="scroll-box" class="scroll-box" scroll-y="true" :style="{'height':state.scrollHeight+'px'}"
@scrolltolower="fnScrollBottom()">
<view class="list-box-list" v-if="state.dataList.length > 0">
<view class="data-item" @click.stop="fnToUrl(item)" v-for="(item, index) in state.dataList" :key="index">
<view class="tit">{{ t('index.scddbh') }}{{item.FBillNo}}</view>
@@ -22,7 +14,7 @@
<view class="b-font">{{ t('verify.date') }}{{item.FDateFormat}}</view>
</view>
</view>
<view v-if="state.dataList.length==0">
<view v-if="state.dataList.length==0">
<up-empty mode="list"></up-empty>
</view>
</scroll-view>
@@ -37,6 +29,7 @@
import { useI18n } from 'vue-i18n'
import { parseTime } from '../../utils/tools.js';
import { PRDPPBOMList, PRD_MOList } from '../../common/request/api/api';
const architectureRef = ref()
const listBoxRef = ref(null)
const getI18n = useI18n()
const { t, locale } = getI18n
@@ -58,10 +51,17 @@
}).exec();
fnDataList()
})
const scanConfirmFun = (e : any) => {
state.queryString = e
state.page.pageIndex = 1
state.dataList = []
fnDataList()
architectureRef.value.closeFun()
}
const fnScrollBottom = () => {
console.log(state.page.pageIndex * state.page.pageSize,state.page.totalCount);
console.log(state.page.pageIndex * state.page.pageSize, state.page.totalCount);
if (state.page.pageIndex * state.page.pageSize <= state.page.totalCount) {
state.page.pageIndex ++;
state.page.pageIndex++;
uni.showLoading({ mask: true });
setTimeout(() => {
fnDataList();
@@ -69,7 +69,7 @@
}
}
const fnToUrl = (item : any) => {
toPages('/pages/ruleClaim/details',{id:item.FID,fBillNo:item.FBillNo})
toPages('/pages/ruleClaim/details', { id: item.FID, fBillNo: item.FBillNo })
}
const debounceTimer = ref()
const changeFun = (e : any) => {
@@ -79,7 +79,7 @@
state.page.pageIndex = 1
state.dataList = []
fnDataList()
}, 500)
})
}
const fnDataList = () => {
let param = {
@@ -95,7 +95,7 @@
if (res.code == 200) {
let result = res.data;
let dataArray = result.list;
dataArray.forEach((p:any) => {
dataArray.forEach((p : any) => {
p.FDateFormat = parseTime(p.FDate, '{y}-{m}-{d}');
});
@@ -169,25 +169,29 @@
.receive-listBox {
flex: 1;
.list-box-list{
.list-box-list {
width: 100%;
// margin: 20rpx auto;
.data-item{
.data-item {
border: 1px solid #efeaea;
border-radius: 20rpx;
box-shadow: 0rpx 15rpx 15rpx #efeaea;
box-shadow: 0rpx 15rpx 15rpx #efeaea;
padding: 20rpx 20rpx 0;
margin-bottom: 20rpx;
background-color: #ffffff;
.tit{
.tit {
font-size: 30rpx;
font-weight: bold;
padding: 20rpx 0;
}
.line-p{
.line-p {
border: 1px solid #efeaea;
}
.b-font{
.b-font {
font-size: 25rpx;
padding: 20rpx 0;
}
@@ -196,5 +200,4 @@
}
}
}
</style>