fixed bug

qianlishi 3 years ago
parent ddb997793d
commit 83fce13c92

@ -1,60 +1,61 @@
<template>
<div>
<el-button type="primary"
icon="el-icon-plus"
plain
@click="handleAddClick">新增</el-button>
<el-table :data="formData"
style="width: 100%">
<el-table-column prop="color"
label="颜色"
align="center">
<el-button type="primary" icon="el-icon-plus" plain @click="handleAddClick"
>新增</el-button
>
<el-table :data="formData" style="width: 100%">
<el-table-column prop="color" label="颜色" align="center">
<template slot-scope="scope">
<span class="color-box"
:style="{ background: scope.row.color }" />
<span class="color-box" :style="{ background: scope.row.color }" />
</template>
</el-table-column>
<el-table-column label="位置"
align="center">
<el-table-column label="位置" align="center">
<template slot-scope="scope">
<span class="editor"
@click="handleEditorClick(scope.$index, scope.row)">
<span
class="editor"
@click="handleEditorClick(scope.$index, scope.row)"
>
<i class="el-icon-edit" /> 编辑
</span>
</template>
</el-table-column>
<el-table-column label="操作"
align="center">
<el-table-column label="操作" align="center">
<template slot-scope="scope">
<span class="editor"
@click="handleDeleteClick(scope.$index, scope.row)">
<span
class="editor"
@click="handleDeleteClick(scope.$index, scope.row)"
>
<i class="el-icon-delete" /> 删除
</span>
</template>
</el-table-column>
</el-table>
<el-dialog title="新增"
:visible.sync="dialogVisible"
width="30%"
:before-close="handleClose">
<el-dialog
title="新增"
:visible.sync="dialogVisible"
width="30%"
:before-close="handleClose"
>
<el-form>
<el-form-item label="颜色">
<el-input v-model="colorValue"
style="width: 200px"
placeholder="请输入颜色">
<el-input
v-model="colorValue"
style="width: 200px"
placeholder="请输入颜色"
>
<template slot="append">
<el-color-picker v-model="colorValue"
:predefine="predefineColors" />
<el-color-picker
v-model="colorValue"
:predefine="predefineColors"
/>
</template>
</el-input>
</el-form-item>
</el-form>
<span slot="footer"
class="dialog-footer">
<span slot="footer" class="dialog-footer">
<el-button @click="dialogVisible = false"> </el-button>
<el-button type="primary"
@click="handleSaveClick"> </el-button>
<el-button type="primary" @click="handleSaveClick"> </el-button>
</span>
</el-dialog>
</div>
@ -69,7 +70,7 @@ export default {
props: {
formData: Array
},
data () {
data() {
return {
predefineColors: [
"#ff4500",
@ -86,21 +87,21 @@ export default {
indexEditor: -1 //
};
},
mounted () { },
mounted() {},
methods: {
//
handleClose () {
handleClose() {
this.dialogVisible = false;
this.colorValue = "";
},
//
handleAddClick () {
handleAddClick() {
this.colorValue = "";
this.flag = true;
this.dialogVisible = true;
},
//
handleSaveClick () {
handleSaveClick() {
if (this.flag) {
//
const obj = {
@ -114,17 +115,20 @@ export default {
this.dialogVisible = false;
}
this.$emit("input", this.formData);
this.$emit("change", this.formData);
},
//
handleEditorClick (index, row) {
handleEditorClick(index, row) {
this.flag = false;
this.colorValue = row.color;
this.dialogVisible = true;
this.indexEditor = index;
},
//
handleDeleteClick (index) {
handleDeleteClick(index) {
this.formData.splice(index, 1);
this.$emit("input", this.formData);
this.$emit("change", this.formData);
}
}
};

@ -1,4 +1,3 @@
/* eslint-disable vue/valid-v-for */
<!--
* @Author: lide1202@hotmail.com
* @Date: 2021-4-6 11:04:24
@ -242,6 +241,7 @@
v-if="itemChildList.type == 'customColor'"
:key="'b-' + idx"
v-model="formData[itemChildList.name]"
@change="changed($event, itemChildList.name)"
/>
</template>
</el-collapse-item>

@ -101,11 +101,9 @@ export default {
},
mounted() {},
methods: {
//
handleFocus({ index, left, top, width, height }) {
// console.log(index, left, top, width, height);
},
//
handleBlur({ index, left, top, width, height }) {
this.$emit("onActivated", { index, left, top, width, height });
this.$refs.draggable.setActive(true);

Loading…
Cancel
Save