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