|
|
|
|
@ -131,14 +131,14 @@
|
|
|
|
|
|
|
|
|
|
<el-row>
|
|
|
|
|
<!-- 故障报修信息(只读显示) -->
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
<!-- <el-col :span="8">
|
|
|
|
|
<el-form-item label="故障类型">
|
|
|
|
|
<el-input v-model="form.faultType" disabled />
|
|
|
|
|
<dict-tag :options="activity_fault_type" :value="form.faultType" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-col> -->
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
<el-form-item label="维修类型">
|
|
|
|
|
<el-input v-model="form.repairType" disabled />
|
|
|
|
|
<dict-tag :options="fault_repair_type" :value="form.repairType" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
@ -157,11 +157,7 @@
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="24">
|
|
|
|
|
<el-form-item label="涉及操作">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="form.designOperations"
|
|
|
|
|
type="textarea"
|
|
|
|
|
:rows="2"
|
|
|
|
|
disabled />
|
|
|
|
|
<dict-tag :options="dms_device_design_operations" :value="form.designOperations" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
|
|
@ -266,7 +262,7 @@ import SubmitVerify from '@/views/dms/dmsFaultInstanceActivity/submitVerify.vue'
|
|
|
|
|
import ApprovalRecord from '@/components/Process/approvalRecord.vue';
|
|
|
|
|
|
|
|
|
|
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
|
|
|
|
|
const { fault_repair_type, activity_fault_type, fault_repair_confirm, dms_approve_status } = toRefs<any>(proxy?.useDict('fault_repair_type', 'activity_fault_type', 'fault_repair_confirm', 'dms_approve_status'));
|
|
|
|
|
const { fault_repair_type, activity_fault_type, fault_repair_confirm, dms_approve_status, dms_device_design_operations } = toRefs<any>(proxy?.useDict('fault_repair_type', 'activity_fault_type', 'fault_repair_confirm', 'dms_approve_status', 'dms_device_design_operations'));
|
|
|
|
|
const route = useRoute();
|
|
|
|
|
const router = useRouter();
|
|
|
|
|
|
|
|
|
|
|