Commit 815469b0 by lianyang

Brtdck\Brtudp\Brteus加复核

parent 412c9349
...@@ -145,9 +145,11 @@ export default { ...@@ -145,9 +145,11 @@ export default {
let rtnmsg = await this.init({}) let rtnmsg = await this.init({})
if(rtnmsg.respCode == SUCCESS) if(rtnmsg.respCode == SUCCESS)
{ {
this.updateModel(rtnmsg.data) this.updateModel(rtnmsg.data)
//TODO 处理数据逻辑 //TODO 处理数据逻辑
if (this.isInDisplay) {
this.restoreDisplay();
}
} }
else else
{ {
......
...@@ -162,6 +162,9 @@ export default { ...@@ -162,6 +162,9 @@ export default {
if (rtnmsg.respCode == SUCCESS) { if (rtnmsg.respCode == SUCCESS) {
this.updateModel(rtnmsg.data) this.updateModel(rtnmsg.data)
//TODO 处理数据逻辑 //TODO 处理数据逻辑
if (this.isInDisplay) {
this.restoreDisplay();
}
} }
else { else {
......
...@@ -192,6 +192,9 @@ export default { ...@@ -192,6 +192,9 @@ export default {
if (rtnmsg.respCode == SUCCESS) { if (rtnmsg.respCode == SUCCESS) {
this.updateModel(rtnmsg.data); this.updateModel(rtnmsg.data);
//TODO 处理数据逻辑 //TODO 处理数据逻辑
if (this.isInDisplay) {
this.restoreDisplay();
}
} else { } else {
this.$notify.error({ title: "错误", message: "服务请求失败!" }); this.$notify.error({ title: "错误", message: "服务请求失败!" });
} }
......
<template>
<ReviewWrapper>
<Brtdck></Brtdck>
</ReviewWrapper>
</template>
<script>
import Brtdck from "~/views/Business/Brtdck";
import { ReviewWrapper } from "~/components/gj-common.min.js";
export default {
name: "ReviewBrtdck",
components: { ReviewWrapper, Brtdck },
created() {},
mounted() {},
};
</script>
<style></style>
<template>
<ReviewWrapper>
<Brteus></Brteus>
</ReviewWrapper>
</template>
<script>
import Brteus from "~/views/Business/Brteus";
import { ReviewWrapper } from "~/components/gj-common.min.js";
export default {
name: "ReviewBrteus",
components: { ReviewWrapper, Brteus },
created() {},
mounted() {},
};
</script>
<style></style>
<template>
<ReviewWrapper>
<Brtudp></Brtudp>
</ReviewWrapper>
</template>
<script>
import Brtudp from "~/views/Business/Brtudp";
import { ReviewWrapper } from "~/components/gj-common.min.js";
export default {
name: "ReviewBrtudp",
components: { ReviewWrapper, Brtudp },
created() {},
mounted() {},
};
</script>
<style></style>
...@@ -10,6 +10,9 @@ import ReviewBdtdck from "./Business/ReviewBdtdck.vue"; ...@@ -10,6 +10,9 @@ import ReviewBdtdck from "./Business/ReviewBdtdck.vue";
import ReviewBotdcr from "./Business/ReviewBotdcr.vue"; import ReviewBotdcr from "./Business/ReviewBotdcr.vue";
import ReviewBotrad from "./Business/ReviewBotrad.vue"; import ReviewBotrad from "./Business/ReviewBotrad.vue";
import ReviewBotdav from "./Business/ReviewBotdav.vue"; import ReviewBotdav from "./Business/ReviewBotdav.vue";
import ReviewBrtdck from "./Business/ReviewBrtdck.vue";
import ReviewBrtudp from "./Business/ReviewBrtudp.vue";
import ReviewBrteus from "./Business/ReviewBrteus.vue";
import ReviewLetnot from "./Business/ReviewLetnot.vue"; import ReviewLetnot from "./Business/ReviewLetnot.vue";
import ReviewBdtdcr from "./Business/ReviewBdtdcr.vue"; import ReviewBdtdcr from "./Business/ReviewBdtdcr.vue";
import ReviewBdteus from "./Business/ReviewBdteus.vue"; import ReviewBdteus from "./Business/ReviewBdteus.vue";
...@@ -28,7 +31,10 @@ const ReviewRouter = [ ...@@ -28,7 +31,10 @@ const ReviewRouter = [
{ path: "bdtdck", component: ReviewBdtdck, name: "ReviewBdtdck", meta: { title: "复核-Bdtdck" } }, { path: "bdtdck", component: ReviewBdtdck, name: "ReviewBdtdck", meta: { title: "复核-Bdtdck" } },
{ path: "botdcr", component: ReviewBotdcr, name: "ReviewBotdcr", meta: { title: "复核-Botdcr" } }, { path: "botdcr", component: ReviewBotdcr, name: "ReviewBotdcr", meta: { title: "复核-Botdcr" } },
{ path: "botrad", component: ReviewBotrad, name: "ReviewBotrad", meta: { title: "复核-Botrad" } }, { path: "botrad", component: ReviewBotrad, name: "ReviewBotrad", meta: { title: "复核-Botrad" } },
{ path: "botdav", component: ReviewBotdav, name: "ReviewBotdav", meta: { title: "复核-botdav" } }, { path: "botdav", component: ReviewBotdav, name: "ReviewBotdav", meta: { title: "复核-botdav" } },
{ path: "brtdck", component: ReviewBrtdck, name: "ReviewBrtdck", meta: { title: "复核-Brtdck" } },
{ path: "brtudp", component: ReviewBrtudp, name: "ReviewBrtudp", meta: { title: "复核-Brtudp" } },
{ path: "brteus", component: ReviewBrteus, name: "ReviewBrteus", meta: { title: "复核-Brteus" } },
{ path: "letnot", component: ReviewLetnot, name: "ReviewLetnot", meta: { title: "复核-Letnot" } }, { path: "letnot", component: ReviewLetnot, name: "ReviewLetnot", meta: { title: "复核-Letnot" } },
]; ];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment