|  |  |  | 
|---|
|  |  |  | <template> | 
|---|
|  |  |  | <GlobalWindow title="新建入库单" :visible.sync="isShowModal" :confirm-working="isLoading" width="900px" @close="close" | 
|---|
|  |  |  | <GlobalWindow title="新建入库单" :visible.sync="isShowModal" :confirm-working="isLoading" width="1000px" @close="close" | 
|---|
|  |  |  | @confirm="confirm"> | 
|---|
|  |  |  | <el-form :model="param" ref="form" :rules="rules"> | 
|---|
|  |  |  | <div class="df_ac"> | 
|---|
|  |  |  | 
|---|
|  |  |  | <el-table-column prop="qrcode" label="条形码" show-overflow-tooltip min-width="70px"></el-table-column> | 
|---|
|  |  |  | <el-table-column prop="brand" label="品牌" show-overflow-tooltip min-width="70px"></el-table-column> | 
|---|
|  |  |  | <el-table-column prop="unitName" label="单位" show-overflow-tooltip min-width="70px"></el-table-column> | 
|---|
|  |  |  | <el-table-column prop="dealUserName" label="入库数量" min-width="90px"> | 
|---|
|  |  |  | <el-table-column prop="dealUserName" label="入库数量" min-width="100px"> | 
|---|
|  |  |  | <template v-slot="{ row }"> | 
|---|
|  |  |  | <el-input oninput="value=value.replace(/^(0+)|[^\d]+/g, '').slice(0, 11)" v-model="row.stock" | 
|---|
|  |  |  | <el-input oninput="value=value.replace(/[^\d.]/g, '').replace(/\.{2,}/g, '.').replace('.', '$#$').replace(/\./g, '').replace('$#$', '.').replace(/^(\-)*(\d+)\.(\d\d).*$/, '$1$2.$3').replace(/^\./g, '')" v-model="row.stock" | 
|---|
|  |  |  | class="w100"></el-input> | 
|---|
|  |  |  | </template> | 
|---|
|  |  |  | </el-table-column> | 
|---|
|  |  |  | <el-table-column prop="maxStock" label="库存数量" show-overflow-tooltip min-width="80px"></el-table-column> | 
|---|
|  |  |  | <!-- <el-table-column prop="maxStock" label="库存数量" show-overflow-tooltip min-width="80px"></el-table-column> --> | 
|---|
|  |  |  | <el-table-column label="操作" min-width="60px"> | 
|---|
|  |  |  | <template v-slot="scope"> | 
|---|
|  |  |  | <span @click="handleDel(scope)" class="red pointer">删除</span> | 
|---|
|  |  |  | 
|---|
|  |  |  | import { ywOutinboundCreate } from '@/api/store/index' | 
|---|
|  |  |  | import { StoreTypeOps, rules } from './config' | 
|---|
|  |  |  | import { Message } from 'element-ui' | 
|---|
|  |  |  | import dayjs from 'dayjs' | 
|---|
|  |  |  | export default { | 
|---|
|  |  |  | name: 'OperaCategoryWindow', | 
|---|
|  |  |  | components: { GlobalWindow, AssetSel }, | 
|---|
|  |  |  | 
|---|
|  |  |  | return { | 
|---|
|  |  |  | // 表单数据 | 
|---|
|  |  |  | param: { | 
|---|
|  |  |  | createUserName: this.$store.state.userInfo.username, | 
|---|
|  |  |  | createUserName: this.$store.state.userInfo.realname || this.$store.state.userInfo.username, | 
|---|
|  |  |  | creator: this.$store.state.userInfo.id, | 
|---|
|  |  |  | inOut: 0 | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | 
|---|
|  |  |  | }) | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | initData() { | 
|---|
|  |  |  | getStoreList({ capacity: 9999, page: 1, model: {} }).then(res => { | 
|---|
|  |  |  | this.$set(this.param, 'doneDate', dayjs().format('YYYY-MM-DD')) | 
|---|
|  |  |  | getStoreList({ capacity: 9999, page: 1, model: {status: 0} }).then(res => { | 
|---|
|  |  |  | this.storeList = res.records || [] | 
|---|
|  |  |  |  | 
|---|
|  |  |  | }) | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | changeSel(val) { | 
|---|
|  |  |  | 
|---|
|  |  |  | if(index == -1){ | 
|---|
|  |  |  | item.materialId = item.id | 
|---|
|  |  |  | item.multifile = null | 
|---|
|  |  |  | item.createDate = null | 
|---|
|  |  |  | this.list.push(item) | 
|---|
|  |  |  | } | 
|---|
|  |  |  | }) | 
|---|