24 lines
697 B
Plaintext
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>
|
|
|