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