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