Dogp.vue 1.17 KB
Newer Older
xionglin committed
1 2 3 4 5 6 7 8 9 10 11 12
<template>
  <div class="eibs">
                                               
       <c-col :span="22">
        <el-form-item label="货物描述" prop="lidgrp.blk.lcrgod">
            <c-input 
            :rows="30"
            type="textarea" v-model="model.lidgrp.blk.lcrgod" maxlength="52000" show-word-limit placeholder="请输入货物描述" ></c-input>
        </el-form-item>
        </c-col>
                  
       <c-col :span="2">
huxi committed
13
        <c-button  size="small" type="primary" icon="el-icon-more">
xionglin committed
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
            
        </c-button>
       </c-col>
                                   
       <c-col :span="18">
        <el-form-item label="货物类型 " prop="lidgrp.rec.stagod">
            <c-select v-model="model.lidgrp.rec.stagod" style="width:100%" 
            :code="codes.godcod"
            placeholder="请选择货物类型 ">
              </c-select>
        </el-form-item>
       </c-col>
  </div>
</template>
<script>
huxi committed
29
import event from "../event"
xionglin committed
30 31 32 33

export default {
    inject: ['root'],
    props:["model","codes"],
huxi committed
34
    mixins: [event],
xionglin committed
35 36 37 38 39
    data(){
        return {

        }
    },
huxi committed
40
    methods:{},
xionglin committed
41 42 43 44 45 46 47 48
    created:function(){

    }
}
</script>
<style>

</style>