Browse Source

修改判断

fix_bug_pro20231227
caoyizhong 2 years ago
parent
commit
6df673b2d6
  1. 8
      src/views/distribution/inventory/distributionStockArticleDetails.vue

8
src/views/distribution/inventory/distributionStockArticleDetails.vue

@ -105,7 +105,7 @@
</el-row>
<h3>包件信息</h3>
<div style="float: right" v-if="dataMaterial">
<el-button type="primary" text icon="el-icon-view" @click="handleMaterialList()"
<el-button type="primary" text icon="el-icon-view" @click="handleMaterialList"
>补充物料信息</el-button
>
</div>
@ -146,7 +146,7 @@
type="primary"
text
icon="el-icon-view"
v-if="slotProps.scope.row.materialId == '' || slotProps.scope.row.materialId == '-1'"
v-if="!slotProps.scope.row.materialId"
@click="handleMaterial(slotProps.scope.row)"
>补充物料信息</el-button
>
@ -206,7 +206,7 @@
<el-dialog
:title="titleMaterial"
v-model="materialBox"
width="70%"
width="30%"
:before-close="beforeClose"
append-to-body
>
@ -1400,7 +1400,7 @@ export default {
} else {
i.conditions = '库存品';
}*/
if (i.materialId == '' || i.materialId == '-1') {
if (!i.materialId) {
//
this.dataMaterial = true;
}

Loading…
Cancel
Save