2026-01-06 20:55:11 +08:00
|
|
|
|
<template>
|
2026-01-07 14:36:30 +08:00
|
|
|
|
<div class="page-container-flex">
|
2026-01-07 15:00:55 +08:00
|
|
|
|
<van-nav-bar title="预算管理" placeholder>
|
2026-01-06 20:55:11 +08:00
|
|
|
|
<template #right>
|
2026-01-07 19:19:53 +08:00
|
|
|
|
<van-icon name="plus" size="20" @click="budgetEditRef.open({ category: activeTab })" />
|
2026-01-06 20:55:11 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
</van-nav-bar>
|
|
|
|
|
|
|
2026-01-07 14:36:30 +08:00
|
|
|
|
<div class="scroll-content">
|
|
|
|
|
|
<div class="page-content">
|
|
|
|
|
|
<van-tabs v-model:active="activeTab" sticky offset-top="0" type="card">
|
2026-01-06 21:15:02 +08:00
|
|
|
|
<van-tab title="支出" :name="BudgetCategory.Expense">
|
2026-01-07 17:33:50 +08:00
|
|
|
|
<BudgetSummary
|
|
|
|
|
|
:stats="overallStats"
|
|
|
|
|
|
:title="activeTabTitle"
|
|
|
|
|
|
:get-value-class="getValueClass"
|
|
|
|
|
|
/>
|
2026-01-06 20:55:11 +08:00
|
|
|
|
<div class="budget-list">
|
|
|
|
|
|
<template v-if="expenseBudgets?.length > 0">
|
|
|
|
|
|
<van-swipe-cell v-for="budget in expenseBudgets" :key="budget.id">
|
2026-01-07 17:33:50 +08:00
|
|
|
|
<BudgetCard
|
|
|
|
|
|
:budget="budget"
|
|
|
|
|
|
:progress-color="getProgressColor(budget)"
|
|
|
|
|
|
:percent-class="{ 'warning': (budget.current / budget.limit) > 0.8 }"
|
|
|
|
|
|
:period-label="getPeriodLabel(budget.type)"
|
|
|
|
|
|
@toggle-stop="handleToggleStop"
|
|
|
|
|
|
@switch-period="(dir) => handleSwitchPeriod(budget, dir)"
|
2026-01-07 19:19:53 +08:00
|
|
|
|
@click="budgetEditRef.open({
|
|
|
|
|
|
data: budget,
|
|
|
|
|
|
isEditFlag: true,
|
|
|
|
|
|
category: budget.category
|
|
|
|
|
|
})"
|
2026-01-07 17:33:50 +08:00
|
|
|
|
>
|
|
|
|
|
|
<template #amount-info>
|
|
|
|
|
|
<div class="info-item">
|
|
|
|
|
|
<div class="label">当前</div>
|
|
|
|
|
|
<div class="value expense">¥{{ formatMoney(budget.current) }}</div>
|
2026-01-06 20:55:11 +08:00
|
|
|
|
</div>
|
2026-01-07 17:33:50 +08:00
|
|
|
|
<div class="info-item">
|
|
|
|
|
|
<div class="label">预算</div>
|
|
|
|
|
|
<div class="value">¥{{ formatMoney(budget.limit) }}</div>
|
2026-01-06 20:55:11 +08:00
|
|
|
|
</div>
|
2026-01-07 17:33:50 +08:00
|
|
|
|
<div class="info-item">
|
|
|
|
|
|
<div class="label">结余</div>
|
|
|
|
|
|
<div class="value" :class="budget.limit - budget.current >= 0 ? 'income' : 'expense'">
|
|
|
|
|
|
¥{{ formatMoney(budget.limit - budget.current) }}
|
2026-01-06 20:55:11 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2026-01-07 17:33:50 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
</BudgetCard>
|
2026-01-06 20:55:11 +08:00
|
|
|
|
<template #right>
|
|
|
|
|
|
<van-button square text="删除" type="danger" class="delete-button" @click="handleDelete(budget)" />
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</van-swipe-cell>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
<van-empty v-else description="暂无支出预算" />
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</van-tab>
|
|
|
|
|
|
|
2026-01-06 21:15:02 +08:00
|
|
|
|
<van-tab title="收入" :name="BudgetCategory.Income">
|
2026-01-07 17:33:50 +08:00
|
|
|
|
<BudgetSummary
|
|
|
|
|
|
:stats="overallStats"
|
|
|
|
|
|
:title="activeTabTitle"
|
|
|
|
|
|
:get-value-class="getValueClass"
|
|
|
|
|
|
/>
|
2026-01-06 20:55:11 +08:00
|
|
|
|
<div class="budget-list">
|
|
|
|
|
|
<template v-if="incomeBudgets?.length > 0">
|
|
|
|
|
|
<van-swipe-cell v-for="budget in incomeBudgets" :key="budget.id">
|
2026-01-07 17:33:50 +08:00
|
|
|
|
<BudgetCard
|
|
|
|
|
|
:budget="budget"
|
|
|
|
|
|
:progress-color="getIncomeProgressColor(budget)"
|
|
|
|
|
|
:percent-class="{ 'income': (budget.current / budget.limit) >= 1 }"
|
|
|
|
|
|
:period-label="getPeriodLabel(budget.type)"
|
|
|
|
|
|
status-tag-text="进行中"
|
|
|
|
|
|
@toggle-stop="handleToggleStop"
|
|
|
|
|
|
@switch-period="(dir) => handleSwitchPeriod(budget, dir)"
|
2026-01-07 19:57:43 +08:00
|
|
|
|
@click="budgetEditRef.open({
|
|
|
|
|
|
data: budget,
|
|
|
|
|
|
isEditFlag: true,
|
|
|
|
|
|
category: budget.category
|
|
|
|
|
|
})"
|
2026-01-07 17:33:50 +08:00
|
|
|
|
>
|
|
|
|
|
|
<template #amount-info>
|
|
|
|
|
|
<div class="info-item">
|
|
|
|
|
|
<div class="label">当前已收</div>
|
|
|
|
|
|
<div class="value income">¥{{ formatMoney(budget.current) }}</div>
|
2026-01-06 20:55:11 +08:00
|
|
|
|
</div>
|
2026-01-07 17:33:50 +08:00
|
|
|
|
<div class="info-item">
|
|
|
|
|
|
<div class="label">目标收入</div>
|
|
|
|
|
|
<div class="value">¥{{ formatMoney(budget.limit) }}</div>
|
2026-01-06 20:55:11 +08:00
|
|
|
|
</div>
|
2026-01-07 17:33:50 +08:00
|
|
|
|
<div class="info-item">
|
|
|
|
|
|
<div class="label">差额</div>
|
|
|
|
|
|
<div class="value" :class="budget.current >= budget.limit ? 'income' : 'expense'">
|
|
|
|
|
|
¥{{ formatMoney(Math.abs(budget.limit - budget.current)) }}
|
2026-01-06 20:55:11 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2026-01-07 17:33:50 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
</BudgetCard>
|
2026-01-06 20:55:11 +08:00
|
|
|
|
<template #right>
|
|
|
|
|
|
<van-button square text="删除" type="danger" class="delete-button" @click="handleDelete(budget)" />
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</van-swipe-cell>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
<van-empty v-else description="暂无收入预算" />
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</van-tab>
|
|
|
|
|
|
|
2026-01-06 21:15:02 +08:00
|
|
|
|
<van-tab title="存款" :name="BudgetCategory.Savings">
|
2026-01-07 17:33:50 +08:00
|
|
|
|
<BudgetSummary
|
|
|
|
|
|
:stats="overallStats"
|
|
|
|
|
|
:title="activeTabTitle"
|
|
|
|
|
|
:get-value-class="getValueClass"
|
|
|
|
|
|
/>
|
2026-01-06 20:55:11 +08:00
|
|
|
|
<div class="budget-list">
|
|
|
|
|
|
<template v-if="savingsBudgets?.length > 0">
|
|
|
|
|
|
<van-swipe-cell v-for="budget in savingsBudgets" :key="budget.id">
|
2026-01-07 17:33:50 +08:00
|
|
|
|
<BudgetCard
|
|
|
|
|
|
:budget="budget"
|
|
|
|
|
|
progress-color="#07c160"
|
|
|
|
|
|
:percent-class="{ 'income': (budget.current / budget.limit) >= 1 }"
|
2026-01-07 19:19:53 +08:00
|
|
|
|
:period-label="getPeriodLabel(budget.type)"
|
2026-01-07 17:33:50 +08:00
|
|
|
|
status-tag-text="积累中"
|
|
|
|
|
|
@toggle-stop="handleToggleStop"
|
|
|
|
|
|
@switch-period="(dir) => handleSwitchPeriod(budget, dir)"
|
2026-01-07 19:57:43 +08:00
|
|
|
|
@click="budgetEditRef.open({
|
|
|
|
|
|
data: budget,
|
|
|
|
|
|
isEditFlag: true,
|
|
|
|
|
|
category: budget.category
|
|
|
|
|
|
})"
|
2026-01-07 17:33:50 +08:00
|
|
|
|
>
|
|
|
|
|
|
<template #amount-info>
|
|
|
|
|
|
<div class="info-item">
|
|
|
|
|
|
<div class="label">已存</div>
|
|
|
|
|
|
<div class="value income">¥{{ formatMoney(budget.current) }}</div>
|
2026-01-06 20:55:11 +08:00
|
|
|
|
</div>
|
2026-01-07 17:33:50 +08:00
|
|
|
|
<div class="info-item">
|
|
|
|
|
|
<div class="label">目标</div>
|
|
|
|
|
|
<div class="value">¥{{ formatMoney(budget.limit) }}</div>
|
2026-01-06 20:55:11 +08:00
|
|
|
|
</div>
|
2026-01-07 17:33:50 +08:00
|
|
|
|
<div class="info-item">
|
|
|
|
|
|
<div class="label">还差</div>
|
|
|
|
|
|
<div class="value expense">
|
|
|
|
|
|
¥{{ formatMoney(Math.max(0, budget.limit - budget.current)) }}
|
2026-01-06 20:55:11 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2026-01-07 17:33:50 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
</BudgetCard>
|
2026-01-06 20:55:11 +08:00
|
|
|
|
<template #right>
|
|
|
|
|
|
<van-button square text="删除" type="danger" class="delete-button" @click="handleDelete(budget)" />
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</van-swipe-cell>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
<van-empty v-else description="暂无存款计划" />
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</van-tab>
|
|
|
|
|
|
</van-tabs>
|
2026-01-07 15:00:55 +08:00
|
|
|
|
<!-- 底部安全距离 -->
|
|
|
|
|
|
<div style="height: calc(50px + env(safe-area-inset-bottom, 0px))"></div>
|
2026-01-06 20:55:11 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
|
2026-01-07 17:33:50 +08:00
|
|
|
|
<!-- 添加/编辑预算弹窗 -->
|
|
|
|
|
|
<BudgetEditPopup
|
|
|
|
|
|
ref="budgetEditRef"
|
|
|
|
|
|
@success="fetchBudgetList"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</div>
|
2026-01-06 20:55:11 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script setup>
|
2026-01-07 19:19:53 +08:00
|
|
|
|
import { ref, computed, onMounted, watch } from 'vue'
|
2026-01-06 20:55:11 +08:00
|
|
|
|
import { showToast, showConfirmDialog } from 'vant'
|
2026-01-07 17:33:50 +08:00
|
|
|
|
import { getBudgetList, deleteBudget, toggleStopBudget, getBudgetStatistics } from '@/api/budget'
|
2026-01-06 21:15:02 +08:00
|
|
|
|
import { BudgetPeriodType, BudgetCategory } from '@/constants/enums'
|
2026-01-07 17:33:50 +08:00
|
|
|
|
import BudgetCard from '@/components/Budget/BudgetCard.vue'
|
|
|
|
|
|
import BudgetSummary from '@/components/Budget/BudgetSummary.vue'
|
|
|
|
|
|
import BudgetEditPopup from '@/components/Budget/BudgetEditPopup.vue'
|
2026-01-06 20:55:11 +08:00
|
|
|
|
|
2026-01-06 21:15:02 +08:00
|
|
|
|
const activeTab = ref(BudgetCategory.Expense)
|
2026-01-07 17:33:50 +08:00
|
|
|
|
const budgetEditRef = ref(null)
|
2026-01-06 20:55:11 +08:00
|
|
|
|
|
2026-01-06 21:15:02 +08:00
|
|
|
|
const expenseBudgets = ref([])
|
|
|
|
|
|
const incomeBudgets = ref([])
|
|
|
|
|
|
const savingsBudgets = ref([])
|
2026-01-06 20:55:11 +08:00
|
|
|
|
|
2026-01-06 21:23:04 +08:00
|
|
|
|
const activeTabTitle = computed(() => {
|
|
|
|
|
|
if (activeTab.value === BudgetCategory.Expense) return '使用'
|
|
|
|
|
|
return '达成'
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
const overallStats = computed(() => {
|
|
|
|
|
|
const allBudgets = [...expenseBudgets.value, ...incomeBudgets.value, ...savingsBudgets.value]
|
|
|
|
|
|
|
|
|
|
|
|
const getStatsForType = (type) => {
|
|
|
|
|
|
const category = activeTab.value
|
|
|
|
|
|
const filtered = allBudgets.filter(b => b.type === type && b.category === category && !b.isStopped)
|
|
|
|
|
|
|
|
|
|
|
|
if (filtered.length === 0) return { rate: '0.0', current: 0, limit: 0, count: 0 }
|
|
|
|
|
|
|
|
|
|
|
|
const current = filtered.reduce((sum, b) => sum + (b.current || 0), 0)
|
|
|
|
|
|
const limit = filtered.reduce((sum, b) => sum + (b.limit || 0), 0)
|
|
|
|
|
|
const rate = limit > 0 ? (current / limit) * 100 : 0
|
|
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
|
rate: rate.toFixed(1),
|
|
|
|
|
|
current,
|
|
|
|
|
|
limit,
|
|
|
|
|
|
count: filtered.length
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
|
week: getStatsForType(BudgetPeriodType.Week),
|
|
|
|
|
|
month: getStatsForType(BudgetPeriodType.Month),
|
|
|
|
|
|
year: getStatsForType(BudgetPeriodType.Year)
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
const getValueClass = (rate) => {
|
|
|
|
|
|
const numRate = parseFloat(rate)
|
|
|
|
|
|
if (numRate === 0) return ''
|
|
|
|
|
|
if (activeTab.value === BudgetCategory.Expense) {
|
|
|
|
|
|
if (numRate >= 100) return 'expense'
|
|
|
|
|
|
if (numRate >= 80) return 'warning'
|
|
|
|
|
|
return 'income'
|
|
|
|
|
|
} else {
|
|
|
|
|
|
if (numRate >= 100) return 'income'
|
|
|
|
|
|
if (numRate >= 80) return 'warning'
|
|
|
|
|
|
return 'expense'
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-01-06 21:15:02 +08:00
|
|
|
|
const fetchBudgetList = async () => {
|
2026-01-06 20:55:11 +08:00
|
|
|
|
try {
|
2026-01-06 21:15:02 +08:00
|
|
|
|
const res = await getBudgetList()
|
2026-01-06 20:55:11 +08:00
|
|
|
|
if (res.success) {
|
2026-01-06 21:15:02 +08:00
|
|
|
|
const data = res.data || []
|
|
|
|
|
|
expenseBudgets.value = data.filter(b => b.category === BudgetCategory.Expense)
|
|
|
|
|
|
incomeBudgets.value = data.filter(b => b.category === BudgetCategory.Income)
|
|
|
|
|
|
savingsBudgets.value = data.filter(b => b.category === BudgetCategory.Savings)
|
|
|
|
|
|
}
|
|
|
|
|
|
} catch (err) {
|
|
|
|
|
|
console.error('加载预算列表失败', err)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
onMounted(async () => {
|
|
|
|
|
|
try {
|
2026-01-07 17:33:50 +08:00
|
|
|
|
await fetchBudgetList()
|
2026-01-06 20:55:11 +08:00
|
|
|
|
} catch (err) {
|
2026-01-06 21:15:02 +08:00
|
|
|
|
console.error('获取初始化数据失败', err)
|
2026-01-06 20:55:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
const formatMoney = (val) => {
|
2026-01-06 21:15:02 +08:00
|
|
|
|
return parseFloat(val || 0).toLocaleString(undefined, { minimumFractionDigits: 2, maximumFractionDigits: 2 })
|
2026-01-06 20:55:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const getPeriodLabel = (type) => {
|
|
|
|
|
|
const map = {
|
2026-01-06 21:15:02 +08:00
|
|
|
|
[BudgetPeriodType.Week]: '本周',
|
|
|
|
|
|
[BudgetPeriodType.Month]: '本月',
|
|
|
|
|
|
[BudgetPeriodType.Year]: '本年',
|
|
|
|
|
|
[BudgetPeriodType.Longterm]: '长期'
|
2026-01-06 20:55:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
return map[type] || '周期'
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const getProgressColor = (budget) => {
|
|
|
|
|
|
const ratio = budget.current / budget.limit
|
|
|
|
|
|
if (ratio >= 1) return '#ee0a24' // 危险红色
|
|
|
|
|
|
if (ratio > 0.8) return '#ff976a' // 警告橙色
|
|
|
|
|
|
return '#1989fa' // 正常蓝色
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const getIncomeProgressColor = (budget) => {
|
|
|
|
|
|
const ratio = budget.current / budget.limit
|
|
|
|
|
|
if (ratio >= 1) return '#07c160' // 完成绿色
|
|
|
|
|
|
return '#1989fa' // 蓝色
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-01-06 21:15:02 +08:00
|
|
|
|
const refDateMap = {}
|
|
|
|
|
|
|
|
|
|
|
|
const handleSwitchPeriod = async (budget, direction) => {
|
|
|
|
|
|
if (budget.type === BudgetPeriodType.Longterm) {
|
|
|
|
|
|
showToast('长期预算不支持切换周期')
|
|
|
|
|
|
return
|
2026-01-06 20:55:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-01-06 21:15:02 +08:00
|
|
|
|
// 获取或初始化该预算的参考日期
|
|
|
|
|
|
let currentRefDate = refDateMap[budget.id] || new Date()
|
|
|
|
|
|
const date = new Date(currentRefDate)
|
|
|
|
|
|
|
|
|
|
|
|
if (budget.type === BudgetPeriodType.Week) {
|
|
|
|
|
|
date.setDate(date.getDate() + direction * 7)
|
|
|
|
|
|
} else if (budget.type === BudgetPeriodType.Month) {
|
|
|
|
|
|
date.setMonth(date.getMonth() + direction)
|
|
|
|
|
|
} else if (budget.type === BudgetPeriodType.Year) {
|
|
|
|
|
|
date.setFullYear(date.getFullYear() + direction)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
const res = await getBudgetStatistics(budget.id, date.toISOString())
|
|
|
|
|
|
if (res.success) {
|
|
|
|
|
|
refDateMap[budget.id] = date
|
|
|
|
|
|
// 更新当前列表中的预算对象信息
|
|
|
|
|
|
Object.assign(budget, res.data)
|
|
|
|
|
|
}
|
|
|
|
|
|
} catch (err) {
|
|
|
|
|
|
showToast('加载历史统计失败')
|
|
|
|
|
|
console.error('加载预算历史统计失败', err)
|
2026-01-06 20:55:11 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const handleDelete = (budget) => {
|
|
|
|
|
|
showConfirmDialog({
|
|
|
|
|
|
title: '确认删除',
|
|
|
|
|
|
message: `确定要删除预算 "${budget.name}" 吗?`,
|
2026-01-06 21:15:02 +08:00
|
|
|
|
}).then(async () => {
|
|
|
|
|
|
try {
|
|
|
|
|
|
const res = await deleteBudget(budget.id)
|
|
|
|
|
|
if (res.success) {
|
|
|
|
|
|
showToast('已删除')
|
|
|
|
|
|
fetchBudgetList()
|
|
|
|
|
|
}
|
|
|
|
|
|
} catch (err) {
|
|
|
|
|
|
showToast('删除失败')
|
|
|
|
|
|
console.error('删除预算失败', err)
|
|
|
|
|
|
}
|
2026-01-06 20:55:11 +08:00
|
|
|
|
}).catch(() => {})
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-01-06 21:15:02 +08:00
|
|
|
|
const handleToggleStop = async (budget) => {
|
|
|
|
|
|
try {
|
|
|
|
|
|
const res = await toggleStopBudget(budget.id)
|
|
|
|
|
|
if (res.success) {
|
|
|
|
|
|
showToast(budget.isStopped ? '已恢复' : '已停止')
|
|
|
|
|
|
// 切换停止状态后刷新列表
|
|
|
|
|
|
fetchBudgetList()
|
|
|
|
|
|
}
|
|
|
|
|
|
} catch (err) {
|
|
|
|
|
|
showToast('操作失败')
|
|
|
|
|
|
console.error('切换预算状态失败', err)
|
2026-01-06 20:55:11 +08:00
|
|
|
|
}
|
2026-01-06 21:15:02 +08:00
|
|
|
|
}
|
2026-01-06 20:55:11 +08:00
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
|
.budget-list {
|
|
|
|
|
|
padding-top: 8px;
|
|
|
|
|
|
padding-bottom: 20px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.budget-list :deep(.van-swipe-cell) {
|
|
|
|
|
|
margin: 0 12px 12px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.delete-button {
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
:deep(.van-tabs__nav--card) {
|
|
|
|
|
|
margin: 0 12px;
|
|
|
|
|
|
}
|
|
|
|
|
|
</style>
|