|
@@ -43,7 +43,7 @@
|
|
|
</div>
|
|
|
<div class="main-body" :class="{'no-data': !cardList.length}">
|
|
|
<template v-for="t in cardList">
|
|
|
- <topoImageCard :data="t" :key="t.id" @changeCheck="changeCheck" @rename="rename" @publishSuc="updateSuc" @moveTo="moveTo"
|
|
|
+ <topoImageCard :isPub="isPub" :data="t" :key="t.id" @changeCheck="changeCheck" @rename="rename" @publishSuc="updateSuc" @moveTo="moveTo"
|
|
|
@delete="deleteGraph" @editTag="editTag"></topoImageCard>
|
|
|
</template>
|
|
|
<div v-if="!cardList.length" style="margin-top: 112px;">
|
|
@@ -54,37 +54,8 @@
|
|
|
</el-main>
|
|
|
</el-container>
|
|
|
|
|
|
- <!-- 弹框 -->
|
|
|
- <el-dialog class="create-dialog" title="新建拓扑图" :visible.sync="outerVisible">
|
|
|
- <el-dialog class="create-dialog-inner" width="30%" title="所属类别" :visible.sync="innerVisible" append-to-body>
|
|
|
- <div class="inner-dialog-body">
|
|
|
- <div class="left">1</div>
|
|
|
- <div class="right">2</div>
|
|
|
- </div>
|
|
|
- </el-dialog>
|
|
|
- <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">请选择所属类别</el-button>
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="活动名称" prop="name">
|
|
|
- <el-input v-model="ruleForm.name"></el-input>
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="标签" prop="resource">
|
|
|
- <el-select v-model="value" multiple filterable allow-create default-first-option width="100%" placeholder="请选择文章标签"></el-select>
|
|
|
- </el-form-item>
|
|
|
- <el-form-item>
|
|
|
- <el-button type="primary" @click="submitForm('ruleForm')">立即创建</el-button>
|
|
|
- <el-button @click="resetForm('ruleForm')">重置</el-button>
|
|
|
- </el-form-item>
|
|
|
- </el-form>
|
|
|
- </div>
|
|
|
- <div slot="footer" class="dialog-footer">
|
|
|
- <el-button @click="outerVisible = false">取 消</el-button>
|
|
|
- <el-button type="primary" @click="innerVisible = true">确定</el-button>
|
|
|
- </div>
|
|
|
- </el-dialog>
|
|
|
-
|
|
|
+ <!-- 创建弹框 -->
|
|
|
+ <createGraphDialog ref="createGraphDialog"></createGraphDialog>
|
|
|
<!-- 重命名 -->
|
|
|
<rename ref="rename" :isPub="isPub" @updateSuc="updateSuc"></rename>
|
|
|
<!-- 移动到 -->
|
|
@@ -108,6 +79,7 @@ import move from "@/components/homeView/move"
|
|
|
import deleteDialog from "@/components/homeView/deleteDialog"
|
|
|
import tagDialog from "@/components/homeView/tagDialog"
|
|
|
import recycle from "@/components/homeView/recycle"
|
|
|
+import createGraphDialog from "@/components/homeView/createGraphDialog"
|
|
|
export default {
|
|
|
name: "home",
|
|
|
data() {
|
|
@@ -132,56 +104,6 @@ export default {
|
|
|
], // 排序选项
|
|
|
queryText: "", // 搜索文字
|
|
|
isPub: 1, // 发布类型()
|
|
|
- outerVisible: false,
|
|
|
- innerVisible: false,
|
|
|
- ruleForm: {
|
|
|
- name: "",
|
|
|
- region: "",
|
|
|
- date1: "",
|
|
|
- date2: "",
|
|
|
- delivery: false,
|
|
|
- type: [],
|
|
|
- resource: "",
|
|
|
- desc: "",
|
|
|
- },
|
|
|
- rules: {
|
|
|
- name: [
|
|
|
- { required: true, message: "请输入活动名称", trigger: "blur" },
|
|
|
- { min: 3, max: 5, message: "长度在 3 到 5 个字符", trigger: "blur" },
|
|
|
- ],
|
|
|
- region: [
|
|
|
- { required: true, message: "请选择活动区域", trigger: "change" },
|
|
|
- ],
|
|
|
- date1: [
|
|
|
- {
|
|
|
- type: "date",
|
|
|
- required: true,
|
|
|
- message: "请选择日期",
|
|
|
- trigger: "change",
|
|
|
- },
|
|
|
- ],
|
|
|
- date2: [
|
|
|
- {
|
|
|
- type: "date",
|
|
|
- required: true,
|
|
|
- message: "请选择时间",
|
|
|
- trigger: "change",
|
|
|
- },
|
|
|
- ],
|
|
|
- type: [
|
|
|
- {
|
|
|
- type: "array",
|
|
|
- required: true,
|
|
|
- message: "请至少选择一个活动性质",
|
|
|
- trigger: "change",
|
|
|
- },
|
|
|
- ],
|
|
|
- resource: [
|
|
|
- { required: true, message: "请选择活动资源", trigger: "change" },
|
|
|
- ],
|
|
|
- desc: [{ required: true, message: "请填写活动形式", trigger: "blur" }],
|
|
|
- },
|
|
|
- value: [],
|
|
|
cardList: [], // 当前显示的卡片列表
|
|
|
checkAll: false, // 全选
|
|
|
selectCard: [], // 当前选中的卡片列表
|
|
@@ -194,11 +116,9 @@ export default {
|
|
|
console.log(data);
|
|
|
},
|
|
|
// 创建拓扑图
|
|
|
- createProject() { },
|
|
|
- // 获取所属类别
|
|
|
- getprojectType() {
|
|
|
- this.innerVisible = true;
|
|
|
- },
|
|
|
+ createProject() {
|
|
|
+ this.$refs.createGraphDialog.showDialog()
|
|
|
+ },
|
|
|
submitForm(formName) {
|
|
|
this.$refs[formName].validate((valid) => {
|
|
|
if (valid) {
|
|
@@ -328,7 +248,7 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
},
|
|
|
- components: { Select, Button, leftAsideTree, Dropdown, topoImageCard, rename, move, deleteDialog, recycle, tagDialog },
|
|
|
+ components: { Select, Button, leftAsideTree, Dropdown, topoImageCard, rename, move, deleteDialog, recycle, tagDialog, createGraphDialog },
|
|
|
watch: {
|
|
|
// 排序方式修改
|
|
|
selVal(n, o) {
|