Detp.vue 1.17 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
<template>
  <div class="eibs-tab">
                                                                
       <c-col :span="12">
        <c-button size="small" type="primary"  @click="onMtdbutButapy">
            确定
        </c-button>
       </c-col>
                                                                     
       <c-col :span="12">
        <el-form-item label="注释" prop="setmod.redamttxt">
            <c-input type="textarea" v-model="model.setmod.redamttxt" maxlength="35" show-word-limit placeholder="请输入注释" ></c-input>
        </el-form-item>
        </c-col>
                  
       <c-col :span="12">
        <c-button size="small" type="primary"  @click="onMtdbutButcan">
            取消
        </c-button>
       </c-col>
  </div>
</template>
<script>
import Api from "~/service/Api"
wangren committed
25
import commonProcess from "~/mixin/commonProcess";
26 27 28 29 30 31
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Bftset/Event"

export default {
    inject: ['root'],
    props:["model","codes"],
wangren committed
32
    mixins: [commonProcess],
33 34 35 36 37 38 39 40 41 42 43 44 45 46
    data(){
        return {

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

    }
}
</script>
<style>

</style>