2025-05-21 15:45:10 +08:00
|
|
|
|
<script setup>
|
2025-06-24 20:55:09 +08:00
|
|
|
|
import {reactive, ref} from "vue";
|
2025-05-21 15:45:10 +08:00
|
|
|
|
import XNav from "../../components/XNav.vue";
|
|
|
|
|
|
import {copy, download, showToast} from "../../utils/uils.js";
|
|
|
|
|
|
import XLink from "../../components/XLink.vue";
|
|
|
|
|
|
import XImage from "../../components/XImage.vue";
|
|
|
|
|
|
import {onLoad} from "@dcloudio/uni-app";
|
|
|
|
|
|
import Api from "../../api/index.js";
|
|
|
|
|
|
import {useUserStore} from "../../pinia/UserStore/index.js";
|
|
|
|
|
|
|
|
|
|
|
|
const {setToken} = useUserStore();
|
|
|
|
|
|
const detail = reactive({});
|
|
|
|
|
|
const current = ref(0);
|
|
|
|
|
|
const tabs = reactive([]);
|
|
|
|
|
|
|
|
|
|
|
|
onLoad((options) => {
|
2025-06-24 20:55:09 +08:00
|
|
|
|
const {id, token, task_children_id} = options;
|
2025-05-21 15:45:10 +08:00
|
|
|
|
if (!id) {
|
|
|
|
|
|
showToast('未找到任务');
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
setToken(token);
|
2025-06-24 20:55:09 +08:00
|
|
|
|
Api.system.getTaskinfo(id, task_children_id).then(({data}) => {
|
2025-05-21 15:45:10 +08:00
|
|
|
|
Object.assign(detail, data);
|
2025-06-24 20:55:09 +08:00
|
|
|
|
tabs.push(...detail.children?.material?.map((v, index) => ({
|
2025-05-21 15:45:10 +08:00
|
|
|
|
id: v.id,
|
|
|
|
|
|
name: `素材${index + 1}`
|
|
|
|
|
|
})));
|
|
|
|
|
|
});
|
|
|
|
|
|
})
|
2025-07-08 17:33:49 +08:00
|
|
|
|
|
|
|
|
|
|
const saveM = () => {
|
|
|
|
|
|
download(detail.children?.material[current].material_arr);
|
|
|
|
|
|
Api.system.checkDownload(detail.children.id);
|
|
|
|
|
|
}
|
2025-05-21 15:45:10 +08:00
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<template>
|
|
|
|
|
|
<!--下载素材-->
|
|
|
|
|
|
<!-- #ifndef MP-WEIXIN -->
|
|
|
|
|
|
<x-nav></x-nav>
|
|
|
|
|
|
<!-- #endif -->
|
|
|
|
|
|
|
|
|
|
|
|
<tui-tabs v-if="tabs.length>0" :tabs="tabs" :currentTab="current" @change="({index})=>current=index"></tui-tabs>
|
|
|
|
|
|
|
2025-06-24 20:55:09 +08:00
|
|
|
|
<template v-if="detail.id">
|
2025-07-28 18:08:42 +08:00
|
|
|
|
<view class="block"
|
|
|
|
|
|
v-if="detail.material_type?.title_limit > 0 && detail.children.material[current].title.length > 0">
|
2025-06-24 20:55:09 +08:00
|
|
|
|
<view class="title">标题</view>
|
|
|
|
|
|
<view class="info">
|
|
|
|
|
|
{{ detail.children.material[current].title }}
|
2025-05-21 15:45:10 +08:00
|
|
|
|
|
2025-06-24 20:55:09 +08:00
|
|
|
|
<view class="copy-button" @click="copy(detail.children?.material[current].title)">复制</view>
|
|
|
|
|
|
</view>
|
2025-05-21 15:45:10 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
|
2025-07-23 19:10:17 +08:00
|
|
|
|
<view class="block" v-if="detail.material_type?.desc_limit > 0 && detail.children?.material[current].content">
|
|
|
|
|
|
<view class="title">正文</view>
|
|
|
|
|
|
<view class="info">
|
|
|
|
|
|
{{ detail.children?.material[current].content }}
|
|
|
|
|
|
|
|
|
|
|
|
<view class="copy-button" @click="copy(detail.children?.material[current].content)">复制</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
|
2025-07-21 11:28:03 +08:00
|
|
|
|
<view class="block"
|
|
|
|
|
|
v-if="detail.material_type?.tags_limit > 0 && detail.children?.material[current].tags_arr.length > 0">
|
2025-06-24 20:55:09 +08:00
|
|
|
|
<view class="title">
|
|
|
|
|
|
话题
|
|
|
|
|
|
<view class="!ml-auto">
|
2025-07-02 18:12:58 +08:00
|
|
|
|
<x-image :src="detail.video"
|
|
|
|
|
|
:list="[detail.video]">
|
2025-06-24 20:55:09 +08:00
|
|
|
|
<x-link show-description>查看引导</x-link>
|
|
|
|
|
|
</x-image>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<view class="info">
|
|
|
|
|
|
{{ detail.children?.material[current].tags_arr.join(' ') }}
|
|
|
|
|
|
<view class="copy-button" @click="copy(detail.children.material[current].tags_arr.join(' '))">复制
|
|
|
|
|
|
</view>
|
2025-05-21 15:45:10 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
|
2025-06-24 20:55:09 +08:00
|
|
|
|
<view class="block">
|
|
|
|
|
|
<view class="title">素材(请按顺序下载&发布)</view>
|
|
|
|
|
|
<view class="info">
|
|
|
|
|
|
<view class="!grid grid-cols-5 flex-wrap gap-[32rpx]">
|
|
|
|
|
|
<x-image
|
|
|
|
|
|
v-for="(v, index) in detail.children?.material[current].material_arr"
|
|
|
|
|
|
:key="index"
|
|
|
|
|
|
:src="v"
|
|
|
|
|
|
imageClass="!w-[100%] !h-auto !aspect-square">
|
|
|
|
|
|
</x-image>
|
2025-05-21 15:45:10 +08:00
|
|
|
|
</view>
|
2025-06-24 20:55:09 +08:00
|
|
|
|
|
2025-07-08 17:33:49 +08:00
|
|
|
|
<view class="copy-button" @click="saveM">批量保存
|
2025-05-21 15:45:10 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
|
2025-06-24 20:55:09 +08:00
|
|
|
|
<view v-for="(v, index) in detail.children?.material[current]?.comment" :key="v.id" class="block">
|
2025-07-02 18:12:58 +08:00
|
|
|
|
<view class="title">
|
|
|
|
|
|
<text>评论{{ index + 1 }}</text>
|
|
|
|
|
|
<view class="text-[var(--primary-color)] !ml-3" v-if="v.pid !== 0">
|
|
|
|
|
|
<image class="!size-[20rpx]" src="/static/icons/msgback.png"></image>
|
|
|
|
|
|
回复评论{{
|
|
|
|
|
|
detail.children?.material[current]?.comment.findIndex(k => k.pid === v.pid)
|
|
|
|
|
|
}}
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<view class="!ml-auto" v-if="v.pid !== 0">
|
2025-07-08 17:33:49 +08:00
|
|
|
|
<x-image :src="detail.comment_video"
|
|
|
|
|
|
:list="[detail.comment_video]">
|
2025-07-02 18:12:58 +08:00
|
|
|
|
<x-link show-description>查看引导</x-link>
|
|
|
|
|
|
</x-image>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
2025-06-24 20:55:09 +08:00
|
|
|
|
<view class="info">
|
|
|
|
|
|
{{ v.intro }}
|
2025-05-21 15:45:10 +08:00
|
|
|
|
|
2025-06-24 20:55:09 +08:00
|
|
|
|
<view class="!grid grid-cols-5 flex-wrap gap-[32rpx]">
|
|
|
|
|
|
<x-image v-for="j in v.image_arr" :src="j" imageClass="!w-[100%] !h-auto !aspect-square"></x-image>
|
|
|
|
|
|
</view>
|
2025-05-21 15:45:10 +08:00
|
|
|
|
|
2025-06-24 20:55:09 +08:00
|
|
|
|
<view class="!flex gap-[24rpx] justify-center">
|
|
|
|
|
|
<view class="copy-button !mx-0" @click="copy(v.intro)">复制文字
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<view class="copy-button !mx-0" @click="download(v.image_arr)">保存图片</view>
|
2025-05-21 15:45:10 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
2025-06-24 20:55:09 +08:00
|
|
|
|
</template>
|
2025-05-21 15:45:10 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<style scoped lang="scss">
|
|
|
|
|
|
.block {
|
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
|
padding: 20rpx;
|
|
|
|
|
|
|
|
|
|
|
|
.copy-button {
|
|
|
|
|
|
padding: 7rpx 24rpx;
|
|
|
|
|
|
background: rgb(22, 93, 255);
|
|
|
|
|
|
color: #fff;
|
|
|
|
|
|
border-radius: 4rpx;
|
|
|
|
|
|
width: fit-content;
|
|
|
|
|
|
margin-top: 24rpx;
|
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
|
margin-right: auto;
|
|
|
|
|
|
color: rgb(255, 255, 255);
|
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
|
line-height: 140%;
|
|
|
|
|
|
letter-spacing: 0;
|
|
|
|
|
|
font-weight: 300;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.info {
|
|
|
|
|
|
color: rgb(29, 33, 41);
|
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
|
line-height: 22px;
|
|
|
|
|
|
letter-spacing: 0;
|
|
|
|
|
|
text-align: left;
|
|
|
|
|
|
padding: 24rpx;
|
|
|
|
|
|
background-color: #F7F8FA;
|
|
|
|
|
|
border: 1px solid #E5E6EB;
|
|
|
|
|
|
border-radius: 8rpx;
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.title {
|
|
|
|
|
|
color: rgb(78, 89, 105);
|
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
|
line-height: 20px;
|
|
|
|
|
|
letter-spacing: 0;
|
|
|
|
|
|
padding-bottom: 14rpx;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
</style>
|