2024-08-08 20:10:23 +08:00
|
|
|
|
<template>
|
|
|
|
|
<div class="app-container">
|
|
|
|
|
<!-- 对话框(添加 / 修改) -->
|
|
|
|
|
<el-dialog :title="dialogTitle" :visible.sync="dialogVisible" width="45%" v-dialogDrag append-to-body>
|
|
|
|
|
<el-form ref="formRef" :model="formData" :rules="formRules" v-loading="formLoading" label-width="100px">
|
|
|
|
|
<el-form-item label="资产id" prop="propertyId">
|
|
|
|
|
<el-input v-model="formData.propertyId" placeholder="请输入资产id" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="维修/保养日期" prop="keepDate">
|
|
|
|
|
<el-date-picker clearable v-model="formData.keepDate" type="date" value-format="timestamp"
|
|
|
|
|
placeholder="选择维修/保养日期" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="备注" prop="remark">
|
|
|
|
|
<el-input v-model="formData.remark" placeholder="请输入备注" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="附件urls">
|
|
|
|
|
<FileUpload v-model="formData.fileUrls" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-form>
|
|
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
|
|
<el-button type="primary" @click="submitForm" :disabled="formLoading">确 定</el-button>
|
|
|
|
|
<el-button @click="dialogVisible = false">取 消</el-button>
|
|
|
|
|
</div>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
2024-08-15 20:18:55 +08:00
|
|
|
|
import * as PropertyKeepApi from '@/api/company/property/propertykeep';
|
2024-08-08 20:10:23 +08:00
|
|
|
|
import FileUpload from '@/components/FileUpload';
|
|
|
|
|
export default {
|
|
|
|
|
name: "PropertyKeepForm",
|
|
|
|
|
components: {
|
|
|
|
|
FileUpload,
|
|
|
|
|
},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
// 弹出层标题
|
|
|
|
|
dialogTitle: "",
|
|
|
|
|
// 是否显示弹出层
|
|
|
|
|
dialogVisible: false,
|
|
|
|
|
// 表单的加载中:1)修改时的数据加载;2)提交的按钮禁用
|
|
|
|
|
formLoading: false,
|
|
|
|
|
// 表单参数
|
|
|
|
|
formData: {
|
|
|
|
|
id: undefined,
|
|
|
|
|
propertyId: undefined,
|
|
|
|
|
keepDate: undefined,
|
|
|
|
|
remark: undefined,
|
|
|
|
|
fileUrls: undefined,
|
|
|
|
|
},
|
|
|
|
|
// 表单校验
|
|
|
|
|
formRules: {
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
/** 打开弹窗 */
|
|
|
|
|
async open(id) {
|
|
|
|
|
this.dialogVisible = true;
|
|
|
|
|
this.reset();
|
|
|
|
|
// 修改时,设置数据
|
|
|
|
|
if (id) {
|
|
|
|
|
this.formLoading = true;
|
|
|
|
|
try {
|
|
|
|
|
const res = await PropertyKeepApi.getPropertyKeep(id);
|
|
|
|
|
this.formData = res.data;
|
|
|
|
|
this.title = "修改资产维修/保养记录";
|
|
|
|
|
} finally {
|
|
|
|
|
this.formLoading = false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
this.title = "新增资产维修/保养记录";
|
|
|
|
|
},
|
|
|
|
|
/** 提交按钮 */
|
|
|
|
|
async submitForm() {
|
|
|
|
|
// 校验主表
|
|
|
|
|
await this.$refs["formRef"].validate();
|
|
|
|
|
this.formLoading = true;
|
|
|
|
|
try {
|
|
|
|
|
const data = this.formData;
|
|
|
|
|
// 修改的提交
|
|
|
|
|
if (data.id) {
|
|
|
|
|
await PropertyKeepApi.updatePropertyKeep(data);
|
|
|
|
|
this.$modal.msgSuccess("修改成功");
|
|
|
|
|
this.dialogVisible = false;
|
|
|
|
|
this.$emit('success');
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
// 添加的提交
|
|
|
|
|
await PropertyKeepApi.createPropertyKeep(data);
|
|
|
|
|
this.$modal.msgSuccess("新增成功");
|
|
|
|
|
this.dialogVisible = false;
|
|
|
|
|
this.$emit('success');
|
|
|
|
|
} finally {
|
|
|
|
|
this.formLoading = false;
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
/** 表单重置 */
|
|
|
|
|
reset() {
|
|
|
|
|
this.formData = {
|
|
|
|
|
id: undefined,
|
|
|
|
|
propertyId: undefined,
|
|
|
|
|
keepDate: undefined,
|
|
|
|
|
remark: undefined,
|
|
|
|
|
fileUrls: undefined,
|
|
|
|
|
};
|
|
|
|
|
this.resetForm("formRef");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
</script>
|