|
@@ -1,11 +1,12 @@
|
|
|
<template>
|
|
|
<div class="co_box">
|
|
|
<div v-for="(item1, index1) in this.checkJson" :key="index1" class="mc_ti_1" :draggable="isdrag == `${index1}`"
|
|
|
- :class="{ active: checkC === `x${index1}` }">
|
|
|
- <div class="title" @click.stop="checkTitle(`${index1}`)">
|
|
|
+ :class="{ active: checkC === `x${index1}` }" @click.stop="checkTitle(`${index1}`, 1, item1)">
|
|
|
+ <div class="title">
|
|
|
<div class="drag" @mousedown="setDrag(`${index1}`)" @mouseup="isdrag = ''"></div>
|
|
|
<span>{{ selectType(item1, index1) }}</span>
|
|
|
<div class="btnBox">
|
|
|
+ <!-- <div class="edit" @click.stop="editCheck(`${index1}`,item1)" v-if="item1.ttype == 1 && canEdit.indexOf(item1.type) !== -1 && etype == 'edit'"></div> -->
|
|
|
<div class="delete" @click.stop="deleteCheck(`${index1}`)"></div>
|
|
|
<div class="open" v-if="item1.array && item1.array.length" :class="{ isopen: item1.isopen }"
|
|
|
@click.stop="openPan(index1)"></div>
|
|
@@ -13,11 +14,13 @@
|
|
|
</div>
|
|
|
<div v-if="item1.array && item1.array.length && item1.isopen" class="mc_ti_1_xia">
|
|
|
<div v-for="(item2, index2) in item1.array" :key="`${index1}-${index2}`" class="mc_ti_2"
|
|
|
- :draggable="isdrag == `${index1}-${index2}`" :class="{ active: checkC === `x${index1}-${index2}` }">
|
|
|
- <div class="title" @click.stop="checkTitle(`${index1}-${index2}`)">
|
|
|
+ :draggable="isdrag == `${index1}-${index2}`" :class="{ active: checkC === `x${index1}-${index2}` }"
|
|
|
+ @click.stop="checkTitle(`${index1}-${index2}`, 2, item2)">
|
|
|
+ <div class="title">
|
|
|
<div class="drag" @mousedown="setDrag(`${index1}-${index2}`)" @mouseup="isdrag = ''"></div>
|
|
|
<span>{{ selectType(item2, index2) }}</span>
|
|
|
<div class="btnBox">
|
|
|
+ <!-- <div class="edit" @click.stop="editCheck(`${index1}-${index2}`,item2)" v-if="item2.ttype == 1 && canEdit.indexOf(item2.type) !== -1 && etype == 'edit'"></div> -->
|
|
|
<div class="delete" @click.stop="deleteCheck(`${index1}-${index2}`)"></div>
|
|
|
<div class="open" v-if="item2.array && item2.array.length" :class="{ isopen: item2.isopen }"
|
|
|
@click.stop="openPan(index1, index2)"></div>
|
|
@@ -26,40 +29,79 @@
|
|
|
<div v-if="item2.array && item2.array.length && item2.isopen" class="mc_ti_2_xia">
|
|
|
<div v-for="(item3, index3) in item2.array" :key="`${index1}-${index2}-${index3}`" class="mc_ti_3"
|
|
|
:draggable="isdrag == `${index1}-${index2}-${index3}`"
|
|
|
- :class="{ active: checkC === `x${index1}-${index2}-${index3}` }">
|
|
|
- <div class="title" @click.stop="checkTitle(`${index1}-${index2}-${index3}`)">
|
|
|
+ :class="{ active: checkC === `x${index1}-${index2}-${index3}` }"
|
|
|
+ @click.stop="checkTitle(`${index1}-${index2}-${index3}`, 3, item3)">
|
|
|
+ <div class="title">
|
|
|
<div class="drag" @mousedown="setDrag(`${index1}-${index2}-${index3}`)"
|
|
|
@mouseup="isdrag = ''"></div>
|
|
|
<span>{{ selectType(item3, index3) }}</span>
|
|
|
<div class="btnBox">
|
|
|
+ <!-- <div class="edit" @click.stop="editCheck(`${index1}-${index2}-${index3}`,item3)" v-if="item3.ttype == 1 && canEdit.indexOf(item3.type) !== -1 && etype == 'edit'"></div> -->
|
|
|
<div class="delete" @click.stop="deleteCheck(`${index1}-${index2}-${index3}`)"></div>
|
|
|
</div>
|
|
|
</div>
|
|
|
+ <div v-if="item3.ttype == 1 && canEdit.indexOf(item3.type) !== -1 && etype == 'edit'"
|
|
|
+ class="edit_box">
|
|
|
+ <div v-if="item3.type == 1">
|
|
|
+ <choiceX :cJson="item3.json"></choiceX>
|
|
|
+ <choiceDialog v-if="item3.type == 1 && checkC === `x${index1}-${index2}-${index3}`"
|
|
|
+ :cJson="cJson" @setJson="setJson">
|
|
|
+ </choiceDialog>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div v-else-if="item2.ttype == 1 && canEdit.indexOf(item2.type) !== -1 && etype == 'edit'"
|
|
|
+ class="edit_box">
|
|
|
+ <div v-if="item2.type == 1">
|
|
|
+ <choiceX :cJson="item2.json"></choiceX>
|
|
|
+ <choiceDialog v-if="item2.type == 1 && checkC === `x${index1}-${index2}`" :cJson="cJson"
|
|
|
+ @setJson="setJson"></choiceDialog>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
+ <div v-else-if="item1.ttype == 1 && canEdit.indexOf(item1.type) !== -1 && etype == 'edit'" class="edit_box">
|
|
|
+ <div v-if="item1.type == 1">
|
|
|
+ <choiceX :cJson="item1.json"></choiceX>
|
|
|
+ <choiceDialog v-if="item1.type == 1 && checkC === `x${index1}`" :cJson="cJson" @setJson="setJson">
|
|
|
+ </choiceDialog>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
import minxinVue from '../minxins/minxin';
|
|
|
+import choiceDialog from './choice/index.vue'
|
|
|
+import choiceX from './choice/choice.vue'
|
|
|
|
|
|
export default {
|
|
|
- mixins:[minxinVue],
|
|
|
+ mixins: [minxinVue],
|
|
|
+ components: {
|
|
|
+ choiceDialog,
|
|
|
+ choiceX
|
|
|
+ },
|
|
|
props: {
|
|
|
checkJson: {
|
|
|
type: Array,
|
|
|
},
|
|
|
checkC: {
|
|
|
type: String
|
|
|
+ },
|
|
|
+ etype: {
|
|
|
+ type: String,
|
|
|
+ default: ""
|
|
|
}
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
|
- manualJson:[],
|
|
|
- isdrag: ""
|
|
|
+ manualJson: [],
|
|
|
+ isdrag: "",
|
|
|
+ canEdit: [1],
|
|
|
+ ctype: "",
|
|
|
+ cJson: {}
|
|
|
}
|
|
|
},
|
|
|
computed: {
|
|
@@ -77,7 +119,7 @@ export default {
|
|
|
},
|
|
|
watch: {
|
|
|
checkJson: {
|
|
|
- handler(newVal){
|
|
|
+ handler(newVal) {
|
|
|
this.manualJson = this.depthCopy(newVal)
|
|
|
},
|
|
|
deep: true
|
|
@@ -98,13 +140,36 @@ export default {
|
|
|
this.$forceUpdate();
|
|
|
this.$emit("changeJson", this.manualJson);
|
|
|
},
|
|
|
- checkTitle(index) {
|
|
|
+ checkTitle(index, type, item) {
|
|
|
if (this.checkC === "x" + index) {
|
|
|
- this.$emit("update:checkC", "")
|
|
|
+ this.$emit("update:checkC", "")
|
|
|
} else {
|
|
|
- this.$emit("update:checkC", 'x' + index)
|
|
|
+ this.$emit("update:checkC", 'x' + index)
|
|
|
+ }
|
|
|
+ let _index = index.split("-");
|
|
|
+
|
|
|
+ this.ctype = type
|
|
|
+ if (this.ctype == 1 && item.ttype == 1) {
|
|
|
+ this.cJson = this.manualJson[_index[0]].json
|
|
|
+ } else if (this.ctype == 2 && item.ttype == 1) {
|
|
|
+ this.cJson = this.manualJson[_index[0]].array[_index[1]].json
|
|
|
+ } else if (this.ctype == 3 && item.ttype == 1) {
|
|
|
+ this.cJson = this.manualJson[_index[0]].array[_index[1]].array[_index[2]].json
|
|
|
}
|
|
|
},
|
|
|
+ setJson(json) {
|
|
|
+ let _index = this.checkC.replace("x", "").split("-");
|
|
|
+ this.cJson = json
|
|
|
+ if (this.ctype == 1) {
|
|
|
+ this.manualJson[_index[0]].json = json
|
|
|
+ } else if (this.ctype == 2) {
|
|
|
+ this.manualJson[_index[0]].array[_index[1]].json = json
|
|
|
+ } else if (this.ctype == 3) {
|
|
|
+ this.manualJson[_index[0]].array[_index[1]].array[_index[2]].json = json
|
|
|
+ }
|
|
|
+ this.$forceUpdate();
|
|
|
+ this.$emit("changeJson", this.manualJson);
|
|
|
+ },
|
|
|
deleteCheck(index) {
|
|
|
let _check = index.split("-")
|
|
|
let string = ""
|
|
@@ -138,15 +203,17 @@ export default {
|
|
|
} else if (_check.length == 3) {
|
|
|
this.manualJson[_check[0]].array[_check[1]].array.splice(_check[2], 1)
|
|
|
}
|
|
|
- this.$emit("update:checkC", "")
|
|
|
+ this.$emit("update:checkC", "")
|
|
|
this.$forceUpdate()
|
|
|
this.$emit("changeJson", this.manualJson);
|
|
|
})
|
|
|
.catch(() => { });
|
|
|
},
|
|
|
-
|
|
|
+ editCheck(index, item) {
|
|
|
+
|
|
|
+ }
|
|
|
},
|
|
|
- mounted () {
|
|
|
+ mounted() {
|
|
|
this.manualJson = this.depthCopy(this.checkJson);
|
|
|
},
|
|
|
}
|
|
@@ -264,6 +331,18 @@ export default {
|
|
|
margin-right: 10px;
|
|
|
}
|
|
|
|
|
|
+.mc_ti_1>.title>.btnBox .edit,
|
|
|
+.mc_ti_2>.title>.btnBox .edit,
|
|
|
+.mc_ti_3>.title>.btnBox .edit {
|
|
|
+ display: block;
|
|
|
+ background-image: url('../../../../../assets/icon/new/edit_u.png');
|
|
|
+ background-size: 100% 100%;
|
|
|
+ width: 18px;
|
|
|
+ height: 18px;
|
|
|
+ cursor: pointer;
|
|
|
+ margin-right: 10px;
|
|
|
+}
|
|
|
+
|
|
|
.mc_ti_1>.title>.btnBox .isopen,
|
|
|
.mc_ti_2>.title>.btnBox .isopen {
|
|
|
transform: rotate(0deg);
|
|
@@ -274,4 +353,9 @@ export default {
|
|
|
.mc_ti_3.active {
|
|
|
border: 1px solid #0062ff;
|
|
|
}
|
|
|
-</style>
|
|
|
+
|
|
|
+.edit_box {
|
|
|
+ width: 100%;
|
|
|
+ box-sizing: border-box;
|
|
|
+ padding: 10px;
|
|
|
+}</style>
|