2019-07-26 13:32:43 +08:00
|
|
|
<template>
|
2019-08-13 15:54:26 +08:00
|
|
|
<el-dialog
|
|
|
|
v-dialogDrag
|
|
|
|
class="planEdit__tool systerm-out"
|
|
|
|
:title="title"
|
|
|
|
:visible.sync="dialogShow"
|
|
|
|
:width="width + 'px'"
|
|
|
|
:before-close="doClose"
|
|
|
|
:z-index="2000"
|
|
|
|
:modal="false"
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
>
|
|
|
|
<el-input v-model="context" type="textarea" :rows="10" readonly />
|
|
|
|
<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>
|
2019-07-26 13:32:43 +08:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
2019-08-13 15:54:26 +08:00
|
|
|
export default {
|
|
|
|
name: 'SystermOut',
|
|
|
|
components: {
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
dialogShow: false,
|
|
|
|
loading: false,
|
|
|
|
params: {
|
|
|
|
width: 400,
|
|
|
|
contextList: []
|
|
|
|
}
|
|
|
|
};
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
title() {
|
|
|
|
return '系统输出框';
|
|
|
|
},
|
|
|
|
width() {
|
|
|
|
if (this.params.width) {
|
|
|
|
return this.params.width;
|
|
|
|
} else {
|
|
|
|
return 400;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
context() {
|
|
|
|
return this.params.contextList.join('\n') || '';
|
|
|
|
}
|
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
doShow(params) {
|
|
|
|
this.params = params || {};
|
|
|
|
this.dialogShow = true;
|
|
|
|
},
|
|
|
|
doClose() {
|
|
|
|
this.loading = false;
|
|
|
|
this.dialogShow = false;
|
|
|
|
},
|
|
|
|
handleCommit() {
|
|
|
|
this.doClose();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2019-07-26 13:32:43 +08:00
|
|
|
</script>
|
|
|
|
<style rel="stylesheet/scss" lang="scss" scoped>
|
|
|
|
@import "src/styles/mixin.scss";
|
2019-08-13 15:54:26 +08:00
|
|
|
</style>
|