|
@@ -1,10 +1,13 @@
|
|
|
<template>
|
|
|
<el-dialog class="create-dialog" title="新建拓扑图" width="600px" :visible.sync="outerVisible" :close-on-click-modal="false" custom-class="createDialog">
|
|
|
- <graphTypeDialog ref="graphTypeDialog"></graphTypeDialog>
|
|
|
+ <graphTypeDialog ref="graphTypeDialog" @selectNode="selectNode"></graphTypeDialog>
|
|
|
<div class="dialog-bodys">
|
|
|
<el-form :model="ruleForm" :rules="rules" ref="ruleForm" label-width="100px" class="demo-ruleForm" label-position="top">
|
|
|
- <el-form-item label="所属类别" prop="region">
|
|
|
- <el-button @click="getprojectType" class="typeButton">请选择所属类别</el-button>
|
|
|
+ <el-form-item label="所属类别" prop="type">
|
|
|
+ <el-button @click="getprojectType" class="typeButton">
|
|
|
+ <span v-if="buttonStr" style="color:#C3C6CBFF">已选 : </span>
|
|
|
+ {{buttonStr?buttonStr:'请选择所属类别'}}
|
|
|
+ </el-button>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="名称" prop="name">
|
|
|
<el-input v-model="ruleForm.name" placeholder="请输入名称" size="small"></el-input>
|
|
@@ -30,28 +33,26 @@
|
|
|
</template>
|
|
|
<script>
|
|
|
import graphTypeDialog from "@/components/homeView/graphTypeDialog"
|
|
|
+import { createGraph } from "@/api/home"
|
|
|
export default {
|
|
|
components: {
|
|
|
graphTypeDialog
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
|
+ buttonStr: '',
|
|
|
ruleForm: {
|
|
|
name: "",
|
|
|
- region: "",
|
|
|
- resource: "",
|
|
|
+ type: "",
|
|
|
},
|
|
|
rules: {
|
|
|
name: [
|
|
|
{ required: true, message: "请输入名称", trigger: "blur" },
|
|
|
- { max: 10, message: "长度在 3 到 5 个字符", trigger: "blur" },
|
|
|
+ { max: 10, message: "最长为10个文字", trigger: "blur" },
|
|
|
],
|
|
|
- region: [
|
|
|
+ type: [
|
|
|
{ required: true, message: "请选择所属类别", trigger: "change" },
|
|
|
- ],
|
|
|
- resource: [
|
|
|
- { required: false, message: "请选择活动资源", trigger: "change" },
|
|
|
- ],
|
|
|
+ ]
|
|
|
},
|
|
|
value: [],
|
|
|
outerVisible: false,
|
|
@@ -85,6 +86,44 @@ export default {
|
|
|
this.inputVisible = false;
|
|
|
this.inputValue = '';
|
|
|
},
|
|
|
+ // 选好所属类别
|
|
|
+ selectNode(node) {
|
|
|
+ console.log(node);
|
|
|
+ this.ruleForm.type = node.data.code;
|
|
|
+ this.buttonStr = node.data.name
|
|
|
+ },
|
|
|
+ submitForm(formName) {
|
|
|
+ this.$refs[formName].validate((valid) => {
|
|
|
+ if (valid) {
|
|
|
+ this.createDraftsGraph()
|
|
|
+ } else {
|
|
|
+ console.log("error submit!!");
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
+ resetForm(formName) {
|
|
|
+ this.$refs[formName].resetFields();
|
|
|
+ },
|
|
|
+ // 创建拓扑图接口
|
|
|
+ createDraftsGraph() {
|
|
|
+ const pa = {
|
|
|
+ content: [{
|
|
|
+ categoryId: this.ruleForm.type,
|
|
|
+ name: this.ruleForm.name,
|
|
|
+ label: this.dynamicTags
|
|
|
+ }]
|
|
|
+ }
|
|
|
+ createGraph(pa).then(res => {
|
|
|
+ if (res.result == "success") {
|
|
|
+ this.outerVisible = false;
|
|
|
+ this.$message.success('创建成功');
|
|
|
+ this.$emit("createSuc")
|
|
|
+ } else {
|
|
|
+ this.$message(res.message)
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
</script>
|
|
@@ -94,10 +133,11 @@ export default {
|
|
|
border-bottom: 1px solid #f0f1f2ff;
|
|
|
}
|
|
|
.dialog-bodys {
|
|
|
- max-height: 250px;
|
|
|
+ // max-height: 250px;
|
|
|
}
|
|
|
/deep/ .el-dialog__body {
|
|
|
padding: 16px 120px;
|
|
|
+ height: 270px;
|
|
|
overflow: auto;
|
|
|
}
|
|
|
.el-dialog__footer {
|