53 lines
1.3 KiB
Vue
53 lines
1.3 KiB
Vue
<template>
|
|
<el-dialog class="beijing-01__schedule create-week-plan" :title="title" :visible.sync="dialogShow" width="400px"
|
|
:before-close="doClose" :zIndex="2000" :modal="false" :close-on-click-modal="false" v-dialogDrag>
|
|
<el-row type="flex" justify="center" class="button-group">
|
|
<el-button @click="handleCommit">确 定</el-button>
|
|
<el-button @click="doClose">取 消</el-button>
|
|
</el-row>
|
|
</el-dialog>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
name: 'DeleteTodayPlan',
|
|
components: {
|
|
},
|
|
data() {
|
|
return {
|
|
dialogShow: false,
|
|
loading: false
|
|
}
|
|
},
|
|
computed: {
|
|
title() {
|
|
return '删除当天计划'
|
|
}
|
|
},
|
|
mounted() {
|
|
},
|
|
methods: {
|
|
doShow(params) {
|
|
this.dialogShow = true;
|
|
},
|
|
doClose() {
|
|
this.loading = false;
|
|
this.dialogShow = false;
|
|
},
|
|
handleCommit() {
|
|
// this.tripNumber
|
|
this.doClose();
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
<style rel="stylesheet/scss" lang="scss" scoped>
|
|
@import "src/styles/mixin.scss";
|
|
|
|
/deep/ {
|
|
.el-row {
|
|
margin: 10px;
|
|
}
|
|
}
|
|
</style> |