Commit 446cb040 by nanrui

cltset,clttra快照处理

parent 6dba1fda
...@@ -125,6 +125,9 @@ export default { ...@@ -125,6 +125,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();
}
this.model.bptbck.bptbckg = rtnmsg.data.ccdbatg; this.model.bptbck.bptbckg = rtnmsg.data.ccdbatg;
console.log(this.model.bptbck.bptbckg); console.log(this.model.bptbck.bptbckg);
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
</c-function-btn> </c-function-btn>
<el-form :model="model" :rules="rules" ref="modelForm" label-width="150px" label-position="left" <el-form :model="model" :rules="rules" ref="modelForm" label-width="150px" label-position="left"
size="small" :validate-on-rule-change="false"> size="small" :validate-on-rule-change="false">
<c-tabs v-model="tabVal" ref="elment" type="card" @tab-click="tabClick"> <c-tabs v-model="tabVal" ref="elment" type="card" @tab-click="myTabClick">
<!--PD000002 --> <!--PD000002 -->
<el-tab-pane label="内容" name="Sel"> <el-tab-pane label="内容" name="Sel">
...@@ -108,7 +108,8 @@ export default { ...@@ -108,7 +108,8 @@ export default {
} }
}, },
methods: { methods: {
tabClick() { myTabClick(tab) {
this.tabClick(tab)
} }
}, },
created: async function () { created: async function () {
...@@ -116,6 +117,9 @@ export default { ...@@ -116,6 +117,9 @@ export default {
let rtnmsg = await this.init(this.$route.query) let rtnmsg = await this.init(this.$route.query)
if (rtnmsg.respCode == SUCCESS) { if (rtnmsg.respCode == SUCCESS) {
//TODO 处理数据逻辑 //TODO 处理数据逻辑
if (this.isInDisplay) {
this.restoreDisplay();
}
this.updateModel(rtnmsg.data); this.updateModel(rtnmsg.data);
this.model.bptbck.bptbckg = rtnmsg.data.ccdbatg; this.model.bptbck.bptbckg = rtnmsg.data.ccdbatg;
console.log(this.model.bptbck.bptbckg); console.log(this.model.bptbck.bptbckg);
......
<template>
<ReviewWrapper>
<Cltset></Cltset>
</ReviewWrapper>
</template>
<script>
import Cltset from "~/views/Business/Cltset";
import { ReviewWrapper } from "~/components/gj-common.min.js";
export default {
name: "ReviewCltset",
components: { ReviewWrapper, Cltset },
created() {},
mounted() {},
};
</script>
<style></style>
\ No newline at end of file
<template>
<ReviewWrapper>
<Clttra></Clttra>
</ReviewWrapper>
</template>
<script>
import Clttra from "~/views/Business/Clttra";
import { ReviewWrapper } from "~/components/gj-common.min.js";
export default {
name: "ReviewClttra",
components: { ReviewWrapper, Clttra },
created() {},
mounted() {},
};
</script>
<style></style>
\ No newline at end of file
...@@ -90,6 +90,8 @@ import ReviewBetamc from "./Business/ReviewBetamc.vue"; ...@@ -90,6 +90,8 @@ import ReviewBetamc from "./Business/ReviewBetamc.vue";
import ReviewCptcan from "./Business/ReviewCptcan.vue"; import ReviewCptcan from "./Business/ReviewCptcan.vue";
import ReviewCptrep from "./Business/ReviewCptrep.vue"; import ReviewCptrep from "./Business/ReviewCptrep.vue";
import ReviewCltdav from "./Business/ReviewCltdav.vue"; import ReviewCltdav from "./Business/ReviewCltdav.vue";
import ReviewCltset from "./Business/ReviewCltset.vue";
import ReviewClttra from "./Business/ReviewClttra.vue";
const ReviewRouter = [ const ReviewRouter = [
...@@ -193,6 +195,8 @@ const ReviewRouter = [ ...@@ -193,6 +195,8 @@ const ReviewRouter = [
{ path: "ccttra", component: ReviewCcttra, name: "ReviewCcttra", meta: { title: "复核-Ccttra" } }, { path: "ccttra", component: ReviewCcttra, name: "ReviewCcttra", meta: { title: "复核-Ccttra" } },
{ path: "lttopn", component: ReviewLttopn, name: "ReviewLttopn", meta: { title: "复核-Lttopn" } }, { path: "lttopn", component: ReviewLttopn, name: "ReviewLttopn", meta: { title: "复核-Lttopn" } },
{ path: "cltdav", component: ReviewCltdav, name: "ReviewCltdav", meta: { title: "复核-Cltdav" } }, { path: "cltdav", component: ReviewCltdav, name: "ReviewCltdav", meta: { title: "复核-Cltdav" } },
{ path: "cltset", component: ReviewCltset, name: "ReviewCltset", meta: { title: "复核-Cltset" } },
{ path: "clttra", component: ReviewClttra, name: "ReviewClttra", meta: { title: "复核-Clttra" } },
{ path: "Cptati", component: ReviewCptati, name: "ReviewCptati", meta: { title: "复核-Cptati" } }, { path: "Cptati", component: ReviewCptati, name: "ReviewCptati", meta: { title: "复核-Cptati" } },
{ path: "Cptato", component: ReviewCptato, name: "ReviewCptato", meta: { title: "复核-Cptato" } }, { path: "Cptato", component: ReviewCptato, name: "ReviewCptato", meta: { title: "复核-Cptato" } },
......
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