diff --git a/page_user/changeCar.vue b/page_user/changeCar.vue
new file mode 100644
index 0000000..c84b091
--- /dev/null
+++ b/page_user/changeCar.vue
@@ -0,0 +1,510 @@
+
+
+
+
+
+
+ 请选择换车原因
+
+
+
+
+
+
+
+ 电量不足
+
+
+
+
+
+ 车辆损坏
+
+
+
+
+ SN:2315721
+
+
+
+
+
+ 请选择车辆故障部位
+
+
+
+ 车头故障
+
+
+
+ {{ item.dictLabel }}
+
+
+
+
+ 车身故障
+
+
+
+ {{ item.dictLabel }}
+
+
+
+
+
+ 特殊故障
+
+
+
+ {{ item.dictLabel }}
+
+
+
+
+ 如选项未涵盖,请输入故障问题
+
+ {{ currentCount }}/500
+
+
+
+
+
+ 请对故障部位拍照并环绕车身进行录像
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 点击扫码或输入车辆编号
+
+
+
+
+
+
+
+
+
+
+
+
+ 可继续行驶{{OrderdeviceInfos.remainingMileage}}公里
+
+
+
+
+
+
+
+ NO.{{OrderdeviceInfos.sn}}
+
+
+
+
+
+
+
+
+ 已骑行
+
+
+ {{timeString}}
+
+
+
+
+ 预估金额
+
+
+ {{money}}元
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/page_user/vadio_back.vue b/page_user/vadio_back.vue
index 3b1aa6f..7b067e5 100644
--- a/page_user/vadio_back.vue
+++ b/page_user/vadio_back.vue
@@ -9,10 +9,17 @@
我们将在12小时内完成审核
-
-
+
+
+
+
+
+
+
+
+
-
+
保持车辆录像的完整清晰,不要随意拍摄,确保视频中车辆出境,并且出现车牌号
@@ -147,6 +154,9 @@
});
},
upload(){
+ uni.showLoading({
+ title:'上传中'
+ })
let _this=this
let math='static/'+_this.$u.guid(20)
wx.uploadFile({
@@ -158,6 +168,7 @@
key:'bike/vadio/'+math
},
success: function(res) {
+ uni.hideLoading()
console.log(res,'resres');
let str = JSON.parse(res.data)
console.log(str.key)
@@ -189,7 +200,47 @@
color: #FFFFFF;
background: #64B6A7;
}
-
+ .vadio_png1{
+ position: relative;
+ width: 672rpx;
+ height: 370rpx;
+ .backimg{
+
+ width: 672rpx;
+ height: 370rpx;
+
+ }
+ .tip_img{
+ position: absolute;
+ top: 72rpx;
+ left: 210rpx;
+ width: 252rpx;
+ height: 194rpx;
+ z-index: 11;
+ }
+ .vad{
+ width: 672rpx;
+ height: 370rpx;
+ border-radius: 40rpx;
+ z-index: 1;
+ }
+ .glass{
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 672rpx;
+ height: 370rpx;
+ background: rgba(255, 255, 255, 0.2);
+ border-radius: 40rpx;
+ // box-shadow: 0 rgba(0, 0, 0, 0.1);
+ backdrop-filter: blur(10rpx);
+ -webkit-backdrop-filter: blur(10rpx); /* For Safari */
+ // border: 1rpx solid rgba(255, 255, 255, 0.3);
+ z-index: 10;
+
+ }
+
+ }
.cont {
width: 100%;
padding: 0 39rpx;
@@ -212,7 +263,10 @@
}
.btn {
- margin-top: 128rpx;
+ position: fixed;
+ bottom: 100rpx;
+ left: 38rpx;
+ // margin-top: 128rpx;
display: flex;
align-items: center;
justify-content: center;
@@ -220,7 +274,7 @@
height: 90rpx;
background: rgba(100,182,167,0.5);
border-radius: 54rpx 54rpx 54rpx 54rpx;
-
+ z-index: 10;
font-weight: 500;
font-size: 40rpx;
color: #FFFFFF;
diff --git a/pages.json b/pages.json
index 9bce2d7..998e5a1 100644
--- a/pages.json
+++ b/pages.json
@@ -369,6 +369,15 @@
"enablePullDownRefresh" : false,
"navigationStyle": "custom"
}
+ },
+ {
+ "path" : "changeCar",
+ "style" :
+ {
+ "navigationBarTitleText" : "",
+ "enablePullDownRefresh" : false,
+ "navigationStyle": "custom"
+ }
}
// 其他 userpages 目录下的页面...
diff --git a/pages_admin/admin_worke.vue b/pages_admin/admin_worke.vue
index 7471541..37da141 100644
--- a/pages_admin/admin_worke.vue
+++ b/pages_admin/admin_worke.vue
@@ -30,12 +30,12 @@
设备管理
-
+
@@ -48,7 +48,7 @@
车辆绑定
-
+
账户明细
@@ -72,7 +72,8 @@
areaId:0,
areaInfo:{},
list: [],
- show: false
+ show: false,
+ info:{}
}
},
@@ -85,6 +86,7 @@
this.areaId = uni.getStorageSync('adminAreaid')
this.getArea()
this.getareaList()
+ this.getareaInfo()
}
},
@@ -94,6 +96,16 @@
},
},
methods: {
+ getareaInfo() {
+ this.$u.get('/appVerify/getDept').then((res) => {
+ if (res.code == 200) {
+ this.info=res.data
+ console.log(this.userId,'userIduserIduserId');
+ }
+ }).catch(error => {
+ console.error("Error fetching area data:", error);
+ });
+ },
shows(){
if(this.list.length<2){
diff --git a/pages_admin/worke/AccountDetails.vue b/pages_admin/worke/AccountDetails.vue
index 8511ef7..54ff7cf 100644
--- a/pages_admin/worke/AccountDetails.vue
+++ b/pages_admin/worke/AccountDetails.vue
@@ -190,12 +190,14 @@
let data = {
amount: this.realprice
}
- this.$u.post('/system/withdraw').then((res) => {
+ this.$u.post('/appVerify/admin/withdraw',data).then((res) => {
if (res.code == 200) {
this.amount=''
this.Quantity=0
this.realprice=0
this.price=0
+ this.list=[]
+ this.pageNum=1
this.getareaInfo()
this.getlist()
uni.showToast({
diff --git a/pages_admin/worke/worke_user_detail.vue b/pages_admin/worke/worke_user_detail.vue
index 744f604..c7580fb 100644
--- a/pages_admin/worke/worke_user_detail.vue
+++ b/pages_admin/worke/worke_user_detail.vue
@@ -50,7 +50,7 @@
- -¥1.00
+ ¥{{item.payFee}}