报表申报智能运输页面完成
This commit is contained in:
@@ -11,23 +11,23 @@
|
||||
<!-- 列表 -->
|
||||
<z-paging ref="pagingRef" class="containerBox" v-model="infoList" @query="getTechnicalList">
|
||||
<uni-list class="listBox">
|
||||
<uni-list-item v-for="item in infoList" :key="item.id" clickable @click="onChecked(item)">
|
||||
<uni-list-item v-for="item in infoList" :key="item.id" clickable @tap="onChecked(item)">
|
||||
<template v-slot:body>
|
||||
<view style="display: flex; flex-direction: column; width: 100%;">
|
||||
<view class="line title">
|
||||
<!-- <view class="line title">
|
||||
<p>技术鉴定表</p>
|
||||
<p>{{ item?.appraisalNo }}</p>
|
||||
</view>
|
||||
</view> -->
|
||||
<view class="line content">
|
||||
<uv-upload :fileList="item?.fileUrlList" name="3" multiple :maxCount="6"
|
||||
:previewFullImage="true"></uv-upload>
|
||||
<uv-upload :fileList="item?.fileUrlList" name="3" multiple
|
||||
:maxCount="item?.fileUrlList?.length" :previewFullImage="true"></uv-upload>
|
||||
</view>
|
||||
|
||||
<view class="line content">
|
||||
<p>备注</p>
|
||||
<p>
|
||||
<span v-if="item?.appraisalDesc">{{ item?.appraisalDesc }}</span>
|
||||
<span v-else class="empty">未填写</span>
|
||||
<text v-if="item?.remark">{{ item?.remark }}</text>
|
||||
<text v-else class="empty">未填写</text>
|
||||
</p>
|
||||
</view>
|
||||
<view class="line content">
|
||||
@@ -69,7 +69,8 @@ const infoList = ref([])
|
||||
// 选中技术鉴定表
|
||||
const onChecked = (item) => {
|
||||
if (item.appraisalNo) {
|
||||
uni.setStorageSync('app_technical', item);
|
||||
|
||||
uni.setStorageSync('app_technical', { ...item, appraisalNo: undefined });
|
||||
uni.navigateTo({
|
||||
url: backUrl.value
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user