Dogp.vue 1.93 KB
Newer Older
孟冬雪 committed
1 2 3
<template>
  <div class="eibs-tab">
    <c-blkTextarea :model="model" v-bind="blk"> </c-blkTextarea>
孟冬雪 committed
4 5 6 7 8 9 10 11 12 13 14
    <br />
        <!-- <c-col :span="12">
      <el-form-item label="货物类型" prop="ledgrp.rec.stagod">
        <c-select
          v-model="model.ledgrp.rec.stagod"
          style="width: 100%"
          placeholder="请选择货物类型 "
        >
        </c-select>
      </el-form-item>
    </c-col> -->
孟冬雪 committed
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
    <!--  <c-col :span="24">                                      
      <c-col :span="20">
        <el-form-item label="Description of Goods" prop="ltdgrp.blk.lcrgod">
            <c-input type="textarea" 
            :autosize="{ minRows: 20, maxRows: 38}"
            v-model="model.ltdgrp.blk.lcrgod" 
            maxlength="65" 
            style="height:100%;width:100%;margin-right:20px;"
            show-word-limit placeholder="请输入Description of Goods" 
           
            ></c-input>
        </el-form-item>
        </c-col>
                  
       <c-col :span="4" class="lttopn_dogp_button">
        <c-button size="small" type="primary" icon="el-icon-search" @click="onLcrgodButtxmsel">
            ...
        </c-button>
       </c-col> 
    </c-col>-->
  </div>
</template>
<script>
import Api from "~/service/Api";
wangren committed
39
import commonProcess from "~/mixin/commonProcess";
孟冬雪 committed
40 41 42 43 44 45
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Lttopn/Event";
import BlkTextarea from "~/views/Public/BlkTextarea";
export default {
  inject: ["root"],
  props: ["model", "codes"],
wangren committed
46
  mixins: [commonProcess],
孟冬雪 committed
47 48 49 50 51 52
  components: { "c-blkTextarea": BlkTextarea },
  data() {
    return {
      blk: {
        blkMsg: {
          title: "货物说明",
孟冬雪 committed
53
          dataUrl: "ltdgrp.blk.lcrgod", //字段所在model路径
孟冬雪 committed
54 55 56 57 58 59 60 61 62 63 64 65
          rows: 20,
        },
        rulePath: "lttp.lcrgod.buttxmsel",
      },
    };
  },
  methods: { ...Event },
  created: function () {},
};
</script>
<style>
.lttopn_dogp_button {
孟冬雪 committed
66
  margin: 20px 0 0 0px;
孟冬雪 committed
67 68
}
</style>