1.0.9
This commit is contained in:
parent
05b8b98718
commit
1aa634071f
|
@ -583,7 +583,7 @@
|
|||
let that = this
|
||||
uni.showModal({
|
||||
title: '提示',
|
||||
content: '当前未创建店铺,是否去创建店铺?',
|
||||
content: '未创建店铺,是否去创建店铺?',
|
||||
success: function(res) {
|
||||
if (res.confirm) {
|
||||
uni.navigateTo({
|
||||
|
|
|
@ -69,7 +69,7 @@
|
|||
¥{{item.price}}
|
||||
</view>
|
||||
</view>
|
||||
<view v-if="deviceobj.suitList == null" class="" style="color: #ccc;font-size: 36rpx;">
|
||||
<view v-if="deviceobj.suitList == null || deviceobj.suitList.length == 0" class="" style="color: #ccc;font-size: 36rpx;">
|
||||
该设备暂无套餐...
|
||||
</view>
|
||||
</view>
|
||||
|
@ -100,7 +100,6 @@
|
|||
立即支付
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view class="mask" v-if="czflag"></view>
|
||||
|
||||
|
||||
|
@ -136,190 +135,118 @@
|
|||
dingobj: {},
|
||||
suitTimeUnit:'',
|
||||
zfflag:true,
|
||||
prices:''
|
||||
prices:'',
|
||||
sceneValue:''
|
||||
}
|
||||
},
|
||||
onLoad(option) {
|
||||
this.$u.get("/app/user/userInfo").then((res) => {
|
||||
if (res.code == 200) {
|
||||
if (option.q) {
|
||||
function getQueryParam(url, paramName) {
|
||||
let regex = new RegExp(`[?&]${paramName}=([^&]*)`);
|
||||
let results = regex.exec(url);
|
||||
return results ? decodeURIComponent(results[1].replace(/\+/g, ' ')) : null;
|
||||
}
|
||||
let sceneValue = option.q
|
||||
let decodedValue = decodeURIComponent(sceneValue);
|
||||
this.id = getQueryParam(decodedValue, 's')
|
||||
|
||||
let that = this
|
||||
let data = {
|
||||
deviceNo: that.id
|
||||
}
|
||||
that.$u.get(`/app/device/isBind?deviceNo=${that.id}`).then(res => {
|
||||
if (res.data == 2) {
|
||||
that.$u.get(`/app/device/${that.id}/withSuitList`).then((res) => {
|
||||
if (res.code == 200) {
|
||||
that.$u.get(`/app/device/${that.id}/bySn`).then((res) => {
|
||||
if (res.code == 200) {
|
||||
that.mac = 'CTKG-' + res.data.mac
|
||||
that.onlineStatus = res.data.onlineStatus
|
||||
if (that.onlineStatus == 0) {
|
||||
// 一开始搜索设备
|
||||
xBlufi.initXBlufi(1)
|
||||
xBlufi.listenDeviceMsgEvent(true, that.funListenDeviceMsgEvent);
|
||||
xBlufi.notifyStartDiscoverBle({
|
||||
'isStart': true
|
||||
})
|
||||
setTimeout(() => {
|
||||
xBlufi.notifyStartDiscoverBle({
|
||||
'isStart': false
|
||||
})
|
||||
if (that.devicesList.length > 0) {
|
||||
xBlufi.notifyConnectBle({
|
||||
isStart: true,
|
||||
deviceId: that.deviceId,
|
||||
name: that.name
|
||||
})
|
||||
}
|
||||
}, 2000)
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
})
|
||||
} else if (res.data == 1) {
|
||||
console.log(111);
|
||||
uni.showModal({
|
||||
title: '提示',
|
||||
content: '该设备未绑定,你需进行绑定吗?',
|
||||
success: function(res) {
|
||||
if (res.confirm) {
|
||||
that.$u.put("/app/device/bind", data).then(res => {
|
||||
if(res.code == 200){
|
||||
that.$u.get(`/app/device/${that.id}/bySn`).then((res) => {
|
||||
if (res.code == 200) {
|
||||
uni.navigateTo({
|
||||
url: '/page_components/bindsz?id=' + res.data.deviceId
|
||||
})
|
||||
}
|
||||
})
|
||||
}
|
||||
})
|
||||
} else if (res.cancel) {
|
||||
|
||||
}
|
||||
}
|
||||
})
|
||||
} else if (res.data == 0) {
|
||||
uni.showModal({
|
||||
title: '提示',
|
||||
content: '该设备未录入,你需进行录入吗?',
|
||||
success: function(res) {
|
||||
if (res.confirm) {
|
||||
uni.navigateTo({
|
||||
url: '/page_fenbao/zhuce?sn=' + that.id
|
||||
})
|
||||
} else if (res.cancel) {
|
||||
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
})
|
||||
|
||||
this.startTimer()
|
||||
this.gettaoc()
|
||||
// this.getmac()
|
||||
|
||||
} else {
|
||||
this.id = option.id
|
||||
|
||||
let that = this
|
||||
let data = {
|
||||
deviceNo: that.id
|
||||
}
|
||||
that.$u.get(`/app/device/isBind?deviceNo=${that.id}`).then(res => {
|
||||
if (res.data == 2) {
|
||||
that.$u.get(`/app/device/${that.id}/withSuitList`).then((res) => {
|
||||
if (res.code == 200) {
|
||||
that.$u.get(`/app/device/${that.id}/bySn`).then((res) => {
|
||||
if (res.code == 200) {
|
||||
that.mac = 'CTKG-' + res.data.mac
|
||||
that.onlineStatus = res.data.onlineStatus
|
||||
if (that.onlineStatus == 0) {
|
||||
// 一开始搜索设备
|
||||
xBlufi.initXBlufi(1)
|
||||
xBlufi.listenDeviceMsgEvent(true, that.funListenDeviceMsgEvent);
|
||||
xBlufi.notifyStartDiscoverBle({
|
||||
'isStart': true
|
||||
})
|
||||
setTimeout(() => {
|
||||
xBlufi.notifyStartDiscoverBle({
|
||||
'isStart': false
|
||||
})
|
||||
if (that.devicesList.length > 0) {
|
||||
xBlufi.notifyConnectBle({
|
||||
isStart: true,
|
||||
deviceId: that.deviceId,
|
||||
name: that.name
|
||||
})
|
||||
}
|
||||
}, 2000)
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
})
|
||||
} else if (res.data == 1) {
|
||||
console.log(222);
|
||||
uni.showModal({
|
||||
title: '提示',
|
||||
content: '该设备未绑定,你需进行绑定吗?',
|
||||
success: function(res) {
|
||||
if (res.confirm) {
|
||||
that.$u.put("/app/device/bind", data).then(res => {
|
||||
if(res.code == 200){
|
||||
that.$u.get(`/app/device/${that.id}/bySn`).then((res) => {
|
||||
if (res.code == 200) {
|
||||
uni.navigateTo({
|
||||
url: '/page_components/bindsz?id=' + res.data.deviceId
|
||||
})
|
||||
}
|
||||
})
|
||||
}
|
||||
})
|
||||
} else if (res.cancel) {
|
||||
|
||||
}
|
||||
}
|
||||
})
|
||||
} else if (res.data == 0) {
|
||||
uni.showModal({
|
||||
title: '提示',
|
||||
content: '该设备未录入,你需进行录入吗?',
|
||||
success: function(res) {
|
||||
if (res.confirm) {
|
||||
uni.navigateTo({
|
||||
url: '/page_fenbao/zhuce?sn=' + that.id
|
||||
})
|
||||
} else if (res.cancel) {
|
||||
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
})
|
||||
this.startTimer()
|
||||
this.gettaoc()
|
||||
// this.getmac()
|
||||
}
|
||||
} else {
|
||||
uni.reLaunch({
|
||||
url: '/pages/login/login?id=' + 1
|
||||
})
|
||||
if (option.q) {
|
||||
function getQueryParam(url, paramName) {
|
||||
let regex = new RegExp(`[?&]${paramName}=([^&]*)`);
|
||||
let results = regex.exec(url);
|
||||
return results ? decodeURIComponent(results[1].replace(/\+/g, ' ')) : null
|
||||
}
|
||||
})
|
||||
this.sceneValue = option.q
|
||||
let decodedValue = decodeURIComponent(this.sceneValue);
|
||||
this.id = getQueryParam(decodedValue, 's')
|
||||
// this.$u.get("/app/user/userInfo").then((res) => {
|
||||
// if (res.code == 200) {
|
||||
// this.getone()
|
||||
// } else {
|
||||
// uni.navigateTo({
|
||||
// url: '/pages/login/login?id=' + 1
|
||||
// })
|
||||
// }
|
||||
// })
|
||||
} else {
|
||||
this.id = option.id
|
||||
// this.$u.get("/app/user/userInfo").then((res) => {
|
||||
// if (res.code == 200) {
|
||||
// this.getone()
|
||||
// } else {
|
||||
// uni.navigateTo({
|
||||
// url: '/pages/login/login?id=' + 1
|
||||
// })
|
||||
// }
|
||||
// })
|
||||
// let that = this
|
||||
// let data = {
|
||||
// deviceNo: that.id
|
||||
// }
|
||||
// that.$u.get(`/app/device/isBind?deviceNo=${that.id}`).then(res => {
|
||||
// if (res.data == 2) {
|
||||
// that.$u.get(`/app/device/${that.id}/withSuitList`).then((res) => {
|
||||
// if (res.code == 200) {
|
||||
// that.$u.get(`/app/device/${that.id}/bySn`).then((res) => {
|
||||
// if (res.code == 200) {
|
||||
// that.mac = 'CTKG-' + res.data.mac
|
||||
// that.onlineStatus = res.data.onlineStatus
|
||||
// if (that.onlineStatus == 0) {
|
||||
// // 一开始搜索设备
|
||||
// xBlufi.initXBlufi(1)
|
||||
// xBlufi.listenDeviceMsgEvent(true, that.funListenDeviceMsgEvent);
|
||||
// xBlufi.notifyStartDiscoverBle({
|
||||
// 'isStart': true
|
||||
// })
|
||||
// setTimeout(() => {
|
||||
// xBlufi.notifyStartDiscoverBle({
|
||||
// 'isStart': false
|
||||
// })
|
||||
// if (that.devicesList.length > 0) {
|
||||
// xBlufi.notifyConnectBle({
|
||||
// isStart: true,
|
||||
// deviceId: that.deviceId,
|
||||
// name: that.name
|
||||
// })
|
||||
// }
|
||||
// }, 2000)
|
||||
// }
|
||||
// }
|
||||
// })
|
||||
// }
|
||||
// })
|
||||
// } else if (res.data == 1) {
|
||||
// console.log(222);
|
||||
// uni.showModal({
|
||||
// title: '提示',
|
||||
// content: '该设备未绑定,你需进行绑定吗?',
|
||||
// success: function(res) {
|
||||
// if (res.confirm) {
|
||||
// that.$u.put("/app/device/bind", data).then(res => {
|
||||
// if(res.code == 200){
|
||||
// that.$u.get(`/app/device/${that.id}/bySn`).then((res) => {
|
||||
// if (res.code == 200) {
|
||||
// uni.navigateTo({
|
||||
// url: '/page_components/bindsz?id=' + res.data.deviceId
|
||||
// })
|
||||
// }
|
||||
// })
|
||||
// }
|
||||
// })
|
||||
// } else if (res.cancel) {
|
||||
|
||||
// }
|
||||
// }
|
||||
// })
|
||||
// } else if (res.data == 0) {
|
||||
// uni.showModal({
|
||||
// title: '提示',
|
||||
// content: '该设备未录入,你需进行录入吗?',
|
||||
// success: function(res) {
|
||||
// if (res.confirm) {
|
||||
// uni.navigateTo({
|
||||
// url: '/page_fenbao/zhuce?sn=' + that.id
|
||||
// })
|
||||
// } else if (res.cancel) {
|
||||
|
||||
// }
|
||||
// }
|
||||
// })
|
||||
// }
|
||||
// })
|
||||
// this.gettaoc()
|
||||
}
|
||||
|
||||
|
||||
},
|
||||
computed: {
|
||||
|
@ -343,9 +270,19 @@
|
|||
},
|
||||
onShow() {
|
||||
// this.getuserinfo()
|
||||
if (this.orderno) {
|
||||
// this.gethuidaio()
|
||||
}
|
||||
setTimeout(()=>{
|
||||
if (this.id != '') {
|
||||
this.$u.get("/app/user/userInfo").then((res) => {
|
||||
if (res.code == 200) {
|
||||
this.getone()
|
||||
} else {
|
||||
uni.navigateTo({
|
||||
url: '/pages/login/login?id=' + 1
|
||||
})
|
||||
}
|
||||
})
|
||||
}
|
||||
},1)
|
||||
},
|
||||
onUnload: function() {
|
||||
if (this.timer) {
|
||||
|
@ -370,6 +307,87 @@
|
|||
});
|
||||
},
|
||||
methods: {
|
||||
getone(){
|
||||
let that = this
|
||||
let data = {
|
||||
deviceNo: that.id
|
||||
}
|
||||
that.$u.get(`/app/device/isBind?deviceNo=${that.id}`).then(res => {
|
||||
if (res.data == 2) {
|
||||
that.$u.get(`/app/device/${that.id}/withSuitList`).then((res) => {
|
||||
if (res.code == 200) {
|
||||
that.$u.get(`/app/device/${that.id}/bySn`).then((res) => {
|
||||
if (res.code == 200) {
|
||||
that.mac = 'CTKG-' + res.data.mac
|
||||
that.onlineStatus = res.data.onlineStatus
|
||||
if (that.onlineStatus == 0) {
|
||||
// 一开始搜索设备
|
||||
xBlufi.initXBlufi(1)
|
||||
xBlufi.listenDeviceMsgEvent(true, that.funListenDeviceMsgEvent);
|
||||
xBlufi.notifyStartDiscoverBle({
|
||||
'isStart': true
|
||||
})
|
||||
setTimeout(() => {
|
||||
xBlufi.notifyStartDiscoverBle({
|
||||
'isStart': false
|
||||
})
|
||||
if (that.devicesList.length > 0) {
|
||||
xBlufi.notifyConnectBle({
|
||||
isStart: true,
|
||||
deviceId: that.deviceId,
|
||||
name: that.name
|
||||
})
|
||||
}
|
||||
}, 2000)
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
})
|
||||
} else if (res.data == 1) {
|
||||
console.log(111);
|
||||
uni.showModal({
|
||||
title: '提示',
|
||||
content: '该设备未绑定,你需进行绑定吗?',
|
||||
success: function(res) {
|
||||
if (res.confirm) {
|
||||
that.$u.put("/app/device/bind", data).then(res => {
|
||||
if(res.code == 200){
|
||||
that.$u.get(`/app/device/${that.id}/bySn`).then((res) => {
|
||||
if (res.code == 200) {
|
||||
uni.navigateTo({
|
||||
url: '/page_components/bindsz?id=' + res.data.deviceId
|
||||
})
|
||||
}
|
||||
})
|
||||
}
|
||||
})
|
||||
} else if (res.cancel) {
|
||||
|
||||
}
|
||||
}
|
||||
})
|
||||
} else if (res.data == 0) {
|
||||
uni.showModal({
|
||||
title: '提示',
|
||||
content: '该设备未录入,你需进行录入吗?',
|
||||
success: function(res) {
|
||||
if (res.confirm) {
|
||||
uni.navigateTo({
|
||||
url: '/page_fenbao/zhuce?sn=' + that.id
|
||||
})
|
||||
} else if (res.cancel) {
|
||||
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
})
|
||||
this.gettaoc()
|
||||
},
|
||||
|
||||
|
||||
|
||||
btnshouye(){
|
||||
uni.reLaunch({
|
||||
url:'/pages/shouye/index'
|
||||
|
@ -415,7 +433,6 @@
|
|||
})
|
||||
}
|
||||
})
|
||||
|
||||
},
|
||||
|
||||
gettrue() {
|
||||
|
@ -438,11 +455,6 @@
|
|||
}
|
||||
})
|
||||
},
|
||||
startTimer() {
|
||||
this.timer = setInterval(() => {
|
||||
// this.gettaoc();
|
||||
}, 30000);
|
||||
},
|
||||
getmac() {
|
||||
this.$u.get(`/app/device/${this.id}/bySn`).then((res) => {
|
||||
if (res.code == 200) {
|
||||
|
@ -455,15 +467,7 @@
|
|||
this.$u.get(`/app/device/${this.id}/withSuitList`).then((res) => {
|
||||
if (res.code == 200) {
|
||||
this.deviceobj = res.data;
|
||||
// this.indexactive = res.data.suitList[0].suitId;
|
||||
this.zfobj = res.data.suitList[0]
|
||||
// let targetDateStr = this.deviceobj.expireTime
|
||||
// let targetParts = targetDateStr.split(/[- :]/);
|
||||
// let targetDate = new Date(targetParts[0], targetParts[1] - 1, targetParts[2], targetParts[3], targetParts[4], targetParts[5]);
|
||||
// let now = new Date();
|
||||
// let differenceInMs = targetDate - now;
|
||||
// let differenceInMinutes = Math.floor(differenceInMs / (1000 * 60));
|
||||
// this.expireTimeStr = parseInt(differenceInMinutes) <= 0 ? '0' : differenceInMinutes
|
||||
let targetDateStr = this.deviceobj.expireTime;
|
||||
let targetParts = targetDateStr.split(/[- :]/);
|
||||
let targetDate = new Date(targetParts[0], targetParts[1] - 1, targetParts[2], targetParts[3], targetParts[4], targetParts[5]);
|
||||
|
@ -503,7 +507,7 @@
|
|||
that.$u.post('/app/bill/recharge', data).then((res) => {
|
||||
if (res.code == 200) {
|
||||
that.orderno = res.data
|
||||
console.log(this.prices);
|
||||
// console.log(this.prices);
|
||||
if(this.prices == 0){
|
||||
that.$u.put(`/app/bill/${that.orderno}/refreshPayResult`).then(res => {})
|
||||
// 支付成功逻辑
|
||||
|
@ -512,7 +516,7 @@
|
|||
})
|
||||
uni.setStorageSync('time', that.expireTimeStr)
|
||||
}else{
|
||||
console.log('不是0元购');
|
||||
// console.log('不是0元购');
|
||||
that.$u.get(`/app/pay/wx/${that.orderno}`).then((res) => {
|
||||
if (res.code == 200) {
|
||||
uni.requestPayment({
|
||||
|
@ -524,7 +528,7 @@
|
|||
paySign: res.data.paySign,
|
||||
success: (res) => {
|
||||
this.zhifuflag = true
|
||||
console.log(res, '支付成功');
|
||||
// console.log(res, '支付成功');
|
||||
if (that.timer) {
|
||||
clearInterval(this.timer);
|
||||
that.timer = null;
|
||||
|
@ -607,9 +611,9 @@ x
|
|||
if(this.prices == 0){
|
||||
that.$u.get('/app/bill/recharge/device/fail/list').then(res => {
|
||||
if (res.code == 200) {
|
||||
console.log('获取订单状态',res);
|
||||
// console.log('获取订单状态',res);
|
||||
let dingobj = res.data[0].billNo
|
||||
console.log(dingobj,'订单号');
|
||||
// console.log(dingobj,'订单号');
|
||||
uni.getNetworkType({
|
||||
success(res) {
|
||||
if (res.networkType !== 'none') {
|
||||
|
@ -661,7 +665,6 @@ x
|
|||
clearInterval(this.timer);
|
||||
that.timer = null;
|
||||
}
|
||||
|
||||
// 111111111111111111111111
|
||||
that.$u.get(`/app/pay/result/${this.orderno}`).then(res =>{
|
||||
if(res.code == 200){
|
||||
|
@ -704,7 +707,6 @@ x
|
|||
})
|
||||
}
|
||||
})
|
||||
|
||||
// 支付成功逻辑
|
||||
uni.setStorageSync('time', that.expireTimeStr)
|
||||
},
|
||||
|
@ -725,7 +727,6 @@ x
|
|||
}
|
||||
})
|
||||
}
|
||||
|
||||
} else if (res.code == 401) {
|
||||
uni.reLaunch({
|
||||
url: '/pages/login/login'
|
||||
|
@ -735,7 +736,6 @@ x
|
|||
}
|
||||
})
|
||||
}
|
||||
|
||||
}
|
||||
},
|
||||
//选择套餐
|
||||
|
@ -786,7 +786,6 @@ x
|
|||
// })
|
||||
}
|
||||
})
|
||||
|
||||
}
|
||||
break;
|
||||
case xBlufi.XBLUFI_TYPE.TYPE_CONNECTED:
|
||||
|
|
|
@ -57,7 +57,7 @@
|
|||
</view>
|
||||
</view>
|
||||
<view class="mask" v-if="maskflag"></view>
|
||||
|
||||
<view v-if="btnmsk" style="width: 100%;height: 100vh;position: fixed;top: 0;left: 0;background-color: #000;opacity: .1;z-index: 999;"></view>
|
||||
|
||||
</view>
|
||||
</template>
|
||||
|
@ -66,6 +66,7 @@
|
|||
export default {
|
||||
data() {
|
||||
return {
|
||||
btnmsk:false,
|
||||
bgc: {
|
||||
backgroundColor: "#8883f0",
|
||||
},
|
||||
|
@ -95,6 +96,7 @@
|
|||
this.maskflag = false
|
||||
},
|
||||
btnsq(){
|
||||
this.btnmsk = true
|
||||
this.$u.post(`/app/access`).then(res => {
|
||||
if (res.code == 200) {
|
||||
uni.showToast({
|
||||
|
@ -102,6 +104,7 @@
|
|||
icon: 'success',
|
||||
duration: 2000
|
||||
})
|
||||
this.btnmsk = false
|
||||
this.getcha()
|
||||
} else {
|
||||
uni.showToast({
|
||||
|
@ -109,13 +112,16 @@
|
|||
icon: 'none',
|
||||
duration: 2000
|
||||
})
|
||||
this.btnmsk = false
|
||||
}
|
||||
})
|
||||
},
|
||||
btncz(){
|
||||
this.btnmsk = true
|
||||
this.$u.put(`/app/access/${this.accessId}/reset`).then(res =>{
|
||||
if(res.code == 200){
|
||||
this.maskflag = true
|
||||
this.btnmsk = false
|
||||
this.miyao = res.data
|
||||
}else{
|
||||
uni.showToast({
|
||||
|
@ -123,6 +129,7 @@
|
|||
icon: 'none',
|
||||
duration: 2000
|
||||
})
|
||||
this.btnmsk = false
|
||||
}
|
||||
})
|
||||
},
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
:listBackgroundColor='F7FAFE'></HM-dragSorts>
|
||||
|
||||
|
||||
<view class="" v-if="list.length == 0" style="color: #ccc;font-size: 36rpx;margin-top: 200rpx;text-align: center;">
|
||||
<view class="" v-if="listflag" style="color: #ccc;font-size: 36rpx;margin-top: 200rpx;text-align: center;">
|
||||
该设备暂无套餐
|
||||
</view>
|
||||
<view class="anniu">
|
||||
|
@ -31,7 +31,7 @@
|
|||
</view>
|
||||
</view>
|
||||
|
||||
|
||||
<view v-if="btnmsk" style="width: 100%;height: 100vh;position: fixed;top: 0;left: 0;background-color: #000;opacity: .1;z-index: 999;"></view>
|
||||
|
||||
</view>
|
||||
</view>
|
||||
|
@ -45,6 +45,7 @@
|
|||
},
|
||||
data() {
|
||||
return {
|
||||
btnmsk:false,
|
||||
list: [],
|
||||
loading:false,
|
||||
disabled: false,
|
||||
|
@ -61,7 +62,8 @@
|
|||
backgroundColor: "#8883f0",
|
||||
},
|
||||
newobj:[],
|
||||
tcidlist:''
|
||||
tcidlist:'',
|
||||
listflag:false
|
||||
};
|
||||
},
|
||||
onLoad(option) {
|
||||
|
@ -69,6 +71,7 @@
|
|||
this.deviceId = option.id
|
||||
},
|
||||
onShow() {
|
||||
this.btnmsk = false
|
||||
this.tcidlist = []
|
||||
this.list = []
|
||||
this.newobj = []
|
||||
|
@ -135,8 +138,11 @@
|
|||
// isActive: false
|
||||
// }))
|
||||
this.newobj = this.list
|
||||
console.log(this.list);
|
||||
this.loading = true
|
||||
if(this.list.length > 0){
|
||||
this.listflag = false
|
||||
}else{
|
||||
this.listflag = true
|
||||
}
|
||||
}
|
||||
})
|
||||
},
|
||||
|
@ -169,6 +175,7 @@
|
|||
})
|
||||
},
|
||||
btnadd(){
|
||||
this.btnmsk = true
|
||||
uni.navigateTo({
|
||||
url:'/page_fenbao/statulist/taocanlist/addtaocan/index?id=' + this.deviceId
|
||||
})
|
||||
|
@ -207,13 +214,14 @@
|
|||
|
||||
.page {
|
||||
width: 750rpx;
|
||||
padding-bottom: 400rpx;
|
||||
padding-bottom: 220rpx;
|
||||
.box {
|
||||
width: 750rpx;
|
||||
height:100%;
|
||||
background: #F4F5F7;
|
||||
border-radius: 0rpx 0rpx 0rpx 0rpx;
|
||||
padding: 50rpx;
|
||||
padding-top: 30rpx !important;
|
||||
.anniu{
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
|
|
|
@ -227,7 +227,7 @@
|
|||
// 是否开启长按拖动
|
||||
longTouch: {
|
||||
value: Boolean,
|
||||
default: false
|
||||
default: true
|
||||
},
|
||||
autoScroll: {
|
||||
value: Boolean,
|
||||
|
@ -369,7 +369,6 @@
|
|||
this.pushWxsData('lastInitTime', (new Date()).valueOf());
|
||||
},
|
||||
loadShadowRow(e) {
|
||||
|
||||
this.shadowRow = this.getMoveRow(e.rowSort);
|
||||
},
|
||||
|
||||
|
|
|
@ -52,6 +52,7 @@
|
|||
上报
|
||||
</view>
|
||||
</view>
|
||||
<view v-if="btnmsk" style="width: 100%;height: 100vh;position: fixed;top: 0;left: 0;background-color: #000;opacity: .1;z-index: 999;"></view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
|
@ -59,6 +60,7 @@
|
|||
export default {
|
||||
data() {
|
||||
return {
|
||||
btnmsk:false,
|
||||
yuanyi:'',
|
||||
name:'',
|
||||
phone:'',
|
||||
|
@ -109,61 +111,65 @@
|
|||
},
|
||||
|
||||
btnshangb(){
|
||||
let data = {
|
||||
deviceNo:this.deviceNo,
|
||||
content:this.yuanyi,
|
||||
name:this.name,
|
||||
mobile:this.phone,
|
||||
address:this.dizhi
|
||||
}
|
||||
this.$u.post('/app/abnormal/submit',data).then(res => {
|
||||
if(this.deviceNo == ''){
|
||||
uni.showToast({
|
||||
title: '设备编号不能为空',
|
||||
icon: 'none',
|
||||
duration: 1000
|
||||
});
|
||||
}else if(this.yuanyi == ''){
|
||||
uni.showToast({
|
||||
title: '故障原因不能为空',
|
||||
icon: 'none',
|
||||
duration: 1000
|
||||
});
|
||||
}else if(this.name == ''){
|
||||
uni.showToast({
|
||||
title: '姓名不能为空',
|
||||
icon: 'none',
|
||||
duration: 1000
|
||||
});
|
||||
}else if(this.dizhi == ''){
|
||||
uni.showToast({
|
||||
title: '地址不能为空',
|
||||
icon: 'none',
|
||||
duration: 1000
|
||||
});
|
||||
}else {
|
||||
if (res.code == 200) {
|
||||
uni.showToast({
|
||||
title: '上报成功',
|
||||
icon: 'success',
|
||||
duration: 1000
|
||||
})
|
||||
setTimeout(()=>{
|
||||
uni.navigateBack()
|
||||
},1000)
|
||||
} else if (res.code == 401) {
|
||||
uni.reLaunch({
|
||||
url:'/pages/login/login'
|
||||
})
|
||||
}else if(res.code == 500){
|
||||
uni.showToast({
|
||||
title: res.msg,
|
||||
icon: 'none',
|
||||
duration: 1000
|
||||
});
|
||||
}
|
||||
if(this.deviceNo == ''){
|
||||
uni.showToast({
|
||||
title: '设备编号不能为空',
|
||||
icon: 'none',
|
||||
duration: 1000
|
||||
});
|
||||
}else if(this.yuanyi == ''){
|
||||
uni.showToast({
|
||||
title: '故障原因不能为空',
|
||||
icon: 'none',
|
||||
duration: 1000
|
||||
});
|
||||
}else if(this.name == ''){
|
||||
uni.showToast({
|
||||
title: '姓名不能为空',
|
||||
icon: 'none',
|
||||
duration: 1000
|
||||
});
|
||||
}else if(this.dizhi == ''){
|
||||
uni.showToast({
|
||||
title: '地址不能为空',
|
||||
icon: 'none',
|
||||
duration: 1000
|
||||
});
|
||||
}else {
|
||||
this.btnmsk = true
|
||||
let data = {
|
||||
deviceNo:this.deviceNo,
|
||||
content:this.yuanyi,
|
||||
name:this.name,
|
||||
mobile:this.phone,
|
||||
address:this.dizhi
|
||||
}
|
||||
})
|
||||
this.$u.post('/app/abnormal/submit',data).then(res => {
|
||||
if (res.code == 200) {
|
||||
uni.showToast({
|
||||
title: '上报成功',
|
||||
icon: 'success',
|
||||
duration: 1000
|
||||
})
|
||||
setTimeout(()=>{
|
||||
this.btnmsk = false
|
||||
uni.navigateBack()
|
||||
},1000)
|
||||
} else if (res.code == 401) {
|
||||
uni.reLaunch({
|
||||
url:'/pages/login/login'
|
||||
})
|
||||
this.btnmsk = false
|
||||
}else if(res.code == 500){
|
||||
uni.showToast({
|
||||
title: res.msg,
|
||||
icon: 'none',
|
||||
duration: 1000
|
||||
})
|
||||
this.btnmsk = false
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<u-navbar title="商家合作" :border-bottom="false" :background="bgc" title-color='#fff' back-icon-color="#fff" title-size='36'
|
||||
height='50'></u-navbar>
|
||||
<view class="title">
|
||||
请输入您的真实有效信息,我们将在第一时间联系您
|
||||
请您输入真实有效信息,我们将在第一时间联系您!
|
||||
</view>
|
||||
<view class="box">
|
||||
<view class="name">
|
||||
|
@ -21,10 +21,15 @@
|
|||
<textarea name="" placeholder="详细输入您想了解的信息" id="" v-model="cont" cols="30" rows="10"></textarea>
|
||||
</view>
|
||||
<view class="" style="width: 100%;text-align: center;color: red;font-size: 28rpx;margin-top: 20rpx;">
|
||||
请填写真实信息,感谢您的配合!
|
||||
<!-- 请填写真实信息,感谢您的配合! -->
|
||||
</view>
|
||||
|
||||
<view class="tijiao" @click="btnshenq">
|
||||
<view class="" style="width: 100%;color: red;font-size: 28rpx;margin-top: 20rpx;">
|
||||
审核通过后,即可创建店铺,店铺中的设备可在地图中被发现!
|
||||
</view>
|
||||
<view class="tijiao" v-if="tjflag" @click="btnshenq">
|
||||
提交申请
|
||||
</view>
|
||||
<view class="tijiao" v-else>
|
||||
提交申请
|
||||
</view>
|
||||
|
||||
|
@ -38,7 +43,8 @@
|
|||
return {
|
||||
name:'',
|
||||
phone:'',
|
||||
cont:''
|
||||
cont:'',
|
||||
tjflag:true
|
||||
}
|
||||
},
|
||||
// 分享到好友(会话)
|
||||
|
@ -87,6 +93,7 @@
|
|||
duration: 1000
|
||||
});
|
||||
}else{
|
||||
this.tjflag = false
|
||||
let data = {
|
||||
name:this.name,
|
||||
mobile:this.phone,
|
||||
|
@ -97,25 +104,31 @@
|
|||
uni.reLaunch({
|
||||
url:'/pages/login/login'
|
||||
})
|
||||
this.tjflag = true
|
||||
}else if(res.msg == '商家不允许重复申请') {
|
||||
uni.showToast({
|
||||
title: '商家不允许重复申请',
|
||||
icon: 'none',
|
||||
duration: 1000
|
||||
})
|
||||
setTimeout(()=>{
|
||||
this.tjflag = true
|
||||
},1000)
|
||||
}else if(res.code == 500){
|
||||
uni.showToast({
|
||||
title: res.msg,
|
||||
icon: 'none',
|
||||
duration: 1000
|
||||
})
|
||||
this.tjflag = true
|
||||
}else{
|
||||
uni.showToast({
|
||||
title: '申请成功',
|
||||
icon: 'success',
|
||||
duration: 1000
|
||||
});
|
||||
})
|
||||
setTimeout(()=>{
|
||||
this.tjflag = true
|
||||
uni.navigateBack()
|
||||
},1000)
|
||||
}
|
||||
|
|
|
@ -87,7 +87,9 @@
|
|||
<u-picker v-model="regionshow" mode="region" @confirm="btnregions"></u-picker>
|
||||
<!-- 营业时间 -->
|
||||
<u-picker mode="time" v-model="show" default-time="00:00" :params="params" @confirm="btnyy"></u-picker>
|
||||
|
||||
|
||||
<view v-if="btnmsk" style="width: 100%;height: 100vh;position: fixed;top: 0;left: 0;background-color: #000;opacity: .1;z-index: 999;"></view>
|
||||
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
@ -96,6 +98,7 @@
|
|||
export default {
|
||||
data() {
|
||||
return {
|
||||
btnmsk:false,
|
||||
checked:false,
|
||||
params: {
|
||||
hour: true,
|
||||
|
@ -173,6 +176,7 @@
|
|||
this.checked = this.listobj.show
|
||||
if (this.selectorvalue == 1) {
|
||||
this.selectortext = '商场'
|
||||
this.updateTime = this.listobj.updateTime
|
||||
} else if (this.selectorvalue == 2) {
|
||||
this.selectortext = '学校'
|
||||
} else if (this.selectorvalue == 3) {
|
||||
|
@ -252,62 +256,63 @@
|
|||
title: '请输入店铺名称',
|
||||
icon: 'none',
|
||||
duration: 1000
|
||||
});
|
||||
})
|
||||
} else if (this.selectortext == '请选择商铺类型') {
|
||||
uni.showToast({
|
||||
title: '请选择商铺类型',
|
||||
icon: 'none',
|
||||
duration: 1000
|
||||
});
|
||||
})
|
||||
} else if (this.ksyy == '开始营业时间') {
|
||||
uni.showToast({
|
||||
title: '请选择开始营业时间',
|
||||
icon: 'none',
|
||||
duration: 2000
|
||||
});
|
||||
})
|
||||
} else if (this.jsyy == '结束营业时间') {
|
||||
uni.showToast({
|
||||
title: '请选择结束营业时间',
|
||||
icon: 'none',
|
||||
duration: 2000
|
||||
});
|
||||
})
|
||||
} else if (this.regiontext == '请选择省市区') {
|
||||
uni.showToast({
|
||||
title: '请选择省市区',
|
||||
icon: 'none',
|
||||
duration: 1000
|
||||
});
|
||||
})
|
||||
} else if (this.lxname == '') {
|
||||
uni.showToast({
|
||||
title: '请输入联系人',
|
||||
icon: 'none',
|
||||
duration: 1000
|
||||
});
|
||||
})
|
||||
} else if (this.lxphone == '') {
|
||||
uni.showToast({
|
||||
title: '请输入联系电话',
|
||||
icon: 'none',
|
||||
duration: 1000
|
||||
});
|
||||
})
|
||||
}else if (this.longitude == '请输入经度') {
|
||||
uni.showToast({
|
||||
title: '请点击地图图标选择地址',
|
||||
icon: 'none',
|
||||
duration: 1000
|
||||
});
|
||||
})
|
||||
} else if (this.xqdz == '') {
|
||||
uni.showToast({
|
||||
title: '请输入详细地址',
|
||||
icon: 'none',
|
||||
duration: 1000
|
||||
});
|
||||
})
|
||||
} else if (this.imglist == '') {
|
||||
uni.showToast({
|
||||
title: '请上传一张商铺门面照',
|
||||
icon: 'none',
|
||||
duration: 1000
|
||||
});
|
||||
})
|
||||
} else {
|
||||
this.btnmsk = true
|
||||
let data = {
|
||||
name: this.shopname,
|
||||
picture: this.imglist,
|
||||
|
@ -333,6 +338,7 @@
|
|||
icon: 'success',
|
||||
duration: 1000
|
||||
})
|
||||
this.btnmsk = false
|
||||
} else {
|
||||
uni.showToast({
|
||||
title: '修改成功',
|
||||
|
@ -340,6 +346,7 @@
|
|||
duration: 1000
|
||||
})
|
||||
setTimeout(() => {
|
||||
this.btnmsk = false
|
||||
uni.navigateBack({
|
||||
delta: 2
|
||||
})
|
||||
|
@ -384,7 +391,7 @@
|
|||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
})
|
||||
},
|
||||
|
||||
|
||||
|
@ -393,7 +400,7 @@
|
|||
if (res.code == 200) {
|
||||
this.token = res.token
|
||||
}
|
||||
});
|
||||
})
|
||||
},
|
||||
btn() {
|
||||
let _this = this
|
||||
|
@ -418,7 +425,7 @@
|
|||
_this.imglist = _this.userImgs
|
||||
_this.imgflag = false
|
||||
}
|
||||
});
|
||||
})
|
||||
}
|
||||
})
|
||||
},
|
||||
|
|
|
@ -37,7 +37,7 @@
|
|||
</view>
|
||||
|
||||
<u-select v-model="show" :list="list" title='添加方式' @confirm="confirm"></u-select>
|
||||
|
||||
<view v-if="btnmsk" style="width: 100%;height: 100vh;position: fixed;top: 0;left: 0;background-color: #000;opacity: .1;z-index: 999;"></view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
|
@ -46,6 +46,7 @@
|
|||
export default {
|
||||
data() {
|
||||
return {
|
||||
btnmsk:false,
|
||||
list: [{
|
||||
value: '1',
|
||||
label: '扫码添加'
|
||||
|
@ -147,6 +148,7 @@
|
|||
content: '你确定要注销这个店铺吗?',
|
||||
success: function(res) {
|
||||
if (res.confirm) {
|
||||
this.btnmsk = true
|
||||
vm.$u.delete("/app/store/" + vm.storeId).then(res => {
|
||||
if (res.code == 200) {
|
||||
uni.showToast({
|
||||
|
@ -155,6 +157,7 @@
|
|||
duration: 1000
|
||||
})
|
||||
setTimeout(() => {
|
||||
this.btnmsk = false
|
||||
uni.navigateBack()
|
||||
}, 1500)
|
||||
} else if (res.code == 500) {
|
||||
|
@ -163,6 +166,7 @@
|
|||
icon: 'success',
|
||||
duration: 1000
|
||||
})
|
||||
this.btnmsk = false
|
||||
}
|
||||
})
|
||||
} else if (res.cancel) {
|
||||
|
|
|
@ -90,7 +90,9 @@
|
|||
<u-picker v-model="regionshow" mode="region" @confirm="btnregions"></u-picker>
|
||||
<!-- 营业时间 -->
|
||||
<u-picker mode="time" v-model="show" default-time="00:00" :params="params" @confirm="btnyy"></u-picker>
|
||||
|
||||
|
||||
<view v-if="btnmsk" style="width: 100%;height: 100vh;position: fixed;top: 0;left: 0;background-color: #000;opacity: .1;z-index: 999;"></view>
|
||||
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
@ -99,6 +101,7 @@
|
|||
export default {
|
||||
data() {
|
||||
return {
|
||||
btnmsk:false,
|
||||
checked:true,
|
||||
params: {
|
||||
hour: true,
|
||||
|
@ -274,6 +277,7 @@
|
|||
duration: 1000
|
||||
});
|
||||
} else {
|
||||
this.btnmsk = true
|
||||
let data = {
|
||||
name: this.shopname,
|
||||
picture: this.imglist,
|
||||
|
@ -300,7 +304,15 @@
|
|||
})
|
||||
setTimeout(()=>{
|
||||
uni.navigateBack()
|
||||
this.btnmsk = false
|
||||
},1000)
|
||||
}else{
|
||||
uni.showToast({
|
||||
title: res.msg,
|
||||
icon: 'none',
|
||||
duration: 1000
|
||||
})
|
||||
this.btnmsk = false
|
||||
}
|
||||
})
|
||||
}
|
||||
|
|
|
@ -48,7 +48,7 @@
|
|||
<view class="title" style="margin-top: 30rpx;margin-bottom: 20rpx;">
|
||||
详细说明
|
||||
</view>
|
||||
<textarea v-model="description" placeholder="输入说明解释" auto-height="true" />
|
||||
<textarea style="height: 120rpx !important;margin-top: 40rpx;margin-bottom: 40rpx;" v-model="description" placeholder="输入说明解释" auto-height="true" />
|
||||
</view>
|
||||
|
||||
<!-- 应用设备 -->
|
||||
|
@ -56,13 +56,14 @@
|
|||
<view class="sbtit">应用设备</view>
|
||||
<view class="sbarr">
|
||||
<view class="sbarrval" v-for="(item,index) in deviceList" :key="index">
|
||||
<text style="">{{item.deviceName}}</text>
|
||||
<text style="font-size: 45rpx;" @click="sbdel(item.deviceId)">×</text>
|
||||
<text style="width: 100%;text-align: center;">{{item.deviceName}}</text>
|
||||
<text style="font-size: 45rpx;position: absolute;top: 0;right: 20rpx;" @click="sbdel(item.deviceId)">×</text>
|
||||
</view>
|
||||
<view class="btnsbadd" @click="btnaddsb">
|
||||
+
|
||||
</view>
|
||||
</view>
|
||||
<view class="btnsbadd" @click="btnaddsb">
|
||||
+
|
||||
</view>
|
||||
|
||||
</view>
|
||||
|
||||
<view class="trues" @click="btnadd">
|
||||
|
@ -75,6 +76,8 @@
|
|||
取消
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view v-if="btnmsk" style="width: 100%;height: 100vh;position: fixed;top: 0;left: 0;background-color: #000;opacity: .1;z-index: 999;"></view>
|
||||
|
||||
</view>
|
||||
</template>
|
||||
|
@ -83,6 +86,7 @@
|
|||
export default {
|
||||
data() {
|
||||
return {
|
||||
btnmsk:false,
|
||||
deviceId: '',
|
||||
name: '',
|
||||
value: '',
|
||||
|
@ -160,21 +164,23 @@
|
|||
// 点击删除套餐里面的设备
|
||||
sbdel(id){
|
||||
if(this.title == '确定'){
|
||||
|
||||
this.deviceList = this.deviceList.filter(item => item.deviceId !== id)
|
||||
}else{
|
||||
const indexInTcidList = this.tcidlist.indexOf(id);
|
||||
if (indexInTcidList !== -1) {
|
||||
this.tcidlist.splice(indexInTcidList, 1);
|
||||
} else {
|
||||
this.tcidlist.push(id);
|
||||
}
|
||||
|
||||
let that = this
|
||||
uni.showModal({
|
||||
title: '提示',
|
||||
content: '您是否要将应用此套餐设备删除?',
|
||||
success: function(res) {
|
||||
if (res.confirm) {
|
||||
console.log(id);
|
||||
const indexInTcidList = that.tcidlist.indexOf(id);
|
||||
if (indexInTcidList !== -1) {
|
||||
that.tcidlist.splice(indexInTcidList, 1);
|
||||
} else {
|
||||
that.tcidlist.push(id);
|
||||
}
|
||||
console.log(that.tcidlist,indexInTcidList,'0202');
|
||||
let data = {
|
||||
deviceIds: that.tcidlist,
|
||||
suitId: that.suitId
|
||||
|
@ -186,6 +192,7 @@
|
|||
icon: 'success',
|
||||
duration: 1000,
|
||||
})
|
||||
that.tcidlist = []
|
||||
that.gettaocan(that.suitId)
|
||||
}
|
||||
})
|
||||
|
@ -207,7 +214,7 @@
|
|||
// 跳转选择设备
|
||||
btnaddsb(){
|
||||
uni.navigateTo({
|
||||
url:'/page_components/shebeixz?id=' + this.suitId + '&title=' + this.title
|
||||
url:'/page_components/shebeixz?id=' + this.suitId + '&title=' + this.title + '&list=' + JSON.stringify(this.deviceList)
|
||||
})
|
||||
},
|
||||
btnxl(index) {
|
||||
|
@ -238,6 +245,7 @@
|
|||
})
|
||||
},
|
||||
btndel() {
|
||||
this.btnmsk = true
|
||||
let that = this
|
||||
uni.showModal({
|
||||
title: '提示',
|
||||
|
@ -252,6 +260,7 @@
|
|||
duration: 1000,
|
||||
})
|
||||
setTimeout(() => {
|
||||
that.btnmsk = false
|
||||
uni.navigateBack()
|
||||
}, 1000)
|
||||
} else {
|
||||
|
@ -260,6 +269,7 @@
|
|||
icon: 'none',
|
||||
duration: 1000,
|
||||
})
|
||||
that.btnmsk = false
|
||||
}
|
||||
})
|
||||
} else if (res.cancel) {
|
||||
|
@ -309,6 +319,7 @@
|
|||
duration: 1000,
|
||||
})
|
||||
} else {
|
||||
this.btnmsk = true
|
||||
if (this.title == '确定') {
|
||||
let arrs = [...this.deviceList.map(item => item.deviceId)]
|
||||
let data = {
|
||||
|
@ -329,8 +340,16 @@
|
|||
duration: 1000,
|
||||
})
|
||||
setTimeout(() => {
|
||||
this.btnmsk = false
|
||||
uni.navigateBack()
|
||||
}, 1000)
|
||||
}else {
|
||||
this.btnmsk = false
|
||||
uni.showToast({
|
||||
title: res.msg,
|
||||
icon: 'none',
|
||||
duration: 1000,
|
||||
})
|
||||
}
|
||||
})
|
||||
} else {
|
||||
|
@ -351,9 +370,11 @@
|
|||
duration: 1000,
|
||||
})
|
||||
setTimeout(() => {
|
||||
this.btnmsk = false
|
||||
uni.navigateBack()
|
||||
}, 1000)
|
||||
} else {
|
||||
this.btnmsk = false
|
||||
uni.showToast({
|
||||
title: res.msg,
|
||||
icon: 'none',
|
||||
|
@ -379,7 +400,8 @@
|
|||
|
||||
.shebei {
|
||||
width: 654rpx;
|
||||
max-height: 100%;
|
||||
max-height: 55%;
|
||||
overflow: scroll;
|
||||
background: #FFFFFF;
|
||||
box-shadow: 0rpx 16rpx 40rpx 0rpx rgba(42, 130, 228, 0.1);
|
||||
-webkit-filter: blur(0px);
|
||||
|
@ -388,7 +410,7 @@
|
|||
border-radius: 30rpx;
|
||||
padding: 28rpx 38rpx;
|
||||
box-sizing: border-box;
|
||||
margin-top: 150rpx;
|
||||
margin-top: 40rpx;
|
||||
|
||||
.sbtit {
|
||||
font-size: 32rpx;
|
||||
|
@ -401,6 +423,7 @@
|
|||
width: 100%;
|
||||
justify-content: space-between;
|
||||
.sbarrval{
|
||||
position: relative;
|
||||
width: 48%;
|
||||
height: 80rpx;
|
||||
line-height: 80rpx;
|
||||
|
@ -468,12 +491,13 @@
|
|||
}
|
||||
|
||||
.picker {
|
||||
// margin-top: 30rpx;
|
||||
margin-left: 20rpx;
|
||||
margin-left: 10rpx;
|
||||
}
|
||||
|
||||
.page {
|
||||
width: 750rpx;
|
||||
overflow: hidden;
|
||||
height: 100vh;
|
||||
.box {
|
||||
width: 750rpx;
|
||||
background: #F4F5F7;
|
||||
|
|
|
@ -44,7 +44,7 @@
|
|||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view v-if="btnmsk" style="width: 100%;height: 100vh;position: fixed;top: 0;left: 0;background-color: #000;opacity: .1;z-index: 999;"></view>
|
||||
|
||||
</view>
|
||||
</template>
|
||||
|
@ -57,6 +57,7 @@
|
|||
},
|
||||
data() {
|
||||
return {
|
||||
btnmsk:false,
|
||||
list: '',
|
||||
loading: false,
|
||||
disabled: false,
|
||||
|
@ -184,6 +185,7 @@
|
|||
|
||||
// 点击确定
|
||||
btnqd() {
|
||||
this.btnmsk = true
|
||||
this.$u.delete(`/app/suit/delByDevice/${this.deviceId}`).then(res => {})
|
||||
let numArr = this.tcidlist.map(item => parseInt(item, 10))
|
||||
let data = {
|
||||
|
@ -199,8 +201,16 @@
|
|||
})
|
||||
this.getao()
|
||||
setTimeout(() => {
|
||||
this.btnmsk = false
|
||||
uni.navigateBack()
|
||||
}, 1000)
|
||||
}else{
|
||||
uni.showToast({
|
||||
title: res.msg,
|
||||
icon: 'none',
|
||||
duration: 1000,
|
||||
})
|
||||
this.btnmsk = false
|
||||
}
|
||||
})
|
||||
},
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<template>
|
||||
<view class="pages">
|
||||
<u-navbar title="意见反馈" :border-bottom="false" :background="bgc" title-color='#262B37' title-size='48'
|
||||
height='44'></u-navbar>
|
||||
<u-navbar title="意见反馈" :border-bottom="false" :background="bgc" title-color='#fff' back-icon-color="#fff"
|
||||
title-size='36' height='50'></u-navbar>
|
||||
<view class="leix">
|
||||
<view class="title">
|
||||
反馈类型 <text style="font-size: 36rpx; color: red; vertical-align: top;margin-left: 32rpx;">✲</text>
|
||||
|
@ -62,6 +62,8 @@
|
|||
</view>
|
||||
|
||||
<view class="btn" @click="sub()">提交</view>
|
||||
|
||||
<view v-if="btnmsk" style="width: 100%;height: 100vh;position: fixed;top: 0;left: 0;background-color: #000;opacity: .1;z-index: 999;"></view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
|
@ -69,8 +71,9 @@
|
|||
export default {
|
||||
data() {
|
||||
return {
|
||||
btnmsk:false,
|
||||
bgc: {
|
||||
backgroundColor: "#F7FAFE",
|
||||
backgroundColor: "#8883f0",
|
||||
},
|
||||
textValue: '',
|
||||
currentCount: 0,
|
||||
|
@ -143,6 +146,7 @@
|
|||
duration: 2000
|
||||
});
|
||||
} else {
|
||||
this.btnmsk = true
|
||||
var imgString = this.imglist.join(',');
|
||||
let data = {
|
||||
type: this.cutidx,
|
||||
|
@ -150,17 +154,28 @@
|
|||
picture: imgString,
|
||||
contact: this.contact
|
||||
}
|
||||
console.log(data, 'dadada');
|
||||
// console.log(data, 'dadada');
|
||||
this.$u.post("/app/complaint", data).then((res) => {
|
||||
if (res.code == 200) {
|
||||
// this.token=res.token
|
||||
uni.showToast({
|
||||
title: '提交成功',
|
||||
icon: 'success',
|
||||
duration: 2000
|
||||
})
|
||||
setTimeout(()=>{
|
||||
this.btnmsk = false
|
||||
uni.navigateBack()
|
||||
},1000)
|
||||
}else{
|
||||
uni.showToast({
|
||||
title: res.msg,
|
||||
icon: 'none',
|
||||
duration: 2000
|
||||
});
|
||||
})
|
||||
this.btnmsk = false
|
||||
}
|
||||
});
|
||||
})
|
||||
}
|
||||
},
|
||||
getImage(e) {
|
||||
|
@ -203,6 +218,13 @@
|
|||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
/deep/ .u-title {
|
||||
padding-bottom: 22rpx;
|
||||
}
|
||||
|
||||
/deep/ .u-icon__icon {
|
||||
padding-bottom: 22rpx;
|
||||
}
|
||||
.btn {
|
||||
width: 590rpx;
|
||||
height: 84rpx;
|
||||
|
|
|
@ -188,7 +188,7 @@
|
|||
// 是否开启长按拖动
|
||||
longTouch: {
|
||||
value: Boolean,
|
||||
default: false
|
||||
default: true
|
||||
},
|
||||
autoScroll: {
|
||||
value: Boolean,
|
||||
|
|
|
@ -118,7 +118,7 @@
|
|||
<image src="https://api.ccttiot.com/smartmeter/img/static/ue0X00T1C3fh7TCgjopm" mode=""
|
||||
style="width: 58rpx;height: 58rpx;"></image>
|
||||
</view>
|
||||
<view class="bot">异常</view>
|
||||
<view class="bot">上报异常</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="" style="display: flex;margin-top: 20rpx;padding-right: 5rpx;box-sizing: border-box;">
|
||||
|
@ -207,6 +207,7 @@
|
|||
</view>
|
||||
</view>
|
||||
|
||||
<view v-if="btnmsk" style="width: 100%;height: 100vh;position: fixed;top: 0;left: 0;background-color: #000;opacity: .1;z-index: 999;"></view>
|
||||
|
||||
</view>
|
||||
</template>
|
||||
|
@ -222,6 +223,7 @@
|
|||
},
|
||||
data() {
|
||||
return {
|
||||
btnmsk:false,
|
||||
bluetoothflag:false,
|
||||
shibaiflag:false,
|
||||
bgc: {
|
||||
|
@ -612,7 +614,9 @@
|
|||
|
||||
// 其他部分 点击进行跳转
|
||||
topage(num) {
|
||||
this.btnmsk = true
|
||||
if (num == 0) {
|
||||
this.btnmsk = false
|
||||
uni.navigateTo({ //抄表
|
||||
url: '/page_user/cbRecord?id=' + this.id
|
||||
})
|
||||
|
@ -623,12 +627,13 @@
|
|||
content: '您确定要将电表时间归零吗?',
|
||||
success: function(res) {
|
||||
if (res.confirm) {
|
||||
that.btnmsk = false
|
||||
//归零
|
||||
that.$u.put(`/app/device/${that.id}/reset`).then((res) => {
|
||||
if (res.code == 200) {
|
||||
console.log(res.data);
|
||||
// console.log(res.data);
|
||||
uni.showToast({
|
||||
title: res.data,
|
||||
title: res.msg,
|
||||
icon: 'none',
|
||||
duration: 2000
|
||||
})
|
||||
|
@ -681,21 +686,24 @@
|
|||
}
|
||||
})
|
||||
} else if (res.cancel) {
|
||||
that.btnmsk = false
|
||||
console.log('用户点击了取消');
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
} else if (num == 2) { //异常
|
||||
this.btnmsk = false
|
||||
uni.navigateTo({
|
||||
url: '/page_fenbao/statulist/fault/yichang/index'
|
||||
})
|
||||
} else if (num == 3) {
|
||||
|
||||
this.btnmsk = false
|
||||
uni.navigateTo({
|
||||
url: "/page_fenbao/statulist/taocanlist/index?id=" + this.id
|
||||
})
|
||||
} else if (num == 4) { //设置
|
||||
this.btnmsk = false
|
||||
uni.navigateTo({
|
||||
url: '/page_user/setting?id=' + this.id
|
||||
})
|
||||
|
@ -703,6 +711,7 @@
|
|||
// uni.showLoading({
|
||||
// title: '蓝牙连接中...'
|
||||
// })
|
||||
this.btnmsk = false
|
||||
this.shibaiflag = false
|
||||
this.bluetoothflag = true
|
||||
// console.log(this.deviceId,'idididididdidii');
|
||||
|
@ -829,6 +838,7 @@
|
|||
})
|
||||
}
|
||||
}else if (num == 6){
|
||||
this.btnmsk = false
|
||||
this.vipflag = true
|
||||
this.focus = true
|
||||
}
|
||||
|
|
|
@ -176,13 +176,12 @@
|
|||
</view>
|
||||
</view>
|
||||
</u-popup>
|
||||
<!-- <view class="btn" @click="deldevice()">
|
||||
解除绑定
|
||||
</view> -->
|
||||
|
||||
<!-- 选择店铺 -->
|
||||
<u-select v-model="showshop" :list="wateringList" @confirm="confirms"></u-select>
|
||||
|
||||
|
||||
<view v-if="btnmsk" style="width: 100%;height: 100vh;position: fixed;top: 0;left: 0;background-color: #000;opacity: .1;z-index: 999;"></view>
|
||||
|
||||
</view>
|
||||
</template>
|
||||
|
||||
|
@ -190,6 +189,7 @@
|
|||
export default {
|
||||
data() {
|
||||
return {
|
||||
btnmsk:false,
|
||||
bgc: {
|
||||
backgroundColor: "#8883f0",
|
||||
},
|
||||
|
@ -427,22 +427,25 @@
|
|||
content: '您确定要解绑设备吗?',
|
||||
success: (resModal) => {
|
||||
if (resModal.confirm) {
|
||||
this.btnmsk = true
|
||||
this.$u.delete(`/app/device/mch/unbind/${this.id}`).then((res) => {
|
||||
if (res.code == 200) {
|
||||
uni.showToast({
|
||||
title: '解除成功',
|
||||
icon: 'success',
|
||||
duration: 2000
|
||||
});
|
||||
})
|
||||
this.btnmsk = false
|
||||
uni.navigateBack({
|
||||
delta: 2 // 返回上级页面
|
||||
});
|
||||
})
|
||||
} else if(res.code == 500){
|
||||
uni.showToast({
|
||||
title: res.msg,
|
||||
icon: 'none',
|
||||
duration: 2000
|
||||
});
|
||||
})
|
||||
this.btnmsk = false
|
||||
}
|
||||
}).catch((error) => {
|
||||
// 请求失败的处理逻辑
|
||||
|
@ -450,7 +453,8 @@
|
|||
title: '请求失败',
|
||||
icon: 'none',
|
||||
duration: 2000
|
||||
});
|
||||
})
|
||||
this.btnmsk = false
|
||||
});
|
||||
} else if (resModal.cancel) { // 用户点击了取消按钮
|
||||
uni.showToast({
|
||||
|
|
|
@ -85,7 +85,7 @@
|
|||
}, {
|
||||
name: '已完成',
|
||||
}, {
|
||||
name: '已售后',
|
||||
name: '有售后',
|
||||
}],
|
||||
current: 0,
|
||||
pagenum: 1,
|
||||
|
|
|
@ -89,7 +89,7 @@
|
|||
console.log(_this.userImgs)
|
||||
_this.imglist.push(_this.userImgs)
|
||||
}
|
||||
});
|
||||
})
|
||||
}
|
||||
})
|
||||
},
|
||||
|
@ -99,7 +99,7 @@
|
|||
if (res.code == 200) {
|
||||
this.token = res.token
|
||||
}
|
||||
});
|
||||
})
|
||||
},
|
||||
}
|
||||
}
|
||||
|
|
|
@ -102,6 +102,7 @@
|
|||
<view class="btn" v-if="listflag" @click="sub()">
|
||||
确认提现
|
||||
</view>
|
||||
<view v-if="btnmsk" style="width: 100%;height: 100vh;position: fixed;top: 0;left: 0;background-color: #000;opacity: .1;z-index: 999;"></view>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
@ -110,6 +111,7 @@
|
|||
export default {
|
||||
data() {
|
||||
return {
|
||||
btnmsk:false,
|
||||
bgc: {
|
||||
backgroundColor: "#8883f0",
|
||||
},
|
||||
|
@ -146,8 +148,8 @@
|
|||
},
|
||||
|
||||
// 分享到朋友圈
|
||||
onShareTimeline: function () {
|
||||
return {
|
||||
onShareTimeline: function () {
|
||||
return {
|
||||
title: '创想物联',
|
||||
query: '',
|
||||
path: '/pages/shouye/index'
|
||||
|
@ -162,7 +164,7 @@
|
|||
},
|
||||
// 获取提现渠道列表
|
||||
gettxlist(){
|
||||
this.$u.get('/app/channel/recharge/enabledWithdrawList').then(res => {
|
||||
this.$u.get('/app/channel/withdraw/enabledList').then(res => {
|
||||
if(res.code == 200){
|
||||
if(res.data.length > 0){
|
||||
this.listflag = true
|
||||
|
@ -184,10 +186,9 @@
|
|||
this.serviceRates = qian
|
||||
this.sjmeoey = Number(this.money) - Number(this.serviceRates)
|
||||
}
|
||||
|
||||
},
|
||||
// 计算小数
|
||||
roundToTwoDecimalsTraditional(num) {
|
||||
roundToTwoDecimalsTraditional(num) {
|
||||
return Math.round(num * 100) / 100;
|
||||
},
|
||||
// 跳转到提现记录
|
||||
|
@ -200,7 +201,7 @@
|
|||
this.$u.get('/app/account' ).then((res) => {
|
||||
if (res.code == 200) {
|
||||
// console.log(res)
|
||||
this.infoList=res.data
|
||||
this.infoList = res.data
|
||||
}
|
||||
})
|
||||
},
|
||||
|
@ -253,6 +254,7 @@
|
|||
duration: 2000
|
||||
})
|
||||
} else{
|
||||
this.btnmsk = true
|
||||
let data ={
|
||||
money:this.money,
|
||||
arrivalAmount:this.roundToTwoDecimalsTraditional(Number(this.money) - Number(this.roundToTwoDecimalsTraditional(this.serviceRates))),
|
||||
|
@ -265,11 +267,19 @@
|
|||
if (res.code == 200) {
|
||||
this.getuserinfo()
|
||||
uni.showToast({
|
||||
title: '提现成功',
|
||||
icon: 'none',
|
||||
title: '申请提现成功',
|
||||
icon: 'success',
|
||||
duration: 2000
|
||||
})
|
||||
this.serviceRates = 0
|
||||
this.btnmsk = false
|
||||
}else{
|
||||
uni.showToast({
|
||||
title:res.msg,
|
||||
icon: 'none',
|
||||
duration: 2000
|
||||
})
|
||||
this.btnmsk = false
|
||||
}
|
||||
})
|
||||
}
|
||||
|
@ -292,6 +302,12 @@
|
|||
</script>
|
||||
|
||||
<style lang="scss" >
|
||||
/deep/ .u-flex{
|
||||
padding-top: 20rpx !important;
|
||||
}
|
||||
// /deep/ .u-iconfont{
|
||||
// margin-top: 20rpx;
|
||||
// }
|
||||
/deep/ .u-title{
|
||||
padding-bottom: 22rpx;
|
||||
}
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<image src="https://api.ccttiot.com/smartmeter/img/static/uyr6T0Vfkefty2blkDmU" mode=""
|
||||
style="width: 52rpx;height: 52rpx;margin-right: 10rpx;vertical-align: bottom;vertical-align: bottom;"
|
||||
@click="btnshouye"></image>
|
||||
<text>店铺</text>
|
||||
<text>设备列表</text>
|
||||
</view>
|
||||
|
||||
<u-mask :show="showtip" @click="show = false" :z-index='1000' />
|
||||
|
@ -152,7 +152,6 @@
|
|||
|
||||
|
||||
|
||||
|
||||
</view>
|
||||
</template>
|
||||
|
||||
|
@ -220,7 +219,8 @@
|
|||
touchStartX: 0, // 触屏起始点x
|
||||
touchStartY: 0, // 触屏起始点y
|
||||
|
||||
xiaflag:true
|
||||
xiaflag:true,
|
||||
isMch:false
|
||||
}
|
||||
},
|
||||
onLoad() {
|
||||
|
@ -407,8 +407,36 @@
|
|||
|
||||
// 获取店铺
|
||||
sremakes(item) {
|
||||
this.id = item.deviceId
|
||||
this.showshop = true
|
||||
if(this.isMch == false){
|
||||
uni.showModal({
|
||||
title: '提示',
|
||||
content: '您未申请商家合作,是否申请?',
|
||||
success: function(res) {
|
||||
if (res.confirm) {
|
||||
uni.navigateTo({
|
||||
url:'/page_fenbao/statulist/merchant/index'
|
||||
})
|
||||
}
|
||||
}
|
||||
})
|
||||
}else if(this.shoplist.length == 0){
|
||||
uni.showModal({
|
||||
title: '提示',
|
||||
content: '未创建店铺,是否去创建店铺?',
|
||||
success: function(res) {
|
||||
if (res.confirm) {
|
||||
uni.navigateTo({
|
||||
url:'/page_fenbao/statulist/myshop/shopxx/index'
|
||||
})
|
||||
} else if (res.cancel) {
|
||||
|
||||
}
|
||||
}
|
||||
})
|
||||
}else{
|
||||
this.id = item.deviceId
|
||||
this.showshop = true
|
||||
}
|
||||
},
|
||||
gettanc() {
|
||||
this.$u.get('/app/store/listCount').then((res) => {
|
||||
|
@ -509,7 +537,7 @@
|
|||
} else {
|
||||
stause = 1
|
||||
}
|
||||
console.log(stause, 'stausestause');
|
||||
// console.log(stause, 'stausestause');
|
||||
this.$u.put(`/app/device/${this.deviceInfo.deviceId}/changePower?status=` + stause).then((res) => {
|
||||
// this.$forceUpdate()
|
||||
if (res.code == 200) {
|
||||
|
@ -576,14 +604,6 @@
|
|||
}
|
||||
})
|
||||
})
|
||||
// this.wateringList.forEach(wateringItem => {
|
||||
// this.groupLists.forEach(groupItem => {
|
||||
// if (groupItem.storeId !== null && wateringItem.storeId !== null && groupItem.storeId === wateringItem.storeId) {
|
||||
// groupItem.wateringList.push(wateringItem)
|
||||
// }
|
||||
// })
|
||||
// })
|
||||
|
||||
} else {
|
||||
this.pagenum++
|
||||
this.wateringList = res.rows
|
||||
|
@ -602,7 +622,7 @@
|
|||
}
|
||||
})
|
||||
})
|
||||
console.log(this.groupLists)
|
||||
// console.log(this.groupLists)
|
||||
}
|
||||
this.isLoading = false;
|
||||
} else {
|
||||
|
@ -610,63 +630,6 @@
|
|||
this.xiaflag = true
|
||||
}
|
||||
})
|
||||
// } else {
|
||||
// this.$u.get(
|
||||
// `/app/device/list?storeId=${this.storeId}&pageNum=${this.pagenum}&pageSize=${this.pagesize}`)
|
||||
// .then((res) => {
|
||||
// if (res.code == 200) {
|
||||
// this.shuaxin = false
|
||||
// this.total = res.total
|
||||
// if (res.rows.length > 0) {
|
||||
// // 有数据,追加到列表
|
||||
// this.shujuflag = false
|
||||
// uni.hideLoading()
|
||||
// } else {
|
||||
// // 没有更多数据
|
||||
// this.shujuflag = true
|
||||
// uni.hideLoading()
|
||||
// }
|
||||
// if (this.pagenum > 1) {
|
||||
// this.wateringList = this.wateringList.concat(res.rows)
|
||||
// this.shujuflag = false
|
||||
|
||||
// this.groupLists.forEach(groupItem => {
|
||||
// groupItem.wateringList = []
|
||||
// })
|
||||
// this.wateringList.forEach(wateringItem => {
|
||||
// this.groupLists[0].wateringList.push(wateringItem);
|
||||
// })
|
||||
// this.wateringList.forEach(wateringItem => {
|
||||
// this.groupLists.forEach(groupItem => {
|
||||
// if (groupItem.storeId === wateringItem.storeId) {
|
||||
// groupItem.wateringList.push(wateringItem)
|
||||
// }
|
||||
// })
|
||||
// })
|
||||
|
||||
// } else {
|
||||
// this.wateringList = res.rows
|
||||
// this.groupLists.forEach(groupItem => {
|
||||
// groupItem.wateringList = []
|
||||
// })
|
||||
// this.wateringList.forEach(wateringItem => {
|
||||
// this.groupLists[0].wateringList.push(wateringItem);
|
||||
// })
|
||||
// this.wateringList.forEach(wateringItem => {
|
||||
// this.groupLists.forEach(groupItem => {
|
||||
// if (groupItem.storeId === wateringItem.storeId) {
|
||||
// groupItem.wateringList.push(wateringItem)
|
||||
// }
|
||||
// })
|
||||
// })
|
||||
// }
|
||||
// this.pagenum++
|
||||
// this.isLoading = false;
|
||||
// } else {
|
||||
// this.shuaxin = false
|
||||
// }
|
||||
// })
|
||||
// }
|
||||
},
|
||||
// onReachBottom() {
|
||||
// console.log(11);
|
||||
|
@ -718,9 +681,7 @@
|
|||
} else {
|
||||
this.pagenum = 1
|
||||
// this.wateringList = []
|
||||
this.$u.get(
|
||||
`/app/device/list?storeId=${item.storeId}&pageNum=${this.pagenum}&pageSize=${this.pagesize}`
|
||||
).then((res) => {
|
||||
this.$u.get(`/app/device/list?storeId=${item.storeId}&pageNum=${this.pagenum}&pageSize=${this.pagesize}`).then((res) => {
|
||||
if (res.code == 200) {
|
||||
this.total = res.total
|
||||
// if(this.pagenum > 1){
|
||||
|
@ -921,6 +882,7 @@
|
|||
if (res.code == 200) {
|
||||
// uni.setStorageSync('userType', res.data.userType)
|
||||
this.userType = res.data.userType
|
||||
this.isMch = res.data.isMch
|
||||
if (this.userType == '01') {
|
||||
this.getDeviceList()
|
||||
} else if (this.userType == '00') {
|
||||
|
@ -1012,7 +974,6 @@
|
|||
})
|
||||
},
|
||||
todetail(id) {
|
||||
console.log(id);
|
||||
uni.navigateTo({
|
||||
url: '/page_user/sbdetail?id=' + id
|
||||
})
|
||||
|
@ -1089,7 +1050,7 @@
|
|||
background-color: #8883F0;
|
||||
|
||||
text {
|
||||
padding-left: 33%;
|
||||
padding-left: 27%;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -62,7 +62,7 @@
|
|||
</view>
|
||||
<view class="botcard" @click="topage(9)" v-else>
|
||||
<image src="https://api.ccttiot.com/smartmeter/img/static/uYOquvGtfb1sm5F60NgJ" mode=""></image>
|
||||
<view class="txt">提交申请后可创建店铺</view>
|
||||
<view class="txt">商家合作</view>
|
||||
</view>
|
||||
<view class="botcard" @click="btnguanli">
|
||||
<image src="https://api.ccttiot.com/smartmeter/img/static/umjPUc8nDKf1JwVqRAeb" mode=""></image>
|
||||
|
|
|
@ -131,73 +131,7 @@
|
|||
};
|
||||
},
|
||||
onLoad(option) {
|
||||
// if (option.flag) {
|
||||
// let id = option.id
|
||||
// this.$u.get(`/app/device/${id}/withSuitList`).then((res) => {
|
||||
// if (res.code == 200) {
|
||||
// this.deviceobj = res.data
|
||||
// }
|
||||
// })
|
||||
// let that = this
|
||||
// let data = {
|
||||
// deviceNo: id
|
||||
// }
|
||||
// that.$u.put("/app/device/bind", data).then(res => {
|
||||
// if (res.code == 200) {
|
||||
// let that = this
|
||||
// let data = {
|
||||
// deviceNo: id
|
||||
// }
|
||||
// that.$u.get(`/app/device/isBind?deviceNo=${id}`).then(res => {
|
||||
// if (res.data == 2) {
|
||||
// that.$u.get(`/app/device/${id}/withSuitList`).then((res) => {
|
||||
// if (res.code == 200) {
|
||||
// uni.navigateTo({
|
||||
// url: '/page_components/fuwu/index?id=' + id
|
||||
// })
|
||||
// }
|
||||
// })
|
||||
// } else if (res.data == 1) {
|
||||
// uni.showModal({
|
||||
// title: '提示',
|
||||
// content: '该设备未绑定,你需进行绑定吗?',
|
||||
// success: function(res) {
|
||||
// if (res.confirm) {
|
||||
// that.$u.put("/app/device/bind", data).then(res => {
|
||||
// if(res.code == 200){
|
||||
// that.$u.get(`/app/device/${id}/bySn`).then((res) => {
|
||||
// if (res.code == 200) {
|
||||
// uni.navigateTo({
|
||||
// url: '/page_components/bindsz?id=' + res.data.deviceId
|
||||
// })
|
||||
// }
|
||||
// })
|
||||
// }
|
||||
// })
|
||||
// } else if (res.cancel) {
|
||||
|
||||
// }
|
||||
// }
|
||||
// })
|
||||
// } else if (res.data == 0) {
|
||||
// uni.showModal({
|
||||
// title: '提示',
|
||||
// content: '该设备未录入,你需进行录入吗?',
|
||||
// success: function(res) {
|
||||
// if (res.confirm) {
|
||||
// uni.navigateTo({
|
||||
// url: '/page_fenbao/zhuce?sn=' + id
|
||||
// })
|
||||
// } else if (res.cancel) {
|
||||
|
||||
// }
|
||||
// }
|
||||
// })
|
||||
// }
|
||||
// })
|
||||
// }
|
||||
// })
|
||||
// }
|
||||
|
||||
},
|
||||
// 分享到好友(会话)
|
||||
onShareAppMessage: function() {
|
||||
|
@ -619,17 +553,6 @@
|
|||
},
|
||||
|
||||
logins() {
|
||||
// if (uni.getStorageSync('userType')) {
|
||||
// this.userType = uni.getStorageSync('userType')
|
||||
// this.userType = '01'
|
||||
// if (this.userType == '01') {
|
||||
// this.getDeviceList()
|
||||
// } else if (this.userType == '00') {
|
||||
// this.getdevice()
|
||||
// }
|
||||
// } else {
|
||||
|
||||
// }
|
||||
this.getuserinfo()
|
||||
},
|
||||
getuserinfo() {
|
||||
|
@ -639,11 +562,6 @@
|
|||
uni.setStorageSync('userType', res.data)
|
||||
this.userType = res.data.userType
|
||||
this.deviceCount = res.data.deviceCount
|
||||
// if (this.userType == '01') {
|
||||
// this.getDeviceList()
|
||||
// } else if (this.userType == '00') {
|
||||
// this.getdevice()
|
||||
// }
|
||||
} else {
|
||||
this.jmlogin()
|
||||
}
|
||||
|
|
22
pages/tj.vue
22
pages/tj.vue
|
@ -168,8 +168,6 @@
|
|||
this.gettime()
|
||||
},
|
||||
methods: {
|
||||
|
||||
|
||||
// 点击获取时间
|
||||
confirm(e) {
|
||||
this.recharge = 0
|
||||
|
@ -203,7 +201,6 @@
|
|||
this.chartData = this.timelist.slice(0, this.dateday).map(item => item.recharge)
|
||||
this.chartday = this.timelist.slice(0, this.dateday).map(item => item.createDay + '日');
|
||||
}
|
||||
|
||||
this.loging = true
|
||||
for (let i = 0; i < this.timelist.length; i++) {
|
||||
this.recharge += this.timelist[i].recharge
|
||||
|
@ -228,16 +225,7 @@
|
|||
this.timelist = res.data
|
||||
this.chartData = this.timelist.map(item => item.usedElectriQuantity);
|
||||
this.chartday = this.timelist.map(item => item.createDay + '日');
|
||||
|
||||
// console.log('用电', this.chartData, '时间', this.chartday);
|
||||
this.loging = true
|
||||
|
||||
// 求用电总度数
|
||||
// this.quantity = 0
|
||||
// for (let i = 0; i < this.timelist.length; i++) {
|
||||
// this.quantity += this.timelist[i].recharge / 0.5
|
||||
// }
|
||||
// return this.quantity
|
||||
}
|
||||
})
|
||||
},
|
||||
|
@ -475,8 +463,6 @@
|
|||
|
||||
page {
|
||||
background-color: #F7FAFE;
|
||||
// padding-bottom: 240rpx;
|
||||
// box-sizing: border-box;
|
||||
}
|
||||
|
||||
.page {
|
||||
|
@ -499,7 +485,6 @@
|
|||
background: #8883F0;
|
||||
box-shadow: 0rpx 16rpx 40rpx 0rpx rgba(42, 130, 228, 0.1);
|
||||
opacity: 1;
|
||||
// filter: blur(0px);
|
||||
border-radius: 40rpx;
|
||||
|
||||
.month {
|
||||
|
@ -533,12 +518,8 @@
|
|||
.echarts {
|
||||
margin-left: 22rpx;
|
||||
margin-top: 60rpx;
|
||||
// width: 100%;
|
||||
// height: 80%;
|
||||
width: 588rpx;
|
||||
height: 320rpx;
|
||||
// overflow: hidden;
|
||||
// overflow-x: auto;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -546,13 +527,10 @@
|
|||
margin-top: 16rpx;
|
||||
height: 600rpx;
|
||||
overflow: auto;
|
||||
// height:280rpx;
|
||||
// overflow-y: scroll;
|
||||
.card_list {
|
||||
width: 632rpx;
|
||||
height: 88rpx;
|
||||
background: #FFFFFF;
|
||||
// box-shadow: 0rpx 16rpx 40rpx 0rpx rgba(42, 130, 228, 0.1);
|
||||
opacity: 1;
|
||||
border-radius: 30rpx;
|
||||
display: flex;
|
||||
|
|
Loading…
Reference in New Issue
Block a user