报表申报智能运输页面完成

This commit is contained in:
zx
2026-04-23 14:35:54 +08:00
parent 6f1db0f92e
commit 5ca85c1f0d
53 changed files with 3659 additions and 292 deletions

View File

@@ -3,9 +3,9 @@
<navigation :title="pathParams.billNo" :back-url="backUrl">
<template #right>
<view class="right-btn flex align-center justify-center ">
<uv-image @click="onPrinter" src="../../../../static/printer.png" width="20px" height="20px"
<uv-image @tap="onPrinter" src="../../../../static/printer.png" width="20px" height="20px"
style="margin-top:10rpx" />
<uv-image @click="toEditOrAway('2')" src="../../../../static/edit.png" class="ml-24" width="20px"
<uv-image @tap="toEditOrAway('2')" src="../../../../static/edit.png" class="ml-24" width="20px"
height="20px" style="margin-top:10rpx" />
</view>
</template>
@@ -18,11 +18,11 @@
<view v-if="detailInfo?.billType == '0' && !flag"
:class="getBillType(detailInfo?.billType, detailInfo?.status) != '物料部分入库' ? 'bottom' : 'bottom1'">
<uv-button type="error" v-if="getBillType(detailInfo?.billType, detailInfo?.status, flag) != '物料部分入库'"
text="作废" @click="toObsolete"></uv-button>
<uv-button type="primary" text="入库单入库" @click="toEditOrAway('1')"></uv-button>
text="作废" @tap="toObsolete"></uv-button>
<uv-button type="primary" text="入库单入库" @tap="toEditOrAway('1')"></uv-button>
</view>
<view v-if="detailInfo?.billType == '0' && flag" class="bottom1">
<uv-button type="primary" text="出库单出库" @click="toEditOrAway('1')"></uv-button>
<uv-button type="primary" text="出库单出库" @tap="toEditOrAway('1')"></uv-button>
</view>
</view>
</template>
@@ -130,6 +130,16 @@ const setDetailInfoToStorage = (type) => {
// 有 type直接存储全部 itemList
uni.setStorageSync('app_material', itemList)
}
// 技术鉴定表
const technicalEvaluationList = {
fileList: data?.appraisalFileList,
remark: data?.appraisalRemark,
createTime: data?.appraisalTime,
id: data?.appraisalId,
appraisalNo: data?.appraisalNo,
}
uni.setStorageSync('app_technical', technicalEvaluationList)
}
/**