| | |
| | | clearable |
| | | placeholder="请输入杆包号" |
| | | > |
| | | <template #label> |
| | | <span style="color: #F56C6C">杆包号</span> |
| | | </template> |
| | | <template #label> |
| | | <span style="color: #f56c6c">杆包号</span> |
| | | </template> |
| | | </wd-input> |
| | | <wd-input |
| | | v-model="model.dishModel" |
| | |
| | | clearable |
| | | placeholder="请输入盘型号" |
| | | > |
| | | <template #label> |
| | | <span style="color: #F56C6C">盘型号</span> |
| | | </template> |
| | | <template #label> |
| | | <span style="color: #f56c6c">盘型号</span> |
| | | </template> |
| | | </wd-input> |
| | | <wd-input |
| | | v-model="model.actuallyLength" |
| | |
| | | clearable |
| | | placeholder="请输入实际长度" |
| | | > |
| | | <template #label> |
| | | <span style="color: #F56C6C">实际长度(m)</span> |
| | | </template> |
| | | <template #label> |
| | | <span style="color: #f56c6c">实际长度(m)</span> |
| | | </template> |
| | | </wd-input> |
| | | <wd-input |
| | | v-model="model.actuallyWeight" |
| | |
| | | clearable |
| | | placeholder="请输入实际重量" |
| | | > |
| | | <template #label> |
| | | <span style="color: #F56C6C">实际重量(kg)</span> |
| | | </template> |
| | | <template #label> |
| | | <span style="color: #f56c6c">实际重量(kg)</span> |
| | | </template> |
| | | </wd-input> |
| | | </wd-cell-group> |
| | | <wd-toast /> |
| | |
| | | }); |
| | | if (code == 200) { |
| | | toast.success("提交成功"); |
| | | resetForm() |
| | | resetForm(); |
| | | return true; |
| | | } else { |
| | | toast.error("提交失败"); |
| | |
| | | const arr = code.code.split(","); |
| | | model.poleNumber = arr[3]; // 领用杆号 |
| | | model.poleWeight = arr[4]; // 杆重 |
| | | model.poleModel = 'Φ' + arr[1].slice(2); // 杆型号 |
| | | model.poleModel = arr[2]; // 杆型号 |
| | | }; |
| | | |
| | | onLoad((options: any) => { |