Browse Source

fix:库存禁用问题

master
taqi be 1 month ago
parent
commit
04a64bea3b
  1. 6
      src/pages/deviceInfo/components/DeliveryInfo.vue

6
src/pages/deviceInfo/components/DeliveryInfo.vue

@ -9,7 +9,7 @@ @@ -9,7 +9,7 @@
:options="customerList"
placeholder="请选择出库流向"
keyTag="id"
:disabled="action === 'view'"
:disabled="action === 'view' || !isShowSaveButton"
labelTag="name"
valueTag="id"
:isShowLabel="false"
@ -19,7 +19,7 @@ @@ -19,7 +19,7 @@
<div class="label">设备价格:</div>
<number-input
v-model="params.price"
:disabled="action === 'view'"
:disabled="action === 'view' || !isShowSaveButton"
placeholder="请输入成本"
/>
</div>
@ -31,7 +31,7 @@ @@ -31,7 +31,7 @@
type="textarea"
v-model="params.description"
placeholder="请输入备注"
:disabled="action === 'view'"
:disabled="action === 'view' || !isShowSaveButton"
:autosize="{ minRows: 3, maxRows: 4 }"
/>
</div>

Loading…
Cancel
Save