Commit a335c216 by Wuyuqiu

fctcan交易快照

parent 84ad1de7
<template>
<div class="eibs">
<el-collapse v-model="activeNames" @change="handleChange">
<el-collapse-item title="开立方式" name="opnp1">
<m-opnp1 :model="model" :codes="codes" />
</el-collapse-item>
</el-collapse>
</div>
</template>
<script>
import commonProcess from "~/mixin/commonProcess";
import Event from "~/model/Fctcan/Event"
import Opnp1 from "./Opnp1"
export default {
components: {
"m-opnp1": Opnp1,
},
inject: ['root'],
props: ["model", "codes"],
mixins: [commonProcess],
data() {
return {
activeNames: ["opnp1"],
}
},
methods: { ...Event },
created: function () {
}
}
</script>
<style>
</style>
\ No newline at end of file
<template>
<ReviewWrapper>
<Fctcan></Fctcan>
</ReviewWrapper>
</template>
<script>
import Fctcan from "~/views/Business/Fctcan";
import { ReviewWrapper } from "~/components/gj-common.min.js";
export default {
name: "ReviewFctcan",
components: { ReviewWrapper, Fctcan },
created() {},
mounted() {},
};
</script>
<style></style>
\ No newline at end of file
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