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/dcBox.vue

275 lines
10 KiB
Vue
Raw Normal View History

2020-02-21 17:57:19 +08:00
<template>
<transition name="right-box">
<div class="right-box right-box-dc" v-if="rightBox.show">
<!-- begin--顶部按钮-->
<div class="right-box-top-btns">
2020-02-24 20:27:14 +08:00
<button id="dc-del" type="button" v-if="currentDc.id != '' && rightBox.isEdit" @click="del" class="nz-btn nz-btn-size-normal nz-btn-size-alien nz-btn-style-light nz-btn-min-width-82">
2020-02-21 17:57:19 +08:00
<span class="right-box-top-btn-icon"><i class="el-icon-delete"></i></span>
<span class="right-box-top-btn-txt">{{$t('overall.delete')}}</span>
</button>
<button v-if="!rightBox.isEdit" id="dc-save" type="button" @click="saveOrToEdit" class="nz-btn nz-btn-size-normal nz-btn-size-alien nz-btn-style-light nz-btn-min-width-82">
<span class="right-box-top-btn-icon"><i class="nz-icon nz-icon-edit"></i></span>
<span class="right-box-top-btn-txt">{{$t('overall.edit')}}</span>
</button>
</div>
<!-- end--顶部按钮-->
<!-- begin--标题-->
<div class="right-box-title">{{rightBox.title}}</div>
<!-- end--标题-->
<!-- begin--表单-->
<el-scrollbar class="right-box-form-box">
2020-02-24 20:27:14 +08:00
<el-form class="right-box-form" :model="currentDc" label-position="top" :rules="rules" ref="dcForm">
2020-02-21 17:57:19 +08:00
<el-form-item :label='$t("overall.name")' prop="name">
2020-02-24 20:27:14 +08:00
<el-input v-if="rightBox.isEdit" placeholder="" maxlength="64" show-word-limit v-model="currentDc.name" size="small"></el-input>
<div v-if="!rightBox.isEdit" class="right-box-form-content-txt">{{currentDc.name}}</div>
2020-02-21 17:57:19 +08:00
</el-form-item>
<el-form-item :label='$t("asset.createAssetTab.location")' prop="location">
2020-02-24 20:27:14 +08:00
<el-input v-if="rightBox.isEdit" placeholder="" v-model="currentDc.location" size="small"></el-input>
<div v-if="!rightBox.isEdit && currentDc.location" class="right-box-form-content-txt">{{currentDc.location}}</div>
<div v-else-if="!rightBox.isEdit" class="right-box-form-content-txt">-</div>
2020-02-21 17:57:19 +08:00
</el-form-item>
<el-form-item :label='$t("asset.createAssetTab.tel")' prop="tel">
2020-02-24 20:27:14 +08:00
<el-input v-if="rightBox.isEdit" placeholder="" v-model="currentDc.tel" size="small"></el-input>
<div v-if="!rightBox.isEdit && currentDc.tel" class="right-box-form-content-txt">{{currentDc.tel}}</div>
<div v-else-if="!rightBox.isEdit" class="right-box-form-content-txt">-</div>
</el-form-item>
<el-form-item :label='$t("asset.createAssetTab.principal")' prop="principal">
<el-select value-key="id" popper-class="config-dropdown"
2020-02-24 20:27:14 +08:00
v-model="currentDc.principal" placeholder="" v-if="rightBox.isEdit" size="small">
<el-option @click.native="" v-for="item in userData" :key="item.userId" :label="item.username"
:value="item.userId" :id="'dc-principal-op-'+item.userId">
<span>{{item.username}}</span>
</el-option>
</el-select>
2020-02-24 20:27:14 +08:00
<div v-if="!rightBox.isEdit && currentDc.principal" class="right-box-form-content-txt">
<template v-for="item in userData">
<template v-if="item.userId == currentDc.principal">{{item.username}}</template>
</template>
</div>
<div v-else-if="!rightBox.isEdit" class="right-box-form-content-txt">-</div>
</el-form-item>
<el-form-item :label='$t("config.dc.area")' prop="area">
2020-02-24 20:27:14 +08:00
<select-area ref="selectArea" :areaData="areaData" :placement="'left'" @selectArea="selectArea">
<template v-slot:trigger>
<el-input v-if="rightBox.isEdit" placeholder="" v-model="currentDc.area.name" size="small" readonly="readonly" @click.native="toSelectArea"></el-input>
</template>
</select-area>
<div v-if="!rightBox.isEdit && currentDc.area.name" class="right-box-form-content-txt">{{currentDc.area.name}}</div>
<div v-else-if="!rightBox.isEdit" class="right-box-form-content-txt">-</div>
</el-form-item>
2020-02-21 17:57:19 +08:00
</el-form>
</el-scrollbar>
<!--底部按钮-->
<div class="right-box-bottom-btns">
<button @click="esc" id="dc-box-esc" class="nz-btn nz-btn-size-normal nz-btn-style-light nz-btn-min-width-100">
<span>{{$t('overall.cancel')}}</span>
</button>
<button v-if="rightBox.isEdit" @click="saveOrToEdit" id="dc-box-save" class="nz-btn nz-btn-size-normal nz-btn-style-normal nz-btn-min-width-100">
<span>{{$t('overall.save')}}</span>
</button>
</div>
2020-02-24 20:27:14 +08:00
2020-02-21 17:57:19 +08:00
</div>
</transition>
</template>
<script>
import {noSpecialChar} from "../js/validate";
export default {
name: "dcBox",
props: {
dc: Object,
userData: Array
2020-02-21 17:57:19 +08:00
},
data() {
return {
2020-02-24 20:27:14 +08:00
currentDc: {
id: '',
name: '',
location: '',
tel: '',
principal: '',
area: {
id: '',
name: ''
},
areaId: ''
},
2020-02-21 17:57:19 +08:00
rightBox: {
show: false,
title: '',
isEdit: false
},
rules: {
name: [
2020-02-24 20:27:14 +08:00
{required: true, message: this.$t('validate.required'), trigger: 'blur'}
2020-02-21 17:57:19 +08:00
],
},
areaData: [],
data: {
code: 200,
msg: "success",
data: {
list: [{
id: 1,
pid: 0,
name: "astana",
longitude: 100.3,
latitude: 24.3,
i18n:{en:'astana',cn:'阿斯塔纳'},
children: [{
id: 2,
pid: 1,
name: "qu",
longitude: 100.3,
latitude: 24.3,
i18n:{en:'qu',cn:'阿斯塔纳一个区'},
children: [{
id: 3,
pid: 2,
name: "qu2",
longitude: 100.3,
latitude: 24.3,
i18n:{en:'qu2',cn:'阿斯塔纳二个区'}}
]
}, {
id: 4,
pid: 0,
name: "alamutu",
longitude: 100.3,
latitude: 24.3,
i18n:{en:'alamutu',cn:'阿拉木图'},
children: [{
id: 5,
pid: 4,
name: "qu3",
longitude: 100.3,
latitude: 24.3,
i18n: {en: 'qu3', cn: '阿拉木图一个区'}
}]
}]
}]
}
},
2020-02-21 17:57:19 +08:00
}
},
methods: {
show(show, isEdit) {
this.rightBox.show = show;
this.rightBox.isEdit = isEdit;
},
/*关闭弹框*/
esc() {
this.rightBox.show = false;
},
2020-02-24 20:27:14 +08:00
/*弹出选择area弹框*/
toSelectArea() {
this.$refs.selectArea.openBox(this.currentDc.area);
},
2020-02-21 17:57:19 +08:00
/*保存*/
save() {
this.$refs.dcForm.validate((valid) => {
if (valid) {
2020-02-24 20:27:14 +08:00
if (this.currentDc.id) {
if (this.currentDc.area) {
this.currentDc.areaId = this.currentDc.area.id;
}
this.$put('idc', this.currentDc).then(response => {
2020-02-21 17:57:19 +08:00
if (response.code === 200) {
this.$message({duration: 1000, type: 'success', message: this.$t("tip.saveSuccess")});
this.rightBox.show = false;
this.$emit('reload');
} else {
this.$message.error(response.msg);
}
});
} else {
2020-02-24 20:27:14 +08:00
if (this.currentDc.area) {
this.currentDc.areaId = this.currentDc.area.id;
}
this.$post('idc', this.currentDc).then(response => {
2020-02-21 17:57:19 +08:00
if (response.code === 200) {
this.$message({duration: 1000, type: 'success', message: this.$t("tip.saveSuccess")});
this.rightBox.show = false;
2020-02-24 20:27:14 +08:00
this.$emit("reload");
2020-02-21 17:57:19 +08:00
} else {
this.$message.error(response.msg);
}
});
}
} else {
return false;
}
});
},
saveOrToEdit: function() {
if (!this.rightBox.isEdit) {
this.rightBox.isEdit = true;
2020-02-24 20:27:14 +08:00
this.rightBox.title = this.$t("asset.createAssetTab.editIdcTab.title") + " ID" + this.currentDc.id;
2020-02-21 17:57:19 +08:00
} else {
this.save();
}
},
/*删除*/
del() {
this.$confirm(this.$t("tip.confirmDelete"), {
confirmButtonText: this.$t("tip.yes"),
cancelButtonText: this.$t("tip.no"),
type: 'warning'
}).then(() => {
2020-02-24 20:27:14 +08:00
this.$delete("idc?ids=" + this.currentDc.id).then(response => {
2020-02-21 17:57:19 +08:00
if (response.code === 200) {
this.$message({duration: 1000, type: 'success', message: this.$t("tip.deleteSuccess")});
this.rightBox.show = false;
2020-02-24 20:27:14 +08:00
this.$emit("reload");
2020-02-21 17:57:19 +08:00
} else {
this.$message.error(response.msg);
}
});
});
},
getAreaData() {
2020-02-24 20:27:14 +08:00
this.$get('area', {pid: 0}).then(response => {
if (response.code === 200) {
2020-02-24 20:27:14 +08:00
this.areaData = response.data.list;
}
2020-02-24 20:27:14 +08:00
});
},
2020-02-24 20:27:14 +08:00
selectArea(area) {
this.currentDc.area.id = area.id;
this.currentDc.area.name = area.name;
}
2020-02-21 17:57:19 +08:00
},
mounted() {
this.getAreaData();
2020-02-21 17:57:19 +08:00
},
computed: {
},
watch: {
dc: {
immediate: true,
deep:true,
handler(n, o) {
2020-02-24 20:27:14 +08:00
this.currentDc = JSON.parse(JSON.stringify(n));
2020-02-21 17:57:19 +08:00
if (n && n.id) {
this.rightBox.title =this.rightBox.isEdit? this.$t("asset.createAssetTab.editIdcTab.title") + " ID" + n.id : this.$t("config.dc.dc") + " ID" + n.id ;
} else {
this.rightBox.title = this.$t("asset.createAssetTab.AddIdcTab.title");
}
}
},
}
}
</script>
<style scoped>
</style>