starwork-uniapp/src/pages/home/HomeSetting.vue

17 lines
606 B
Vue
Raw Normal View History

2025-01-07 16:56:58 +08:00
<template>
<view class="mx-4 px-2 py-3 bg-white rounded-2 shadow-sm text-2.5">
<view class="flex flex-items-center flex-justify-around">
<view class="text-center">
<image class="w-6 h-6" src="/static/images/icon_main_edit.webp" mode="aspectFill"></image>
<view class="mt-1">编辑首页</view>
</view>
<view class="text-center">
<image class="w-6 h-6" src="/static/images/icon_main_switch.webp" mode="aspectFill"></image>
<view class="mt-1">切换到简洁版</view>
</view>
</view>
</view>
</template>
<script setup lang="ts"></script>