Browse Source

主计划当数据为空时显示0

pull/91/head
xuxiaoming 3 years ago
parent
commit
9d02686e36
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      src/views/productionPlanning/customerForecastDemandReview/demandPlanning/articleDemand/index.vue

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

@ -102,7 +102,7 @@
:disabled="item.charAt(item.length - 1) == '*'"
size="mini"
></el-input>
<span v-else>{{ scope.row[item] }}</span>
<span v-else>{{ scope.row[item]==""?0:scope.row[item] }}</span>
</template>
</el-table-column>
@ -326,6 +326,7 @@ export default {
delete item.show;
delete item.key;
delete item.Label;
delete item["AP_ArticleDemand-CustomerId"]
});
exportData(JSON.stringify(maplist)).then(({ data = "" }) => {


Loading…
Cancel
Save