Fredet.vue 1.19 KB
Newer Older
闫泽浩 committed
1 2 3 4 5
<template>
  <div class="eibs-tab">
                             <!-- SF000077 : Query/ Answer -->
                  
       <c-col :span="12">
闫泽浩 committed
6
        <c-form-item label="需求/答复" prop="fremsg.det">
闫泽浩 committed
7 8 9 10 11 12
            <c-input type="textarea" v-model="model.fremsg.det" maxlength="35" show-word-limit :placeholder="$t('other.please_enter')+$t('fremsg.SF000077')" ></c-input>
        </c-form-item>
        </c-col>
                 <!-- SF000078 : Narrative (77A) -->
                  
       <c-col :span="12">
闫泽浩 committed
13
        <c-form-item label="叙述内容" prop="fremsg.tag77a">
闫泽浩 committed
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
            <c-input type="textarea" v-model="model.fremsg.tag77a" maxlength="35" show-word-limit :placeholder="$t('other.please_enter')+$t('fremsg.SF000078')" ></c-input>
        </c-form-item>
        </c-col>
  </div>
</template>
<script>
import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Getfre/Event"

export default {
    inject: ['root'],
    props:["model","codes"],
    mixins: [commonProcess],
    data(){
        return {

        }
    },
    methods:{...Event},
    created:function(){

    }
}
</script>
<style>

</style>