|
|
|
|
@ -22,17 +22,24 @@ |
|
|
|
|
size="mini" |
|
|
|
|
icon="el-icon-delete" |
|
|
|
|
plain |
|
|
|
|
v-if="permission.wf_design_model_delete" |
|
|
|
|
v-if="permission.wf_design_form_delete" |
|
|
|
|
@click="handleDelete">删 除 |
|
|
|
|
</el-button> |
|
|
|
|
</template> |
|
|
|
|
<template slot="menu" |
|
|
|
|
slot-scope="{row}"> |
|
|
|
|
<el-button type="text" |
|
|
|
|
<el-button v-if="permission.wf_design_form_design" |
|
|
|
|
type="text" |
|
|
|
|
size="mini" |
|
|
|
|
icon="el-icon-edit" |
|
|
|
|
@click="handleDesign(row)">设计</el-button> |
|
|
|
|
<!-- <el-button type="text" |
|
|
|
|
<el-button v-if="permission.wf_design_form_copy" |
|
|
|
|
type="text" |
|
|
|
|
size="mini" |
|
|
|
|
icon="el-icon-document-copy" |
|
|
|
|
@click="handleCopy(row)">拷贝</el-button> |
|
|
|
|
<!-- <el-button v-if="permission.wf_design_form_history && row.version > 1" |
|
|
|
|
type="text" |
|
|
|
|
size="mini" |
|
|
|
|
icon="el-icon-time" |
|
|
|
|
@click="handleHistory(row)">历史</el-button> --> |
|
|
|
|
@ -57,6 +64,16 @@ |
|
|
|
|
</template> |
|
|
|
|
</avue-form-design> |
|
|
|
|
</el-dialog> |
|
|
|
|
|
|
|
|
|
<el-dialog :visible.sync="copyVisible" |
|
|
|
|
append-to-body |
|
|
|
|
title="拷贝表单"> |
|
|
|
|
<avue-form :option="copyOption" |
|
|
|
|
v-model="form" |
|
|
|
|
ref="copyForm" |
|
|
|
|
@submit="handleCopySubmit"> |
|
|
|
|
</avue-form> |
|
|
|
|
</el-dialog> |
|
|
|
|
</basic-container> |
|
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
@ -149,7 +166,52 @@ export default { |
|
|
|
|
type: 'textarea', |
|
|
|
|
span: 24, |
|
|
|
|
display: true |
|
|
|
|
}] |
|
|
|
|
}], |
|
|
|
|
copyOption: { |
|
|
|
|
column: [{ |
|
|
|
|
label: "表单key", |
|
|
|
|
prop: "key", |
|
|
|
|
rules: [{ |
|
|
|
|
required: true, |
|
|
|
|
message: "请输入表单key", |
|
|
|
|
trigger: "blur" |
|
|
|
|
}], |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: "表单名称", |
|
|
|
|
prop: "name", |
|
|
|
|
rules: [{ |
|
|
|
|
required: true, |
|
|
|
|
message: "请输入表单名称", |
|
|
|
|
trigger: "blur" |
|
|
|
|
}], |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: '备注', |
|
|
|
|
prop: 'remark', |
|
|
|
|
type: 'textarea', |
|
|
|
|
span: 24 |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: '状态', |
|
|
|
|
prop: 'status', |
|
|
|
|
type: 'select', |
|
|
|
|
dicData: [{ |
|
|
|
|
label: '可用', |
|
|
|
|
value: 1 |
|
|
|
|
}, { |
|
|
|
|
label: '禁用', |
|
|
|
|
value: 2 |
|
|
|
|
}], |
|
|
|
|
rules: [{ |
|
|
|
|
required: true, |
|
|
|
|
message: "请选择状态", |
|
|
|
|
trigger: "change" |
|
|
|
|
}], |
|
|
|
|
},] |
|
|
|
|
}, |
|
|
|
|
isCopy: false, |
|
|
|
|
copyVisible: false |
|
|
|
|
}; |
|
|
|
|
}, |
|
|
|
|
computed: { |
|
|
|
|
@ -173,34 +235,64 @@ export default { |
|
|
|
|
methods: { |
|
|
|
|
handleSubmit() { |
|
|
|
|
this.$refs.formDesign.getData('string').then(data => { |
|
|
|
|
this.row.content = data |
|
|
|
|
this.$confirm('是否将此表单保存为新版本?这意味着可以返回到以前的版本。', '提示', { |
|
|
|
|
confirmButtonText: '否', |
|
|
|
|
cancelButtonText: '是', |
|
|
|
|
type: 'warning' |
|
|
|
|
}).then(() => { |
|
|
|
|
this.row.newVersion = false |
|
|
|
|
if (this.isCopy) { |
|
|
|
|
this.copyVisible = true |
|
|
|
|
this.form.content = data |
|
|
|
|
} else { |
|
|
|
|
this.row.content = data |
|
|
|
|
this.$confirm('是否将此表单保存为新版本?这意味着可以返回到以前的版本。', '提示', { |
|
|
|
|
confirmButtonText: '否', |
|
|
|
|
cancelButtonText: '是', |
|
|
|
|
type: 'warning' |
|
|
|
|
}).then(() => { |
|
|
|
|
this.row.newVersion = false |
|
|
|
|
|
|
|
|
|
update(this.row).then(() => { |
|
|
|
|
this.$message.success("保存成功") |
|
|
|
|
this.onLoad(this.page, this.query) |
|
|
|
|
this.formVisible = false |
|
|
|
|
}) |
|
|
|
|
}).catch(() => { |
|
|
|
|
this.row.newVersion = true |
|
|
|
|
update(this.row).then(() => { |
|
|
|
|
this.$message.success("保存成功") |
|
|
|
|
this.onLoad(this.page, this.query) |
|
|
|
|
this.formVisible = false |
|
|
|
|
}) |
|
|
|
|
}).catch(() => { |
|
|
|
|
this.row.newVersion = true |
|
|
|
|
|
|
|
|
|
update(this.row).then(() => { |
|
|
|
|
this.$message.success("保存成功") |
|
|
|
|
this.onLoad(this.page, this.query) |
|
|
|
|
this.formVisible = false |
|
|
|
|
update(this.row).then(() => { |
|
|
|
|
this.$message.success("保存成功") |
|
|
|
|
this.onLoad(this.page, this.query) |
|
|
|
|
this.formVisible = false |
|
|
|
|
}) |
|
|
|
|
}) |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
|
handleDesign(row) { |
|
|
|
|
this.formVisible = true |
|
|
|
|
this.options = this.deepClone(row.content || '') |
|
|
|
|
this.row = row |
|
|
|
|
this.isCopy = false |
|
|
|
|
}, |
|
|
|
|
handleCopy(row) { |
|
|
|
|
this.formVisible = true |
|
|
|
|
this.options = this.deepClone(row.content || '') |
|
|
|
|
this.isCopy = true |
|
|
|
|
}, |
|
|
|
|
handleCopySubmit(form, done) { |
|
|
|
|
const param = { |
|
|
|
|
...form, |
|
|
|
|
content: this.form.content |
|
|
|
|
} |
|
|
|
|
add(param).then(() => { |
|
|
|
|
this.onLoad(this.page); |
|
|
|
|
this.$message({ |
|
|
|
|
type: "success", |
|
|
|
|
message: "操作成功!" |
|
|
|
|
}); |
|
|
|
|
this.$refs.copyForm.resetFields() |
|
|
|
|
done() |
|
|
|
|
this.copyVisible = false |
|
|
|
|
this.formVisible = false |
|
|
|
|
}).catch(() => { |
|
|
|
|
done() |
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
|
rowSave(row, loading, done) { |
|
|
|
|
add(row).then(() => { |
|
|
|
|
|