Dogp.vue 1.41 KB
Newer Older
wangren committed
1 2 3 4 5 6 7 8
<template>
  <div class="eibs-tab">
                                               
       <c-col :span="20">
        <el-form-item label="Description. of Goods" prop="lidgrp.blk.lcrgod">
            <c-input disabled type="textarea" v-model="model.lidgrp.blk.lcrgod" maxlength="52000" :rows="30" show-word-limit placeholder="请输入Description. of Goods" ></c-input>
        </el-form-item>
        </c-col>
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24

        <c-col :span="2">
            <c-button size="small" type="primary" icon="el-icon-search" @click="">

            </c-button>
        </c-col>

        <c-col :span="18">
            <el-form-item label="Goods Code " prop="lidgrp.rec.stagod">
                <c-select disabled v-model="model.lidgrp.rec.stagod" style="width:100%" placeholder="请选择Goods Code ">
                    <el-option v-for="item in codes.godcod" :key="item.value" :label="item.label" :value="item.value">
                    </el-option>
                </c-select>
            </el-form-item>
        </c-col>
    </div>
wangren committed
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
</template>
<script>
import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Litacp/Event"

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

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

    }
}
</script>
<style>

</style>