Browse Source

feat: 文字修改

master
betaqi 1 month ago
parent
commit
4b991ab509
  1. 10
      src/pages/deviceInfo/components/DeliveryInfo.vue

10
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'"
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'"
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'"
:autosize="{ minRows: 3, maxRows: 4 }" :autosize="{ minRows: 3, maxRows: 4 }"
/> />
</div> </div>
@ -105,7 +105,7 @@ async function onSave() {
const res = await storageOutDevice(options) const res = await storageOutDevice(options)
if (isResError(res)) return if (isResError(res)) return
message.success('出成功') message.success('出成功')
emit('onSave') emit('onSave')
} }
@ -115,7 +115,7 @@ watch(
if (newVal) { if (newVal) {
loadDeviceStorageInfo() loadDeviceStorageInfo()
} }
} },
) )
async function loadDeviceStorageInfo() { async function loadDeviceStorageInfo() {

Loading…
Cancel
Save