This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
nezha-nezha-fronted/nezha-fronted/src/components/common/rightBox/panelBox.vue

137 lines
4.4 KiB
Vue
Raw Normal View History

<template key="panelBox">
2020-01-20 21:25:55 +08:00
<transition name="right-box-580">
2021-01-18 18:58:57 +08:00
<div class="right-box right-box-panel z-top" v-if="rightBox.show" v-clickoutside="{obj:panel,func:clickos}">
<!-- begin--顶部按钮-->
2020-10-15 14:27:46 +08:00
<div class="right-box-top-btns right-box-form-delete">
<button @click="del(panel)" class="nz-btn nz-btn-size-normal nz-btn-size-alien nz-btn-min-width-82" type="button" v-has="'panel_delete'" v-if="panel.id != ''">
2020-09-10 17:00:32 +08:00
<span class="right-box-top-btn-icon"><i class="nz-icon nz-icon-delete"></i></span>
2020-01-20 17:32:03 +08:00
<span class="right-box-top-btn-txt">{{$t('overall.delete')}}</span>
</button>
</div>
<!-- end--顶部按钮-->
<!-- begin--标题-->
<div class="right-box-title">{{rightBox.title}}</div>
<!-- end--标题-->
<!-- begin--表单-->
2020-12-14 20:25:24 +08:00
<div class="right-box-form-box">
<el-form class="right-box-form right-box-form-left" label-width="120px" :model="panel" label-position = "top" ref="panelForm">
<el-form-item :label='$t("overall.name")' prop="name" :rules="{required: true, message: $t('validate.required'), trigger: 'blur'}">
2021-02-04 11:21:00 +08:00
<el-input placeholder="" maxlength="64" show-word-limit v-model="panel.name" size="small" id="panel-box-input-name"></el-input>
2020-01-20 17:32:03 +08:00
</el-form-item>
</el-form>
2020-12-14 20:25:24 +08:00
</div>
<!-- end--表单-->
<!-- begin--底部按钮-->
<div class="right-box-bottom-btns">
2021-02-04 11:21:00 +08:00
<button v-cancel="{obj:panel,func:esc}" id="panel-box-esc" class="nz-btn nz-btn-size-normal-new nz-btn-style-light-new">
2020-01-20 17:32:03 +08:00
<span>{{$t('overall.cancel')}}</span>
</button>
2021-02-04 11:21:00 +08:00
<button :class="{'nz-btn-disabled':prevent_opt.save}" :disabled="prevent_opt.save" @click="save" class="nz-btn nz-btn-size-normal-new nz-btn-style-normal-new" id="panel-box-save">
2020-01-20 17:32:03 +08:00
<span>{{$t('overall.save')}}</span>
</button>
</div>
<!-- end--底部按钮-->
</div>
</transition>
</template>
<script>
export default {
name: "panelBox",
props: {
panel: Object
},
data() {
return {
rightBox: { //面板弹出框相关
show: false,
title: this.$t('dashboard.panel.createPanelTitle')
},
}
},
methods: {
show(show) {
this.rightBox.show = show;
},
setTitle(title) {
this.rightBox.title = title;
},
clickos() {
this.esc();
},
//面板相关方法
del: function(u) {
this.$confirm(this.$t("tip.confirmDelete"), {
confirmButtonText: this.$t("tip.yes"),
cancelButtonText: this.$t("tip.no"),
type: 'warning'
}).then(() => {
this.$delete("panel?ids=" + u.id).then(response => {
if (response.code === 200) {
this.esc();
this.$message({duration: 1000, type: 'success', message: this.$t("tip.deleteSuccess")});
this.$emit("reloadForDel");
} else {
this.$message.error(response.msg);
}
})
});
},
save: function() {
2020-01-20 17:32:03 +08:00
this.$refs.panelForm.validate((valid) => {
if (valid) {
this.prevent_opt.save=true;
2020-01-20 17:32:03 +08:00
if (this.panel.id) {
this.$put('panel', this.panel).then(response => {
if (response.code === 200) {
this.esc();
this.$message({duration: 1000, type: 'success', message: this.$t("tip.saveSuccess")});
this.$emit("reload");
} else {
this.$message.error(response.msg);
}
this.prevent_opt.save=false;
2020-01-20 17:32:03 +08:00
});
} else {
2020-01-20 17:32:03 +08:00
this.$post('panel', this.panel).then(response => {
if (response.code === 200) {
this.esc();
this.$message({duration: 1000, type: 'success', message: this.$t("tip.saveSuccess")});
this.$emit("reload", this.panel.name);
2020-01-20 17:32:03 +08:00
} else {
this.$message.error(response.msg);
}
this.prevent_opt.save=false;
2020-01-20 17:32:03 +08:00
});
}
2020-01-20 17:32:03 +08:00
} else {
return false;
}
});
},
esc: function() {
this.rightBox.show = false;
},
},
created() {
},
mounted: function() {
},
watch: {
}
}
</script>
<style scoped>
.z-top{
z-index: 3000 !important;
}
</style>