Compare commits

..

No commits in common. 'faf615eeee126887a6d637ecb070883f1166fd9c' and '5bbcf2e7f18d78a98595e19749db508935486865' have entirely different histories.

@ -12,14 +12,10 @@
<el-button-group <el-button-group
style="display: flex; margin-top: 5px; float: right" style="display: flex; margin-top: 5px; float: right"
> >
<el-button size="mini" type="primary" @click.native="submit()" :loading="submitLoading" <!-- <el-button size="mini" type="primary" @click.native="submit()" :loading="submitLoading"
style="margin-right: 8px;border-radius: 5%;"
>添加草稿
</el-button>
<el-button size="mini" type="primary" @click.native="submit()" :loading="submitLoading"
style="margin-right: 8px;border-radius: 5%;" style="margin-right: 8px;border-radius: 5%;"
>添加完成 >添加完成
</el-button> </el-button> -->
</el-button-group> </el-button-group>
</el-row> </el-row>
<el-row> <el-row>
@ -301,6 +297,11 @@
detailList: [], detailList: [],
checkPreInArray: [], checkPreInArray: [],
errView: 0, errView: 0,
isCodeAlive: true,
isCheckResultAlive: true,
isBizDetailAlive: true,
isCodeDetailAlive: true,
isSickerAlive: true,
actionEnable: false, actionEnable: false,
formRules: { formRules: {
// productCode: [ // productCode: [
@ -432,6 +433,35 @@
refreshCodesPanel() { refreshCodesPanel() {
this.warnVisible = false; this.warnVisible = false;
this.errVisible = false; this.errVisible = false;
this.isCodeAlive = false;
this.isBizDetailAlive = false;
this.isCodeDetailAlive = false;
this.isSickerAlive = false;
this.$nextTick(() => {
//
this.isCodeAlive = true;
this.isBizDetailAlive = true;
this.isCodeDetailAlive = true;
this.isSickerAlive = true;
});
//
if (this.isCheckResultAlive) {
this.isCheckResultAlive = false;
this.$nextTick(() => {
//
this.isCheckResultAlive = true;
});
}
},
refreshOrder(orderQuery) {
this.relFormData = orderQuery;
this.scanCode = "";
this.result = "";
this.refreshCodesPanel()
}, },
submit(val) { submit(val) {
@ -640,7 +670,7 @@
}, },
created() { created() {
this.init(); this.init()
}, },
}; };
</script> </script>

@ -1,6 +1,7 @@
<template> <template>
<div> <div>
<operateRelCode <operateRelCode
ref="operateRelCode"
:opeParentCode="parentCode" :opeParentCode="parentCode"
:opeRelFormData="relFormData" :opeRelFormData="relFormData"
></operateRelCode> ></operateRelCode>

Loading…
Cancel
Save