处理单据

yanshishuju
yewj 6 months ago
parent f47ed1578d
commit 6c9b93c058

@ -954,7 +954,7 @@ export default {
this.loading = false this.loading = false
if (res.code == 20000) { if (res.code == 20000) {
this.resetWork() this.resetWork()
this.nextCollectOrder() this.findCurOrder()
} else if (res.code == 502) { } else if (res.code == 502) {
this.$confirm(res.message, '提示', { this.$confirm(res.message, '提示', {
confirmButtonText: '确定', confirmButtonText: '确定',

@ -15,7 +15,7 @@
<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%;" 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>
@ -171,8 +171,8 @@
<el-text tag="b" size="large">父级编码<span>{{ a || '暂未录入'}}</span></el-text> <el-text tag="b" size="large">父级编码<span>{{ a || '暂未录入'}}</span></el-text>
</div> </div>
<div> <div>
<el-table v-loading="loading" <el-table v-loading="loading"
:data="detailList" :data="detailList"
style="width: 100%;" max-height="350" height="350" style="width: 100%;" max-height="350" height="350"
border border
:row-style="rowStyle" :row-style="rowStyle"
@ -190,6 +190,7 @@
<script> <script>
import {addRelCode,scanCodeRelCode} from "@/api/collect/relCode"; import {addRelCode,scanCodeRelCode} from "@/api/collect/relCode";
// import relCodeDetail from "@/views/collect/relCode/relCodeDetail";
import A from "@/plugins/KeyScaner"; import A from "@/plugins/KeyScaner";
export default { export default {
@ -276,7 +277,7 @@ export default {
], ],
validateDate: [ validateDate: [
{required: true, message: "请选入有效日期", trigger: "blur"}, {required: true, message: "请选入有效日期", trigger: "blur"},
], ],
}, },
isScan: true, isScan: true,
scanText: "扫码录入:", scanText: "扫码录入:",
@ -312,6 +313,7 @@ export default {
}; };
}, },
components: { components: {
// relCodeDetail
}, },
methods: { methods: {
splitChange() { splitChange() {
@ -342,7 +344,7 @@ export default {
}); });
}, },
refreshCodesPanel() { refreshCodesPanel() {
this.warnVisible = false; this.warnVisible = false;
this.errVisible = false; this.errVisible = false;
@ -479,10 +481,10 @@ export default {
this.$refs.inputRef.focus(); this.$refs.inputRef.focus();
}, },
beforeDestroy() { beforeDestroy() {
}, },
created() { created() {
}, },
}; };
</script> </script>

@ -780,7 +780,7 @@ export default {
created() { created() {
if (this.$route.query.workplaceId != null) { if (this.$route.query.workplaceId != null) {
this.isLinkDisabled = true this.isLinkDisabled = true
this.filterQuery.workPlaceCode = this.$route.query.workplaceId // this.filterQuery.workPlaceCode = this.$route.query.workplaceId
} }
this.findWorkPlace(this, ""); this.findWorkPlace(this, "");
getHead("prescribeSelect", "1").then((re) => { getHead("prescribeSelect", "1").then((re) => {

Loading…
Cancel
Save