feat:初始提交uni-app项目

This commit is contained in:
2026-01-14 18:19:33 +08:00
commit 0dcbd340e6
515 changed files with 38560 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
<template>
<view class="content-title">
<view class="name">
<slot name="name"></slot>
</view>
<view class="custom">
<slot name="custom"></slot>
</view>
</view>
</template>
<script setup>
</script>
<style lang="scss" scoped>
.content-title{
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 30rpx;
.name{
font-size: 40rpx;
}
}
</style>

11
components/components.vue Normal file
View File

@@ -0,0 +1,11 @@
<template>
</template>
<script setup>
</script>
<style lang="scss" scoped>
</style>

View File

@@ -0,0 +1,93 @@
<template>
<view class="layout">
<view class="navbar">
<!-- 占位用的用于展示手机状态栏 -->
<view class="statusBar" :style="{height:getStatusBarHeight() + 'px'}"></view>
<!-- 使titleBar的高度等于胶囊的高度就可以解决标题和胶囊不在同一直线的问题 -->
<view class="titleBar" :style="{height:getTitleBarHeight() + 'px'}">
<view class="title">{{title}}</view>
<navigator url="/pages/search/search" class="search">
<uni-icons class="icon" type="search" size="18" color="#888"></uni-icons>
<text class="text">搜索</text>
</navigator>
</view>
</view>
<!-- 占位符,解决图片遮挡问题 -->
<view class="fill" :style="{height:getNavBarHeight() + 'px'}">
</view>
</view>
</template>
<script setup>
import { ref } from "vue";
import {
getStatusBarHeight,
getTitleBarHeight,
getNavBarHeight
} from "@/utils/system.js"
//接收一个对象
defineProps({
title:{
type:String,
default:"壁纸"
}
})
</script>
<style lang="scss" scoped>
.layout{
.navbar{
position: fixed;
left: 0;
top: 0;
width: 100%;
// 防止被遮挡
z-index: 10;
// background: ;
background:
// 这个百分比控制的是颜色占的广度,越小表示从页面的百分之几开始融合
//transparent 透明 = rgba(0,0,0,0)
linear-gradient(to bottom,transparent 0%,#fff 400rpx),
linear-gradient(to right,#beecd8 20%,#F4E2D8);
// .statusBar{border: 1px solid red;}
.titleBar{
display: flex;
padding: 0 30rpx;
align-items: center;
.title{
font-size: 22px;
font-weight: 700;
color: $text-font-color-1;
}
.search{
width:200rpx;
height: 50rpx;
border-radius: 60rpx;
background: rgba(255,255,255,0.4);
margin-left: 30rpx;
color: #999;
font-size: 28rpx;
display: flex;
align-items: center;
.icon{
margin-left: 5rpx;
}
.text{
padding-left: 10rpx;
}
}
}
}
}
</style>

View File

@@ -0,0 +1,112 @@
<template>
<view class="themeItem">
<navigator :url="'/pages/classlist/classlist?id='+item._id + '&name='+item.name"
class="box"
v-if="!isMore">
<!-- 组件里面使用组件名小程序要报警告 -->
<image class="pic" :src="item.picurl" mode="aspectFill"></image>
<!-- 遮罩层 -->
<view class="mask">{{item.name}}</view>
<!-- 标签 -->
<!-- 父元素里面有发布时间的时间戳 -->
<!--
这里如果更新时间超过3个月了就返回一个null
如果返回null的话就不会有xx月/xx日前更新这个标签了
-->
<view class="tab" v-if="compareTimestamp(item.updateTime)">{{compareTimestamp(item.updateTime)}}前更新</view>
</navigator>
<navigator url="/pages/classify/classify" open-type="reLaunch" class="box more" v-else>
<!-- 组件里面使用组件名小程序要报警告 -->
<image class="pic" src="/common/images/more.jpg" mode="aspectFill"></image>
<!-- 遮罩层 -->
<view class="mask">
<uni-icons type="more-filled" size="34" color="#fff"></uni-icons>
<view class="text">更多</view>
</view>
</navigator>
</view>
</template>
<script setup>
import {ref} from "vue"
import {compareTimestamp} from "@/utils/common.js"
defineProps({
isMore:{
type: Boolean,
default: false
},
item:{
type:Object,
default(){
return {
name:"默认名称",
picurl:"/common/images/classify1.jpg",
updateTime:Date.now()
}
}
}
}
)
</script>
<style lang="scss" scoped>
.themeItem {
.box {
height: 340rpx;
border-radius: 10rpx;
overflow: hidden;
// 让要布局的子元素相对于这个 class=box 的元素进行操作
position: relative;
.pic {
// 图片会有默认的宽度,你不让它继承父级的宽度,原本图片的宽度会将方框撑开
width: 100%;
height: 100%;
}
.mask {
width: 100%;
height: 70rpx;
position: absolute;
font-size: 40rpx;
font-weight: 600;
bottom: 0;
left: 0;
background: rgba(0, 0, 0, 0.2);
color: #fff;
display: flex;
align-items: center;
justify-content: center;
backdrop-filter: blur(20rpx);
}
.tab {
position: absolute;
left: 0;
top: 0;
background: rgba(250, 129, 90, 0.7);
backdrop-filter: blur(20rpx);
color: #fff;
// 浏览器最小就是11px了22rpx = 11px
font-size: 22rpx;
border-radius: 0 0 20rpx 0;
padding: 6rpx 12rpx;
transform: scale(0.8);
transform-origin: left top;
}
}
.box.more{
.mask{
width: 100%;
height: 100%;
flex-direction: column;
}
.text{
font-size: 28rpx;
}
}
}
</style>