Browse Source

年度指标

master
songguoqiang 10 months ago
parent
commit
87c36acaff
  1. 17
      src/views/eam/basic/basciYearEquipment/index.vue

17
src/views/eam/basic/basciYearEquipment/index.vue

@ -38,10 +38,10 @@
<ButtonBase :Butttondata="butttondata" @button-base-click="buttonTableClick($event, row)" /> <ButtonBase :Butttondata="butttondata" @button-base-click="buttonTableClick($event, row)" />
</template> </template>
<template #goal="{ row }"> <template #goal="{ row }">
<span>{{ row.goal+"%" }}</span> <span>{{ row.type=='0'?row.goal+"%":row.goal }}</span>
</template> </template>
<template #actual="{ row }"> <template #actual="{ row }">
<span>{{ row.goal==null?"":row.goal+"%" }}</span> <span>{{ row.actual==null||row.actual==""||row.type!='0'?row.actual:row.actual+"%" }}</span>
</template> </template>
</Table> </Table>
</ContentWrap> </ContentWrap>
@ -170,12 +170,13 @@ const buttonTableClick = async (val, row) => {
/** 添加/修改操作 */ /** 添加/修改操作 */
const basicFormRef = ref() const basicFormRef = ref()
const openForm = (type: string, row?: any) => { const openForm = (type: string, row?: any) => {
if (type == 'update') { // if (type == 'update') {
console.log("123",BasciYearEquipment.allSchemas.formSchema); // BasciYearEquipment.allSchemas.formSchema.find(item => item.field == 'factoryType').componentProps.disabled = true//
BasciYearEquipment.allSchemas.formSchema.find(item => item.field == 'factoryType').componentProps.disabled = true// // // BasciYearEquipment.allSchemas.formSchema.find(item => item.field == 'factory_type').componentProps.disabled = true//
// BasciYearEquipment.allSchemas.formSchema.find(item => item.field == 'factory_type').componentProps.disabled = true// // //BasciYearEquipment.allSchemas.formSchema.find(item => item.field == 'year_index').componentProps.disabled = true//
//BasciYearEquipment.allSchemas.formSchema.find(item => item.field == 'year_index').componentProps.disabled = true// // }else{
} // BasciYearEquipment.allSchemas.formSchema.find(item => item.field == 'factoryType').componentProps.disabled = false//
// }
basicFormRef.value.open(type, row) basicFormRef.value.open(type, row)
} }

Loading…
Cancel
Save