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

Loading…
Cancel
Save