货架方向
This commit is contained in:
parent
ad27aaa250
commit
307bbda253
|
|
@ -81,6 +81,7 @@
|
|||
<el-col :span="obColSpan"><el-form-item label="目标点位"><el-input v-model="item.targetPoint" /></el-form-item></el-col>
|
||||
<el-col :span="obColSpan"><el-form-item label="业务追踪号"><el-input v-model="item.businessNo" /></el-form-item></el-col>
|
||||
<el-col :span="obColSpan"><el-form-item label="优先级"><el-input-number v-model="item.priority" :min="0" :controls="false" style="width: 100%" /></el-form-item></el-col>
|
||||
<el-col :span="obColSpan"><el-form-item label="货架方向"><el-input v-model="item.shelfDirection" placeholder="AB面" /></el-form-item></el-col>
|
||||
</el-row>
|
||||
</el-form>
|
||||
</div>
|
||||
|
|
@ -214,16 +215,26 @@
|
|||
|
||||
<script setup lang="ts">
|
||||
defineOptions({ name: 'TaskGenerateView' })
|
||||
import { computed, reactive, ref } from 'vue'
|
||||
import { ElMessage } from 'element-plus'
|
||||
import { useDevice } from '@/composables/useDevice'
|
||||
import {
|
||||
generateInbound, generateOutboundWait, generateOutboundNoWait,
|
||||
generateMove, generateRelease, generateBindStation,
|
||||
generateReleaseStation, generateCancel,
|
||||
type InboundReq, type OutboundReq, type MoveReq,
|
||||
type ReleaseReq, type BindStationReq, type ReleaseStationReq, type CancelReq,
|
||||
generateBindStation,
|
||||
generateCancel,
|
||||
generateInbound,
|
||||
generateMove,
|
||||
generateOutboundNoWait,
|
||||
generateOutboundWait,
|
||||
generateRelease,
|
||||
generateReleaseStation,
|
||||
type BindStationReq,
|
||||
type CancelReq,
|
||||
type InboundReq,
|
||||
type MoveReq,
|
||||
type OutboundReq,
|
||||
type ReleaseReq,
|
||||
type ReleaseStationReq,
|
||||
} from '@/api/generate'
|
||||
import { useDevice } from '@/composables/useDevice'
|
||||
import { ElMessage } from 'element-plus'
|
||||
import { computed, reactive, ref } from 'vue'
|
||||
|
||||
const { isMobile } = useDevice()
|
||||
const colSpan = computed(() => (isMobile.value ? 24 : 12))
|
||||
|
|
|
|||
Loading…
Reference in New Issue