Mt299.vue 1.31 KB
Newer Older
jianglong committed
1 2 3 4 5 6 7 8 9 10 11
<template>
<div class="eibs-tab">
    <c-col :span="24">
        <c-col :span="24">
            <c-form-item label="Reference" prop="ftdgrp.rec.ownref">
                <c-input disabled v-model="model.ftdgrp.rec.ownref" maxlength="16" placeholder=""></c-input>
            </c-form-item>
        </c-col>

        <c-col :span="24">
            <c-form-item label="Related Reference" prop="relref">
12
                <c-input  v-model="model.relref" maxlength="16" placeholder=""></c-input>
jianglong committed
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
            </c-form-item>
        </c-col>

        <c-col :span="24">
            
            <c-form-item label="Narrative" prop="narblk">
                <c-mul-row-input maxlength="35*50" :autosize="{ minRows: 10, maxRows: 50}" :charmod="2" :cols="35" :rows="50" placeholder="请输入描述内容" v-model="model.narblk">
							</c-mul-row-input>
                
            </c-form-item>
        </c-col>

    </c-col>

</div>
</template>

<script>
import Api from "~/service/Api";
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable";
import Event from "../event"

export default {
    inject: ["root"],
    props: ["model", "codes"],
    mixins: [Event,commonProcess],
    data() {
        return {};
    },
    methods: {
       
    },
    created: function () {},
};
</script>

<style></style>