生产下料、点位更新

This commit is contained in:
2024-03-12 15:23:12 +08:00
parent 6aafccdf0c
commit 6fdce408c4
31 changed files with 373 additions and 463 deletions

View File

@@ -1,6 +1,6 @@
<template>
<view class="zd_container">
<nav-bar title="空托盘出库"></nav-bar>
<nav-bar :title="title"></nav-bar>
<view class="zd_content">
<view class="zd_wrapper">
<view class="zd-row border-bottom">
@@ -12,7 +12,7 @@
<view class="uni-input">{{index1 !== '' ? options1[index1].text : ''}}</view>
</picker>
</view>
<view class="uni-icons icon_right">&#xe6b5;</view>
<uni-icons type="right" size="14" color="#999"></uni-icons>
</view>
<!-- <view class="zd-row">
<view class="zd-col-5">
@@ -52,6 +52,7 @@
},
data() {
return {
title: '',
options1: [],
index1: '',
// options2: [],
@@ -60,6 +61,9 @@
disabled: false
};
},
onLoad (options) {
this.title = options.title
},
created () {
this._getVehicleType()
},