报表申报智能运输页面完成
This commit is contained in:
@@ -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)
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
<material-list ref="materialRef" :formData="formData" isEdit="5" :pathParams="pathParams":extendData="{ selectMaterialList }" />
|
||||
<!-- 底部操作栏 -->
|
||||
<view class="bottom">
|
||||
<uv-button type="primary" @click="submitForm">入库</uv-button>
|
||||
<uv-button type="primary" @tap="submitForm">入库</uv-button>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
Reference in New Issue
Block a user