This commit is contained in:
2025-06-26 19:46:37 +08:00
parent c022c0c6da
commit 0a9da0f5af
4 changed files with 4 additions and 4 deletions

View File

@@ -82,7 +82,7 @@ onMounted(() => {
<view class="flex-grow !flex flex-col gap-[12rpx]">
<view class="!flex justify-between items-center">
<view class="bh">{{ data.title }}</view>
<view class="time">2024-01-26 14:00</view>
<view class="time">{{ data.createtime }}</view>
</view>
<view :class="['context', contextRow]">
{{ data.content }}

View File

@@ -35,7 +35,7 @@ const {data} = defineProps({
<view class="!flex gap-[26rpx] !pt-[20rpx]">
<image class="!size-[88rpx] rounded-[50%] overflow-hidden" mode="aspectFill"
:src="PlatformENUM[data.platform_id]"></image>
:src="data.logo"></image>
<view class="!h-[88rpx] !flex flex-col justify-between">
<view class="title">{{ data.goods_name }}</view>
<view class="!flex gap-[8rpx]">

View File

@@ -15,7 +15,7 @@ const {data} = defineProps({
<template>
<view class="rounded-[8rpx] bg-[#fff] !p-[24rpx]" @click="toPage(`/pages/taskDetails/index?id=${data.id}&home=1`)">
<view class="!flex gap-[26rpx]">
<image class="!size-[88rpx] rounded-[50%] overflow-hidden" mode="aspectFill" :src="dy"></image>
<image class="!size-[88rpx] rounded-[50%] overflow-hidden" mode="aspectFill" :src="data.logo"></image>
<view class="!h-[88rpx] !flex flex-col justify-between">
<view class="title">{{ data.goods_name }}</view>
<view class="!flex gap-[8rpx]">

View File

@@ -27,7 +27,7 @@ const abandonTask = async () => {
}
const confirmTask = async () => {
const {msg} = await Api.system.confirmTask({id: data.children.id});
const {msg} = await Api.system.confirmTask({id: data.children.id, log_id: item.id});
showToast(msg);
emits('success');
}