Dogp.vue 1.43 KB
Newer Older
1
<template>
Wuyuqiu committed
2
  <div class="eibs">
3
                                               
Wuyuqiu committed
4
       <c-col :span="22">
5 6
        <el-form-item label="货物/服务描述" prop="lidgrp.blk.lcrgod">
            <c-input type="textarea" v-model="model.lidgrp.blk.lcrgod" maxlength="52000" :rows="30" show-word-limit placeholder="请输入货物或服务描述" ></c-input>
7 8 9 10
        </el-form-item>
        </c-col>
                  
       <c-col :span="2">
11
        <c-button size="small" type="primary" 
12
        @click="showGridPromptDialog('litp.lcrgod.buttxmsel', null, null,{TXT: 'lidgrp.blk.lcrgod'}, {TXT: false})">  
13 14 15 16
        </c-button>
       </c-col>
                                   
       <c-col :span="18">
17
        <el-form-item label="货物类型" prop="lidgrp.rec.stagod">
18 19 20
            <c-select 
            v-model="model.lidgrp.rec.stagod" 
            style="width:100%" 
21
            placeholder="请选择货物类型"
22 23
            :code="codes.godcod"
            >
24 25 26 27 28 29 30
              </c-select>
        </el-form-item>
       </c-col>
  </div>
</template>
<script>
import Api from "~/service/Api"
wangren committed
31
import commonProcess from "~/mixin/commonProcess";
32 33 34 35 36 37
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Litopn/Event"

export default {
    inject: ['root'],
    props:["model","codes"],
wangren committed
38
    mixins: [commonProcess],
39 40 41 42 43 44 45 46 47 48 49 50 51 52
    data(){
        return {

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

    }
}
</script>
<style>

</style>