<template> <div class="eContainer"> <c-page title="对外付款/承兑通知书-详情"> <el-form :rules="rules" :model="model" ref="modelForm" label-width="120px" label-position="right" size="small" > <c-tabs v-model="tabVal" ref="elment" type="card"> <el-tab-pane label="对外付款/承兑通知书-详情" name="info"> <c-content> <m-info :model="model" ref="info" :codes="codes" /> </c-content> </el-tab-pane> </c-tabs> </el-form> <div style="text-align: center"> <c-button type="primary" style="margin-right: 10px" @click="commitAdd">提 交</c-button> <c-button type="primary" style="margin-right: 10px" @click="checkTdb">检核</c-button> <c-button type="primary" style="margin-right: 10px" @click="exit">退出</c-button> </div> </c-page> </div> </template> <script> import Api from "~/service/Api" import CodeTable from "~/config/CodeTable" import Dbcpnt from "../model" import check from "../model/check" import event from "../event" import Info from "./Info"; export default { name: "Dbcpnt", components:{ "m-info": Info, }, provide() { return { root: this, activeNames: ["info"] } }, data(){ return { tabVal: "info", trnName: "dbcpnt", trnType: "", model: new Dbcpnt().data, checkRules: check, rules: null, codes: { }, } }, methods:{ }, created:async function(){ } } </script> <style> </style>