Files
medical-mall/pages/mall/admin/order/aftersales-order/index.uvue
2026-02-02 21:45:59 +08:00

24 lines
697 B
Plaintext

<template>
<view class="page">
<view class="header">
<text class="title">{{ title }}</text>
<text class="sub-title">售后订单管理与申请处理</text>
</view>
</view>
</template>
<script setup lang="uts">
import { ref } from 'vue'
const title = ref<string>('售后订单')
</script>
<style scoped lang="scss">
@import '@/uni.scss';
.page { padding: $space-lg; }
.header { padding: $space-lg; border-radius: $radius; background: $background-primary; box-shadow: $shadow-xs; }
.title { font-size: $font-size-lg; font-weight: $font-weight-bold; color: $text-primary; }
.sub-title { margin-top: $space-xs; font-size: $font-size-md; color: $text-secondary; }
</style>