Commit a474ef64 by zhengxiaokui
parents a17c7283 b0ea562c
<template> <template>
<div class="eContainer"> <div class="eContainer">
<c-bus-button :$pntvm="this"></c-bus-button> <c-bus-button :$pntvm="this"></c-bus-button>
<el-form <el-form
:model="model" :model="model"
:rules="rules" :rules="rules"
ref="modelForm" ref="modelForm"
label-width="150px" label-width="150px"
label-position="right" label-position="right"
size="small" size="small"
:validate-on-rule-change="false"> :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="tabClick">
<!--PD000002 --> <!--PD000002 -->
<el-tab-pane label="canp" name="canp"> <el-tab-pane label="canp" name="canp">
<c-content> <c-content>
<m-canp :model="model" :codes="codes"/> <m-canp :model="model" :codes="codes" />
</c-content> </c-content>
</el-tab-pane> </el-tab-pane>
</c-tabs> </c-tabs>
</el-form> </el-form>
</div> </div>
</template> </template>
<script> <script>
import Api from "~/service/Api" import Api from "~/service/Api";
import CodeTable from "~/config/CodeTable" import CodeTable from "~/config/CodeTable";
import Lttcan from "~/model/Lttcan" import Lttcan from "~/model/Lttcan";
import CommonProcess from "~/mixin/CommonProcess" import CommonProcess from "~/mixin/CommonProcess";
import Check from "~/model/Lttcan/Check" import Check from "~/model/Lttcan/Check";
import Default from "~/model/Lttcan/Default" import Default from "~/model/Lttcan/Default";
import Pattern from "~/model/Lttcan/Pattern" import Pattern from "~/model/Lttcan/Pattern";
import Canp from "./Canp" import Canp from "./Canp";
export default { export default {
name: "Lttcan", name: "Lttcan",
components:{ components: {
"m-canp" : Canp, "m-canp": Canp,
}, },
provide() { provide() {
return { return {
root: this root: this,
} };
}, },
mixins: [CommonProcess], // 里面包含了Default、Check等的公共处理 mixins: [CommonProcess], // 里面包含了Default、Check等的公共处理
data(){ data() {
return { return {
tabVal: "canp", tabVal: "canp",
trnName: "lttcan", trnName: "lttcan",
model: new Lttcan().data, model: new Lttcan().data,
checkRules: Check, checkRules: Check,
defaultRules: Default, defaultRules: Default,
pattern: Pattern, pattern: Pattern,
rules: null, rules: null,
codes: { codes: {
}, ...CodeTable,
} },
}, };
methods:{ },
tabClick(){ methods: {
} tabClick() {},
}, },
created:async function(){ created: async function () {
console.log("进入lttcan交易"); console.log("进入lttcan交易");
let rtnmsg = await this.init({}) let rtnmsg = await this.init({});
if(rtnmsg.respCode == SUCCESS) if (rtnmsg.respCode == SUCCESS) {
{ //TODO 处理数据逻辑
//TODO 处理数据逻辑 } else {
this.$notify.error({ title: "错误", message: "服务请求失败!" });
}
else
{
this.$notify.error({title: '错误',message: '服务请求失败!'});
}
} }
} },
};
</script> </script>
<style> <style>
</style> </style>
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