|
|
|
@ -58,12 +58,13 @@
|
|
|
|
|
<template #default="slotProps"> |
|
|
|
|
<el-text type="primary" text icon="el-icon-edit" @click="handleEdit(slotProps.scope.row)">编辑</el-text> |
|
|
|
|
<el-text type="primary" text icon="el-icon-edit" @click="addAllocation(slotProps.scope.row)">编辑货位</el-text> |
|
|
|
|
<el-text type="primary" text icon="el-icon-edit" @click="layerAllocation(slotProps.scope.row)">列加层</el-text> |
|
|
|
|
<el-text type="primary" text icon="el-icon-edit" @click="locationList(slotProps.scope.row)">货位列表</el-text> |
|
|
|
|
<el-text type="primary" text icon="el-icon-delete" @click="rowDel(slotProps.scope.row)">删除</el-text> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</template> |
|
|
|
|
</tablecmt> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</el-row> |
|
|
|
|
<el-row> |
|
|
|
|
<div class="avue-crud__pagination" style="width:100%"> |
|
|
|
@ -181,13 +182,79 @@
|
|
|
|
|
</span> |
|
|
|
|
</template> |
|
|
|
|
</el-dialog> |
|
|
|
|
<el-dialog > |
|
|
|
|
<!-- {{this.data.qrCodeUrl}}--> |
|
|
|
|
<!-- <img w-full :src="this.data.qrCodeUrl" alt="Preview Image" />--> |
|
|
|
|
<el-dialog :title="title" |
|
|
|
|
v-model="box2" |
|
|
|
|
width="50%" |
|
|
|
|
append-to-body> |
|
|
|
|
<el-form :disabled="view" :model="form2" label-width="80px"> |
|
|
|
|
<!-- 表单字段 --> |
|
|
|
|
<el-row> |
|
|
|
|
<el-col :span="12" > |
|
|
|
|
<el-form-item label="当 前 层:" label-width="100px"> |
|
|
|
|
<!-- <el-select v-model="form2.currentLayer" placeholder="选择当前层(不选则为所有层加列)" style="width: 88%;">--> |
|
|
|
|
<!-- <el-optio--> |
|
|
|
|
<!-- v-for="item in currentData"--> |
|
|
|
|
<!-- :key="item.id"--> |
|
|
|
|
<!-- :label="item.templateName"--> |
|
|
|
|
<!-- :value="item.id">--> |
|
|
|
|
<!-- </el-optio>--> |
|
|
|
|
<!-- </el-select>--> |
|
|
|
|
<el-input v-model="form2.storeyNum" placeholder="请输入当前层(不填则为所有层加列)" style="width: 88%;"/> |
|
|
|
|
</el-form-item> |
|
|
|
|
</el-col> |
|
|
|
|
<el-col :span="12" > |
|
|
|
|
<el-form-item label="当 前 列:" label-width="100px"> |
|
|
|
|
<el-input v-model="form2.rowNum" placeholder="请输入当前列(新增为最后一列)" style="width: 88%;"/> |
|
|
|
|
</el-form-item> |
|
|
|
|
</el-col> |
|
|
|
|
<el-col :span="12" > |
|
|
|
|
<el-form-item label="修改/增加列:" label-width="100px"> |
|
|
|
|
<el-input v-model="form2.columnNum" placeholder="请输入修改/增加列数" style="width: 88%;"/> |
|
|
|
|
</el-form-item> |
|
|
|
|
</el-col> |
|
|
|
|
</el-row> |
|
|
|
|
</el-form> |
|
|
|
|
|
|
|
|
|
<!-- 表单按钮 --> |
|
|
|
|
<template #footer> |
|
|
|
|
<span class="dialog-footer"> |
|
|
|
|
<el-button type="primary" icon="el-icon-circle-check" @click="handleSubmitAdd">增 加</el-button> |
|
|
|
|
<el-button type="primary" icon="el-icon-circle-check" @click="handleSubmitred">减 少</el-button> |
|
|
|
|
<el-button icon="el-icon-circle-close" @click="box = false">取 消</el-button> |
|
|
|
|
</span> |
|
|
|
|
</template> |
|
|
|
|
</el-dialog> |
|
|
|
|
|
|
|
|
|
<el-dialog :title="title" |
|
|
|
|
v-model="box3" |
|
|
|
|
width="50%" |
|
|
|
|
append-to-body> |
|
|
|
|
<el-form :disabled="view" :model="form3" label-width="80px"> |
|
|
|
|
<!-- 表单字段 --> |
|
|
|
|
<el-row> |
|
|
|
|
<el-col :span="12" > |
|
|
|
|
<el-form-item label="加层所在列:" label-width="100px"> |
|
|
|
|
<el-input v-model="form3.rowNum" placeholder="请输入当前列" style="width: 88%;"/> |
|
|
|
|
</el-form-item> |
|
|
|
|
</el-col> |
|
|
|
|
<el-col :span="12" > |
|
|
|
|
<el-form-item label="添加层数:" label-width="100px"> |
|
|
|
|
<el-input v-model="form3.layerNum" placeholder="请输入添加层数:" style="width: 88%;"/> |
|
|
|
|
</el-form-item> |
|
|
|
|
</el-col> |
|
|
|
|
</el-row> |
|
|
|
|
</el-form> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 表单按钮 --> |
|
|
|
|
<template #footer> |
|
|
|
|
<span class="dialog-footer"> |
|
|
|
|
<el-button type="primary" icon="el-icon-circle-check" @click="handleSubmitly">提 交</el-button> |
|
|
|
|
<el-button icon="el-icon-circle-close" @click="box = false">取 消</el-button> |
|
|
|
|
</span> |
|
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
</el-dialog> |
|
|
|
|
<!-- --> |
|
|
|
|
|
|
|
|
|
<el-dialog |
|
|
|
|
title="二维码" |
|
|
|
@ -247,7 +314,7 @@
|
|
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
<script> |
|
|
|
|
import { getList, getDetail, add, update, remove,getQRCodeImg,getShowTemplate,getPrintTemplate,addAllocation,disable,enable } from "@/api/basicdata/basicdataGoodsShelf"; |
|
|
|
|
import { getList, getDetail, add, update, remove,getQRCodeImg,getShowTemplate,getPrintTemplate,addAllocation,disable,enable,addlayer } from "@/api/basicdata/basicdataGoodsShelf"; |
|
|
|
|
import {getList as allgetList,update as allupdate} from "@/api/basicdata/basicdataGoodsAllocation"; |
|
|
|
|
import option from "@/option/basicdata/basicdataGoodsShelf"; |
|
|
|
|
import { mapGetters } from "vuex"; |
|
|
|
@ -258,6 +325,10 @@ import { getLodop } from '@/utils/LodopFuncs.js'
|
|
|
|
|
export default { |
|
|
|
|
data () { |
|
|
|
|
return { |
|
|
|
|
form2:{}, |
|
|
|
|
box2:false, |
|
|
|
|
form3:{}, |
|
|
|
|
box3:false, |
|
|
|
|
columnList: [ |
|
|
|
|
{ |
|
|
|
|
prop: '', |
|
|
|
@ -373,6 +444,7 @@ export default {
|
|
|
|
|
}, |
|
|
|
|
// 更多列的配置... |
|
|
|
|
], |
|
|
|
|
currentData:[], |
|
|
|
|
columnListedit: [], |
|
|
|
|
a: [], |
|
|
|
|
height: 0, |
|
|
|
@ -721,6 +793,7 @@ export default {
|
|
|
|
|
console.log("--------------->a".a); |
|
|
|
|
return a |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
searchHide () { |
|
|
|
|
this.search = !this.search; |
|
|
|
|
}, |
|
|
|
@ -755,6 +828,21 @@ export default {
|
|
|
|
|
//TODO 这里还需要对二维码图片进行控制显示 |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
//列加层 |
|
|
|
|
layerAllocation(row){ |
|
|
|
|
console.log("row>>>>>>>>",row); |
|
|
|
|
this.title = '列加层' |
|
|
|
|
this.box3 = true |
|
|
|
|
// this.isShowQRCode = true; |
|
|
|
|
// this.idShowStatus = false; |
|
|
|
|
// this.allocation = true; |
|
|
|
|
getDetail(row.id).then(res => { |
|
|
|
|
this.form3 = res.data.data; |
|
|
|
|
console.log(">>>>>>>>>>",this.form); |
|
|
|
|
//TODO 这里还需要对二维码图片进行控制显示 |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
//货位列表 |
|
|
|
|
locationList(row){ |
|
|
|
|
console.log("row>>>>>>>>",row); |
|
|
|
@ -762,6 +850,27 @@ export default {
|
|
|
|
|
this.box1 = true |
|
|
|
|
this.allonLoad(this.allpage) |
|
|
|
|
}, |
|
|
|
|
handleSubmitAdd(){ |
|
|
|
|
this.form2.addFlag = 1 |
|
|
|
|
addAllocation(this.form2).then(() => { |
|
|
|
|
this.box2 = false; |
|
|
|
|
this.onLoad(this.page); |
|
|
|
|
this.$message({ |
|
|
|
|
type: "success", |
|
|
|
|
message: "操作成功!" |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
handleSubmitly(){ |
|
|
|
|
addlayer(this.form3).then(() => { |
|
|
|
|
this.box3 = false; |
|
|
|
|
this.onLoad(this.page); |
|
|
|
|
this.$message({ |
|
|
|
|
type: "success", |
|
|
|
|
message: "操作成功!" |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
handleSubmit () { |
|
|
|
|
if (this.allocation){ |
|
|
|
|
console.log("this.form>>>>>>>货位", this.form); |
|
|
|
|