Browse Source

Merge pull request '修改编辑bug' (#115) from xuxiaoming into develop

Reviewed-on: http://101.201.121.115:3000/leo/LAPP_AdvancedPlanner_Front/pulls/115
pull/116/head
xuxiaoming 3 years ago
parent
commit
4c5a98a89c
2 changed files with 5 additions and 1 deletions
  1. +4
    -1
      src/views/productionPlanning/customerForecastDemandReview/demandPlanning/articleDemand/index.vue
  2. +1
    -0
      src/views/productionPlanning/customerForecastDemandReview/demandPlanning/index.vue

+ 4
- 1
src/views/productionPlanning/customerForecastDemandReview/demandPlanning/articleDemand/index.vue View File

@ -97,7 +97,7 @@
show-overflow-tooltip
:width="calcWidth(index)">
<template #default="scope">
<el-input v-if="scope.row['Label'] == editField && scope.row['key'] == editKey && index > 8 "
<el-input v-if="scope.row['Label'] == editField && scope.row['key'] == editKey && index > KeyStartIndex "
v-model="scope.row[item]"
:disabled="item.charAt(item.length - 1) == '*'"
size="mini"
@ -162,6 +162,9 @@ export default {
},
Height: {
type: String
},
KeyStartIndex: {
type: Number
}
},
data() {


+ 1
- 0
src/views/productionPlanning/customerForecastDemandReview/demandPlanning/index.vue View File

@ -12,6 +12,7 @@
:Width="demandWidth"
:Headers="headers"
:TableData="tableData"
:KeyStartIndex="keyStartIndex"
@editTableData="editTableData"
@calculateTableHeight="calculateTableHeight"
@searchData="getDataList"


Loading…
Cancel
Save