rt-sim-training-client/src/views/planMonitor/editTool/menus/routingSelection.vue
2019-07-26 13:32:43 +08:00

45 lines
1.2 KiB
Vue

<template>
<el-dialog class="planEdit__tool quick-task-increase" :title="title" :visible.sync="dialogShow" width="320px"
: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: 'RoutingSelection',
components: {
},
data() {
return {
dialogShow: false,
loading: false,
}
},
computed: {
title() {
return '交路选择'
}
},
mounted() {
},
methods: {
doShow() {
this.dialogShow = true;
},
doClose() {
this.loading = false;
this.dialogShow = false;
},
handleCommit() {
}
}
}
</script>
<style rel="stylesheet/scss" lang="scss" scoped>
@import "src/styles/mixin.scss";
</style>