You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
208 lines
4.9 KiB
208 lines
4.9 KiB
<script>
|
|
import { save, show, index, destroy } from "@/api/system/baseForm";
|
|
import { CreateDialog } from "@/utils/createDialog"
|
|
import { deepCopy } from "@/utils";
|
|
import { resolveFormInfo } from '@/utils/createTable'
|
|
export default {
|
|
props: {
|
|
tableName: String,
|
|
},
|
|
render(h) {
|
|
let dialog = new CreateDialog(this,[
|
|
{
|
|
key: 'landArea',
|
|
label: '土地面积',
|
|
render: h('span', this.row.shijimianji)
|
|
},
|
|
{
|
|
key: 'houseArea',
|
|
label: '房产日期',
|
|
render: h('span', this.row.dengjishijian)
|
|
},
|
|
{
|
|
key: 'tudixingzhi',
|
|
label: '土地性质',
|
|
render: h('span','')
|
|
},
|
|
{
|
|
key: 'tudiyongtu',
|
|
label: '土地/房产用途',
|
|
render: h('span', this.row.yongtu)
|
|
}
|
|
],{
|
|
width: "650px"
|
|
})
|
|
return dialog.render()
|
|
},
|
|
data() {
|
|
return {
|
|
row: {},
|
|
formInfo: [],
|
|
id: "",
|
|
type: "add",
|
|
dialogVisible: false,
|
|
form: {},
|
|
originalForm: {},
|
|
rules: {},
|
|
file: {},
|
|
};
|
|
},
|
|
methods: {
|
|
setRow (row) {
|
|
this.row = row
|
|
},
|
|
init() {
|
|
for (let key in this.form) {
|
|
if (this.form[key] instanceof Array) {
|
|
this.form[key] = [];
|
|
} else {
|
|
this.form[key] = "";
|
|
}
|
|
}
|
|
this.$refs["elForm"].clearValidate();
|
|
},
|
|
show() {
|
|
this.dialogVisible = true;
|
|
},
|
|
hidden() {
|
|
this.dialogVisible = false;
|
|
},
|
|
setType(type = "add") {
|
|
let types = ["add", "editor"];
|
|
if (types.includes(type)) {
|
|
this.type = type;
|
|
} else {
|
|
console.warn("Unknown type: " + type);
|
|
}
|
|
},
|
|
setId(id) {
|
|
if (typeof id == "number") {
|
|
this.id = id;
|
|
} else {
|
|
console.error("error typeof id: " + typeof id);
|
|
}
|
|
},
|
|
|
|
async getDetail() {
|
|
const res = await show({ id: this.id, table_name: this.tableName });
|
|
this.$integrateData(this.form, res);
|
|
|
|
this.formInfo.forEach((i) => {
|
|
if (i && (i.edit_input === "file" || i.edit_input === "files")) {
|
|
res[i._relations.link_with_name]
|
|
? (this.file[i.field] =
|
|
res[i._relations.link_with_name] instanceof Array
|
|
? res[i._relations.link_with_name].map((i) => {
|
|
return {
|
|
name: i?.name,
|
|
url: i?.url,
|
|
response: i,
|
|
};
|
|
})
|
|
: [
|
|
{
|
|
name: res[i._relations.link_with_name]?.name,
|
|
url: res[i._relations.link_with_name]?.url,
|
|
response: res[i._relations.link_with_name],
|
|
},
|
|
])
|
|
: (this.file[i.field] = []);
|
|
}
|
|
|
|
this.form = Object.assign({}, this.form);
|
|
this.originalForm = deepCopy(res);
|
|
});
|
|
},
|
|
|
|
submit() {
|
|
console.log(this.form)
|
|
},
|
|
},
|
|
computed: {},
|
|
watch: {
|
|
formInfo: {
|
|
handler: function (newVal) {
|
|
this.form = {};
|
|
this.rules = {};
|
|
this.file = {};
|
|
newVal.forEach((i) => {
|
|
if (i.field) {
|
|
this.form[i.field] = "";
|
|
if (
|
|
i.validation instanceof Array &&
|
|
i.validation.length > 0 &&
|
|
!!i.validation.find((i) => i === "required")
|
|
) {
|
|
this.rules[i.field] = [
|
|
{ required: true, message: `请填写${i.name}` },
|
|
];
|
|
}
|
|
if (i.edit_input === "files") {
|
|
this.form[i.field] = [];
|
|
}
|
|
if (i.edit_input === "files" || i.edit_input === "file") {
|
|
this.file[i.field] = [];
|
|
}
|
|
if (i.edit_input === "checkbox") {
|
|
this.form[i.field] = [];
|
|
}
|
|
if (i._relations) {
|
|
this.form[i._relations?.link_with_name] = [];
|
|
}
|
|
}
|
|
});
|
|
|
|
document.documentElement.style.setProperty(
|
|
"--column-num",
|
|
newVal.length > 11 ? '2' : '1'
|
|
);
|
|
},
|
|
//immediate: true,
|
|
},
|
|
dialogVisible(val) {
|
|
if (val) {
|
|
if (this.type === "editor") {
|
|
this.$nextTick(() => this.getDetail());
|
|
}
|
|
} else {
|
|
this.id = "";
|
|
this.type = "";
|
|
this.init();
|
|
this.$refs["elForm"].clearValidate();
|
|
delete this.form.id;
|
|
for (let key in this.file) {
|
|
this.file[key] = [];
|
|
}
|
|
}
|
|
},
|
|
},
|
|
created() {
|
|
resolveFormInfo(14).then(res => this.formInfo = res)
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style>
|
|
:root {
|
|
--column-num: 2;
|
|
}
|
|
</style>
|
|
<style scoped lang="scss">
|
|
.uploaded-a {
|
|
color: red;
|
|
text-decoration: none;
|
|
transition: all 0.2s;
|
|
}
|
|
|
|
.uploaded-a:hover {
|
|
color: red;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.form-body {
|
|
display: grid;
|
|
grid-gap: 10px;
|
|
grid-template-columns: repeat(var(--column-num), 1fr);
|
|
}
|
|
</style>
|