Browse Source

客户需求管理工作台

pull/63/head
wangxy 3 years ago
parent
commit
c03e178bab
1 changed files with 11 additions and 2 deletions
  1. +11
    -2
      src/views/plan/workbench/homePage/beta/predict/predictEdit.vue

+ 11
- 2
src/views/plan/workbench/homePage/beta/predict/predictEdit.vue View File

@ -74,11 +74,20 @@
border>
<el-table-column label="零件" width="180">
<template #default="scope">
<el-input v-model="scope.row['ArtId']" clearable placeholder="请输入" />
<el-input
v-model="scope.row['ArtId']"
:disabled="title === '修改' && formData['AP_CustDemandVerHead-Status'] === '1'"
clearable
placeholder="请输入" />
</template>
</el-table-column>
<el-table-column v-for="(item, index) in headers" :key="index" :label="item" width="130">
<template v-slot="{ row }"><el-input v-model="row.Item[item]" clearable /></template>
<template v-slot="{ row }">
<el-input
v-model="row.Item[item]"
:disabled="title === '修改' && formData['AP_CustDemandVerHead-Status'] === '1'"
clearable />
</template>
</el-table-column>
</el-table>
</el-col>


Loading…
Cancel
Save