|
|
|
@ -116,7 +116,7 @@
|
|
|
|
|
:total="codeTotal"
|
|
|
|
|
:limit.sync="codeQuery.limit"
|
|
|
|
|
:page.sync="codeQuery.page"
|
|
|
|
|
@pagination="getList(this)"
|
|
|
|
|
@pagination="getList"
|
|
|
|
|
></pagination>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
@ -212,7 +212,7 @@ export default {
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.$message.success("操作成功!");
|
|
|
|
|
// this.refreshPanel(this)
|
|
|
|
|
this.getList(this);
|
|
|
|
|
this.getList();
|
|
|
|
|
this.closeScanDialog()
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
@ -239,47 +239,48 @@ export default {
|
|
|
|
|
this.query.sort = 'asc'
|
|
|
|
|
}
|
|
|
|
|
this.query.orderBy = column.prop;
|
|
|
|
|
this.getList(this);
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|
///界面配置相关------------end
|
|
|
|
|
|
|
|
|
|
getList(_this) {
|
|
|
|
|
if (_this.prescribeData == null)
|
|
|
|
|
getList() {
|
|
|
|
|
if (this.prescribeData == null)
|
|
|
|
|
return
|
|
|
|
|
if (_this.prescribeData != null) {
|
|
|
|
|
_this.codeQuery.page = 1
|
|
|
|
|
_this.codeQuery.orderIdFk = this.prescribeData.billNo
|
|
|
|
|
_this.codeQuery.bizIdFk = this.bizId
|
|
|
|
|
if (this.prescribeData != null) {
|
|
|
|
|
// this.codeQuery.page = 1
|
|
|
|
|
this.codeQuery.orderIdFk = this.prescribeData.billNo
|
|
|
|
|
this.codeQuery.bizIdFk = this.bizId
|
|
|
|
|
}
|
|
|
|
|
_this.codeLoading = true;
|
|
|
|
|
if (_this.fifoSplit == 3) {
|
|
|
|
|
manualCodeDetail(_this.codeQuery).then(res => {
|
|
|
|
|
_this.codeLoading = false
|
|
|
|
|
this.codeLoading = true;
|
|
|
|
|
if (this.fifoSplit == 3) {
|
|
|
|
|
manualCodeDetail(this.codeQuery).then(res => {
|
|
|
|
|
this.codeLoading = false
|
|
|
|
|
if (res.code != 20000) {
|
|
|
|
|
_this.$message.error(res.message)
|
|
|
|
|
this.$message.error(res.message)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
_this.codeDetailList = res.data.list
|
|
|
|
|
_this.codeTotal = res.data.total || 0
|
|
|
|
|
_this.codeLoading = false
|
|
|
|
|
this.codeDetailList = res.data.list
|
|
|
|
|
this.codeTotal = res.data.total || 0
|
|
|
|
|
this.codeLoading = false
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
_this.codeLoading = false
|
|
|
|
|
_this.codeTotal = res.data.total || 0
|
|
|
|
|
_this.$message.error("数据加载失败")
|
|
|
|
|
this.codeLoading = false
|
|
|
|
|
this.codeTotal = res.data.total || 0
|
|
|
|
|
this.$message.error("数据加载失败")
|
|
|
|
|
})
|
|
|
|
|
} else {
|
|
|
|
|
_this.codeQuery.fifoSplit = this.fifoSplit
|
|
|
|
|
autoCodeResult(_this.codeQuery).then(res => {
|
|
|
|
|
_this.codeLoading = false
|
|
|
|
|
this.codeQuery.fifoSplit = this.fifoSplit
|
|
|
|
|
autoCodeResult(this.codeQuery).then(res => {
|
|
|
|
|
this.codeLoading = false
|
|
|
|
|
if (res.code != 20000) {
|
|
|
|
|
_this.$message.error(res.message)
|
|
|
|
|
this.$message.error(res.message)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
_this.codeDetailList = res.data.list
|
|
|
|
|
_this.codeLoading = false
|
|
|
|
|
this.codeDetailList = res.data.list
|
|
|
|
|
this.codeTotal = res.data.total || 0
|
|
|
|
|
this.codeLoading = false
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
_this.codeLoading = false
|
|
|
|
|
_this.$message.error("数据加载失败")
|
|
|
|
|
this.codeLoading = false
|
|
|
|
|
this.$message.error("数据加载失败")
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -319,7 +320,6 @@ export default {
|
|
|
|
|
if (this.fifoSplit == 2 || this.fifoSplit == 1) {
|
|
|
|
|
this.splitType = false
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (this.tableHeader2 == null || this.tableHeader2.length == 0) {
|
|
|
|
|
getHead("PanelOrderManuTagCode", "1").then((re) => {
|
|
|
|
|
// 处理返回的数据
|
|
|
|
@ -327,10 +327,10 @@ export default {
|
|
|
|
|
this.tableHeader2 = re.data.tableList;
|
|
|
|
|
this.queryList2 = re.data.queryList;
|
|
|
|
|
this.fromList2 = re.data.fromList;
|
|
|
|
|
this.getList(this);
|
|
|
|
|
this.getList();
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
this.getList(this);
|
|
|
|
|
this.getList();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|