Commit 41fc69af by 李少勇

infcpd 交易修改

parent f2eb27ac
<template> <template>
<div class="eContainer-search"> <div class="eContainer-search">
<el-form <el-form :model="model" :rules="rules" ref="modelForm" label-width="120px" label-position="right" size="small"
:model="model"
:rules="rules"
ref="modelForm"
label-width="120px"
label-position="right"
size="small"
:validate-on-rule-change="false"> :validate-on-rule-change="false">
<c-content> <c-content>
<m-infsea :model="model" :codes="codes" ref="infsea" /> <m-infsea :model="model" :codes="codes" ref="infsea" />
</c-content> </c-content>
...@@ -22,31 +15,28 @@ import Infsea from "./Infsea"; ...@@ -22,31 +15,28 @@ import Infsea from "./Infsea";
export default { export default {
name: 'infcpd', name: 'infcpd',
components:{ components: {
"m-infsea" : Infsea, "m-infsea": Infsea,
}, },
provide() { provide() {
return { return {
root: this root: this
} }
}, // 里面包含了Default、Check等的公共处理 },
data(){ data() {
return { return {
tabVal: "", tabVal: "",
trnName: "infcpd", trnName: "infcpd",
model: new Infcpd().data, model: new Infcpd().data,
rules: null, rules: null,
codes:{...CodeTable}, codes: { ...CodeTable },
} }
}, },
methods:{ methods: {
}, },
mounted () { mounted() {
}, },
} }
</script> </script>
<style scoped> <style scoped></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