Browse Source

BUG修改

hella_online_20240829
parent
commit
13e73a5480
  1. 2
      src/views/qms/inspectionQ1/index.vue
  2. 9
      src/views/qms/inspectionQ1/inspectionQ1.data.ts
  3. 2
      src/views/qms/inspectionQ2/index.vue
  4. 8
      src/views/qms/inspectionQ2/inspectionQ2.data.ts
  5. 2
      src/views/qms/inspectionQ3/index.vue
  6. 8
      src/views/qms/inspectionQ3/inspectionQ3.data.ts

2
src/views/qms/inspectionQ1/index.vue

@ -187,6 +187,8 @@ nextTick(() => {
handleTime: new Date().getTime(), handleTime: new Date().getTime(),
claimTime: new Date().getTime(), claimTime: new Date().getTime(),
priority: '3', priority: '3',
qty: 1,
claimAmount: 1,
    })     })
  })   })
} }

9
src/views/qms/inspectionQ1/inspectionQ1.data.ts

@ -143,7 +143,7 @@ export const Q1 = useCrudSchemas(
form: { form: {
component: 'InputNumber', component: 'InputNumber',
componentProps: { componentProps: {
min: 1, min: 0.01,
precision: 2 precision: 2
} }
} }
@ -213,9 +213,14 @@ export const Q1 = useCrudSchemas(
width: 150 width: 150
}, },
form: { form: {
component: 'InputNumber' component: 'InputNumber',
componentProps: {
min: 0.01,
precision: 2
}
} }
}, },
{ {
label: '成本中心', label: '成本中心',
field: 'costCode', field: 'costCode',

2
src/views/qms/inspectionQ2/index.vue

@ -195,6 +195,8 @@ nextTick(() => {
handleTime: new Date().getTime(), handleTime: new Date().getTime(),
claimTime: new Date().getTime(), claimTime: new Date().getTime(),
priority: '3', priority: '3',
qty: 1,
claimAmount: 1,
    })     })
  })   })
} }

8
src/views/qms/inspectionQ2/inspectionQ2.data.ts

@ -234,7 +234,7 @@ export const Q2 = useCrudSchemas(
form: { form: {
component: 'InputNumber', component: 'InputNumber',
componentProps: { componentProps: {
min: 1, min: 0.01,
precision: 2 precision: 2
} }
} }
@ -287,7 +287,11 @@ export const Q2 = useCrudSchemas(
width: 150 width: 150
}, },
form: { form: {
component: 'InputNumber' component: 'InputNumber',
componentProps: {
min: 0.01,
precision: 2
}
} }
}, },
{ {

2
src/views/qms/inspectionQ3/index.vue

@ -188,6 +188,8 @@ nextTick(() => {
    basicFormRef.value.formRef.setValues({     basicFormRef.value.formRef.setValues({
handleTime: new Date().getTime(), handleTime: new Date().getTime(),
priority: '3', priority: '3',
qty: 1,
amount: 1,
    })     })
  })   })
} }

8
src/views/qms/inspectionQ3/inspectionQ3.data.ts

@ -148,7 +148,7 @@ export const Q3 = useCrudSchemas(
form: { form: {
component: 'InputNumber', component: 'InputNumber',
componentProps: { componentProps: {
min: 1, min: 0.01,
precision: 2 precision: 2
} }
} }
@ -254,7 +254,11 @@ export const Q3 = useCrudSchemas(
width: 150 width: 150
}, },
form: { form: {
component: 'InputNumber' component: 'InputNumber',
componentProps: {
min: 0.01,
precision: 2
}
} }
}, },
{ {

Loading…
Cancel
Save