2024-09-09 19:30:57 +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">
|
2024-09-12 18:37:51 +08:00
|
|
|
|
<el-row :gutter="20">
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
<el-form-item label="名称" prop="name">
|
|
|
|
|
<el-input v-model="formData.name" placeholder="请输入名称"/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
<el-form-item label="编码" prop="code">
|
|
|
|
|
<el-input v-model="formData.code" placeholder="请输入编码"/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
<el-row :gutter="20">
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
<el-form-item label="成本" prop="cost">
|
|
|
|
|
<el-input v-model="formData.cost" placeholder="请输入成本"/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
<el-form-item label="售价" prop="price">
|
|
|
|
|
<el-input v-model="formData.price" placeholder="请输入售价"/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
<el-row :gutter="20">
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
<el-form-item label="规格" prop="spec">
|
|
|
|
|
<el-input v-model="formData.spec" placeholder="请输入规格"/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
<el-form-item label="单位" prop="unit">
|
|
|
|
|
<el-input v-model="formData.unit" placeholder="请输入单位"/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
<el-row :gutter="20">
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
<el-form-item label="分类" prop="type">
|
|
|
|
|
<el-select v-model="formData.type" placeholder="请选择分类">
|
|
|
|
|
<el-option label="请选择字典生成" value=""/>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
<el-form-item label="工时" prop="manHour">
|
|
|
|
|
<el-input v-model="formData.manHour" placeholder="请输入工时"/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
<el-row :gutter="20">
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
<el-form-item label="是否自助" prop="isSelf">
|
|
|
|
|
<el-input v-model="formData.isSelf" placeholder="请输入是否自助"/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
<el-form-item label="分店公用" prop="isPublic">
|
|
|
|
|
<el-input v-model="formData.isPublic" placeholder="请输入是否允许分店公用此产品"/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="24">
|
|
|
|
|
<el-form-item label="备注" prop="remark">
|
|
|
|
|
<el-input type="textarea" v-model="formData.remark" placeholder="请输入备注"/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
2024-09-09 19:30:57 +08:00
|
|
|
|
</el-form>
|
2024-09-12 18:37:51 +08:00
|
|
|
|
<div slot="footer" class="dialog-footer">
|
2024-09-09 19:30:57 +08:00
|
|
|
|
<el-button type="primary" @click="submitForm" :disabled="formLoading">确 定</el-button>
|
|
|
|
|
<el-button @click="dialogVisible = false">取 消</el-button>
|
|
|
|
|
</div>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
2024-09-12 18:37:51 +08:00
|
|
|
|
import * as RepairProjectApi from '@/api/repair/project';
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
name: "RepairProjectForm",
|
|
|
|
|
components: {},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
// 弹出层标题
|
|
|
|
|
dialogTitle: "",
|
|
|
|
|
// 是否显示弹出层
|
|
|
|
|
dialogVisible: false,
|
|
|
|
|
// 表单的加载中:1)修改时的数据加载;2)提交的按钮禁用
|
|
|
|
|
formLoading: false,
|
|
|
|
|
// 表单参数
|
|
|
|
|
formData: {
|
|
|
|
|
id: undefined,
|
|
|
|
|
name: undefined,
|
|
|
|
|
cost: undefined,
|
|
|
|
|
spec: undefined,
|
|
|
|
|
price: undefined,
|
|
|
|
|
code: undefined,
|
|
|
|
|
unit: undefined,
|
|
|
|
|
type: undefined,
|
|
|
|
|
manHour: undefined,
|
|
|
|
|
isSelf: undefined,
|
|
|
|
|
isPublic: undefined,
|
|
|
|
|
remark: undefined,
|
|
|
|
|
corpId:'',
|
|
|
|
|
corpIds:[],
|
|
|
|
|
},
|
|
|
|
|
// 表单校验
|
|
|
|
|
formRules: {},
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
/** 打开弹窗 */
|
|
|
|
|
async open(id) {
|
|
|
|
|
this.dialogVisible = true;
|
|
|
|
|
this.reset();
|
|
|
|
|
// 修改时,设置数据
|
|
|
|
|
if (id) {
|
|
|
|
|
this.formLoading = true;
|
2024-09-09 19:30:57 +08:00
|
|
|
|
try {
|
2024-09-12 18:37:51 +08:00
|
|
|
|
const res = await RepairProjectApi.getRepairProject(id);
|
|
|
|
|
this.formData = res.data;
|
|
|
|
|
this.title = "修改维修项目";
|
2024-09-09 19:30:57 +08:00
|
|
|
|
} finally {
|
|
|
|
|
this.formLoading = false;
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-09-12 18:37:51 +08:00
|
|
|
|
this.title = "新增维修项目";
|
|
|
|
|
},
|
|
|
|
|
/** 提交按钮 */
|
|
|
|
|
async submitForm() {
|
|
|
|
|
// 校验主表
|
|
|
|
|
await this.$refs["formRef"].validate();
|
|
|
|
|
this.formLoading = true;
|
|
|
|
|
try {
|
|
|
|
|
const data = this.formData;
|
|
|
|
|
// 修改的提交
|
|
|
|
|
if (data.id) {
|
|
|
|
|
await RepairProjectApi.updateRepairProject(data);
|
|
|
|
|
this.$modal.msgSuccess("修改成功");
|
|
|
|
|
this.dialogVisible = false;
|
|
|
|
|
this.$emit('success');
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
// 添加的提交
|
|
|
|
|
await RepairProjectApi.createRepairProject(data);
|
|
|
|
|
this.$modal.msgSuccess("新增成功");
|
|
|
|
|
this.dialogVisible = false;
|
|
|
|
|
this.$emit('success');
|
|
|
|
|
} finally {
|
|
|
|
|
this.formLoading = false;
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
/** 表单重置 */
|
|
|
|
|
reset() {
|
|
|
|
|
this.formData = {
|
|
|
|
|
id: undefined,
|
|
|
|
|
name: undefined,
|
|
|
|
|
cost: undefined,
|
|
|
|
|
spec: undefined,
|
|
|
|
|
price: undefined,
|
|
|
|
|
code: undefined,
|
|
|
|
|
unit: undefined,
|
|
|
|
|
type: undefined,
|
|
|
|
|
manHour: undefined,
|
|
|
|
|
isSelf: undefined,
|
|
|
|
|
isPublic: undefined,
|
|
|
|
|
remark: undefined,
|
|
|
|
|
corpId:'',
|
|
|
|
|
corpIds:[],
|
|
|
|
|
};
|
|
|
|
|
this.resetForm("formRef");
|
2024-09-09 19:30:57 +08:00
|
|
|
|
}
|
2024-09-12 18:37:51 +08:00
|
|
|
|
}
|
|
|
|
|
};
|
2024-09-09 19:30:57 +08:00
|
|
|
|
</script>
|