This commit is contained in:
王一嘉
2025-08-18 15:41:37 +08:00
parent 2eb5ad2f6f
commit 39a701f666
3 changed files with 6 additions and 3 deletions

View File

@@ -21,7 +21,7 @@ const po = reactive({
category_id: 0, category_id: 0,
}); });
const {loading, pagination, initFetchData} = useTableQuery({ const {initFetchData} = useTableQuery({
api: Api.system.getArticle, api: Api.system.getArticle,
immediate: false, immediate: false,
parameter: po, parameter: po,

View File

@@ -27,7 +27,7 @@ const vo = reactive({
total: 0, total: 0,
}); });
const {loading, pagination, initFetchData} = useTableQuery({ const {initFetchData} = useTableQuery({
api: Api.system.myTeamList, api: Api.system.myTeamList,
parameter: po, parameter: po,
uuid: true, uuid: true,

View File

@@ -12,6 +12,7 @@ import XRadio from "../../components/XRadio.vue";
import XDateRange from "../../components/XDateRange.vue"; import XDateRange from "../../components/XDateRange.vue";
import XAlert from "../../components/XAlert.vue"; import XAlert from "../../components/XAlert.vue";
import {onShow} from "@dcloudio/uni-app"; import {onShow} from "@dcloudio/uni-app";
import dayjs from "dayjs";
const taskType = reactive([]); const taskType = reactive([]);
const platformType = reactive([]); const platformType = reactive([]);
@@ -146,7 +147,9 @@ onShow(() => {
<view class="rounded-[12rpx] !p-[20rpx] bg-[#fff]"> <view class="rounded-[12rpx] !p-[20rpx] bg-[#fff]">
<view class="!flex items-center justify-between"> <view class="!flex items-center justify-between">
<view class="stic-title">| 数据概览</view> <view class="stic-title">| 数据概览</view>
<view class="stic-date">2024.08.07-2024.09.07</view> <view class="stic-date">
{{ dayjs(po.start_time).format("YYYY.MM.DD") }}-{{ dayjs(po.end_time).format("YYYY.MM.DD") }}
</view>
</view> </view>
<view class="!mt-[20rpx] !grid grid-cols-2 grid-rows-2 gap-[20rpx]"> <view class="!mt-[20rpx] !grid grid-cols-2 grid-rows-2 gap-[20rpx]">