diff --git a/app.js b/app.js
index a9780cc..2c2dfbe 100644
--- a/app.js
+++ b/app.js
@@ -1,47 +1,54 @@
// app.js
+import {
+ copyrightUrl
+} from './net/http'
App({
globalData: {
userInfo: null,
isAdPopupVisible: false
},
onLaunch() {
- // 展示本地存储能力
- const logs = wx.getStorageSync('logs') || []
- logs.unshift(Date.now())
- wx.setStorageSync('logs', logs)
-
- // 登录
- wx.login({
- success: res => {
- // 发送 res.code 到后台换取 openId, sessionKey, unionId
- }
- })
+ // 全局事件对象
+ // this.eventBus = {}
+ // // 监听事件
+ // this.on = function (eventName, callback) {
+ // if (!this.eventBus[eventName]) {
+ // this.eventBus[eventName] = []
+ // }
+ // this.eventBus[eventName].push(callback)
+ // }
+ // // 触发事件
+ // this.emit = function (eventName, data) {
+ // const callbacks = this.eventBus[eventName]
+ // if (callbacks) {
+ // callbacks.forEach(callback => {
+ // callback(data)
+ // })
+ // }
+ // }
+ // this.initSse()
},
- // 显示广告弹窗
- showAdPopup(imageUrl) {
- this.globalData.isAdPopupVisible = true;
- this.globalData.adImageUrl = imageUrl;
- // 通知所有页面更新弹窗状态
- this.updateAdPopup();
- },
-
- // 关闭广告弹窗
- hideAdPopup() {
- this.globalData.isAdPopupVisible = false;
- this.updateAdPopup();
- },
-
- // 更新所有页面的弹窗状态
- updateAdPopup() {
- console.log("显示广告")
- const pages = getCurrentPages();
- pages.forEach(page => {
- if (page.setData) {
- page.setData({
- isAdPopupVisible: this.globalData.isAdPopupVisible,
- adImageUrl: this.globalData.adImageUrl
- });
- }
- });
- }
+ // initSse() {
+ // const req = wx.request({
+ // url: copyrightUrl + '/api/sse/connect',
+ // method: 'GET',
+ // enableChunked: true,
+ // header: {
+ // 'Cache-Control': 'no-cache',
+ // 'Accept': 'text/event-stream'
+ // },
+ // success: (res) => {
+ // console.log('SSE 连接成功', res);
+ // },
+ // fail: (err) => {
+ // console.error('SSE 连接失败', err);
+ // }
+ // })
+ // const listener = data => {
+ // // data为返回的数据,可以在此对数据进行处理
+ // console.log(data)
+ // }
+ // // 监听服务端返回的数据
+ // req.onChunkReceived(listener)
+ // }
})
\ No newline at end of file
diff --git a/app.json b/app.json
index 8afb67c..d99c439 100644
--- a/app.json
+++ b/app.json
@@ -2,8 +2,6 @@
"pages": [
"pages/login/login",
"pages/index/index",
- "pages/treaty/privacy/privacy",
- "pages/treaty/service/service",
"pages/mine/mineIndex/mine",
"pages/copyright/createProjectInfo/createProjectInfo",
"pages/copyright/createBuy/createBuy",
diff --git a/net/api/projectApi.js b/net/api/projectApi.js
index 0092901..db0a9c2 100644
--- a/net/api/projectApi.js
+++ b/net/api/projectApi.js
@@ -14,7 +14,8 @@ const apiPath = {
createProject: '/api/proj/create-quick', //快速创建项目
reCreate: '/api/proj/generate/proj-id/${projId}', //重新生成
proLangList: '/api/env/custom/list-active-lang', //项目语言
- ruleData: '/app/agreementportal/getrelease/89c4ca41-a44e-4ae2-bad3-6fa6536dd453', //使用规则 project="operator"
+ ruleData: '/app/agreementportal/getrelease/{id}', //使用规则 project="operator"
+ investDetail: "/news-content/listpage?rows=1&page=1", //投资优势
}
class ProjectService {
//项目列表
@@ -62,8 +63,12 @@ class ProjectService {
return request(apiPath.proLangList, "GET")
}
//获取使用规则数据
- static doGetRuleDate() {
- return request(apiPath.ruleData, "GET", null, null, "operator")
+ static doGetRuleDate(id) {
+ const path = apiPath.ruleData.replace('{id}', id)
+ return request(path, "GET", null, null, "online", false)
+ }
+ static doGetInvestDetail(data) {
+ return request(apiPath.investDetail, "GET", data)
}
}
diff --git a/net/http.js b/net/http.js
index cacacf6..febaee2 100644
--- a/net/http.js
+++ b/net/http.js
@@ -31,8 +31,8 @@ function request(url, method = "GET", data = {}, params = {}, project = "copyrig
baseUrl = operatorUrl
} else if (project == 'copyright') {
baseUrl = copyrightUrl
- } else {
- baseUrl = copyrightUrl
+ } else if(project=='online') {
+ baseUrl = 'https://www.aimzhu.com/operator'
}
return new Promise(function (resolve, reject) {
wx.request({
diff --git a/pages/copyright/createBuy/createBuy.js b/pages/copyright/createBuy/createBuy.js
index 7223d88..f5dffbf 100644
--- a/pages/copyright/createBuy/createBuy.js
+++ b/pages/copyright/createBuy/createBuy.js
@@ -20,6 +20,14 @@ Page({
wx.setNavigationBarTitle({
title: '创建软著',
})
+ wx.setNavigationBarColor({
+ frontColor: '#000000', // 必写项,字体颜色仅支持#ffffff和#000000
+ backgroundColor: '#F0F0F0', // 传递的颜色值,仅支持十六进制颜色
+ animation: { // 可选项
+ duration: 500,
+ timingFunc: 'easeIn'
+ }
+ })
this.doGetPrice()
},
//是否加急
diff --git a/pages/copyright/createBuy/createBuy.wxss b/pages/copyright/createBuy/createBuy.wxss
index 94f0ea9..3def24a 100644
--- a/pages/copyright/createBuy/createBuy.wxss
+++ b/pages/copyright/createBuy/createBuy.wxss
@@ -1,3 +1,9 @@
+page {
+ background: linear-gradient(to bottom, #F0F0F0, #FFFFFF);
+ background-size: 100% 100vh;
+ background-repeat: no-repeat;
+}
+
.custom-wx-checkbox .wx-checkbox-input.wx-checkbox-input-checked {
color: #fff !important;
background-color: #FFA900;
@@ -28,7 +34,7 @@
.buy-container {
display: flex;
flex-direction: column;
- padding: 20rpx;
+ padding: 15px;
}
.buy-title {
@@ -40,7 +46,6 @@
display: flex;
flex-direction: column;
border-radius: 10rpx;
- background-color: white;
}
.buy-all-box {
@@ -49,7 +54,8 @@
flex-direction: column;
border-radius: 20rpx;
background-color: white;
- box-shadow: 0rpx 0rpx 10rpx 10rpx #e9e8e88f;
+ /* box-shadow: 0rpx 0rpx 10rpx 10rpx #e9e8e88f; */
+ box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.08);
}
.buy-all-title {
@@ -182,7 +188,7 @@
align-items: center;
border-radius: 20rpx;
background-color: white;
- box-shadow: 0rpx 0rpx 10rpx 10rpx #e9e8e88f;
+ box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.08);
}
.hint-box .icon {
diff --git a/pages/copyright/createProjectInfo/createProjectInfo.wxss b/pages/copyright/createProjectInfo/createProjectInfo.wxss
index fb47200..09c7c73 100644
--- a/pages/copyright/createProjectInfo/createProjectInfo.wxss
+++ b/pages/copyright/createProjectInfo/createProjectInfo.wxss
@@ -1,5 +1,7 @@
page {
background: linear-gradient(to bottom, #F0F0F0, #FFFFFF);
+ background-size: 100% 100vh;
+ background-repeat: no-repeat;
}
.create-container {
diff --git a/pages/copyright/payment/payment.js b/pages/copyright/payment/payment.js
index 776723a..e1adccd 100644
--- a/pages/copyright/payment/payment.js
+++ b/pages/copyright/payment/payment.js
@@ -14,13 +14,26 @@ Page({
payWay: 1, //支付方式 1微信 2对公
showError: false,
errorHint: '',
+ showSuccess: false,
+ successHint: '',
listLoading: 'loading',
selectBag: {}, //选中的套餐包
},
onLoad(options) {
const _self = this
+ wx.setNavigationBarColor({
+ frontColor: '#000000', // 必写项,字体颜色仅支持#ffffff和#000000
+ backgroundColor: '#F0F0F0', // 传递的颜色值,仅支持十六进制颜色
+ animation: { // 可选项
+ duration: 500,
+ timingFunc: 'easeIn'
+ }
+ })
_self.doGetPackageList(_self.data.currentBagTab)
},
+ doRefreshList() {
+ this.doGetPackageList(this.data.currentBagTab)
+ },
//获取可以购买的套餐包
doGetPackageList(path) {
const _self = this
@@ -29,7 +42,7 @@ Page({
})
const data = {
page: 1,
- rows: 10
+ rows: 20
}
PayService.doGetBuyPackageList(path, data)
.then(res => {
@@ -49,7 +62,7 @@ Page({
})
_self.setData({
showError: true,
- errorHint: '未获取到套餐数据,请重试'
+ errorHint: '不好意思,没能获取到套餐数据。请您再试一次,相信马上就能看到啦。'
})
})
},
@@ -63,29 +76,30 @@ Page({
},
//监听充值金额变化
obMoney(e) {
- console.log(e)
var _self = this
const inputValue = e.detail.value
const regex = /^[+-]?(\d+(\.\d*)?|\.\d+)$/;
- if (regex.test(inputValue)) {
- //数字
- _self.setData({
- payMoney: e.detail.value,
- selectBag: {}
- })
- } else {
- wx.showToast({
- title: '请输入数字',
- icon: 'error',
- success: () => {
- setTimeout(() => {
- _self.setData({
- payMoney: 100,
- selectBag: {}
- })
- }, 1000);
- }
- })
+ if (inputValue != '') {
+ if (regex.test(inputValue)) {
+ //数字
+ _self.setData({
+ payMoney: e.detail.value,
+ selectBag: {}
+ })
+ } else {
+ wx.showToast({
+ title: '请输入数字',
+ icon: 'error',
+ success: () => {
+ setTimeout(() => {
+ _self.setData({
+ payMoney: 100,
+ selectBag: {}
+ })
+ }, 1000);
+ }
+ })
+ }
}
},
//切换套餐包
@@ -117,7 +131,7 @@ Page({
duration: 300
})
},
- //TODO 调用微信支付
+ //调用微信支付
toWeChatPay() {
const _self = this
wx.showLoading({
@@ -131,24 +145,83 @@ Page({
.then(res => {
wx.hideLoading()
console.log(res)
+ if (res && res.paySign && res.paySign != '') {
+ wx.requestPayment({
+ nonceStr: res.nonceStr,
+ package: `prepay_id=${res.prepayId}`,
+ paySign: res.paySign,
+ timeStamp: res.timeStamp + '',
+ signType: 'RSA',
+ success: res => {
+ if (res.errMsg && res.errMsg == 'requestPayment:ok') {
+ _self.setData({
+ successHint: '恭喜,您的充值已成功到账!',
+ showSuccess: true
+ })
+ setTimeout(() => {
+ wx.navigateBack()
+ }, 2000);
+ } else {
+ _self.setData({
+ errorHint: '很抱歉,本次充值失败,可能是网络不稳定或支付信息有误,请检查后重试。',
+ showError: true
+ })
+ }
+ },
+ fail: err => {
+ console.log('失败')
+ console.log(err)
+ var hint = '很抱歉,本次充值失败,可能是网络不稳定或支付信息有误,请检查后重试。'
+ if (err && err.errMsg && err.errMsg == 'requestPayment:fail cancel') {
+ //主动取消
+ hint = '本次支付已被您主动取消。若您改变主意,重新支付流程很便捷哦。'
+ }
+ _self.setData({
+ errorHint: hint,
+ showError: true
+ })
+ },
+ complete: () => {
+
+ }
+ })
+ } else {
+ _self.setData({
+ errorHint: err.msg ? err.msg : '很抱歉,本次充值失败,可能是网络不稳定或支付信息有误,请检查后重试。',
+ showError: true
+ })
+ }
})
.catch(err => {
wx.hideLoading()
console.log(err)
+ _self.setData({
+ errorHint: err.msg ? err.msg : '很抱歉,本次充值失败,可能是网络不稳定或支付信息有误,请检查后重试。',
+ showError: true
+ })
})
},
//去支付
doPay() {
const _self = this
- if (_self.data.payWay == '1') {
- //微信
- _self.toWeChatPay()
+ //判断钱大于0
+ if (_self.data.payMoney > 0) {
+ if (_self.data.payWay == '1') {
+ //微信
+ _self.toWeChatPay()
+ } else {
+ //对公 需要传递参数 选中套餐 or 直接冲钱
+ const id = _self.data.selectBag.packageInfoId
+ const name = _self.data.selectBag.packageName
+ wx.redirectTo({
+ url: '/pages/copyright/publicPay/publicPay?packageId=' + id + '&name=' + name + '&money=' + _self.data.payMoney,
+ })
+ }
} else {
- //对公 需要传递参数 选中套餐 or 直接冲钱
- const id = _self.data.selectBag.packageInfoId
- const name = _self.data.selectBag.packageName
- wx.redirectTo({
- url: '/pages/copyright/publicPay/publicPay?packageId=' + id + '&name=' + name + '&money=' + _self.data.payMoney,
+ //显示输入金额提示
+ _self.setData({
+ errorHint: '请输入要充值的金额',
+ showError: true
})
}
}
diff --git a/pages/copyright/payment/payment.wxml b/pages/copyright/payment/payment.wxml
index 2c67972..7590540 100644
--- a/pages/copyright/payment/payment.wxml
+++ b/pages/copyright/payment/payment.wxml
@@ -12,7 +12,7 @@
充值金额
¥
-
+
@@ -50,7 +50,7 @@
写材料套餐包
全托管套餐包
-
+
@@ -73,4 +73,5 @@
-
\ No newline at end of file
+
+
\ No newline at end of file
diff --git a/pages/copyright/payment/payment.wxss b/pages/copyright/payment/payment.wxss
index 70e7e45..3715b25 100644
--- a/pages/copyright/payment/payment.wxss
+++ b/pages/copyright/payment/payment.wxss
@@ -1,4 +1,26 @@
/* pages/copyright/payment/payment.wxss */
+page {
+ background: linear-gradient(to bottom, #F0F0F0, #FFFFFF);
+ background-size: 100% 100vh;
+ background-repeat: no-repeat;
+}
+
+.input-money {
+ font-size: 24px;
+ font-weight: bold;
+ height: 24px;
+ line-height: 24px;
+ text-align: left;
+}
+
+.input-money-placeholder {
+ font-size: 24px;
+ font-weight: bold;
+ height: 24px;
+ line-height: 24px;
+ text-align: left;
+}
+
.form-radio_wrap .radio .wx-radio-input {
height: 32rpx;
width: 32rpx;
diff --git a/pages/copyright/publicPay/publicPay.js b/pages/copyright/publicPay/publicPay.js
index 4b44c6a..d054a35 100644
--- a/pages/copyright/publicPay/publicPay.js
+++ b/pages/copyright/publicPay/publicPay.js
@@ -43,10 +43,10 @@ Page({
frontColor: '#000000', // 必写项,字体颜色仅支持#ffffff和#000000
backgroundColor: '#F0F0F0', // 传递的颜色值,仅支持十六进制颜色
animation: { // 可选项
- duration: 500,
- timingFunc: 'easeIn'
+ duration: 500,
+ timingFunc: 'easeIn'
}
- })
+ })
// 获取完整的年月日时分秒,以及默认显示的数组
const obj = dateTimePicker.dateTimePicker(this.data.startYear, this.data.endYear);
console.log(obj.dateTime)
@@ -127,27 +127,25 @@ Page({
accountRechargeId: res.accountRechargeId
})
} else {
- wx.showToast({
- title: '获取订单失败,请重试',
- icon: 'error',
- duration: 1500,
- success: () => {
- wx.navigateBack()
- }
+ _self.setData({
+ showError: true,
+ errorHint: '获取订单失败,请重试'
})
+ setTimeout(() => {
+ wx.navigateBack()
+ }, 1000);
}
console.log(res)
}, err => {
wx.hideLoading()
console.log(err)
- wx.showToast({
- title: '获取订单失败,请重试',
- icon: 'error',
- duration: 1500,
- success: () => {
- wx.navigateBack()
- }
+ _self.setData({
+ showError: true,
+ errorHint: '获取订单失败,请重试'
})
+ setTimeout(() => {
+ wx.navigateBack()
+ }, 1000);
})
},
//获取收款方信息
diff --git a/pages/copyright/publicPay/publicPay.wxss b/pages/copyright/publicPay/publicPay.wxss
index 3a2f78c..9fd6290 100644
--- a/pages/copyright/publicPay/publicPay.wxss
+++ b/pages/copyright/publicPay/publicPay.wxss
@@ -1,6 +1,8 @@
/* pages/copyright/publicPay/publicPay.wxss */
page {
background: linear-gradient(to bottom, #F0F0F0, #FFFFFF);
+ background-size: 100% 100vh;
+ background-repeat: no-repeat;
}
.container-box {
diff --git a/pages/login/login.js b/pages/login/login.js
index bd6f333..01f3434 100644
--- a/pages/login/login.js
+++ b/pages/login/login.js
@@ -92,14 +92,16 @@ Page({
},
//用户服务协议
showServiceDeal() {
+ const id = '68eee8f5-33d3-4246-aeee-a33956677101'
wx.navigateTo({
- url: '/pages/treaty/service/service',
+ url: '/pages/treaty/rule/rule?id=' + id,
})
},
//隐私条款
showPrivacyDeal() {
+ const id = '93679af4-e264-4d1c-bd49-538028daa95d'
wx.navigateTo({
- url: '/pages/treaty/privacy/privacy',
+ url: '/pages/treaty/rule/rule?id=' + id,
})
},
onChange(e) {
diff --git a/pages/mine/mineAccount/mineContact/mineContact.wxss b/pages/mine/mineAccount/mineContact/mineContact.wxss
index a6be536..af13e17 100644
--- a/pages/mine/mineAccount/mineContact/mineContact.wxss
+++ b/pages/mine/mineAccount/mineContact/mineContact.wxss
@@ -1,5 +1,7 @@
page {
background: linear-gradient(to bottom, #F0F0F0, #FFFFFF);
+ background-size: 100% 100vh;
+ background-repeat: no-repeat;
}
diff --git a/pages/mine/mineAccount/mineCoupons/mineCoupons.js b/pages/mine/mineAccount/mineCoupons/mineCoupons.js
index b3547c4..c894674 100644
--- a/pages/mine/mineAccount/mineCoupons/mineCoupons.js
+++ b/pages/mine/mineAccount/mineCoupons/mineCoupons.js
@@ -139,11 +139,9 @@ Page({
},
//显示使用规则
showRule() {
- ProApi.doGetRuleDate()
- .then(res => {
- console.log(res)
- }, err => {
- console.log(err)
- })
+ const id = '89c4ca41-a44e-4ae2-bad3-6fa6536dd453'
+ wx.navigateTo({
+ url: '/pages/treaty/rule/rule?id=' + id,
+ })
}
})
\ No newline at end of file
diff --git a/pages/mine/mineAccount/mineCoupons/mineCoupons.wxss b/pages/mine/mineAccount/mineCoupons/mineCoupons.wxss
index d4b0d55..a742b8c 100644
--- a/pages/mine/mineAccount/mineCoupons/mineCoupons.wxss
+++ b/pages/mine/mineAccount/mineCoupons/mineCoupons.wxss
@@ -1,6 +1,8 @@
/* pages/mine/mineAccount/mineCoupons/mineCoupons.wxss */
page {
background: linear-gradient(to bottom, #F0F0F0, #FFFFFF);
+ background-size: 100% 100vh;
+ background-repeat: no-repeat;
}
.list-title-btns {
diff --git a/pages/mine/mineAccount/mineInfo/mineInfo.wxss b/pages/mine/mineAccount/mineInfo/mineInfo.wxss
index 3c45b20..48042f3 100644
--- a/pages/mine/mineAccount/mineInfo/mineInfo.wxss
+++ b/pages/mine/mineAccount/mineInfo/mineInfo.wxss
@@ -1,6 +1,8 @@
/* pages/mine/mineAccount/mineInfo/mineInfo.wxss */
page {
background: linear-gradient(to bottom, #F0F0F0, #FFFFFF);
+ background-size: 100% 100vh;
+ background-repeat: no-repeat;
}
.info-container {
diff --git a/pages/mine/mineAccount/mineOrder/mineOrder.wxss b/pages/mine/mineAccount/mineOrder/mineOrder.wxss
index 2dafddb..be92dfa 100644
--- a/pages/mine/mineAccount/mineOrder/mineOrder.wxss
+++ b/pages/mine/mineAccount/mineOrder/mineOrder.wxss
@@ -1,5 +1,7 @@
page {
background: linear-gradient(to bottom, #F0F0F0, #FFFFFF);
+ background-size: 100% 100vh;
+ background-repeat: no-repeat;
}
.search-box {
diff --git a/pages/mine/mineIndex/mine.js b/pages/mine/mineIndex/mine.js
index acf02c3..eb70622 100644
--- a/pages/mine/mineIndex/mine.js
+++ b/pages/mine/mineIndex/mine.js
@@ -44,7 +44,11 @@ Page({
text: '知道了'
}],
hintTxt: '',
- showHint: false
+ showHint: false,
+ showError: false,
+ errorHint: '',
+ animationData: {}, //刷新动画
+ animation: null,
},
/**
@@ -58,6 +62,43 @@ Page({
_self.setData({
contentHeight: h
})
+ // 创建一个动画实例
+ const animation = wx.createAnimation({
+ duration: 1000,
+ timingFunction: 'ease'
+ });
+ this.setData({
+ animation: animation
+ })
+ },
+ //刷新账户
+ doRefresh() {
+ const _self = this
+ _self.playAnimation()
+ _self.getMineAccount() //获取账户信息
+ _self.getMinePackageCount() //获取套餐包信息
+ },
+ //播放刷新动画
+ playAnimation() {
+ const _self = this
+ // 重置动画
+ _self.data.animation.scale(1, 1).rotate(0).step({
+ duration: 0
+ });
+ _self.setData({
+ animationData: _self.data.animation.export()
+ });
+ _self.data.animation.scale(0.8, 0.8).rotate(180).step()
+ // 定义新的动画
+ _self.data.animation.scale(1, 1).rotate(360).step()
+ _self.setData({
+ animationData: _self.data.animation.export()
+ });
+ setTimeout(() => {
+ _self.setData({
+ animationData: {}
+ })
+ }, 1100);
},
onShow(options) {
this.getMineAccount() //获取账户信息
@@ -72,6 +113,10 @@ Page({
})
}, err => {
console.log(err)
+ _self.setData({
+ errorHint: err.msg ? err.msg : '网络信号开小差啦,请您稍后再试,给您添麻烦~',
+ showError: true
+ })
})
},
//获取账户余额
@@ -83,12 +128,17 @@ Page({
allCount: res.ALL,
materialCount: res.MATERIAL
})
- }, err => {
+ })
+ .catch(err => {
console.log(err)
_self.setData({
allCount: 0,
materialCount: 0
})
+ _self.setData({
+ errorHint: err.msg ? err.msg : '网络信号开小差啦,请您稍后再试,给您添麻烦~',
+ showError: true
+ })
})
},
//优惠卷
@@ -122,5 +172,11 @@ Page({
showHint: false,
hintTxt: ''
})
+ },
+ //下拉刷新
+ onPullDownRefresh() {
+ this.getMineAccount() //获取账户信息
+ this.getMinePackageCount() //获取套餐包信息
+ wx.stopPullDownRefresh()
}
})
\ No newline at end of file
diff --git a/pages/mine/mineIndex/mine.json b/pages/mine/mineIndex/mine.json
index bdf60c2..bb15e8b 100644
--- a/pages/mine/mineIndex/mine.json
+++ b/pages/mine/mineIndex/mine.json
@@ -1,4 +1,8 @@
{
- "usingComponents": {"mp-dialog": "weui-miniprogram/dialog/dialog"},
- "navigationStyle": "custom"
+ "usingComponents": {
+ "mp-dialog": "weui-miniprogram/dialog/dialog",
+ "mp-toptips": "weui-miniprogram/toptips/toptips"
+ },
+ "navigationStyle": "custom",
+ "enablePullDownRefresh": true
}
\ No newline at end of file
diff --git a/pages/mine/mineIndex/mine.wxml b/pages/mine/mineIndex/mine.wxml
index a2747f0..53d0897 100644
--- a/pages/mine/mineIndex/mine.wxml
+++ b/pages/mine/mineIndex/mine.wxml
@@ -7,9 +7,9 @@
-
+
{{accountInfo.accountMoney/100}}
-
+
账户余额
@@ -27,9 +27,9 @@
写材料
{{materialCount}}
-
+
- 优惠卷
+ 优惠卷
@@ -38,7 +38,7 @@