123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353 |
- <template>
- <!-- #ifdef APP -->
- <scroll-view style="flex:1">
- <!-- #endif -->
- <!-- 报告基础信息 -->
- <view class="section">
- <view class="info-item">
- <text class="label">检验任务</text>
- <text class="value">{{ download.workorder}}</text>
- </view>
- <view class="info-item">
- <text class="label">{{ download.productcode }}</text>
- <text class="value">{{ download.invname }}</text>
- </view>
- </view>
- <view class="section">
- <uni-table v-for="(item,index) in taskProcessList" :key="index">
- <uni-tr>
- <uni-td class="grid-text">{{item.gxno}}</uni-td>
- </uni-tr>
- <uni-tr class="section-title" @click="enterItem(item.pdid, 0)">
- <uni-td class="grid-text">拍照点</uni-td>
- <uni-td class="grid-text">
- <text :class="{
- 'bg-green bg-text': item.photoStatus == '已完成',
- 'bg-yellow bg-text': item.photoCount > 0 && item.photoCount < item.photoTotal,
- 'bg-black bg-text': item.photoCount == 0,
- }">
- {{item.photoCount}} / {{item.photoTotal}}
- </text>
- </uni-td>
- <uni-td class="grid-text">{{item.photoStatus}}</uni-td>
- </uni-tr>
- <uni-tr class="section-title" @click="enterItem(item.pdid, 1)">
- <uni-td class="grid-text">检验记录</uni-td>
- <uni-td class="grid-text">
- <text :class="{
- 'bg-green bg-text': item.recordCount == item.recordTotal,
- 'bg-yellow bg-text': item.recordCount > 0 && item.recordCount < item.recordTotal,
- 'bg-black bg-text': item.recordCount == 0,
- }">
- {{item.recordCount}} / {{item.recordTotal}}
- </text>
- </uni-td>
- <uni-td class="grid-text"><text :class="{
- 'ft-red':item.recordStatus == '不合格'
- }">{{item.recordStatus}}</text></uni-td>
- </uni-tr>
- <uni-tr class="section-title" @click="enterItem(item.pdid, 2)">
- <uni-td class="grid-text">关键工序记录</uni-td>
- <uni-td class="grid-text">
- <text :class="{
- 'bg-green bg-text': item.keyStatus == '已完成',
- 'bg-yellow bg-text': item.keyCount > 0 && item.keyCount < item.keyTotal,
- 'bg-black bg-text': item.keyCount == 0,
- }">
- {{item.keyCount}} / {{item.keyTotal}}
- </text>
- </uni-td>
- <uni-td class="grid-text">{{item.keyStatus}}</uni-td>
- </uni-tr>
- </uni-table>
- </view>
- <!-- #ifdef APP -->
- </scroll-view>
- <!-- #endif -->
- </template>
- <script setup>
- import {
- ref,
- onMounted
- } from 'vue'
- import { getList, TaskDownload, statusDict, TaskInfo, getTaskDetail, TaskDetail } from '@/api/work';
- //自定义返回行为,覆盖系统默认返回按钮
- const backPressOptions = reactive({
- from: 'backbutton'
- } as OnBackPressOptions)
- onBackPress((options : OnBackPressOptions) : boolean | null => {
- console.log('onBackPress', options)
- uni.navigateTo({
- url: `/pages/work/download/DownloadList`,
- // 修改动画方向为从左到右退回
- animationType: 'slide-in-left', // 使用从左到右滑出的动画效果
- animationDuration: 300 // 动画持续时间,单位ms
- })
- // 返回true表示拦截默认返回行为
- return true
- })
- const titleList = [{
- title1: "部位", title2: "进度", title3: "状态"
- }];
- var taskProcessList = ref<TaskDetail[]>([]);
- var initTasks = [] as TaskDetail[]
- //const statusMap = ref(new Map<number, string>([[1,'未执行'],[2,'执行中'],[3,'执行完'],[4,'检验失败']]))
- const download = ref<TaskDownload>({
- pdid: 0,
- gxpk: '',
- cardno: '',
- productcode: '',
- model: '',
- workorder: '',
- invname: '',
- graphid: '',
- processno: '',
- gxno: '',
- ver: '',
- lastupdatetime: '',
- updateuser: '',
- uploadflag: 0,
- progress: ''
- })
- onLoad((options) => {
- const downloadId = options?.id ?? ""
- // 模拟数据加载,建议替换为后端接口请求
- // #ifdef APP-ANDROID
- //获取下载产品数据
- getList('app_task_info', 'pdid', downloadId, null, null, null).then((res : UTSJSONObject) => {
- console.log(res)
- let dataList = res?.['data'] as UTSJSONObject[] ?? Array<UTSJSONObject>()
- if (dataList != null && dataList.length > 0) {
- let obj = dataList[0]
- if (obj != null) {
- let data = JSON.parse<TaskDownload>(obj.toJSONString());
- if (data != null) {
- download.value = data
- }
- }
- }
- })
- //获取下载产品任务数据
- getTaskDetail('pdid', downloadId).then((res : UTSJSONObject) => {
- console.log(res)
- let dataList = res?.['data'] as UTSJSONObject[] ?? Array<UTSJSONObject>()
- if (dataList != null && dataList.length > 0) {
- dataList.forEach(item => {
- if (item != null) {
- let task = JSON.parse<TaskDetail>(item.toJSONString());
- if (task != null) {
- initTasks.push(task)
- }
- }
- });
- }
- taskProcessList.value = initTasks
- })
- // #endif
- })
- const goBack = () => {
- uni.navigateBack()
- }
- const enterItem = (id : string, type : number) => {
- let url = ''
- if (type == 0) {
- url = `/pages/work/download/PhotoRecord?pdid=${id}`
- } else if (type == 1) {
- url = `/pages/work/report/InspectionList?pdid=${id}`
- } else if (type == 2) {
- url = `/pages/work/process/ProcessList`
- }
- uni.navigateTo({
- url
- });
- }
- </script>
- <style scoped>
- .container {
- padding: 40rpx;
- background-color: #f5f7fa;
- flex: 1;
- box-sizing: border-box;
- }
- .banner {
- background: linear-gradient(135deg, #2193b0, #6dd5ed);
- border-radius: 24rpx;
- padding: 40rpx 30rpx;
- margin-bottom: 40rpx;
- box-shadow: 0 8rpx 16rpx rgba(33, 147, 176, 0.3);
- }
- .banner-title {
- color: white;
- font-size: 36rpx;
- font-weight: bold;
- text-align: center;
- }
- .section {
- background-color: #fff;
- border-radius: 20rpx;
- padding: 30rpx;
- margin-bottom: 30rpx;
- box-shadow: 0 6rpx 16rpx rgba(0, 0, 0, 0.05);
- }
- .section-title {
- display: flex;
- flex-direction: row;
- flex: 1;
- }
- .info-item {
- display: flex;
- justify-content: space-between;
- /* #ifdef APP-NVUE */
- font-size: 28rpx;
- color: #666;
- /* #endif */
- margin-bottom: 18rpx;
- flex-direction: row;
- }
- .section-content {
- font-size: 28rpx;
- color: #444;
- line-height: 1.8;
- white-space: normal;
- }
- /* 表格容器样式 */
- uni-table {
- width: 100%;
- background-color: #fff;
- /* 设置表格背景色 */
- border-radius: 8rpx;
- overflow: hidden;
- /* 去除列表样式,解决第一列前的小短横 */
- list-style-type: none;
- }
- /* 表格行样式 */
- uni-tr {
- width: 100%;
- /* #ifdef APP-ANDROID */
- border-bottom: 1rpx solid #f0f0f0;
- /* Android设备添加底边框 */
- /* #endif */
- }
- /* 表格单元格样式 */
- uni-td {
- /* #ifdef APP-ANDROID */
- border-right: 1rpx solid #f0f0f0;
- /* Android设备添加右边框 */
- /* #endif */
- }
- /* 最后一列去除右边框 */
- uni-tr uni-td:last-child {
- /* #ifdef APP-ANDROID */
- border-right: none;
- /* #endif */
- }
- /* 最后一行去除底边框 */
- uni-table uni-tr:last-child {
- /* #ifdef APP-ANDROID */
- border-bottom: none;
- /* #endif */
- }
- .grid-text {
- /* #ifdef APP-NVUE */
- font-size: 24rpx;
- color: #000;
- /* #endif */
- padding: 10rpx 0 10rpx 0rpx;
- box-sizing: border-box;
- margin: 10rpx 10rpx;
- min-width: 180rpx;
- }
- .footer-btn {
- margin-top: 40rpx;
- display: flex;
- justify-content: center;
- }
- .main-btn {
- width: 80%;
- padding: 28rpx 0;
- font-size: 30rpx;
- color: #fff;
- border: none;
- border-radius: 100rpx;
- background: linear-gradient(to right, #36d1dc, #5b86e5);
- box-shadow: 0 10rpx 24rpx rgba(91, 134, 229, 0.3);
- }
- .label {
- font-weight: bold;
- color: #102a43;
- min-width: 150rpx;
- margin-right: 30rpx;
- }
- .value {
- flex: 1;
- /* #ifdef APP-NVUE */
- white-space: nowrap;
- text-overflow: ellipsis;
- /* #endif */
- overflow: hidden;
- margin-left: 30rpx;
- }
- .my-radius {
- border-radius: 10rpx;
- }
- .bg-text {
- width: 120rpx;
- min-width: 100rpx;
- border-radius: 10rpx;
- text-align: center;
- }
- .bg-green {
- background-color: seagreen;
- color: #fff;
- }
- .bg-yellow {
- background-color: yellow;
- }
- .bg-black {
- background-color: #102a43;
- color: #fff;
- }
- .bg-red {
- background-color: red;
- color: #fff;
- }
- .ft-red {
- color: red;
- }
- </style>
|