Browse Source

用户界面

用户编辑资料
暖新币明细
兑换制度
意见反馈
报道二维码
我的地址
1.0
396316021 2 years ago
parent
commit
7ace1dd343
  1. 30
      pages.json
  2. 25
      pages/Address/components/index.scss
  3. 175
      pages/Address/index.vue
  4. 57
      pages/Cron/components/detail.scss
  5. 55
      pages/Cron/components/rule.scss
  6. 231
      pages/Cron/detail.vue
  7. 188
      pages/Cron/rule.vue
  8. 39
      pages/Feed/components/index.scss
  9. 154
      pages/Feed/index.vue
  10. 2
      pages/Index/components/ChatPage/index.vue
  11. 353
      pages/Index/components/UserPage/components/index.scss
  12. 299
      pages/Index/components/UserPage/index.vue
  13. 2
      pages/Index/index.vue
  14. 23
      pages/Report/components/qrcode.scss
  15. 174
      pages/Report/qrcode.vue
  16. 21
      pages/User/components/index.scss
  17. 303
      pages/User/edit.vue
  18. 16
      uni.scss
  19. 12
      uni_modules/uni-swipe-action/components/uni-swipe-action-item/wx.wxs

30
pages.json

@ -36,6 +36,36 @@
"style" : {
"navigationBarTitleText" : "丰行侠行动指南"
}
},{
"path" : "pages/User/edit",
"style" : {
"navigationBarTitleText" : "编辑资料"
}
},{
"path" : "pages/Cron/detail",
"style" : {
"navigationBarTitleText" : "暖新币明细"
}
},{
"path" : "pages/Cron/rule",
"style" : {
"navigationBarTitleText" : "暖新币兑换制度"
}
},{
"path" : "pages/Feed/index",
"style" : {
"navigationBarTitleText" : "意见反馈"
}
},{
"path" : "pages/Report/qrcode",
"style" : {
"navigationBarTitleText" : "党员报到码"
}
},{
"path" : "pages/Address/index",
"style" : {
"navigationBarTitleText" : "我的地址"
}
}
],
"globalStyle" : {

25
pages/Address/components/index.scss

@ -0,0 +1,25 @@
.body-background{
background:{
color:#F5F5F6;
}
}
.title-container{
align-items: center;
justify-content: flex-start;
.title-group{
margin-bottom:10rpx;
.title{
margin-right:30rpx;
}
}
.address{
margin-bottom:10rpx;
}
}
.label-container{
align-items: center;
.checkbox{
}
}

175
pages/Address/index.vue

@ -0,0 +1,175 @@
<template>
<view class="body-background"></view>
<u-navbar
:title="title"
:auto-back="true"
left-icon-size="40rpx"
:safe-area-inset-top="true"
:placeholder="true"
bgColor="#fff"
></u-navbar>
<u-row>
<u-col>
<uni-swipe-action>
<u-list>
<uni-swipe-action-item :right-options="options">
<u-list-item>
<u-cell isLink
label="rightIcon"
:right-icon-style="{fontSize:'32rpx'}">
<template #title>
<view class="title-container">
<view class="title-group row">
<view class="title">
<u-text :block="true" mode="name" text="张某某" format="encrypt" size="32" color="#020b18"></u-text>
</view>
<view class="phone">
<u-text :block="true" mode="phone" text="15012345678" format="encrypt" size="32" color="#020b18"></u-text>
</view>
</view>
<view class="address">
<u-text text="四川省成都市双流区 海昌路168号" size="32" color="#020b18"></u-text>
</view>
</view>
</template>
<template #label>
<view class="label-container row">
<view class="checkbox">
<u-checkbox
:customStyle="{marginBottom: '8px'}"
:key="1"
:name="1"
size="35"
shape="circle"
iconSize="35"
></u-checkbox>
</view>
<view class="title">
<u-text text="设为默认地址" size="28" color="#020b18"></u-text>
</view>
</view>
</template>
</u-cell>
</u-list-item>
</uni-swipe-action-item>
</u-list>
</uni-swipe-action>
</u-col>
</u-row>
</template>
<script>
import {
imghost
} from '@/config/host.js'
import MzSubsection from '@/components/MzSubsection/Index.vue';
import api from '@/utils/functions.js';
export default {
components: {
MzSubsection
},
data() {
return {
options: [
{
text: '删除',
style: {
backgroundColor: '#FC4956'
}
}
],
title: '我的地址',
loading: true,
staticImage: {
bg: imghost + '/static/image/BG.png',
newIcon: imghost + '/static/image/new-icon.png',
},
isTop: false,
lists: [
{
id: 1,
thumb: imghost + '/static/image/new-1.png',
title: '全市公安机关夏季治安打击整治“彭安行动”新闻发布会召开',
desc: '需要您带一点猫砂上门,谢谢',
time: '2023/06/16',
is_new: true
}, {
id: 2,
thumb: imghost + '/static/image/new-2.png',
title: '全市公安机关夏季治安打击整治“彭安行动”新闻发布会召开',
desc: '需要您带一点猫砂上门,谢谢',
time: '2023/06/16',
is_new: true
}, {
id: 3,
thumb: imghost + '/static/image/new-3.png',
title: '全市公安机关夏季治安打击整治“彭安行动”111开',
desc: '需要您带一点猫砂上门,谢谢',
time: '2023/06/16',
is_new: false
},
],
size: {
height: 500,
}
}
},
onLoad() {
},
computed: {
api() {
return api
},
sectionStyle() {
const style = {};
style.padding = '0 26rpx';
style.position = 'sticky';
style.zIndex = '9999';
style.top = api.navHeight().systemBarHeight + 'px'
return style;
},
listHeight() {
let that = this;
let height;
let info = uni.createSelectorQuery().in(this).select('.subsection');
info.boundingClientRect(function (data) {
that.size.height = data.height;
}).exec(function (res) {
});
// that.size.height = (api.navHeight().windowHeight - height);
}
},
methods: {
chatDetail(item) {
wx.navigateTo({
url: '/pages/ChatDetail/index?id=' + item.id
});
},
checkSection(index) {
this.current = index;
},
scrollToLower() {
},
},
onPageScroll(res) {
if (res.scrollTop <= 20) {
uni.$emit('isTop', true);
} else {
uni.$emit('isTop', false);
}
},
created() {
this.listHeight();
// this.pagePadding = (api.navHeight().navPaddingTop +
// api.navHeight().navHeight + (api.navHeight().headerPadding * 2))
}
}
</script>
<style lang="scss">
@import './components/index.scss';
</style>

57
pages/Cron/components/detail.scss

@ -0,0 +1,57 @@
.app-wallpaper{
padding:16rpx 26rpx;
}
.top-container{
padding:50rpx 26rpx 66rpx;
.top-price{
font-size: 72rpx;
font-family: ShiShangZhongHeiJianTi-Regular, ShiShangZhongHeiJianTi;
font-weight: 400;
color: #020B18;
line-height: 50rpx;
margin-bottom:26rpx;
}
.top-desc{
font-size: 32rpx;
font-family: PingFang SC-Medium, PingFang SC;
font-weight: 400;
color: #3D3D3D;
line-height: 50rpx;
}
}
.body-background{
background: {
color:#F5F5F6;
};
height:100vh;
}
::v-deep .u-tabs__wrapper__nav__line{
left:24rpx;
}
.cell-value-add{
font-size: 32rpx;
font-weight: 400;
color: #FF9545;
}
.cell-value-dec{
font-size: 32rpx;
font-weight: 400;
color: #0EAF4E;
}
.cell-label{
font-size: 28rpx;
font-weight: 400;
color: #AFB5BE;
line-height:50rpx;
}
.foot-button{
padding:40rpx 26rpx;
position: fixed;
bottom:0;
left:0;
z-index: 9999;
width: 100%;
background: {
color:#FFFFFF;
};
}

55
pages/Cron/components/rule.scss

@ -0,0 +1,55 @@
.app-wallpaper{
padding:54rpx 66rpx;
}
.top-container{
padding:50rpx 26rpx 66rpx;
.top-price{
font-size: 72rpx;
font-family: ShiShangZhongHeiJianTi-Regular, ShiShangZhongHeiJianTi;
font-weight: 400;
color: #020B18;
line-height: 50rpx;
margin-bottom:26rpx;
}
.top-desc{
font-size: 32rpx;
font-family: PingFang SC-Medium, PingFang SC;
font-weight: 400;
color: #3D3D3D;
line-height: 50rpx;
}
}
.body-background{
position: relative;
}
::v-deep .u-tabs__wrapper__nav__line{
left:24rpx;
}
.cell-value-add{
font-size: 32rpx;
font-weight: 400;
color: #FF9545;
}
.cell-value-dec{
font-size: 32rpx;
font-weight: 400;
color: #0EAF4E;
}
.cell-label{
font-size: 28rpx;
font-weight: 400;
color: #AFB5BE;
line-height:50rpx;
}
.foot-button{
padding:40rpx 26rpx;
position: fixed;
bottom:0;
left:0;
z-index: 9999;
width: 100%;
background: {
color:#FFFFFF;
};
}

231
pages/Cron/detail.vue

@ -0,0 +1,231 @@
<template>
<view class="body-background">
<u-image
:show-loading="true"
:src="staticImage.bg"
width="100%"
height="420"
radius="10"
mode="widthFix"
class="img"
></u-image>
</view>
<u-navbar
:title="title"
:auto-back="true"
left-icon-size="40rpx"
:safe-area-inset-top="true"
:placeholder="true"
bgColor="transparent"
></u-navbar>
<view class="top-container">
<view class="top-price">
8,256,256
</view>
<view class="top-desc">
暖新币余额
</view>
</view>
<view class="app-wallpaper">
<u-tabs
:list="list"
u-sticky
lineWidth="64"
lineHeight="8"
:inactiveStyle="{color:'#AFB5BE'}"
:activeStyle="{color:'#F47210'}"
lineColor="#F47210"
></u-tabs>
</view>
<u-list
:height="(api.navHeight().windowHeight-size.height-60)+'px'"
:custom-style="{padding:'0 26rpx',boxSizing:'border-box'}"
>
<u-list-item
v-for="(item, index) in lists"
:key="index"
>
<u-cell
title="提交线索-环境污染"
label="2023-08-26"
:icon="staticImage.bg"
:icon-style="{width:'64rpx',height:'64rpx',marginRight:'22rpx'}"
:border="false"
:custom-style="{backgroundColor:'#ffffff',borderRadius:'20rpx',marginBottom:'16rpx'}"
:title-style="{fontSize: '28rpx',fontWeight: '400',color: '#020B18',marginBottom:'20rpx'}"
>
<template #value>
<view class="cell-value-add" v-if="item.type === 1">
+50
</view>
<view class="cell-value-dec" v-else>
-50
</view>
</template>
<template #label>
<view class="cell-label">
2023-08-26
</view>
</template>
</u-cell>
</u-list-item>
</u-list>
</template>
<script>
import {
imghost
} from '@/config/host.js'
import MzSubsection from '@/components/MzSubsection/Index.vue';
import api from '@/utils/functions.js';
export default {
components: {
MzSubsection
},
data() {
return {
model1: {
userInfo: {
name: '',
sex: 1,
},
},
rules: {
'userInfo.name': {
type: 'string',
required: true,
message: '请填写姓名',
trigger: ['blur', 'change']
},
'userInfo.sex': {
type: 'string',
max: 1,
required: true,
message: '请选择男或女',
trigger: ['blur', 'change']
},
},
sexList:[
{
id:1,
name: '男',
disabled: false,
},
{
i:2,
name: '女',
disabled: false,
},
],
list: [{
name: '暖新币获得'
}, {
name: '暖新币兑换'
},],
// keyName
// list: [{name: ''}, {name: ''}, {name: ''}],
current: 1,
title: '暖新币明细',
loading: true,
staticImage: {
bg: imghost + '/static/image/cron-bg.png',
newIcon: imghost + '/static/image/new-icon.png',
},
user: {
avatar: imghost + '/static/image/banner.png',
nickname: '清晨的风',
coupons: 221,
id: 88685,
},
isTop: false,
lists: [
{
id: 1,
thumb: imghost + '/static/image/new-1.png',
title: '全市公安机关夏季治安打击整治“彭安行动”新闻发布会召开',
desc: '需要您带一点猫砂上门,谢谢',
time: '2023/06/16',
is_new: true,
type:1
}, {
id: 2,
thumb: imghost + '/static/image/new-2.png',
title: '全市公安机关夏季治安打击整治“彭安行动”新闻发布会召开',
desc: '需要您带一点猫砂上门,谢谢',
time: '2023/06/16',
is_new: true,
type:1
}, {
id: 3,
thumb: imghost + '/static/image/new-3.png',
title: '全市公安机关夏季治安打击整治“彭安行动”111开',
desc: '需要您带一点猫砂上门,谢谢',
time: '2023/06/16',
is_new: false,
type:2
},
],
size: {
height: 0,
}
}
},
onLoad() {
},
computed: {
api() {
return api
},
sectionStyle() {
const style = {};
style.padding = '0 26rpx';
style.position = 'sticky';
style.zIndex = '9999';
style.top = api.navHeight().systemBarHeight + 'px'
return style;
},
},
methods: {
listHeight() {
let that = this;
let info = uni.createSelectorQuery().in(this).select('.top-container');
info.boundingClientRect(function (data) {
that.size.height += data.height;
console.log('top-container',data)
}).exec(function(res){});
},
chatDetail(item) {
wx.navigateTo({
url: '/pages/ChatDetail/index?id=' + item.id
});
},
checkSection(index) {
this.current = edit;
},
scrollToLower() {
},
},
options:{
styleIsolation:'shared'
},
onPageScroll(res) {
if (res.scrollTop <= 20) {
uni.$emit('isTop', true);
} else {
uni.$emit('isTop', false);
}
},
created() {
this.listHeight();
// this.pagePadding = (api.navHeight().navPaddingTop +
// api.navHeight().navHeight + (api.navHeight().headerPadding * 2))
}
}
</script>
<style lang="scss">
@import './components/detail.scss';
</style>

188
pages/Cron/rule.vue

@ -0,0 +1,188 @@
<template>
<u-navbar
:title="title"
:auto-back="true"
left-icon-size="40rpx"
bgColor="transparent"
></u-navbar>
<view class="body-background">
<u-image
:show-loading="true"
:src="staticImage.ruleBg"
width="100%"
height="420"
radius="10"
mode="widthFix"
class="img"
></u-image>
</view>
<view class="app-wallpaper">
<view class="content">
<u-parse :content="content" lazyLoad :tag-style="{img:'text-align:center'}"></u-parse>
</view>
</view>
</template>
<script>
import {
imghost
} from '@/config/host.js'
import MzSubsection from '@/components/MzSubsection/Index.vue';
import api from '@/utils/functions.js';
export default {
components: {
MzSubsection
},
data() {
return {
model1: {
userInfo: {
name: '',
sex: 1,
},
},
rules: {
'userInfo.name': {
type: 'string',
required: true,
message: '请填写姓名',
trigger: ['blur', 'change']
},
'userInfo.sex': {
type: 'string',
max: 1,
required: true,
message: '请选择男或女',
trigger: ['blur', 'change']
},
},
sexList:[
{
id:1,
name: '男',
disabled: false,
},
{
i:2,
name: '女',
disabled: false,
},
],
list: [{
name: '暖新币获得'
}, {
name: '暖新币兑换'
},],
// keyName
// list: [{name: ''}, {name: ''}, {name: ''}],
current: 1,
title: '暖新币兑换制度',
loading: true,
staticImage: {
ruleBg: imghost + '/static/image/cron-rule-bg.png',
newIcon: imghost + '/static/image/new-icon.png',
},
user: {
avatar: imghost + '/static/image/banner.png',
nickname: '清晨的风',
coupons: 221,
id: 88685,
},
isTop: false,
lists: [
{
id: 1,
thumb: imghost + '/static/image/new-1.png',
title: '全市公安机关夏季治安打击整治“彭安行动”新闻发布会召开',
desc: '需要您带一点猫砂上门,谢谢',
time: '2023/06/16',
is_new: true,
type:1
}, {
id: 2,
thumb: imghost + '/static/image/new-2.png',
title: '全市公安机关夏季治安打击整治“彭安行动”新闻发布会召开',
desc: '需要您带一点猫砂上门,谢谢',
time: '2023/06/16',
is_new: true,
type:1
}, {
id: 3,
thumb: imghost + '/static/image/new-3.png',
title: '全市公安机关夏季治安打击整治“彭安行动”111开',
desc: '需要您带一点猫砂上门,谢谢',
time: '2023/06/16',
is_new: false,
type:2
},
],
size: {
height: 0,
},
content:'' +
'<ul>' +
'<li style="font-size:16px;color:#666666;line-height:1.5;">知理,就是懂得做人的道理,具备独立思考的能力。 </li>' +
'<li style="font-size:16px;color:#666666;line-height:1.5;">知理的人,从书本中学习做人的道理,在实践中理解事物的发展规律。在学习知识、探寻真理的过程中,他们形成了自己的世界观和人生观,能够独立思考,不会人云亦云。</li>' +
'</ul>' +
'<div style="text-align: center;margin:30px auto;"><img src="http://live.admin.jinghkb.com/warm-man/static/image/cron-rule.png" alt=""></div>'
}
},
onLoad() {
},
computed: {
api() {
return api
},
sectionStyle() {
const style = {};
style.padding = '0 26rpx';
style.position = 'sticky';
style.zIndex = '9999';
style.top = api.navHeight().systemBarHeight + 'px'
return style;
},
},
methods: {
listHeight() {
let that = this;
let info = uni.createSelectorQuery().in(this).select('.top-container');
info.boundingClientRect(function (data) {
that.size.height += data.height;
console.log('top-container',data)
}).exec(function(res){});
},
chatDetail(item) {
wx.navigateTo({
url: '/pages/ChatDetail/index?id=' + item.id
});
},
checkSection(index) {
this.current = edit;
},
scrollToLower() {
},
},
options:{
styleIsolation:'shared'
},
onPageScroll(res) {
if (res.scrollTop <= 20) {
uni.$emit('isTop', true);
} else {
uni.$emit('isTop', false);
}
},
created() {
this.listHeight();
// this.pagePadding = (api.navHeight().navPaddingTop +
// api.navHeight().navHeight + (api.navHeight().headerPadding * 2))
}
}
</script>
<style lang="scss">
@import './components/rule.scss';
</style>

39
pages/Feed/components/index.scss

@ -0,0 +1,39 @@
.body-background{
background: {
color:#F5F5F6;
};
height:100vh;
}
::v-deep .u-icon__icon.uicon-plus{
font-size:40rpx !important;
}
.bottom-btn{
padding:50rpx;
position: absolute;
bottom:0;
left:0;
width:100%;
}
.footer-content{
font-size: 28rpx;
font-weight: 400;
color: #AFB5BE;
line-height: 50rpx;
padding:0 56rpx;
margin-top:100rpx;
text-align: center;
.footer-contact{
padding:14rpx 0;
border-bottom:4rpx solid #EEEEEE;
}
.footer-wechat{
justify-content: center;
margin:10rpx 0;
}
.footer-email{
justify-content: center;
}
.foot-url{
color:#576B95;
}
}

154
pages/Feed/index.vue

@ -0,0 +1,154 @@
<template>
<u-navbar
:title="title"
:auto-back="true"
left-icon-size="40rpx"
:safe-area-inset-top="true"
:placeholder="true"
bgColor="#ffffff"
></u-navbar>
<view class="body-background">
</view>
<u-row :custom-style="{padding:'16rpx 26rpx'}">
<u-col :span="12" :custom-style="{
backgroundColor:'#FFFFFF',
borderRadius:'20rpx',
padding:'40rpx 32rpx',
minHeight:'1000rpx',
position:'relative'
}">
<u-form
labelWidth="auto"
labelPosition="left"
:model="model1"
:rules="rules"
ref="form1"
>
<u-form-item
prop="userInfo.name"
ref="item1"
:custom-style="{padding:'0'}"
>
<u-textarea
border="none"
placeholder="请描述您遇到的问题"
height="220"
:custom-style="{
backgroundColor:'#FAFAFA',
padding:'8rpx 20rpx'
}"
></u-textarea>
</u-form-item>
<u-form-item
label="联系方式"
prop="userInfo.sex"
borderBottom
ref="item1"
:custom-style="{padding:'34rpx 0'}"
>
<u-input
inputAlign="right"
disabledColor="#ffffff"
placeholder="请填写手机号,以便我们联系您"
border="none"
:custom-style="{paddingRight:'28rpx'}"
></u-input>
</u-form-item>
<u-form-item
prop="userInfo.sex"
ref="item1"
:custom-style="{padding:'34rpx 0'}"
>
<u-upload
width="160"
height="160"
:fileList="fileList1"
name="1"
multiple
:maxCount="10"
uploadIcon="plus"
></u-upload>
</u-form-item>
</u-form>
<view class="bottom-btn border-box">
<u-button
type="primary"
text="保存"
shape="circle"
:custom-style="{
color:'#020B18',
backgroundColor:'#FF9545',
border:'none',
fontSize:'36',
fontWeight:'400',
marginTop:'48rpx'
}"
></u-button>
</view>
</u-col>
</u-row>
<view class="footer-content">
<view class="footer-contact">联系我们</view>
<view class="footer-wechat row">
<view class="foot-title">微信公众号</view>
<view class="foot-url">暖新家公众平台</view>
</view>
<view class="footer-email row">
<view class="foot-title">官方邮箱</view>
<view class="foot-url">1256896@qq.com 复制</view>
</view>
</view>
</template>
<script>
import {
imghost
} from '@/config/host.js'
import MzSubsection from '@/components/MzSubsection/Index.vue';
import api from '@/utils/functions.js';
export default {
components: {
MzSubsection
},
data() {
return {
title: '意见反馈',
loading: true,
staticImage: {
bg: imghost + '/static/image/BG.png',
newIcon: imghost + '/static/image/new-icon.png',
},
isTop: false,
fileList1:[]
}
},
onLoad() {
},
computed: {
api() {
return api
},
},
methods: {
},
onPageScroll(res) {
if (res.scrollTop <= 20) {
uni.$emit('isTop', true);
} else {
uni.$emit('isTop', false);
}
},
created() {
}
}
</script>
<style lang="scss">
@import './components/index.scss';
</style>

2
pages/Index/components/ChatPage/index.vue

@ -59,7 +59,7 @@
wallpaperBgImage:imghost +'/static/image/background.png',
chatBgImage:imghost +'/static/image/chat-list-background.png',
chatLTBgImage:imghost +'/static/image/chat-list-lt-background.png',
bodyBackground:imghost+'/static/image/background.png'
bodyBackground:imghost+'/static/image/user-bg.png'
},
user: {
avatar: imghost + '/static/image/banner.png',

353
pages/Index/components/UserPage/components/index.scss

@ -1,256 +1,145 @@
.app-wallpaper{
box-sizing: border-box;
padding:40rpx;
padding-bottom:200rpx;
.user-button-group-container{
position: relative;
box-sizing: border-box;
width:100%;
margin-bottom:35rpx;
padding:{
top:20rpx;
left:45rpx;
bottom:30rpx;
right:45rpx;
}
.user-button-group-background:nth-child(1){
transform: rotate(-.5deg);
}
.user-button-group-background:nth-child(2){
transform: rotate(.5deg);
}
.user-button-group-background:nth-child(3){
transform: rotate(-.5deg);
}
.user-button-group-background:nth-child(4){
transform: rotate(.5deg);
}
.user-button-group-background{
position:absolute;
width:100%;
height:100%;
left:0;
top:0;
z-index: -1;
.user-button-group-container-background-border{
border:5rpx dotted #131313;
border-radius: 46rpx;
width:100%;
height:100%;
position: absolute;
z-index: -1;
top:5rpx;
left:5rpx;
padding:0;
}
.body-background{
.img{
width: 100%;
}
}
.user-container{
.user-avatar{
padding:0 20rpx;
}
.user-content{
.user-nickname-group{
align-items: center;
margin-bottom:20rpx;
.user-nickname{
font-size: 36rpx;
font-weight: 400;
color: #020B18;
}
.user-button-group-container-background-color{
border:5rpx solid #131313;
border-radius: 46rpx;
width:100%;
height:100%;
border: 3rpx solid #262626;
box-shadow: 2rpx 6rpx 40rpx 0rpx rgba(160,179,181,0.4);
border-radius: 46rpx;
background-color: #ffffff;
.user-edit{
margin-left:auto;
padding:10rpx 18rpx;
background: rgba(255,255,255,0.3);
border-radius: 24rpx 24rpx 24rpx 24rpx;
font-size: 24rpx;
font-weight: 400;
color: #3D3D3D;
line-height: 1;
}
}
.user-title-img{
.img{
height:38rpx;
}
.shop-car-container{
margin-left:auto;
position: relative;
top:5rpx;
.shop-car{
height:41rpx;
}
.shop-car-number{
border-radius:50%;
background:{
color:#F96161;
}
padding:3rpx 7rpx;
color:#FFFFFF;
font-size:20rpx;
font-weight:500;
line-height:1;
text-align:center;
position:absolute;
bottom:33rpx;
left:30rpx;
}
.user-icon-group{
align-items: center;
margin-bottom: 16rpx;
.user-icon-title{
padding-left: 8rpx;
font-size: 32rpx;
font-weight: 400;
color: #020B18;
line-height: 1;
}
}
.user-button-content{
position: relative;
z-index: 2;
.user-button-group{
justify-content: center;
margin-top:20rpx;
.user-button{
text-align: center;
.user-title{
font-size:28rpx;
font-weight: 400;
color:#18181B;
}
.user-desc{
font-size:24rpx;
font-weight: 400;
color:#9f9f9f;
.user-id{
align-items: center;
.user-id-content{
font-size: 28rpx;
font-weight: 400;
color: #020B18;
line-height: 1;
margin-right: 26rpx;
}
.user-id-btn-container{
.btn-group{
position: relative;
align-items: center;
.btn{
width: 20rpx;
height: 20rpx;
border:3rpx solid #AA4900;
border-radius: 5rpx;
&:nth-child(1){
position: absolute;
left:5rpx;
bottom:5rpx;
}
}
}
}
}
}
.user-information{
.user-button{
.img{
width:60rpx;
height:60rpx;
}
}
.gun1{
height:35rpx;
position:absolute;
top:-20rpx;
left:-65rpx;
}
}
.user-card{
width:100%;
position: relative;
background:{
size: 100% 100%;
repeat: no-repeat;
}
.user-baby-log,.user-big-service{
.user-button{
.img{
width:90rpx;
height:90rpx;
.user-card-content-container{
width:100%;
height:100%;
//position: absolute;
//top:0;
//left:0;
padding:26rpx;
padding-bottom:52rpx;
.card-container{
padding:32rpx 40rpx;
.card-title{
font-size: 32rpx;
font-weight: 400;
color: #FFFFFF;
line-height: 28rpx;
margin-bottom:34rpx
}
}
.gun2{
height:80rpx;
position:absolute;
top:-80rpx;
right:35%;
}
}
.user-big-service{
.gun2{
height:80rpx;
position:absolute;
top:-85rpx;
left:15rpx;
}
}
.user-more{
.user-button{
.img{
width:48rpx;
height:48rpx;
.card-desc{
font-size: 28rpx;
font-weight: 400;
color: #FFFFFF;
line-height: 28rpx;
margin-bottom:12rpx
}
}
.gun2{
height:80rpx;
position:absolute;
top:-70rpx;
right:50rpx;
}
}
.user-detail{
margin-bottom:40rpx;
padding-left:17rpx;
.user-detail-avatar-container{
width:90rpx;
height:90rpx;
position:relative;
border: 2rpx solid #0F0F0F;
border-radius: 40rpx;
.img{
width:90rpx;
height:90rpx;
border-radius: 40rpx;
.card-price{
font-size: 72rpx;
font-family: ShiShangZhongHeiJianTi-Regular, ShiShangZhongHeiJianTi;
font-weight: 400;
color: #FFFFFF;
line-height: 72rpx;
margin-bottom:18rpx
}
.user-detail-avatar-border{
position:absolute;
left:-1rpx;
top:5rpx;
z-index: -1;
background:{
color:#ffffff;
}
.card-ext{
font-size: 28rpx;
font-weight: 400;
color: #FFFFFF;
line-height: 28rpx;
margin-bottom:38rpx
}
.card-hr{
width:100%;
height:100%;
border: 2rpx solid #0F0F0F;
border-radius: 40rpx;
box-shadow: 2rpx 6rpx 50rpx 0rpx rgba(42,59,58,0.2);
height:2rpx;
background-color:rgba(255,255,255,0.2);
}
}
.user-detail-img{
width:83rpx;
}
.user-detail-info{
margin:{
left:33rpx;
top:-5rpx;
};
flex:1;
.user-detail-title-container{
.card-btn-group{
padding-top:30rpx;
align-items: center;
.user-detail-title{
margin-left:10rpx;
font-size: 30rpx;
font-weight: 500;
color: #0F0F0F;
line-height: 30rpx;
justify-content: space-around;
.card-hhr{
width: 2rpx;
height: 40rpx;
background: #AA4900;
border-radius: 0rpx 0rpx 0rpx 0rpx;
opacity: 0.2;
}
.user-detail-coupons{
margin-left:auto;
position: relative;
left:40rpx;
background:{
position: 0 0;
repeat:no-repeat;
size:100% 100%;
}
width:147.8rpx;
height:66.1rpx;
font-size: 26rpx;
font-weight: bold;
color: #131313;
line-height:1;
padding:{
top:16rpx;
left:100rpx;
};
box-sizing:border-box;
text-align:center;
}
.user-detail-id{
font-size: 30rpx;
font-weight: 500;
color: #18181B;
.card-btn{
text-align: center;
font-size: 28rpx;
font-weight: 400;
color: #AA4900;
line-height: 28rpx;
}
}
}
}
}
.user-background,.user-shadow{
width:100%;
height:100%;
position:fixed;
top:0;
left:0;
z-index:-1;
background: {
size:100% auto;
repeat:no-repeat;
position:0 0;
};
}
.user-shadow{
background: {
size:110% auto;
position:-20rpx -20rpx;
};
}

299
pages/Index/components/UserPage/index.vue

@ -1,92 +1,193 @@
<template>
<view class="user-background" :style="{
backgroundImage:'url('+staticImage.bodyBackground+')'
}">
<view class="body-background">
<image class="img" mode="widthFix" :src="staticImage.bodyBackground"/>
</view>
<u-cell-group :custom-style="{marginBottom:'100rpx'}">
<u-cell
:rightIconStyle="{fontSize:'28rpx',padding:'25rpx 0'}"
:isLink="true"
title="我的兑换订单"
>
</u-cell>
<u-cell
:rightIconStyle="{fontSize:'28rpx',padding:'25rpx 0'}"
:isLink="true"
title="我的活动报名"
>
</u-cell>
<u-cell
:rightIconStyle="{fontSize:'28rpx',padding:'25rpx 0'}"
:isLink="true"
title="我的留言"
>
</u-cell>
<u-cell
:rightIconStyle="{fontSize:'28rpx',padding:'25rpx 0'}"
:isLink="true"
title="我的留言"
>
<view class="app-wallpaper">
<u-row :custom-style="{padding:'26rpx'}">
<u-col :span="12">
<view class="user-container row">
<view class="user-avatar">
<u-avatar src="1" size="160" :custom-style="{border:'4rpx solid #020B18'}"></u-avatar>
</view>
<view class="user-content col">
<view class="user-nickname-group row">
<view class="user-nickname">
是麻瓜呀
</view>
<view class="user-edit" @click="navTo('/pages/User/edit')">
编辑资料
</view>
</view>
<view class="user-icon-group row">
<u-image :src="staticImage.userFxx" :lazy-load="true" width="48" height="48" mode="widthFix"></u-image>
<view class="user-icon-title">
丰行侠
</view>
<u-rate
readonly
:count="starCount"
v-model="starValue"
size="30"
activeColor="#FF9545"
></u-rate>
</view>
<view class="user-id row">
<view class="user-id-content">
专属IDNH56KUH01
</view>
<u-text prefix-icon="file-text"
text="复制"
href="NH56KUH01"
size="28"
icon-style="font-size:28rpx"
color="#AA4900"></u-text>
</view>
</view>
</u-cell>
</view>
</u-col>
</u-row>
<view class="user-card border-box" :style="{backgroundImage:'url('+staticImage.userCard+')'}">
<view class="user-card-content-container border-box">
<view class="card-container">
<view class="card-title">我的暖新币</view>
<view class="card-desc">暖新币余额</view>
<view class="card-price">7,586,923</view>
<view class="card-ext">累计 236,471,986 &nbsp;&nbsp;|&nbsp;&nbsp; 已兑换 236,471,986</view>
<view class="card-hr"></view>
<view class="card-btn-group row">
<view class="card-btn col" @click="navTo('/pages/Cron/detail')">暖新币明细</view>
<view class="card-hhr"></view>
<view class="card-btn col" @click="navTo('/pages/Cron/rule')">兑换制度</view>
</view>
</view>
</view>
</view>
<u-cell-group :border="false" :custom-style="{marginBottom:'100rpx'}">
<u-cell
:border="false"
:rightIconStyle="{fontSize:'28rpx'}"
:isLink="true"
title="我的兑换订单"
>
<template #icon>
<view class="cell-icon" :style="{marginRight:'56rpx'}">
<u-image :src="staticImage.userOrder" :lazy-load="true" width="48" height="48" mode="widthFix"></u-image>
</view>
</template>
</u-cell>
<u-cell
:rightIconStyle="{fontSize:'28rpx',padding:'25rpx 0'}"
:isLink="true"
title="我的线索"
>
<u-cell
:border="false"
:rightIconStyle="{fontSize:'28rpx'}"
:isLink="true"
title="我的活动报名"
>
<template #icon>
<view class="cell-icon" :style="{marginRight:'56rpx'}">
<u-image :src="staticImage.userActivity" :lazy-load="true" width="48" height="48" mode="widthFix"></u-image>
</view>
</template>
</u-cell>
</u-cell>
<u-cell
:border="false"
:rightIconStyle="{fontSize:'28rpx'}"
:isLink="true"
title="我的留言"
>
<template #icon>
<view class="cell-icon" :style="{marginRight:'56rpx'}">
<u-image :src="staticImage.userMessage" :lazy-load="true" width="48" height="48" mode="widthFix"></u-image>
</view>
</template>
</u-cell>
<u-cell
:rightIconStyle="{fontSize:'28rpx',padding:'25rpx 0'}"
:isLink="true"
title="地址管理"
>
<u-cell
:border="false"
:rightIconStyle="{fontSize:'28rpx'}"
:isLink="true"
title="我的线索"
>
<template #icon>
<view class="cell-icon" :style="{marginRight:'56rpx'}">
<u-image :src="staticImage.userLine" :lazy-load="true" width="48" height="48" mode="widthFix"></u-image>
</view>
</template>
</u-cell>
</u-cell>
<u-cell
:border="false"
:rightIconStyle="{fontSize:'28rpx'}"
:isLink="true"
title="地址管理"
@click="navTo('/pages/Address/index')"
>
<template #icon>
<view class="cell-icon" :style="{marginRight:'56rpx'}">
<u-image :src="staticImage.userAddr" :lazy-load="true" width="48" height="48" mode="widthFix"></u-image>
</view>
</template>
</u-cell>
<u-cell
:rightIconStyle="{fontSize:'28rpx',padding:'25rpx 0'}"
:isLink="true"
title="我的关注"
>
<u-cell
:border="false"
:rightIconStyle="{fontSize:'28rpx'}"
:isLink="true"
title="我的关注"
>
<template #icon>
<view class="cell-icon" :style="{marginRight:'56rpx'}">
<u-image :src="staticImage.userFollow" :lazy-load="true" width="48" height="48" mode="widthFix"></u-image>
</view>
</template>
</u-cell>
</u-cell>
</u-cell-group>
<u-cell-group :border="false">
<u-cell
:border="false"
:rightIconStyle="{fontSize:'28rpx'}"
:isLink="true"
title="党员报到码"
@click="navTo('/pages/Report/qrcode')"
>
<template #icon>
<view class="cell-icon" :style="{marginRight:'56rpx'}">
<u-image :src="staticImage.userQrcode" :lazy-load="true" width="48" height="48" mode="widthFix"></u-image>
</view>
</template>
</u-cell>
</u-cell-group>
<u-cell-group>
<u-cell
:rightIconStyle="{fontSize:'28rpx',padding:'25rpx 0'}"
:isLink="true"
title="党员报到码"
>
<u-cell
:border="false"
:rightIconStyle="{fontSize:'28rpx'}"
:isLink="true"
title="意见箱/意见栏"
@click="navTo('/pages/Feed/index')"
>
<template #icon>
<view class="cell-icon" :style="{marginRight:'56rpx'}">
<u-image :src="staticImage.userFeed" :lazy-load="true" width="48" height="48" mode="widthFix"></u-image>
</view>
</template>
</u-cell>
<u-cell
:border="false"
:rightIconStyle="{fontSize:'28rpx'}"
:isLink="true"
title="街道联系方式"
>
<template #icon>
<view class="cell-icon" :style="{marginRight:'56rpx'}">
<u-image :src="staticImage.userPhone" :lazy-load="true" width="48" height="48" mode="widthFix"></u-image>
</view>
</template>
</u-cell>
</u-cell>
<u-cell
:rightIconStyle="{fontSize:'28rpx',padding:'25rpx 0'}"
:isLink="true"
title="意见箱/意见栏"
>
</u-cell>
<u-cell
:rightIconStyle="{fontSize:'28rpx',padding:'25rpx 0'}"
:isLink="true"
title="街道联系方式"
>
</u-cell>
</u-cell-group>
</u-cell-group>
</view>
</template>
<script>
@ -109,37 +210,21 @@ export default {
title: 'Hello',
loading: true,
staticImage: {
hiImage: imghost + '/static/image/index-user-title-hi.png',
couponsImage: imghost + '/static/image/user-coupons.png',
bodyBackground: imghost + '/static/image/user-background.png',
bodyShadow: imghost + '/static/image/user-detail-background.png',
informationTitle: imghost + '/static/image/user-information-title.png',
babyTitle: imghost + '/static/image/user-baby-title.png',
bigTitle: imghost + '/static/image/user-big-title.png',
moreTitle: imghost + '/static/image/user-more-title.png',
gun1: imghost + '/static/image/user-gun-1.png',
gun2: imghost + '/static/image/user-gun-2.png',
information: {
pet: imghost + '/static/image/user-information-pet.png',
info: imghost + '/static/image/user-information-info.png',
feed: imghost + '/static/image/user-information-feed.png',
},
baby: {
wait: imghost + '/static/image/user-baby-wait.png',
end: imghost + '/static/image/user-baby-end.png',
shopCar: imghost + '/static/image/user-shop-car.png',
},
big: {
wait: imghost + '/static/image/user-big-wait.png',
end: imghost + '/static/image/user-big-end.png',
},
more: {
online: imghost + '/static/image/user-more-online.png',
privacy: imghost + '/static/image/user-more-privacy.png',
feedback: imghost + '/static/image/user-more-feedback.png',
about: imghost + '/static/image/user-more-about.png',
}
userOrder: imghost + '/static/image/user-order.png',
userActivity: imghost + '/static/image/user-activity.png',
userMessage: imghost + '/static/image/user-message.png',
userLine: imghost + '/static/image/user-line.png',
userAddr: imghost + '/static/image/user-addr.png',
userFollow: imghost + '/static/image/user-follow.png',
userQrcode: imghost + '/static/image/user-qrcode.png',
userFeed: imghost + '/static/image/user-feed.png',
userPhone: imghost + '/static/image/user-phone.png',
bodyBackground:imghost+'/static/image/user-bg.png',
userFxx:imghost+'/static/image/user-fxx.png',
userCard:imghost+'/static/image/user-card.png',
},
starCount:10,
starValue:10,
user: {
avatar: imghost + '/static/image/banner.png',
nickname: '清晨的风',

2
pages/Index/index.vue

@ -18,7 +18,7 @@
<!-- <HomePage v-show="(footCheck === 'chat')"></HomePage>-->
</view>
<view :class="{show:(footCheck === 'user')}">
<!-- <UserPage v-show="(footCheck === 'user')"></UserPage>-->
<UserPage v-show="(footCheck === 'user')"></UserPage>
</view>
<u-tabbar
:value="value1"

23
pages/Report/components/qrcode.scss

@ -0,0 +1,23 @@
.app-wallpaper{
padding:54rpx 66rpx;
align-items: center;
height: 100vh;
.qrcode-container{
position: relative;
}
.qrcode-content{
position: absolute;
top:0;
left:0;
width:100%;
height:100%;
align-items: center;
justify-content: center;
}
}
.body-background{
background:{
color:#F5F5F6;
}
}

174
pages/Report/qrcode.vue

@ -0,0 +1,174 @@
<template>
<u-navbar
:title="title"
:auto-back="true"
left-icon-size="40rpx"
bgColor="transparent"
leftIconColor="#fff"
:titleStyle="{color:'#fff'}"
></u-navbar>
<view class="body-background">
<u-image
:show-loading="true"
:src="staticImage.background"
width="100%"
height="420"
radius="10"
mode="widthFix"
class="img"
></u-image>
</view>
<view class="app-wallpaper border-box row">
<view class="qrcode-container col">
<u-image
:show-loading="true"
:src="staticImage.qrcodeBackground"
width="100%"
height="auto"
radius="10"
mode="widthFix"
class="img"
:custom-style="{margin:'auto auto'}"
></u-image>
<view class="qrcode-content row">
<view class="qrcode-main">
<u-image
:show-loading="true"
:src="staticImage.qrcode"
width="360"
height="360"
radius="10"
mode="widthFix"
class="img"
:custom-style="{flex:'0 0 100%'}"
></u-image>
<u-text text="请扫码签到" size="32" color="#020B18" align="center" :custom-style="{marginTop:'96rpx'}"></u-text>
</view>
</view>
</view>
</view>
</template>
<script>
import {
imghost
} from '@/config/host.js'
import MzSubsection from '@/components/MzSubsection/Index.vue';
import api from '@/utils/functions.js';
export default {
components: {
MzSubsection
},
data() {
return {
title: '党员报到码',
loading: true,
staticImage: {
background: imghost + '/static/image/report-bg.png',
qrcodeBackground: imghost + '/static/image/report-qrcode-bg.png',
qrcode: imghost + '/static/image/report-qrcode.png',
},
user: {
avatar: imghost + '/static/image/banner.png',
nickname: '清晨的风',
coupons: 221,
id: 88685,
},
isTop: false,
lists: [
{
id: 1,
thumb: imghost + '/static/image/new-1.png',
title: '全市公安机关夏季治安打击整治“彭安行动”新闻发布会召开',
desc: '需要您带一点猫砂上门,谢谢',
time: '2023/06/16',
is_new: true,
type:1
}, {
id: 2,
thumb: imghost + '/static/image/new-2.png',
title: '全市公安机关夏季治安打击整治“彭安行动”新闻发布会召开',
desc: '需要您带一点猫砂上门,谢谢',
time: '2023/06/16',
is_new: true,
type:1
}, {
id: 3,
thumb: imghost + '/static/image/new-3.png',
title: '全市公安机关夏季治安打击整治“彭安行动”111开',
desc: '需要您带一点猫砂上门,谢谢',
time: '2023/06/16',
is_new: false,
type:2
},
],
size: {
height: 0,
},
content:'' +
'<ul>' +
'<li style="font-size:16px;color:#666666;line-height:1.5;">知理,就是懂得做人的道理,具备独立思考的能力。 </li>' +
'<li style="font-size:16px;color:#666666;line-height:1.5;">知理的人,从书本中学习做人的道理,在实践中理解事物的发展规律。在学习知识、探寻真理的过程中,他们形成了自己的世界观和人生观,能够独立思考,不会人云亦云。</li>' +
'</ul>' +
'<div style="text-align: center;margin:30px auto;"><img src="http://live.admin.jinghkb.com/warm-man/static/image/cron-rule.png" alt=""></div>'
}
},
onLoad() {
},
computed: {
api() {
return api
},
sectionStyle() {
const style = {};
style.padding = '0 26rpx';
style.position = 'sticky';
style.zIndex = '9999';
style.top = api.navHeight().systemBarHeight + 'px'
return style;
},
},
methods: {
listHeight() {
let that = this;
let info = uni.createSelectorQuery().in(this).select('.top-container');
info.boundingClientRect(function (data) {
that.size.height += data.height;
console.log('top-container',data)
}).exec(function(res){});
},
chatDetail(item) {
wx.navigateTo({
url: '/pages/ChatDetail/index?id=' + item.id
});
},
checkSection(index) {
this.current = edit;
},
scrollToLower() {
},
},
options:{
styleIsolation:'shared'
},
onPageScroll(res) {
if (res.scrollTop <= 20) {
uni.$emit('isTop', true);
} else {
uni.$emit('isTop', false);
}
},
created() {
this.listHeight();
// this.pagePadding = (api.navHeight().navPaddingTop +
// api.navHeight().navHeight + (api.navHeight().headerPadding * 2))
}
}
</script>
<style lang="scss">
@import './components/qrcode.scss';
</style>

21
pages/User/components/index.scss

@ -0,0 +1,21 @@
.app-wallpaper{
padding:16rpx 26rpx;
}
.body-background{
background: {
color:#F5F5F6;
};
height:100vh;
}
.foot-button{
padding:40rpx 26rpx;
position: fixed;
bottom:0;
left:0;
z-index: 9999;
width: 100%;
background: {
color:#FFFFFF;
};
}

303
pages/User/edit.vue

@ -0,0 +1,303 @@
<template>
<view class="body-background"></view>
<u-navbar
:title="title"
:auto-back="true"
left-icon-size="40rpx"
:safe-area-inset-top="true"
:placeholder="true"
bgColor="#ffffff"
></u-navbar>
<view class="app-wallpaper">
<u-row :custom-style="{
backgroundColor:'#fff',
borderRadius:'10rpx',
minHeight:(api.navHeight().windowHeight-80)+'px',
alignItems:'flex-start'
}">
<u-col :custom-style="{padding:'30rpx 40rpx'}">
<u-form
labelPosition="left"
:model="model1"
:rules="rules"
ref="form1"
labelWidth="200rpx"
>
<u-form-item
:custom-style="{
padding:'34rpx 0'
}"
label="姓名"
prop="userInfo.name"
borderBottom
ref="item1"
>
<u-input
fontSize="28"
placeholder="请填写您的真实姓名"
v-model="model1.userInfo.name"
border="none"
></u-input>
</u-form-item>
<u-form-item
:custom-style="{
padding:'34rpx 0'
}"
label="手机号码"
prop="userInfo.name"
borderBottom
ref="item1"
>
<u-input
fontSize="28"
placeholder="请输入"
v-model="model1.userInfo.name"
border="none"
></u-input>
</u-form-item>
<u-form-item
:custom-style="{
padding:'34rpx 0'
}"
label="所属街道"
prop="userInfo.name"
borderBottom
ref="item1"
>
<u-input
fontSize="28"
placeholder="请选择"
v-model="model1.userInfo.name"
border="none"
></u-input>
</u-form-item>
<u-form-item
:custom-style="{
padding:'34rpx 0'
}"
label="所属社区"
prop="userInfo.name"
borderBottom
ref="item1"
>
<u-input
fontSize="28"
placeholder="请选择"
v-model="model1.userInfo.name"
border="none"
></u-input>
</u-form-item>
<u-form-item
:custom-style="{
padding:'34rpx 0'
}"
label="公司全称"
prop="userInfo.name"
borderBottom
ref="item1"
>
<u-input
fontSize="28"
placeholder="请输入"
v-model="model1.userInfo.name"
border="none"
></u-input>
</u-form-item>
<u-form-item
:custom-style="{
padding:'34rpx 0'
}"
label="职业分类"
prop="userInfo.name"
borderBottom
ref="item1"
>
<u-input
fontSize="28"
placeholder="请选择"
v-model="model1.userInfo.name"
border="none"
></u-input>
</u-form-item>
<u-form-item
:custom-style="{
padding:'34rpx 0'
}"
label="身份证号码"
prop="userInfo.name"
borderBottom
ref="item1"
>
<u-input
fontSize="28"
placeholder="请输入"
v-model="model1.userInfo.name"
border="none"
></u-input>
</u-form-item>
</u-form>
</u-col>
</u-row>
</view>
<view class="foot-button border-box">
<u-button size="large" shape="circle" color="#FF9545" :custom-style="{color:'#020B18'}">保存</u-button>
</view>
</template>
<script>
import {
imghost
} from '@/config/host.js'
import MzSubsection from '@/components/MzSubsection/Index.vue';
import api from '@/utils/functions.js';
export default {
components: {
MzSubsection
},
data() {
return {
model1: {
userInfo: {
name: '',
sex: 1,
},
},
rules: {
'userInfo.name': {
type: 'string',
required: true,
message: '请填写姓名',
trigger: ['blur', 'change']
},
'userInfo.sex': {
type: 'string',
max: 1,
required: true,
message: '请选择男或女',
trigger: ['blur', 'change']
},
},
sexList:[
{
id:1,
name: '男',
disabled: false,
},
{
i:2,
name: '女',
disabled: false,
},
],
list: [{
name: '最新资讯'
}, {
name: '表彰评优'
}, {
name: '活动回顾'
}],
// keyName
// list: [{name: ''}, {name: ''}, {name: ''}],
current: 1,
title: '编辑资料',
loading: true,
staticImage: {
bg: imghost + '/static/image/BG.png',
newIcon: imghost + '/static/image/new-icon.png',
},
user: {
avatar: imghost + '/static/image/banner.png',
nickname: '清晨的风',
coupons: 221,
id: 88685,
},
isTop: false,
lists: [
{
id: 1,
thumb: imghost + '/static/image/new-1.png',
title: '全市公安机关夏季治安打击整治“彭安行动”新闻发布会召开',
desc: '需要您带一点猫砂上门,谢谢',
time: '2023/06/16',
is_new: true
}, {
id: 2,
thumb: imghost + '/static/image/new-2.png',
title: '全市公安机关夏季治安打击整治“彭安行动”新闻发布会召开',
desc: '需要您带一点猫砂上门,谢谢',
time: '2023/06/16',
is_new: true
}, {
id: 3,
thumb: imghost + '/static/image/new-3.png',
title: '全市公安机关夏季治安打击整治“彭安行动”111开',
desc: '需要您带一点猫砂上门,谢谢',
time: '2023/06/16',
is_new: false
},
],
size: {
height: 500,
}
}
},
onLoad() {
},
computed: {
api() {
return api
},
sectionStyle() {
const style = {};
style.padding = '0 26rpx';
style.position = 'sticky';
style.zIndex = '9999';
style.top = api.navHeight().systemBarHeight + 'px'
return style;
},
listHeight() {
let that = this;
let height;
let info = uni.createSelectorQuery().in(this).select('.subsection');
info.boundingClientRect(function (data) {
that.size.height = data.height;
}).exec(function (res) {
});
// that.size.height = (api.navHeight().windowHeight - height);
}
},
methods: {
chatDetail(item) {
wx.navigateTo({
url: '/pages/ChatDetail/index?id=' + item.id
});
},
checkSection(index) {
this.current = edit;
},
scrollToLower() {
},
},
onPageScroll(res) {
if (res.scrollTop <= 20) {
uni.$emit('isTop', true);
} else {
uni.$emit('isTop', false);
}
},
created() {
this.listHeight();
// this.pagePadding = (api.navHeight().navPaddingTop +
// api.navHeight().navHeight + (api.navHeight().headerPadding * 2))
}
}
</script>
<style lang="scss">
@import './components/index.scss';
</style>

16
uni.scss

@ -1,17 +1,3 @@
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量同时无需 import 这个文件
*/
/* 颜色变量 */
@import 'uview-plus/theme.scss';
/* 行为相关颜色 */
@ -74,6 +60,6 @@ $uni-color-subtitle: #555555; // 二级标题颜色
$uni-font-size-subtitle:26px;
$uni-color-paragraph: #3F536E; // 文章段落颜色
$uni-font-size-paragraph:15px;
$u-cell-padding: 30rpx 26rpx;//cell __body 编剧
$u-cell-padding: 26rpx 26rpx;//cell __body 编剧
$u-cell-value-color:#999999;//cell value文字颜色
$u-cell-clickable-color:transparent;//cell 点击背景色

12
uni_modules/uni-swipe-action/components/uni-swipe-action-item/wx.wxs

@ -109,23 +109,13 @@ function move(value, instance, ownerInstance) {
var leftWidth = state.leftWidth
var rightWidth = state.rightWidth
// 获取可滑动范围
state.left = range(value, (-rightWidth+80), leftWidth);
var mo = ownerInstance.selectComponent('.button-group--right');
state.left = range(value, -rightWidth, leftWidth);
instance.requestAnimationFrame(function() {
mo.setStyle({
transform: 'translateX(' + (state.left*1.2) + 'px)',
'-webkit-transform': 'translateX(' + (state.left*1.2) + 'px)',
})
instance.setStyle({
transform: 'translateX(' + state.left + 'px)',
'-webkit-transform': 'translateX(' + state.left + 'px)',
background:'transparent',
})
instance.addClass('active')
})
}

Loading…
Cancel
Save