add取消充电任务
This commit is contained in:
55
pages/manage/cancel-charge-task.vue
Normal file
55
pages/manage/cancel-charge-task.vue
Normal file
@@ -0,0 +1,55 @@
|
||||
<template>
|
||||
<view class="zd_container">
|
||||
<nav-bar :title="title"></nav-bar>
|
||||
<view class="zd_content">
|
||||
<view class="zd_wrapper">
|
||||
<img class="img" src="../../static/image/che.png" alt="">
|
||||
</view>
|
||||
</view>
|
||||
<view class="zd-row submit-bar">
|
||||
<button class="zd-col-22 button-primary" :disabled="disabled" @tap="_cancleTaskCharge">{{$t('cancel-charging-task')}}</button>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import NavBar from '@/components/NavBar.vue'
|
||||
import {cancleTaskCharge} from '@/utils/getData2.js'
|
||||
export default {
|
||||
components: {
|
||||
NavBar
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
title: '',
|
||||
disabled: false
|
||||
};
|
||||
},
|
||||
onLoad (options) {
|
||||
this.title = options.title
|
||||
},
|
||||
methods: {
|
||||
async _cancleTaskCharge () {
|
||||
this.disabled = true
|
||||
try {
|
||||
let res = await cancleTaskCharge()
|
||||
this.cancle()
|
||||
uni.showToast({
|
||||
title: res.message,
|
||||
icon: 'none'
|
||||
})
|
||||
} catch (err) {
|
||||
this.disabled = false
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="stylus" scoped>
|
||||
.img
|
||||
display block
|
||||
width 60%
|
||||
height auto
|
||||
margin 0 auto
|
||||
</style>
|
||||
Reference in New Issue
Block a user