This commit is contained in:
qiaojiale 2025-06-13 14:54:51 +08:00
parent 5f6ca8d800
commit 36d88c7d9b
19 changed files with 1842 additions and 1859 deletions

View File

@ -1,186 +1,169 @@
<template>
<view class="container">
<search @search="headerSearch" />
<view v-if="pageType">
<swiper class="banner" indicator-dots autoplay circular>
<swiper-item v-for="(item, index) in bannerList" :key="index">
<image class="banner_item" :src="item.pic" mode="" />
</swiper-item>
</swiper>
</view>
<view class="main">
<tabularCard
v-for="(item,index) in list"
:key="index"
:item="item"
:type="pageType"
:isLast="index === list.length -1"
:joinType="joinType"
@chooseCommunity="chooseCommunity"
/>
</view>
<nav-footer />
</view>
</template>
<script>
import { request, picUrl, uniqueByField } from '../../../utils';
import { apiArr } from '../../../api/community';
export default {
data() {
return {
pageType: 2,
page_num: 1,
page_size: 10,
list: [],
bannerList: [{
pic: 'https://wechat-img-file.oss-cn-beijing.aliyuncs.com/community/_assets/Group_62.png'
},
{
pic: 'https://wechat-img-file.oss-cn-beijing.aliyuncs.com/community/_assets/Group_62.png'
},
{
pic: 'https://wechat-img-file.oss-cn-beijing.aliyuncs.com/community/_assets/Group_62.png'
},
],
blurdesc: '', //
flag: false,
choose: true,
joinType: "2"
}
},
onLoad(options) {
console.log('1231', options);
//
uni.setNavigationBarTitle({
title: options.title || '社区列表'
})
this.pageType = options?.type || '';
this.joinType = options?.joinType || '2'
// types === 2
if(options?.types == 2){
this.init(options?.type || '');
}else{
this.getUserCommunity()
}
},
methods: {
//
headerSearch(item) {
console.log('1', item);
let value = item.detail.__args__[0].value;
console.log('12112313221', value)
this.blurdesc = value;
this.page_num = 1;
this.flag = false,
this.list = [],
this.init();
},
async init(type) {
console.log('12313', this);
const {
list,
page_num,
page_size,
blurdesc
} = this;
let url;
// type
if (type) {
url = 'bianming'
} else {
url = apiArr.list
}
const res = await request(url, 'POST', {
page_num,
page_size,
name: blurdesc || ''
});
console.log('11231321', res);
let flag = false;
if (res?.rows && res?.rows?.length == this.page_size) {
flag = true
} else {
flag = false
}
res?.rows && res?.rows.forEach(item => {
item.pic = picUrl + item.pic
});
console.log('变更后的', res);
this.list = list.concat(res.rows || []),
this.page_num = this.page_num + 1;
this.flag = flag;
},
async getUserCommunity() {
const { page_num, page_size, blurdesc } = this;
let param = {
page_num,
page_size,
};
if (blurdesc !== '') {
param = {
page_num,
page_size,
name: blurdesc,
};
}
const res = await request(apiArr.getUserCommunity, 'POST', param);
console.log('reeee', res);
let communityList = []
if(res?.rows){
communityList = uniqueByField(res.rows,'community_id')
}
communityList = communityList.map( item => item.community)
if(communityList.length == 0){
this.init(this.pageType || '');
}else{
communityList.forEach(item => {
item.pic = picUrl + item.pic
});
console.log('变更后的', communityList);
this.list = communityList;
}
},
chooseCommunity(e){
console.log(e,'eeeee');
return;
// let community_id = e.detail
const pages = getCurrentPages();
if (pages.length < 2) return; //
const prevPage = pages[pages.length - 2]; //
// updateData
if (prevPage.updateData) {
prevPage.updateData(e.detail);
}
},
},
onReachBottom() {
if (this.flag) {
this.init(this.pageType);
};
},
}
</script>
<style>
@import url("./index.css");
<template>
<view class="container">
<nav-footer />
</view>
</template>
<script>
import { request, picUrl, uniqueByField } from '../../../utils';
import { apiArr } from '../../../api/community';
export default {
data() {
return {
pageType: 2,
page_num: 1,
page_size: 10,
list: [],
bannerList: [{
pic: 'https://wechat-img-file.oss-cn-beijing.aliyuncs.com/community/_assets/Group_62.png'
},
{
pic: 'https://wechat-img-file.oss-cn-beijing.aliyuncs.com/community/_assets/Group_62.png'
},
{
pic: 'https://wechat-img-file.oss-cn-beijing.aliyuncs.com/community/_assets/Group_62.png'
},
],
blurdesc: '', //
flag: false,
choose: true,
joinType: "2"
}
},
onLoad(options) {
console.log('1231', options);
//
uni.setNavigationBarTitle({
title: options.title || '社区列表'
})
this.pageType = options?.type || '';
this.joinType = options?.joinType || '2'
// types === 2
if(options?.types == 2){
this.init(options?.type || '');
}else{
this.getUserCommunity()
}
},
methods: {
//
headerSearch(item) {
console.log('1', item);
let value = item.detail.__args__[0].value;
console.log('12112313221', value)
this.blurdesc = value;
this.page_num = 1;
this.flag = false,
this.list = [],
this.init();
},
async init(type) {
console.log('12313', this);
const {
list,
page_num,
page_size,
blurdesc
} = this;
let url;
// type
if (type) {
url = 'bianming'
} else {
url = apiArr.list
}
const res = await request(url, 'POST', {
page_num,
page_size,
name: blurdesc || ''
});
console.log('11231321', res);
let flag = false;
if (res?.rows && res?.rows?.length == this.page_size) {
flag = true
} else {
flag = false
}
res?.rows && res?.rows.forEach(item => {
item.pic = picUrl + item.pic
});
console.log('变更后的', res);
this.list = list.concat(res.rows || []),
this.page_num = this.page_num + 1;
this.flag = flag;
},
async getUserCommunity() {
const { page_num, page_size, blurdesc } = this;
let param = {
page_num,
page_size,
};
if (blurdesc !== '') {
param = {
page_num,
page_size,
name: blurdesc,
};
}
const res = await request(apiArr.getUserCommunity, 'POST', param);
console.log('reeee', res);
let communityList = []
if(res?.rows){
communityList = uniqueByField(res.rows,'community_id')
}
communityList = communityList.map( item => item.community)
if(communityList.length == 0){
this.init(this.pageType || '');
}else{
communityList.forEach(item => {
item.pic = picUrl + item.pic
});
console.log('变更后的', communityList);
this.list = communityList;
}
},
chooseCommunity(e){
console.log(e,'eeeee');
return;
// let community_id = e.detail
const pages = getCurrentPages();
if (pages.length < 2) return; //
const prevPage = pages[pages.length - 2]; //
// updateData
if (prevPage.updateData) {
prevPage.updateData(e.detail);
}
},
},
onReachBottom() {
if (this.flag) {
this.init(this.pageType);
};
},
}
</script>
<style>
@import url("./index.css");
</style>

View File

@ -1,364 +1,364 @@
{
"pages": [ //pageshttps://uniapp.dcloud.io/collocation/pages
{
"path": "pages/index/index",
"style": {
"navigationStyle": "custom",
"usingComponents": {
"nav-footer": "/components/nav/nav"
}
}
},
{
"path": "pages/login/login",
"style": {
"navigationBarTitleText": ""
}
},
{
"path": "pages/shopcity/shopcity",
"style": {
"navigationBarTitleText": ""
}
},
{
"path": "pages/webview/webview",
"style": {
"navigationBarTitleText": ""
}
},
{
"path": "pages/user/index",
"style": {
"navigationBarTitleText": "",
"navigationStyle": "custom",
"usingComponents": {
"nav-footer": "/components/nav/nav"
}
}
},
{
"path" : "packages/health/index/index",
"style" :
{
"navigationBarTitleText" : "智慧康养"
}
},
{
"path" : "packages/health/express/express",
"style" :
{
"navigationBarTitleText" : ""
}
},
{
"path" : "packages/health/selfTest/selfTest",
"style" :
{
"navigationBarTitleText" : ""
}
},
{
"path" : "packages/health/reportList/reportList",
"style" :
{
"navigationBarTitleText" : "体检报告"
}
},
{
"path" : "packages/health/reportDesc/reportDesc",
"style" :
{
"navigationBarTitleText" : ""
}
}
],
"subPackages": [{
"root": "kitchen",
"pages": [{
"path": "index/index",
"style": {
"navigationBarTitleText": "厨房介绍",
"navigationBarBackgroundColor": "#F9F9F9"
}
},
{
"path": "pay/index",
"style": {
"navigationBarTitleText": "立即支付"
}
},
{
"path": "recharge/index",
"style": {
"navigationStyle": "custom"
}
}
]
},
{
"root": "packages/publicServer",
"pages": [{
"path": "index/index",
"style": {
"navigationBarTitleText": "便民服务",
"usingComponents": {
"nav-footer": "/components/nav/nav"
}
}
}
]
},
{
"root": "reservation",
"pages": [{
"path": "index/index",
"style": {
"navigationBarTitleText": "活动列表",
"usingComponents": {
"dropdown": "/components/dropdown/dropdown"
}
}
},
{
"path": "receive/index",
"style": {
"navigationBarTitleText": "我的预约"
}
},
{
"path": "pickPoint/index",
"style": {
"navigationBarTitleText": "自提点"
}
},
{
"path": "ticketCode/index",
"style": {
"navigationBarTitleText": "券码"
}
}
]
},
{
"root": "packages/community",
"pages": [{
"path": "index/index",
"style": {
"navigationBarTitleText": "社区列表",
"usingComponents": {
"tabularCard": "/components/tabularCard/tabularCard",
"search": "/components/search/search",
"nav-footer": "/components/nav/nav"
}
}
},
{
"path": "communityDetail/index",
"style": {
"navigationBarBackgroundColor": "#F9F9F9"
}
},
{
"path": "notice/index",
"style": {
"navigationBarTitleText": ""
}
},
{
"path": "desc/desc",
"style": {
"navigationBarTitleText": ""
}
},
{
"path": "applyOwer/index",
"style": {
"navigationBarTitleText": ""
}
},
{
"path": "mycar/index",
"style": {
"navigationBarTitleText": "我的车辆"
}
},
{
"path": "oneRepair/index",
"style": {
"navigationBarTitleText": "报事报修"
}
},
{
"path": "repairList/index",
"style": {
"navigationBarTitleText": ""
}
},
{
"path": "repairDetail/index",
"style": {
"navigationBarTitleText": ""
}
},
{
"path": "chooseMsg/index",
"style": {
"navigationBarTitleText": ""
}
},
{
"path": "addCar/index",
"style": {
"navigationBarBackgroundColor": "#F9F9F9"
}
},
{
"path": "ownerList/index",
"style": {
}
}
]
},
{
"root": "shopWrite",
"pages": [{
"path": "index/index",
"style": {
"navigationBarTitleText": "订单核销"
}
},
{
"path": "list/index",
"style": {
"navigationBarTitleText": "核销列表"
}
}
]
},
{
"root": "packages/user",
"pages": [{
"path": "index/index",
"style": {
"navigationBarTitleText": "账户信息",
"navigationBarBackgroundColor": "#F9F9F9",
"usingComponents": {
"nav-footer": "/components/nav/nav"
}
}
},
{
"path": "uploadAvatar/index",
"style": {
"navigationBarTitleText": "上传头像",
"navigationBarBackgroundColor": "#F9F9F9",
"usingComponents": {
"nav-footer": "/components/nav/nav"
}
}
},
{
"path": "resetPwd/index",
"style": {
"navigationBarBackgroundColor": "#F9F9F9",
"usingComponents": {
"nav-footer": "/components/nav/nav"
}
}
},
{
"path": "points/index",
"style": {
"navigationBarTitleText": "积分",
"usingComponents": {
"nav-footer": "/components/nav/nav"
}
}
},
{
"path": "pointsSign/index",
"style": {
"navigationStyle": "custom",
"usingComponents": {
"nav-footer": "/components/nav/nav"
}
}
},
{
"path": "pointsRule/index",
"style": {
"navigationBarTitleText": "积分规则",
"usingComponents": {
"nav-footer": "/components/nav/nav"
}
}
},
{
"path": "marketing/index",
"style": {
"navigationBarTitleText": "营销推广",
"usingComponents": {
"nav-footer": "/components/nav/nav"
}
}
},
{
"path": "share/index",
"style": {
"navigationStyle": "custom"
}
},
{
"path": "customerService/index",
"style": {}
}
]
},
{
"root": "packages/communityService",
"pages": [
{
"path": "index/index",
"style": {
"navigationBarTitleText": "社区服务",
"usingComponents": {
"nav-footer": "/components/nav/nav"
}
}
},
{
"path": "shopDetail/index",
"style": {}
},
{
"path": "serviceMore/index",
"style": {}
},
{
"path": "reservation/index",
"style": {}
},
{
"path": "reservationApply/index",
"style": {
"usingComponents": {
"areaPopup": "/components/areaPopup/areaPopup"
}
}
}
]
}
],
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "uni-app",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8"
},
"uniIdRouter": {}
{
"pages": [ //pageshttps://uniapp.dcloud.io/collocation/pages
{
"path": "pages/index/index",
"style": {
"navigationStyle": "custom",
"usingComponents": {
"nav-footer": "/components/nav/nav"
}
}
},
{
"path": "pages/login/login",
"style": {
"navigationBarTitleText": ""
}
},
{
"path": "pages/shopcity/shopcity",
"style": {
"navigationBarTitleText": ""
}
},
{
"path": "pages/webview/webview",
"style": {
"navigationBarTitleText": ""
}
},
{
"path": "pages/user/index",
"style": {
"navigationBarTitleText": "",
"navigationStyle": "custom",
"usingComponents": {
"nav-footer": "/components/nav/nav"
}
}
},
{
"path" : "packages/health/index/index",
"style" :
{
"navigationBarTitleText" : "智慧康养"
}
},
{
"path" : "packages/health/express/express",
"style" :
{
"navigationBarTitleText" : ""
}
},
{
"path" : "packages/health/selfTest/selfTest",
"style" :
{
"navigationBarTitleText" : ""
}
},
{
"path" : "packages/health/reportList/reportList",
"style" :
{
"navigationBarTitleText" : "体检报告"
}
},
{
"path" : "packages/health/reportDesc/reportDesc",
"style" :
{
"navigationBarTitleText" : ""
}
}
],
"subPackages": [{
"root": "kitchen",
"pages": [{
"path": "index/index",
"style": {
"navigationBarTitleText": "厨房介绍",
"navigationBarBackgroundColor": "#F9F9F9"
}
},
{
"path": "pay/index",
"style": {
"navigationBarTitleText": "立即支付"
}
},
{
"path": "recharge/index",
"style": {
"navigationStyle": "custom"
}
}
]
},
{
"root": "packages/publicServer",
"pages": [{
"path": "index/index",
"style": {
"navigationBarTitleText": "便民服务",
"usingComponents": {
"nav-footer": "/components/nav/nav"
}
}
}
]
},
{
"root": "reservation",
"pages": [{
"path": "index/index",
"style": {
"navigationBarTitleText": "活动列表",
"usingComponents": {
"dropdown": "/components/dropdown/dropdown"
}
}
},
{
"path": "receive/index",
"style": {
"navigationBarTitleText": "我的预约"
}
},
{
"path": "pickPoint/index",
"style": {
"navigationBarTitleText": "自提点"
}
},
{
"path": "ticketCode/index",
"style": {
"navigationBarTitleText": "券码"
}
}
]
},
{
"root": "packages/community",
"pages": [{
"path": "index/index",
"style": {
"navigationBarTitleText": "我的房产",
"usingComponents": {
"tabularCard": "/components/tabularCard/tabularCard",
"search": "/components/search/search",
"nav-footer": "/components/nav/nav"
}
}
},
{
"path": "communityDetail/index",
"style": {
"navigationBarBackgroundColor": "#F9F9F9"
}
},
{
"path": "notice/index",
"style": {
"navigationBarTitleText": ""
}
},
{
"path": "desc/desc",
"style": {
"navigationBarTitleText": ""
}
},
{
"path": "applyOwer/index",
"style": {
"navigationBarTitleText": ""
}
},
{
"path": "mycar/index",
"style": {
"navigationBarTitleText": "我的车辆"
}
},
{
"path": "oneRepair/index",
"style": {
"navigationBarTitleText": "报事报修"
}
},
{
"path": "repairList/index",
"style": {
"navigationBarTitleText": ""
}
},
{
"path": "repairDetail/index",
"style": {
"navigationBarTitleText": ""
}
},
{
"path": "chooseMsg/index",
"style": {
"navigationBarTitleText": ""
}
},
{
"path": "addCar/index",
"style": {
"navigationBarBackgroundColor": "#F9F9F9"
}
},
{
"path": "ownerList/index",
"style": {
}
}
]
},
{
"root": "shopWrite",
"pages": [{
"path": "index/index",
"style": {
"navigationBarTitleText": "订单核销"
}
},
{
"path": "list/index",
"style": {
"navigationBarTitleText": "核销列表"
}
}
]
},
{
"root": "packages/user",
"pages": [{
"path": "index/index",
"style": {
"navigationBarTitleText": "账户信息",
"navigationBarBackgroundColor": "#F9F9F9",
"usingComponents": {
"nav-footer": "/components/nav/nav"
}
}
},
{
"path": "uploadAvatar/index",
"style": {
"navigationBarTitleText": "上传头像",
"navigationBarBackgroundColor": "#F9F9F9",
"usingComponents": {
"nav-footer": "/components/nav/nav"
}
}
},
{
"path": "resetPwd/index",
"style": {
"navigationBarBackgroundColor": "#F9F9F9",
"usingComponents": {
"nav-footer": "/components/nav/nav"
}
}
},
{
"path": "points/index",
"style": {
"navigationBarTitleText": "积分",
"usingComponents": {
"nav-footer": "/components/nav/nav"
}
}
},
{
"path": "pointsSign/index",
"style": {
"navigationStyle": "custom",
"usingComponents": {
"nav-footer": "/components/nav/nav"
}
}
},
{
"path": "pointsRule/index",
"style": {
"navigationBarTitleText": "积分规则",
"usingComponents": {
"nav-footer": "/components/nav/nav"
}
}
},
{
"path": "marketing/index",
"style": {
"navigationBarTitleText": "营销推广",
"usingComponents": {
"nav-footer": "/components/nav/nav"
}
}
},
{
"path": "share/index",
"style": {
"navigationStyle": "custom"
}
},
{
"path": "customerService/index",
"style": {}
}
]
},
{
"root": "packages/communityService",
"pages": [
{
"path": "index/index",
"style": {
"navigationBarTitleText": "社区服务",
"usingComponents": {
"nav-footer": "/components/nav/nav"
}
}
},
{
"path": "shopDetail/index",
"style": {}
},
{
"path": "serviceMore/index",
"style": {}
},
{
"path": "reservation/index",
"style": {}
},
{
"path": "reservationApply/index",
"style": {
"usingComponents": {
"areaPopup": "/components/areaPopup/areaPopup"
}
}
}
]
}
],
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "uni-app",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8"
},
"uniIdRouter": {}
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1,259 +1,259 @@
@charset "UTF-8";
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
*/
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
@charset "UTF-8";
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
*/
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
/* 注意要写在第一行同时给style标签加入lang="scss"属性 */
.u-line-1 {
display: -webkit-box !important;
overflow: hidden;
text-overflow: ellipsis;
word-break: break-all;
-webkit-line-clamp: 1;
.u-line-1 {
display: -webkit-box !important;
overflow: hidden;
text-overflow: ellipsis;
word-break: break-all;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical !important;
}
.u-line-2 {
display: -webkit-box !important;
overflow: hidden;
text-overflow: ellipsis;
word-break: break-all;
-webkit-line-clamp: 2;
.u-line-2 {
display: -webkit-box !important;
overflow: hidden;
text-overflow: ellipsis;
word-break: break-all;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical !important;
}
.u-line-3 {
display: -webkit-box !important;
overflow: hidden;
text-overflow: ellipsis;
word-break: break-all;
-webkit-line-clamp: 3;
.u-line-3 {
display: -webkit-box !important;
overflow: hidden;
text-overflow: ellipsis;
word-break: break-all;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical !important;
}
.u-line-4 {
display: -webkit-box !important;
overflow: hidden;
text-overflow: ellipsis;
word-break: break-all;
-webkit-line-clamp: 4;
.u-line-4 {
display: -webkit-box !important;
overflow: hidden;
text-overflow: ellipsis;
word-break: break-all;
-webkit-line-clamp: 4;
-webkit-box-orient: vertical !important;
}
.u-line-5 {
display: -webkit-box !important;
overflow: hidden;
text-overflow: ellipsis;
word-break: break-all;
-webkit-line-clamp: 5;
.u-line-5 {
display: -webkit-box !important;
overflow: hidden;
text-overflow: ellipsis;
word-break: break-all;
-webkit-line-clamp: 5;
-webkit-box-orient: vertical !important;
}
.u-border {
border-width: 0.5px !important;
border-color: #dadbde !important;
.u-border {
border-width: 0.5px !important;
border-color: #dadbde !important;
border-style: solid;
}
.u-border-top {
border-top-width: 0.5px !important;
border-color: #dadbde !important;
.u-border-top {
border-top-width: 0.5px !important;
border-color: #dadbde !important;
border-top-style: solid;
}
.u-border-left {
border-left-width: 0.5px !important;
border-color: #dadbde !important;
.u-border-left {
border-left-width: 0.5px !important;
border-color: #dadbde !important;
border-left-style: solid;
}
.u-border-right {
border-right-width: 0.5px !important;
border-color: #dadbde !important;
.u-border-right {
border-right-width: 0.5px !important;
border-color: #dadbde !important;
border-right-style: solid;
}
.u-border-bottom {
border-bottom-width: 0.5px !important;
border-color: #dadbde !important;
.u-border-bottom {
border-bottom-width: 0.5px !important;
border-color: #dadbde !important;
border-bottom-style: solid;
}
.u-border-top-bottom {
border-top-width: 0.5px !important;
border-bottom-width: 0.5px !important;
border-color: #dadbde !important;
border-top-style: solid;
.u-border-top-bottom {
border-top-width: 0.5px !important;
border-bottom-width: 0.5px !important;
border-color: #dadbde !important;
border-top-style: solid;
border-bottom-style: solid;
}
.u-reset-button {
padding: 0;
background-color: transparent;
font-size: inherit;
line-height: inherit;
.u-reset-button {
padding: 0;
background-color: transparent;
font-size: inherit;
line-height: inherit;
color: inherit;
}
.u-reset-button::after {
.u-reset-button::after {
border: none;
}
.u-hover-class {
.u-hover-class {
opacity: 0.7;
}
.u-primary-light {
.u-primary-light {
color: #ecf5ff;
}
.u-warning-light {
.u-warning-light {
color: #fdf6ec;
}
.u-success-light {
.u-success-light {
color: #f5fff0;
}
.u-error-light {
.u-error-light {
color: #fef0f0;
}
.u-info-light {
.u-info-light {
color: #f4f4f5;
}
.u-primary-light-bg {
.u-primary-light-bg {
background-color: #ecf5ff;
}
.u-warning-light-bg {
.u-warning-light-bg {
background-color: #fdf6ec;
}
.u-success-light-bg {
.u-success-light-bg {
background-color: #f5fff0;
}
.u-error-light-bg {
.u-error-light-bg {
background-color: #fef0f0;
}
.u-info-light-bg {
.u-info-light-bg {
background-color: #f4f4f5;
}
.u-primary-dark {
.u-primary-dark {
color: #398ade;
}
.u-warning-dark {
.u-warning-dark {
color: #f1a532;
}
.u-success-dark {
.u-success-dark {
color: #53c21d;
}
.u-error-dark {
.u-error-dark {
color: #e45656;
}
.u-info-dark {
.u-info-dark {
color: #767a82;
}
.u-primary-dark-bg {
.u-primary-dark-bg {
background-color: #398ade;
}
.u-warning-dark-bg {
.u-warning-dark-bg {
background-color: #f1a532;
}
.u-success-dark-bg {
.u-success-dark-bg {
background-color: #53c21d;
}
.u-error-dark-bg {
.u-error-dark-bg {
background-color: #e45656;
}
.u-info-dark-bg {
.u-info-dark-bg {
background-color: #767a82;
}
.u-primary-disabled {
.u-primary-disabled {
color: #9acafc;
}
.u-warning-disabled {
.u-warning-disabled {
color: #f9d39b;
}
.u-success-disabled {
.u-success-disabled {
color: #a9e08f;
}
.u-error-disabled {
.u-error-disabled {
color: #f7b2b2;
}
.u-info-disabled {
.u-info-disabled {
color: #c4c6c9;
}
.u-primary {
.u-primary {
color: #3c9cff;
}
.u-warning {
.u-warning {
color: #f9ae3d;
}
.u-success {
.u-success {
color: #5ac725;
}
.u-error {
.u-error {
color: #f56c6c;
}
.u-info {
.u-info {
color: #909399;
}
.u-primary-bg {
.u-primary-bg {
background-color: #3c9cff;
}
.u-warning-bg {
.u-warning-bg {
background-color: #f9ae3d;
}
.u-success-bg {
.u-success-bg {
background-color: #5ac725;
}
.u-error-bg {
.u-error-bg {
background-color: #f56c6c;
}
.u-info-bg {
.u-info-bg {
background-color: #909399;
}
.u-main-color {
.u-main-color {
color: #303133;
}
.u-content-color {
.u-content-color {
color: #606266;
}
.u-tips-color {
.u-tips-color {
color: #909193;
}
.u-light-color {
.u-light-color {
color: #c0c4cc;
}
.u-safe-area-inset-top {
padding-top: 0;
padding-top: constant(safe-area-inset-top);
.u-safe-area-inset-top {
padding-top: 0;
padding-top: constant(safe-area-inset-top);
padding-top: env(safe-area-inset-top);
}
.u-safe-area-inset-right {
padding-right: 0;
padding-right: constant(safe-area-inset-right);
.u-safe-area-inset-right {
padding-right: 0;
padding-right: constant(safe-area-inset-right);
padding-right: env(safe-area-inset-right);
}
.u-safe-area-inset-bottom {
padding-bottom: 0;
padding-bottom: constant(safe-area-inset-bottom);
.u-safe-area-inset-bottom {
padding-bottom: 0;
padding-bottom: constant(safe-area-inset-bottom);
padding-bottom: env(safe-area-inset-bottom);
}
.u-safe-area-inset-left {
padding-left: 0;
padding-left: constant(safe-area-inset-left);
.u-safe-area-inset-left {
padding-left: 0;
padding-left: constant(safe-area-inset-left);
padding-left: env(safe-area-inset-left);
}
::-webkit-scrollbar {
display: none;
width: 0 !important;
height: 0 !important;
-webkit-appearance: none;
::-webkit-scrollbar {
display: none;
width: 0 !important;
height: 0 !important;
-webkit-appearance: none;
background: transparent;
}
}

File diff suppressed because it is too large Load Diff

View File

@ -1,498 +1,498 @@
.content {
display: flex;
flex-direction: column;
align-items: center;
.content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.logo {
height: 200rpx;
width: 200rpx;
margin-top: 200rpx;
margin-left: auto;
margin-right: auto;
.logo {
height: 200rpx;
width: 200rpx;
margin-top: 200rpx;
margin-left: auto;
margin-right: auto;
margin-bottom: 50rpx;
}
.text-area {
display: flex;
.text-area {
display: flex;
justify-content: center;
}
.title {
font-size: 36rpx;
.title {
font-size: 36rpx;
color: #8f8f94;
}
.nav-box {
box-sizing: border-box;
width: 100%;
position: relative;
/* position: fixed; */
.nav-box {
box-sizing: border-box;
width: 100%;
position: relative;
/* position: fixed; */
z-index: 2;
}
.nav-box .nav-bar {
display: flex;
.nav-box .nav-bar {
display: flex;
align-items: center;
}
.nav-box .nav-bar .nav-bar-left,
.nav-box .nav-bar .nav-bar-right {
padding: 0 20rpx;
.nav-box .nav-bar .nav-bar-left,
.nav-box .nav-bar .nav-bar-right {
padding: 0 20rpx;
min-width: 36rpx;
}
.nav-box .nav-bar .nav-bar-left van-icon {
vertical-align: sub;
.nav-box .nav-bar .nav-bar-left van-icon {
vertical-align: sub;
color: #333333;
}
.nav-box .nav-bar .nav-bar-title {
flex: 1;
text-align: center;
font-weight: 400;
font-size: 36rpx;
.nav-box .nav-bar .nav-bar-title {
flex: 1;
text-align: center;
font-weight: 400;
font-size: 36rpx;
color: #000000;
}
.nav-box .nav-bar-title {
.nav-box .nav-bar-title {
margin-left: -20rpx;
}
.indexBg {
width: 750rpx;
height: 775rpx;
position: absolute;
top: -20rpx;
left: 0;
.indexBg {
width: 750rpx;
height: 775rpx;
position: absolute;
top: -20rpx;
left: 0;
z-index: -1;
}
.searchBox {
display: flex;
align-items: center;
margin: 0 20rpx;
margin-top: 35rpx;
.searchBox {
display: flex;
align-items: center;
margin: 0 20rpx;
margin-top: 35rpx;
justify-content: space-between;
}
.searchBox_add {
display: flex;
align-items: center;
font-weight: 400;
font-size: 26rpx;
.searchBox_add {
display: flex;
align-items: center;
font-weight: 400;
font-size: 26rpx;
color: #000000;
}
.searchBox_add image {
width: 33rpx;
height: 33rpx;
.searchBox_add image {
width: 33rpx;
height: 33rpx;
margin-right: 10rpx;
}
.iptbox {
width: 480rpx;
height: 60rpx;
background: #FFFFFF;
border-radius: 100rpx;
display: flex;
align-items: center;
box-sizing: border-box;
padding: 0 15rpx;
justify-content: space-between;
font-weight: 400;
font-size: 26rpx;
.iptbox {
width: 480rpx;
height: 60rpx;
background: #FFFFFF;
border-radius: 100rpx;
display: flex;
align-items: center;
box-sizing: border-box;
padding: 0 15rpx;
justify-content: space-between;
font-weight: 400;
font-size: 26rpx;
color: #000000;
}
.iptbox image {
width: 33rpx;
.iptbox image {
width: 33rpx;
height: 33rpx;
}
.map {
display: flex;
flex-direction: column;
align-items: center;
font-weight: 400;
font-size: 20rpx;
color: #222222;
.map {
display: flex;
flex-direction: column;
align-items: center;
font-weight: 400;
font-size: 20rpx;
color: #222222;
margin-left: 20rpx;
}
.map image {
width: 31rpx;
height: 31rpx;
.map image {
width: 31rpx;
height: 31rpx;
margin-bottom: 6rpx;
}
.searchBox_msg {
display: flex;
.searchBox_msg {
display: flex;
align-items: center;
}
.swiper {
width: 710rpx;
height: 300rpx;
margin: 0 auto;
margin-top: 30rpx;
.swiper {
width: 710rpx;
height: 300rpx;
margin: 0 auto;
margin-top: 30rpx;
position: relative;
}
.cirList {
position: absolute;
left: 50%;
bottom: 22rpx;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
display: flex;
.cirList {
position: absolute;
left: 50%;
bottom: 22rpx;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
display: flex;
align-items: center;
}
.cir {
width: 6rpx;
height: 6rpx;
border-radius: 50%;
background-color: #fff;
.cir {
width: 6rpx;
height: 6rpx;
border-radius: 50%;
background-color: #fff;
margin-right: 6rpx;
}
.active {
width: 12rpx;
height: 6rpx;
.active {
width: 12rpx;
height: 6rpx;
border-radius: 100rpx;
}
.tabList {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
padding: 0 50rpx;
.tabList {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
padding: 0 50rpx;
margin-top: 40rpx;
}
.tabItem {
width: 33.33%;
display: flex;
flex-direction: column;
align-items: center;
font-weight: 400;
font-size: 26rpx;
color: #222222;
margin-bottom: 46rpx;
height: 100rpx;
.tabItem {
width: 33.33%;
display: flex;
flex-direction: column;
align-items: center;
font-weight: 400;
font-size: 26rpx;
color: #222222;
margin-bottom: 46rpx;
height: 100rpx;
justify-content: space-between;
}
.tabImg {
width: 54rpx;
max-height: 54rpx;
.tabImg {
width: 54rpx;
max-height: 54rpx;
height: 54rpx;
}
.tabImg image {
width: 100%;
.tabImg image {
width: 100%;
height: 100%;
}
.Tit {
font-weight: bold;
font-size: 32rpx;
color: #222222;
margin-left: 20rpx;
.Tit {
font-weight: bold;
font-size: 32rpx;
color: #222222;
margin-left: 20rpx;
margin-bottom: 40rpx;
}
.serverList {
display: flex;
flex-wrap: wrap;
align-items: center;
margin-left: 20rpx;
margin-right: 20rpx;
.serverList {
display: flex;
flex-wrap: wrap;
align-items: center;
margin-left: 20rpx;
margin-right: 20rpx;
justify-content: space-between;
}
.serverItem {
border-radius: 30rpx;
width: 345rpx;
height: 188rpx;
box-sizing: border-box;
padding-top: 30rpx;
padding-left: 40rpx;
font-weight: bold;
font-size: 26rpx;
color: #222222;
position: relative;
.serverItem {
border-radius: 30rpx;
width: 345rpx;
height: 188rpx;
box-sizing: border-box;
padding-top: 30rpx;
padding-left: 40rpx;
font-weight: bold;
font-size: 26rpx;
color: #222222;
position: relative;
margin-bottom: 20rpx;
}
.serverItem1 {
.serverItem1 {
background: linear-gradient(139deg, #FEF4F4 0%, #FEDCD2 100%);
}
.serverItem2 {
.serverItem2 {
background: #F7F7F7;
}
.serverItem3 {
.serverItem3 {
background: linear-gradient(139deg, #FEFBF4 0%, #FEEFD2 100%);
}
.serverItem4 {
.serverItem4 {
background: #EFF3FF;
}
.serverItem1 image {
position: absolute;
right: 13rpx;
top: 25rpx;
width: 172rpx;
.serverItem1 image {
position: absolute;
right: 13rpx;
top: 25rpx;
width: 172rpx;
height: 172rpx;
}
.serverItem2 image {
position: absolute;
right: 12rpx;
top: 57rpx;
width: 190rpx;
.serverItem2 image {
position: absolute;
right: 12rpx;
top: 57rpx;
width: 190rpx;
height: 127rpx;
}
.serverItem3 image {
width: 138rpx;
height: 123rpx;
position: absolute;
right: 30rpx;
.serverItem3 image {
width: 138rpx;
height: 123rpx;
position: absolute;
right: 30rpx;
top: 50rpx;
}
.serverItem4 image {
width: 143rpx;
height: 143rpx;
position: absolute;
top: 37rpx;
.serverItem4 image {
width: 143rpx;
height: 143rpx;
position: absolute;
top: 37rpx;
right: 16rpx;
}
.List_tabList {
display: flex;
align-items: center;
margin: 0 20rpx;
.List_tabList {
display: flex;
align-items: center;
margin: 0 20rpx;
margin-top: 24rpx;
}
.List_tabItem {
font-weight: 400;
font-size: 28rpx;
color: #555555;
.List_tabItem {
font-weight: 400;
font-size: 28rpx;
color: #555555;
margin-right: 60rpx;
}
.List_active {
font-weight: bold;
font-size: 32rpx;
color: #222222;
.List_active {
font-weight: bold;
font-size: 32rpx;
color: #222222;
position: relative;
}
.List_active::after {
width: 63rpx;
height: 10rpx;
background: #FF512A;
border-radius: 0rpx;
content: '';
position: absolute;
left: 50%;
bottom: -10rpx;
-webkit-transform: translateX(-50%);
.List_active::after {
width: 63rpx;
height: 10rpx;
background: #FF512A;
border-radius: 0rpx;
content: '';
position: absolute;
left: 50%;
bottom: -10rpx;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
}
.List_active::before {
content: '';
width: 63rpx;
height: 10rpx;
background: #FF512A;
border-radius: 0rpx;
-webkit-filter: blur(6.599999904632568rpx);
filter: blur(6.599999904632568rpx);
position: absolute;
left: 50%;
bottom: -10rpx;
-webkit-transform: translateX(-50%);
.List_active::before {
content: '';
width: 63rpx;
height: 10rpx;
background: #FF512A;
border-radius: 0rpx;
-webkit-filter: blur(6.599999904632568rpx);
filter: blur(6.599999904632568rpx);
position: absolute;
left: 50%;
bottom: -10rpx;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
}
.List {
margin: 0 20rpx;
.List {
margin: 0 20rpx;
margin-top: 30rpx;
}
.List_Item {
padding-top: 10rpx;
padding-bottom: 30rpx;
.List_Item {
padding-top: 10rpx;
padding-bottom: 30rpx;
display: flex;
}
.List .List_Item:last-of-type .Item_msg {
.List .List_Item:last-of-type .Item_msg {
border-bottom: none;
}
.Item_img {
width: 180rpx;
height: 180rpx;
border-radius: 30rpx;
.Item_img {
width: 180rpx;
height: 180rpx;
border-radius: 30rpx;
margin-right: 30rpx;
}
.Item_msg {
flex: 1;
padding-bottom: 55rpx;
.Item_msg {
flex: 1;
padding-bottom: 55rpx;
border-bottom: 1rpx solid #E6E6E6;
}
.Item_top {
display: flex;
align-items: center;
.Item_top {
display: flex;
align-items: center;
justify-content: space-between;
}
.Item_top_name {
font-weight: 400;
font-size: 32rpx;
.Item_top_name {
font-weight: 400;
font-size: 32rpx;
color: #000000;
}
.Item_top_apart {
font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
font-weight: 400;
font-size: 22rpx;
.Item_top_apart {
font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
font-weight: 400;
font-size: 22rpx;
color: #a8682bcc;
}
.Item_sceond {
font-weight: 400;
font-size: 24rpx;
color: #555555;
.Item_sceond {
font-weight: 400;
font-size: 24rpx;
color: #555555;
margin-top: 15rpx;
}
.Item_third {
display: flex;
align-items: center;
font-weight: 400;
font-size: 24rpx;
color: #999999;
.Item_third {
display: flex;
align-items: center;
font-weight: 400;
font-size: 24rpx;
color: #999999;
margin-top: 18rpx;
}
.Item_third image {
width: 24rpx;
height: 26rpx;
.Item_third image {
width: 24rpx;
height: 26rpx;
margin-right: 12rpx;
}
.Item_fourth {
display: flex;
align-items: center;
justify-content: space-between;
.Item_fourth {
display: flex;
align-items: center;
justify-content: space-between;
margin-top: 20rpx;
}
.Item_fourth_left {
display: flex;
.Item_fourth_left {
display: flex;
align-items: center;
}
.Item_fourth_right {
font-weight: 400;
font-size: 26rpx;
color: #FFFFFF;
width: 150rpx;
height: 50rpx;
background: #D5AC66;
border-radius: 100rpx;
display: flex;
align-items: center;
.Item_fourth_right {
font-weight: 400;
font-size: 26rpx;
color: #FFFFFF;
width: 150rpx;
height: 50rpx;
background: #D5AC66;
border-radius: 100rpx;
display: flex;
align-items: center;
justify-content: center;
}
.Item_fourth_left1 {
width: 110rpx;
height: 40rpx;
background: rgba(255, 81, 42, 0.1);
border-radius: 100rpx;
.Item_fourth_left1 {
width: 110rpx;
height: 40rpx;
background: rgba(255, 81, 42, 0.1);
border-radius: 100rpx;
margin-right: 4rpx;
}
.Item_fourth_left1 {
width: 110rpx;
height: 40rpx;
background: rgba(255, 81, 42, 0.1);
border-radius: 100rpx;
display: flex;
align-items: center;
justify-content: center;
font-weight: 400;
font-size: 22rpx;
color: #555555;
display: flex;
align-items: center;
justify-content: center;
.Item_fourth_left1 {
width: 110rpx;
height: 40rpx;
background: rgba(255, 81, 42, 0.1);
border-radius: 100rpx;
display: flex;
align-items: center;
justify-content: center;
font-weight: 400;
font-size: 22rpx;
color: #555555;
display: flex;
align-items: center;
justify-content: center;
margin-right: 20rpx;
}
.Item_fourth_left2 {
width: 110rpx;
height: 40rpx;
background: #FFF2DA;
border-radius: 100rpx;
display: flex;
align-items: center;
justify-content: center;
font-weight: 400;
font-size: 22rpx;
background: #FFF2DA;
display: flex;
align-items: center;
.Item_fourth_left2 {
width: 110rpx;
height: 40rpx;
background: #FFF2DA;
border-radius: 100rpx;
display: flex;
align-items: center;
justify-content: center;
font-weight: 400;
font-size: 22rpx;
background: #FFF2DA;
display: flex;
align-items: center;
justify-content: center;
}
.Item_fourth_left1 image {
width: 24rpx;
height: 24rpx;
.Item_fourth_left1 image {
width: 24rpx;
height: 24rpx;
margin-right: 4rpx;
}
.Item_fourth_left2 image {
width: 24rpx;
height: 24rpx;
.Item_fourth_left2 image {
width: 24rpx;
height: 24rpx;
margin-right: 4rpx;
}
.list {
.list {
margin-top: 36rpx;
}
.item_tit {
display: flex;
align-items: center;
justify-content: space-between;
margin: 0 20rpx;
margin-bottom: 32rpx;
.item_tit {
display: flex;
align-items: center;
justify-content: space-between;
margin: 0 20rpx;
margin-bottom: 32rpx;
margin-top: 30rpx;
}
.item_tit_left {
font-weight: bold;
font-size: 28rpx;
.item_tit_left {
font-weight: bold;
font-size: 28rpx;
color: #000000;
}
.item_tit_right {
font-weight: 400;
font-size: 24rpx;
color: #D5AC66;
display: flex;
.item_tit_right {
font-weight: 400;
font-size: 24rpx;
color: #D5AC66;
display: flex;
align-items: center;
}
.item_tit_right image {
width: 12rpx;
height: 22rpx;
.item_tit_right image {
width: 12rpx;
height: 22rpx;
margin-left: 8rpx;
}
.item_goodsItem {
display: flex;
align-items: center;
margin: 0 20rpx;
.item_goodsItem {
display: flex;
align-items: center;
margin: 0 20rpx;
margin-bottom: 20rpx;
}
.item_goodsItem_tit {
width: 180rpx;
height: 180rpx;
margin-right: 30rpx;
.item_goodsItem_tit {
width: 180rpx;
height: 180rpx;
margin-right: 30rpx;
margin-left: 19rpx;
}
.item_goodsItem_name {
font-weight: 400;
font-size: 26rpx;
color: #222222;
margin-top: 20rpx;
.item_goodsItem_name {
font-weight: 400;
font-size: 26rpx;
color: #222222;
margin-top: 20rpx;
margin-left: 10rpx;
}
.item_goodsItem_msg {
font-weight: 400;
font-size: 22rpx;
color: #FF512A;
display: flex;
align-items: flex-end;
margin-top: 6rpx;
.item_goodsItem_msg {
font-weight: 400;
font-size: 22rpx;
color: #FF512A;
display: flex;
align-items: flex-end;
margin-top: 6rpx;
margin-left: 13rpx;
}
.item_goodsItem_msg view {
font-weight: 500;
.item_goodsItem_msg view {
font-weight: 500;
font-size: 36rpx;
}
.item_goodsItem_msg text {
font-size: 22rpx;
.item_goodsItem_msg text {
font-size: 22rpx;
color: #FF512A;
}
.item_goodsList {
display: flex;
align-items: center;
justify-content: space-between;
.item_goodsList {
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 20rpx;
}
.list_item {
padding-bottom: 32rpx;
.list_item {
padding-bottom: 32rpx;
border-bottom: 1rpx solid #E6E6E6;
}
.btn {
display: inline-flex;
align-items: center;
background: rgba(255, 81, 42, 0.1);
border-radius: 100rpx;
.btn {
display: inline-flex;
align-items: center;
background: rgba(255, 81, 42, 0.1);
border-radius: 100rpx;
padding: 7rpx 22rpx 7rpx 0;
}
.mobile {
background: #FFF2DA;
.mobile {
background: #FFF2DA;
margin-left: 20rpx;
}
}

View File

@ -1,29 +1,29 @@
{
"description": "项目配置文件。",
"packOptions": {
"ignore": [],
"include": []
},
"setting": {
"urlCheck": false,
"es6": false,
"postcss": false,
"minified": false,
"newFeature": true,
"bigPackageSizeSupport": true,
"babelSetting": {
"ignore": [],
"disablePlugins": [],
"outputPath": ""
}
},
"compileType": "miniprogram",
"libVersion": "3.7.12",
"appid": "wxb4018c78fa143450",
"projectname": "ZHSQ",
"condition": {},
"editorSetting": {
"tabIndent": "insertSpaces",
"tabSize": 2
}
{
"description": "项目配置文件。",
"packOptions": {
"ignore": [],
"include": []
},
"setting": {
"urlCheck": false,
"es6": false,
"postcss": false,
"minified": false,
"newFeature": true,
"bigPackageSizeSupport": true,
"babelSetting": {
"ignore": [],
"disablePlugins": [],
"outputPath": ""
}
},
"compileType": "miniprogram",
"libVersion": "3.7.12",
"appid": "wxb4018c78fa143450",
"projectname": "ZHSQ",
"condition": {},
"editorSetting": {
"tabIndent": "insertSpaces",
"tabSize": 2
}
}

View File

@ -1,7 +1,7 @@
{
"description": "项目私有配置文件。此文件中的内容将覆盖 project.config.json 中的相同字段。项目的改动优先同步到此文件中。详见文档https://developers.weixin.qq.com/miniprogram/dev/devtools/projectconfig.html",
"projectname": "uniapp-ZHSQ",
"setting": {
"compileHotReLoad": true
}
{
"description": "项目私有配置文件。此文件中的内容将覆盖 project.config.json 中的相同字段。项目的改动优先同步到此文件中。详见文档https://developers.weixin.qq.com/miniprogram/dev/devtools/projectconfig.html",
"projectname": "uniapp-ZHSQ",
"setting": {
"compileHotReLoad": true
}
}

View File

@ -1,80 +1,80 @@
@charset "UTF-8";
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
*/
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
@charset "UTF-8";
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
*/
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
@font-face {
font-family: 'uicon-iconfont';
@font-face {
font-family: 'uicon-iconfont';
src: url("https://at.alicdn.com/t/font_2225171_8kdcwk4po24.ttf") format("truetype");
}
.u-icon.data-v-2ee87dc9 {
display: flex;
.u-icon.data-v-2ee87dc9 {
display: flex;
align-items: center;
}
.u-icon--left.data-v-2ee87dc9 {
flex-direction: row-reverse;
.u-icon--left.data-v-2ee87dc9 {
flex-direction: row-reverse;
align-items: center;
}
.u-icon--right.data-v-2ee87dc9 {
flex-direction: row;
.u-icon--right.data-v-2ee87dc9 {
flex-direction: row;
align-items: center;
}
.u-icon--top.data-v-2ee87dc9 {
flex-direction: column-reverse;
.u-icon--top.data-v-2ee87dc9 {
flex-direction: column-reverse;
justify-content: center;
}
.u-icon--bottom.data-v-2ee87dc9 {
flex-direction: column;
.u-icon--bottom.data-v-2ee87dc9 {
flex-direction: column;
justify-content: center;
}
.u-icon__icon.data-v-2ee87dc9 {
font-family: uicon-iconfont;
position: relative;
display: flex;
flex-direction: row;
.u-icon__icon.data-v-2ee87dc9 {
font-family: uicon-iconfont;
position: relative;
display: flex;
flex-direction: row;
align-items: center;
}
.u-icon__icon--primary.data-v-2ee87dc9 {
.u-icon__icon--primary.data-v-2ee87dc9 {
color: #3c9cff;
}
.u-icon__icon--success.data-v-2ee87dc9 {
.u-icon__icon--success.data-v-2ee87dc9 {
color: #5ac725;
}
.u-icon__icon--error.data-v-2ee87dc9 {
.u-icon__icon--error.data-v-2ee87dc9 {
color: #f56c6c;
}
.u-icon__icon--warning.data-v-2ee87dc9 {
.u-icon__icon--warning.data-v-2ee87dc9 {
color: #f9ae3d;
}
.u-icon__icon--info.data-v-2ee87dc9 {
.u-icon__icon--info.data-v-2ee87dc9 {
color: #909399;
}
.u-icon__img.data-v-2ee87dc9 {
height: auto;
.u-icon__img.data-v-2ee87dc9 {
height: auto;
will-change: transform;
}
.u-icon__label.data-v-2ee87dc9 {
.u-icon__label.data-v-2ee87dc9 {
line-height: 1;
}
}