Files
hht-xilinmen-uni/pages/manage/cancel-charge-task.vue
2024-09-11 11:29:44 +08:00

56 lines
1.1 KiB
Vue

<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()
uni.showToast({
title: res.message,
icon: 'none'
})
this.cancle()
} catch (err) {
this.disabled = false
}
}
}
}
</script>
<style lang="stylus" scoped>
.img
display block
width 60%
height auto
margin 0 auto
</style>