This commit is contained in:
parent
8e09b9a9cc
commit
9645243b8c
|
|
@ -1,6 +1,7 @@
|
|||
<template>
|
||||
<!-- 基础页面 -->
|
||||
<div class="app-container">
|
||||
<GoBack :title="'共享出库'" @goBack="goBack" />
|
||||
<el-card v-show="showSearch" style="margin-bottom: 20px">
|
||||
<el-form :model="queryParams" ref="queryForm" size="small" inline label-width="110px">
|
||||
|
||||
|
|
@ -213,10 +214,11 @@ import {
|
|||
getVoltageListAPI
|
||||
} from '@/api/EquipmentLedger/equ-out'
|
||||
import { regionData } from 'element-china-area-data'
|
||||
import GoBack from '@/components/GoBack'
|
||||
|
||||
export default {
|
||||
name: 'AddEditApply',
|
||||
// components: { AddNum, AddCode },
|
||||
components: { GoBack },
|
||||
data() {
|
||||
return {
|
||||
routerParams: {},
|
||||
|
|
@ -286,6 +288,9 @@ export default {
|
|||
this.getList()
|
||||
},
|
||||
methods: {
|
||||
goBack() {
|
||||
this.$router.go(-1)
|
||||
},
|
||||
// 输入出库数量时校验(实时拦截超限)
|
||||
handleOutNumInput(row) {
|
||||
const { outNum, remainNum } = row
|
||||
|
|
|
|||
Loading…
Reference in New Issue