This commit is contained in:
2025-06-16 20:54:42 +08:00
parent 88a8d119cf
commit 021918e56d
8 changed files with 63 additions and 49 deletions

View File

@@ -37,7 +37,8 @@ const tabs = [
const getData = async () => {
const {data} = await Api.system.myAccount({
status: po.status + 1
status: po.status + 1,
pid: details.platform_id,
});
vo.length = 0;
vo.push(...data);

View File

@@ -16,7 +16,7 @@ const {data} = defineProps({
</script>
<template>
<view @click="toPage(`/pages/taskDetails/index?id=${data.id}`)"
<view @click="toPage(`/pages/taskDetails/index?id=${data.id}&task_children_id=${data.task_children_id}`)"
class="rounded-[8rpx] bg-[#fff] !p-[24rpx] overflow-hidden task-card">
<view class="!pb-[20rpx] !flex justify-between" style="border-bottom: 1px solid #E5E6EB">
<view style="font-size: 28rpx">

View File

@@ -34,7 +34,7 @@ const upload = async () => {
<template>
<view class="!flex gap-[12rpx] flex-wrap">
<view class="x-upload" @click="upload" v-if="single && files.length < 1">
<view class="x-upload" @click="upload" v-if="!single || single && files.length < 1">
<image class="!size-[28rpx]" :src="ADDICON"></image>
<view>上传图片</view>
</view>