init
This commit is contained in:
230
fuintUniapp/pages/points/detail.vue
Normal file
230
fuintUniapp/pages/points/detail.vue
Normal file
@@ -0,0 +1,230 @@
|
||||
<template>
|
||||
<view class="container">
|
||||
<view class="my-point">
|
||||
<view class="my-tip"><text class="iconfont icon-jifen"></text>我的积分余额</view>
|
||||
<view class="my-account">{{ userInfo.point ? userInfo.point : 0 }}</view>
|
||||
<view class="my-gift">
|
||||
<view class="gift" @click="toGive()">转赠好友</view>
|
||||
<view class="gift" @click="toUsePoint()">兑换积分</view>
|
||||
</view>
|
||||
</view>
|
||||
<mescroll-body ref="mescrollRef" :sticky="true" @init="mescrollInit" :down="{ use: false }" :up="upOption"
|
||||
@up="upCallback">
|
||||
<view class="log-list">
|
||||
<view v-for="(item, index) in list.content" :key="index" class="log-item">
|
||||
<view class="item-left flex-box">
|
||||
<view class="rec-status">
|
||||
<text>{{ item.description }}</text>
|
||||
</view>
|
||||
<view class="rec-time">
|
||||
<text>{{ timeStamp(item.createTime) }}</text>
|
||||
</view>
|
||||
</view>
|
||||
<view class="item-right" :class="[item.amount > 0 ? 'col-green' : 'col-6']">
|
||||
<text>{{ item.amount > 0 ? '+' : '' }}{{ item.amount }}</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</mescroll-body>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import MescrollBody from '@/components/mescroll-uni/mescroll-body.vue'
|
||||
import MescrollMixin from '@/components/mescroll-uni/mescroll-mixins'
|
||||
import * as LogApi from '@/api/points/log'
|
||||
import * as UserApi from '@/api/user'
|
||||
import { getEmptyPaginateObj, getMoreListData } from '@/utils/app'
|
||||
import Empty from '@/components/empty'
|
||||
|
||||
const pageSize = 10
|
||||
|
||||
export default {
|
||||
components: {
|
||||
MescrollBody,
|
||||
Empty
|
||||
},
|
||||
mixins: [MescrollMixin],
|
||||
data() {
|
||||
return {
|
||||
userInfo: {},
|
||||
// 数据记录
|
||||
list: getEmptyPaginateObj(),
|
||||
// 正在加载
|
||||
isLoading: false,
|
||||
// 上拉加载配置
|
||||
upOption: {
|
||||
// 首次自动执行
|
||||
auto: true,
|
||||
// 每页数据的数量; 默认10
|
||||
page: { size: pageSize },
|
||||
// 数量要大于12条才显示无更多数据
|
||||
noMoreSize: 12,
|
||||
// 空布局
|
||||
empty: {
|
||||
tip: '亲,暂无相关数据'
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面加载
|
||||
*/
|
||||
onShow(options) {
|
||||
this.getUserInfo()
|
||||
this.getLogList(1)
|
||||
},
|
||||
|
||||
methods: {
|
||||
|
||||
/**
|
||||
* 上拉加载的回调 (页面初始化时也会执行一次)
|
||||
* 其中page.num:当前页 从1开始, page.size:每页数据条数,默认10
|
||||
* @param {Object} page
|
||||
*/
|
||||
upCallback(page) {
|
||||
const app = this
|
||||
// 设置列表数据
|
||||
app.getLogList(page.num)
|
||||
.then(list => {
|
||||
const curPageLen = list.content.length
|
||||
const totalSize = list.totalElements
|
||||
app.mescroll.endBySize(curPageLen, totalSize)
|
||||
})
|
||||
.catch(() => app.mescroll.endErr())
|
||||
},
|
||||
toUsePoint() {
|
||||
this.$navTo('pages/coupon/list?type=C&needPoint=1')
|
||||
},
|
||||
toGive() {
|
||||
this.$navTo('pages/points/gift')
|
||||
},
|
||||
// 获取当前用户信息
|
||||
getUserInfo() {
|
||||
const app = this
|
||||
return new Promise((resolve, reject) => {
|
||||
UserApi.info()
|
||||
.then(result => {
|
||||
app.userInfo = result.data.userInfo
|
||||
resolve(app.userInfo)
|
||||
})
|
||||
.catch(err => {
|
||||
if (err.result && err.result.status == 1001) {
|
||||
app.isLogin = false
|
||||
resolve(null)
|
||||
} else {
|
||||
reject(err)
|
||||
}
|
||||
})
|
||||
})
|
||||
},
|
||||
// 获取积分明细列表
|
||||
getLogList(pageNo = 1) {
|
||||
const app = this
|
||||
return new Promise((resolve, reject) => {
|
||||
LogApi.list({ page: pageNo })
|
||||
.then(result => {
|
||||
// 合并新数据
|
||||
const newList = result.data
|
||||
app.list.content = getMoreListData(newList, app.list, pageNo)
|
||||
resolve(newList)
|
||||
})
|
||||
})
|
||||
},
|
||||
timeStamp: function(value) {
|
||||
var date = new Date(value);
|
||||
var year = date.getFullYear();
|
||||
var month = ("0" + (date.getMonth() + 1)).slice(-2);
|
||||
var sdate = ("0" + date.getDate()).slice(-2);
|
||||
var hour = ("0" + date.getHours()).slice(-2);
|
||||
var minute = ("0" + date.getMinutes()).slice(-2);
|
||||
var second = ("0" + date.getSeconds()).slice(-2);
|
||||
// 拼接
|
||||
var result = year + "." + month + "." + sdate + " " + hour + ":" + minute //+ ":" + second;
|
||||
// 返回
|
||||
return result;
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.container {
|
||||
background: #FFFFFF;
|
||||
}
|
||||
.my-point {
|
||||
height: 320rpx;
|
||||
color: #FFFFFF;
|
||||
background: $fuint-theme;
|
||||
padding-top: 80rpx;
|
||||
text-align: center;
|
||||
.my-tip {
|
||||
text-align: center;
|
||||
}
|
||||
.my-account {
|
||||
text-align: center;
|
||||
font-size: 45rpx;
|
||||
font-weight: bold;
|
||||
margin-top: 14rpx;
|
||||
}
|
||||
.iconfont {
|
||||
height: 30rpx;
|
||||
width: 30rpx;
|
||||
margin-right: 5rpx;
|
||||
}
|
||||
.my-gift {
|
||||
text-align: center;
|
||||
display: inline-block;
|
||||
.gift {
|
||||
height: 60rpx;
|
||||
width: 140rpx;
|
||||
margin-top: 20rpx;
|
||||
line-height: 60rpx;
|
||||
text-align: center;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
float: left;
|
||||
margin-right: 40rpx;
|
||||
margin-left: 40rpx;
|
||||
border-radius: 6rpx;
|
||||
color: #f86d48;
|
||||
background: #f8df98;
|
||||
font-size: 22rpx;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.log-list {
|
||||
padding: 0 30rpx;
|
||||
background: #FFFFFF;
|
||||
border-radius: 20rpx;
|
||||
}
|
||||
|
||||
.log-item {
|
||||
font-size: 32rpx;
|
||||
padding: 20rpx 20rpx;
|
||||
line-height: 1.8;
|
||||
border-bottom: 1rpx solid rgb(238, 238, 238);
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.rec-time {
|
||||
color: #888888;
|
||||
font-size: 24rpx;
|
||||
}
|
||||
// 空数据按钮
|
||||
.empty-ipt {
|
||||
width: 220rpx;
|
||||
margin: 10rpx auto;
|
||||
font-size: 28rpx;
|
||||
height: 64rpx;
|
||||
line-height: 64rpx;
|
||||
text-align: center;
|
||||
color: #fff;
|
||||
border-radius: 5rpx;
|
||||
background: linear-gradient(to right, $fuint-theme, $fuint-theme);
|
||||
}
|
||||
</style>
|
||||
208
fuintUniapp/pages/points/gift.vue
Normal file
208
fuintUniapp/pages/points/gift.vue
Normal file
@@ -0,0 +1,208 @@
|
||||
<template>
|
||||
<view class="container">
|
||||
<!-- 标题 -->
|
||||
<view class="page-title">把积分转赠给好友</view>
|
||||
<!-- 表单组件 -->
|
||||
<view class="form-wrapper">
|
||||
<u-form :model="form" ref="uForm" label-width="160rpx">
|
||||
<u-form-item label="手机号码" prop="mobile">
|
||||
<u-input v-model="form.mobile" placeholder="请输入好友手机号" />
|
||||
</u-form-item>
|
||||
<u-form-item label="转赠数量" prop="amount">
|
||||
<u-input v-model="form.amount" placeholder="请输入转赠数量" />
|
||||
</u-form-item>
|
||||
<view class="my-amount">可用积分:
|
||||
<text class="amount">{{ userInfo.point ? userInfo.point : 0 }}</text>
|
||||
<text class="all" @click="useAllPoint()">全部</text>
|
||||
</view>
|
||||
<u-form-item label="转赠留言" prop="remark" :border-bottom="false">
|
||||
<u-input v-model="form.remark" placeholder="请输入转赠留言" />
|
||||
</u-form-item>
|
||||
</u-form>
|
||||
</view>
|
||||
<!-- 操作按钮 -->
|
||||
<view class="footer">
|
||||
<view class="btn-wrapper">
|
||||
<view class="btn-item btn-item-main" :class="{ disabled }" @click="handleSubmit()">确定转赠</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { isMobile } from '@/utils/verify'
|
||||
import * as PointApi from '@/api/points/log'
|
||||
import * as UserApi from '@/api/user'
|
||||
|
||||
// 表单验证规则
|
||||
const rules = {
|
||||
amount: [{
|
||||
required: true,
|
||||
message: '请输入转赠数量',
|
||||
trigger: ['blur', 'change']
|
||||
}],
|
||||
mobile: [{
|
||||
required: true,
|
||||
message: '请输入好友手机号',
|
||||
trigger: ['blur', 'change']
|
||||
}, {
|
||||
// 自定义验证函数
|
||||
validator: (rule, value, callback) => {
|
||||
// 返回true表示校验通过,返回false表示不通过
|
||||
return isMobile(value)
|
||||
},
|
||||
message: '好友手机号码不正确',
|
||||
// 触发器可以同时用blur和change
|
||||
trigger: ['blur'],
|
||||
}]
|
||||
}
|
||||
|
||||
export default {
|
||||
components: {},
|
||||
data() {
|
||||
return {
|
||||
userInfo: { point: 0 },
|
||||
form: { mobile: "", amount: "", remark: "" },
|
||||
rules,
|
||||
// 按钮禁用
|
||||
disabled: false
|
||||
}
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面加载
|
||||
*/
|
||||
onShow(options) {
|
||||
this.getUserInfo()
|
||||
},
|
||||
|
||||
// 必须要在onReady生命周期,因为onLoad生命周期组件可能尚未创建完毕
|
||||
onReady() {
|
||||
this.$refs.uForm.setRules(this.rules)
|
||||
},
|
||||
|
||||
methods: {
|
||||
|
||||
// 表单提交
|
||||
handleSubmit() {
|
||||
const app = this
|
||||
if (app.disabled) {
|
||||
return false
|
||||
}
|
||||
app.$refs.uForm.validate(valid => {
|
||||
if (valid) {
|
||||
app.disabled = true
|
||||
PointApi.gift({ amount: this.form.amount, mobile: this.form.mobile, remark: this.form.remark })
|
||||
.then(result => {
|
||||
if (result.data) {
|
||||
app.form.mobile = ""
|
||||
app.form.amount = ""
|
||||
app.form.remark = ""
|
||||
uni.navigateBack()
|
||||
} else {
|
||||
app.$toast(result.message)
|
||||
}
|
||||
})
|
||||
.finally(() => app.disabled = false)
|
||||
}
|
||||
})
|
||||
},
|
||||
// 获取当前用户信息
|
||||
getUserInfo() {
|
||||
const app = this
|
||||
return new Promise((resolve, reject) => {
|
||||
UserApi.info()
|
||||
.then(result => {
|
||||
app.userInfo = result.data.userInfo
|
||||
resolve(app.userInfo)
|
||||
})
|
||||
.catch(err => {
|
||||
if (err.result && err.result.status == 1001) {
|
||||
app.isLogin = false
|
||||
resolve(null)
|
||||
} else {
|
||||
reject(err)
|
||||
}
|
||||
})
|
||||
})
|
||||
},
|
||||
useAllPoint() {
|
||||
const amount = this.userInfo.point ? this.userInfo.point : 0
|
||||
this.form.amount = amount+""
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
page {
|
||||
background: #f7f8fa;
|
||||
}
|
||||
</style>
|
||||
<style lang="scss" scoped>
|
||||
.page-title {
|
||||
width: 94%;
|
||||
margin: 0 auto;
|
||||
padding-top: 40rpx;
|
||||
font-size: 28rpx;
|
||||
color: rgba(69, 90, 100, 0.6);
|
||||
}
|
||||
|
||||
.form-wrapper {
|
||||
margin: 20rpx auto 20rpx auto;
|
||||
padding: 0 40rpx;
|
||||
width: 94%;
|
||||
box-shadow: 0 1rpx 5rpx 0px rgba(0, 0, 0, 0.05);
|
||||
border-radius: 16rpx;
|
||||
background: #fff;
|
||||
.my-amount {
|
||||
height: 60rpx;
|
||||
margin-left: 160rpx;
|
||||
margin-top: 10rpx;
|
||||
color: #888888;
|
||||
.amount{
|
||||
color: #f9211c;
|
||||
}
|
||||
.all {
|
||||
margin-left: 30rpx;
|
||||
color: #888888;
|
||||
background: #f5f5f5;
|
||||
padding: 5rpx 10rpx 5rpx 10rpx;
|
||||
border-radius: 10rpx;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* 底部操作栏 */
|
||||
|
||||
.footer {
|
||||
margin-top: 60rpx;
|
||||
|
||||
.btn-wrapper {
|
||||
height: 100%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
padding: 0 20rpx;
|
||||
}
|
||||
|
||||
.btn-item {
|
||||
flex: 1;
|
||||
font-size: 28rpx;
|
||||
height: 80rpx;
|
||||
line-height: 80rpx;
|
||||
text-align: center;
|
||||
color: #fff;
|
||||
border-radius: 40rpx;
|
||||
}
|
||||
|
||||
.btn-item-main {
|
||||
background: linear-gradient(to right, #f9211c, #ff6335);
|
||||
|
||||
// 禁用按钮
|
||||
&.disabled {
|
||||
background: #ff9779;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user