diff --git a/common/css/app.scss b/common/css/app.scss
index 38208b3..6927ad2 100644
--- a/common/css/app.scss
+++ b/common/css/app.scss
@@ -42,9 +42,10 @@ view {
.pageBgImg {
font-size: 28rpx;;
color: #333;
- background: url('http://jxtemp.oss-cn-hangzhou.aliyuncs.com/defaultImages/admin/bigImg/topPageBg.png') #F6F6F6 no-repeat;
- background-size: 100% 324rpx;
- min-height: 100vh;
+ background: #F6F6F6;
+ background-color: #1989fa;
+ width: 100%;
+ height: 324rpx;
}
.pad {
padding: 0 28rpx;
@@ -119,21 +120,20 @@ image {
}
/* 通用 */
- ::-webkit-input-placeholder { color:#ADADAD; }
- ::-moz-placeholder { color:#ADADAD; } /* firefox 19+ */
- :-ms-input-placeholder { color:#ADADAD; } /* ie */
- input:-moz-placeholder { color:#ADADAD; }
+ ::-webkit-input-placeholder { color:#BBBBBB; }
+ ::-moz-placeholder { color:#BBBBBB; } /* firefox 19+ */
+ :-ms-input-placeholder { color:#BBBBBB; } /* ie */
+ input:-moz-placeholder { color:#BBBBBB; }
+
+ input::-webkit-input-placeholder {
+ color: #BBBBBB !important;
+ }
+ input::-moz-input-placeholder {
+ color: #BBBBBB !important;
+ }
+ input::-ms-input-placeholder {
+ color: #BBBBBB !important;
+ }
- input::-webkit-input-placeholder { color: #CDCDCD !important; }
- input::-moz-input-placeholder { color: #CDCDCD !important; }
- input::-ms-input-placeholder { color: #CDCDCD !important; }
- // /* webkit专用 */
- .input1::-webkit-input-placeholder { color:#00f; }
- // #input2::-webkit-input-placeholder { color:#090; background:lightgreen; text-transform:uppercase; }
- // #input3::-webkit-input-placeholder { font-style:italic; text-decoration:overline; color:#999; }
- // /* mozilla专用 */
- // #input1::-moz-placeholder { color:#00f; }
- // #input2::-moz-placeholder { color:#090; background:lightgreen; text-transform:uppercase; }
- // #input3::-moz-placeholder { font-style:italic; text-decoration:overline; color:#999; }
diff --git a/config/api.js b/config/api.js
index 280bd90..e9958d3 100644
--- a/config/api.js
+++ b/config/api.js
@@ -5,6 +5,15 @@
export const getStudentDynamics = (data) => http.post('business/coach/getStudentDynamics', data)
// 登录后查看是不是要签名
export const needSign = (data) => http.post('business/coach/needSign', data)
+ // 获得当日结算统计
+ export const getSettlementStatistics = (data) => http.post('business/coach/getSettlementStatistics', data)
+ // 获得教练的学员结算列表
+ export const settle_list = (data) => http.post('business/coach/settle_list', data)
+
+
+
+
+
diff --git a/config/request.js b/config/request.js
index 2f189ae..5085d02 100644
--- a/config/request.js
+++ b/config/request.js
@@ -25,8 +25,9 @@ module.exports = (vm) => {
if(contentTypeIndex) {
// alert(contentTypeIndex)
config.header['content-type'] = ContentType[contentTypeIndex]
+ }else {
+ config.header['content-type'] = 'application/json;charset=utf-8'
}
- config.header['content-type'] = 'application/json;charset=utf-8'
// 初始化请求拦截器时,会执行此方法,此时data为undefined,赋予默认{}
config.data = config.data || {}
// 根据custom参数中配置的是否需要token,添加对应的请求头
diff --git a/config/site.config.js b/config/site.config.js
index ae290bb..8e1383d 100644
--- a/config/site.config.js
+++ b/config/site.config.js
@@ -3,7 +3,7 @@ const VUE_APP_PLATFORM = process.env.VUE_APP_PLATFORM;
module.exports = {
H5_API: VUE_APP_PLATFORM === 'h5' ? '/api' : '',//h5代理
// WX_API: VUE_APP_PLATFORM === 'h5' ? '' : 'http://192.168.1.37:8318/',//非代理地址
- WX_API: VUE_APP_PLATFORM === 'h5' ? '/' : 'http://work.lyjppt.com:8099/',//非代理地址
+ WX_API: VUE_APP_PLATFORM === 'h5' ? '/' : 'http://123.6.232.1:8099/',//非代理地址
// TEMP_HOST: VUE_APP_PLATFORM === 'h5' ? '' : 'http://192.168.1.39:48082/',
httpPrefix: 'app-api/',
imgUrl: 'http://jxtemp.oss-cn-hangzhou.aliyuncs.com/defaultImages/admin/bigImg/'
diff --git a/manifest.json b/manifest.json
index a272e88..3e98f23 100644
--- a/manifest.json
+++ b/manifest.json
@@ -2,8 +2,8 @@
"name" : "洛阳驾校端",
"appid" : "__UNI__BD23957",
"description" : "",
- "versionName" : "1.0.0",
- "versionCode" : "100",
+ "versionName" : "1.0.1",
+ "versionCode" : 101,
"transformPx" : false,
/* 5+App特有相关 */
"app-plus" : {
@@ -86,8 +86,8 @@
"disableHostCheck" : true,
"proxy" : {
"/api" : {
- "target" : "http://192.168.1.38:8318/",
- // "target" : "http://work.lyjppt.com:8099/",
+ "target" : "http://192.168.1.43:8318/",
+ // "target" : "http://123.6.232.1:8099",
"changeOrigin" : true,
"secure" : true,
"pathRewrite" : {
diff --git a/pages/indexEntry/settlement/detail/detail.vue b/pages/indexEntry/settlement/detail/detail.vue
index 4b3303f..1f29b50 100644
--- a/pages/indexEntry/settlement/detail/detail.vue
+++ b/pages/indexEntry/settlement/detail/detail.vue
@@ -1,4 +1,6 @@
+
+
@@ -49,6 +51,7 @@
+
\ No newline at end of file
diff --git a/pages/login/login.vue b/pages/login/login.vue
index 7cb1914..90eff8c 100644
--- a/pages/login/login.vue
+++ b/pages/login/login.vue
@@ -17,12 +17,14 @@
-
+
+
-
+
+
{{codeText}}
@@ -63,10 +65,11 @@
return uni.$u.test.mobile(this.FormData.phone)
},
btnHighlight() {
- return this.isPhone&&uni.$u.test.code(this.FormData.code, 4)
+ return this.isPhone&&this.FormData.code*1>999
}
},
methods: {
+
// 是否选择协议
changeRadio(val) {
this.isCheck = val
@@ -112,13 +115,14 @@
this.$store.commit('update_vuex_loginInfo',res.data)
await this.$store.dispatch('getUserInfo')
if(res.userType==5) {
+ this.showRole = true
+ }else {
+ if(res.userType==3) this.$store.commit('upDateIdentity', '实操教练')
+ if(res.userType==4) this.$store.commit('upDateIdentity', '校长')
uni.switchTab({
url: '/pages/tabbar/statistics/index'
})
- }else {
- this.showRole = true
}
-
},
selectClick(item) {
this.showRole = false
@@ -140,6 +144,9 @@
min-height: 100vh;
// background: url('../../../static/images/userCenter/loginTopBg.png') no-repeat;
// background-size: 100% 360rpx;
+ .uni-input-placeholder {
+ color: #BBBBBB !important;
+ }
.u-back-top {
padding: 32rpx 0 0 0;
.backBox {
@@ -176,6 +183,14 @@
.inputBox {
flex: 1;
+ input {
+ display: block;
+ width: 100%;
+ height: 100%;
+ display: block;
+ line-height: 112rpx;
+ font-size: 30rpx;
+ }
}
.code {
color: #BBBBBB;
diff --git a/pages/recordEntry/operate/mySchedule/comp/pickDateTimer/pickDateTimer.vue b/pages/recordEntry/operate/mySchedule/comp/pickDateTimer/pickDateTimer.vue
index f9ecd3a..06c919e 100644
--- a/pages/recordEntry/operate/mySchedule/comp/pickDateTimer/pickDateTimer.vue
+++ b/pages/recordEntry/operate/mySchedule/comp/pickDateTimer/pickDateTimer.vue
@@ -221,6 +221,7 @@
// 选择日期
chooseDate(item) {
this.chooseDay = item.date
+ this.radioVal = ''
this.scheduleClassGetFn()
// console.log('*****')
// console.log(this.chooseDay)
diff --git a/pages/recordEntry/operate/mySchedule/mySchedule.vue b/pages/recordEntry/operate/mySchedule/mySchedule.vue
index 17bfa47..eb1edd9 100644
--- a/pages/recordEntry/operate/mySchedule/mySchedule.vue
+++ b/pages/recordEntry/operate/mySchedule/mySchedule.vue
@@ -64,6 +64,7 @@
}else {
let pickDateRef = this.$refs.pickDateRef
if(!pickDateRef.timerArr.length||!pickDateRef.timerArr2.length) return this.$u.toast('没有排课计划,请添加排课计划')
+ pickDateRef.radioVal = ''
this.step = val
}
// this.$emit('changeStep', val)
diff --git a/pages/recordEntry/operate/todayStudent/todayStudent.vue b/pages/recordEntry/operate/todayStudent/todayStudent.vue
index 1898e18..97e2ba1 100644
--- a/pages/recordEntry/operate/todayStudent/todayStudent.vue
+++ b/pages/recordEntry/operate/todayStudent/todayStudent.vue
@@ -1,4 +1,6 @@
+
+
@@ -58,6 +60,7 @@
+
+
\ No newline at end of file
diff --git a/pages/tabbar/statistics/comp/stage.vue b/pages/tabbar/statistics/comp/stage.vue
index e778894..3f20b9e 100644
--- a/pages/tabbar/statistics/comp/stage.vue
+++ b/pages/tabbar/statistics/comp/stage.vue
@@ -1,17 +1,25 @@
- 张三三
- +¥1,130.86
+ {{item.studentName}}
+ ¥ {{item.amount}}
- 第一阶段
- 2023/08/08 10:55:21
+ {{item.payStep}}
+ {{item.tradeDate}}
\ No newline at end of file
diff --git a/pages/userCenter/refund/refund.vue b/pages/userCenter/refund/refund.vue
index dce2b84..b37d87b 100644
--- a/pages/userCenter/refund/refund.vue
+++ b/pages/userCenter/refund/refund.vue
@@ -1,4 +1,6 @@
+
+
@@ -12,6 +14,7 @@
+
@@ -91,4 +107,5 @@
margin-left: 6rpx;
}
}
+
\ No newline at end of file
diff --git a/pages/userCenter/schoolCoach/coachComment/coachComment.vue b/pages/userCenter/schoolCoach/coachComment/coachComment.vue
index f7d410d..0ccd446 100644
--- a/pages/userCenter/schoolCoach/coachComment/coachComment.vue
+++ b/pages/userCenter/schoolCoach/coachComment/coachComment.vue
@@ -1,4 +1,6 @@
+
+
@@ -11,7 +13,7 @@
-
+
diff --git a/pages/userCenter/schoolCoach/schoolCoach.vue b/pages/userCenter/schoolCoach/schoolCoach.vue
index fa90756..5ad1f3a 100644
--- a/pages/userCenter/schoolCoach/schoolCoach.vue
+++ b/pages/userCenter/schoolCoach/schoolCoach.vue
@@ -1,4 +1,6 @@
+
+
@@ -28,6 +30,7 @@
+
diff --git a/pages/userCenter/schoolSite/schoolSite.vue b/pages/userCenter/schoolSite/schoolSite.vue
index d68c50a..2d7cc1a 100644
--- a/pages/userCenter/schoolSite/schoolSite.vue
+++ b/pages/userCenter/schoolSite/schoolSite.vue
@@ -1,4 +1,6 @@
+
+
@@ -30,6 +32,7 @@
+
diff --git a/pages/userCenter/settled/settled.vue b/pages/userCenter/settled/settled.vue
index f27c443..a82b23b 100644
--- a/pages/userCenter/settled/settled.vue
+++ b/pages/userCenter/settled/settled.vue
@@ -1,4 +1,6 @@
+
+
@@ -54,6 +56,7 @@
+