Dorp.vue 1.13 KB
Newer Older
hpj committed
1 2
<template>
  <div class="eibs-tab">
jianglong committed
3
    <!-- 单据要求 -->
lianyang committed
4 5
    <c-col :span="20">
      <el-form-item label="所需单据" prop="ledgrp.blk.lcrdoc">
hpj committed
6 7 8
        <c-input
          type="textarea"
          v-model="model.ledgrp.blk.lcrdoc"
lianyang committed
9
          maxlength="52000"
hpj committed
10
          show-word-limit
jianglong committed
11
          placeholder="请输入单据要求"
lianyang committed
12
          :rows="30"
hpj committed
13 14 15 16
        ></c-input>
      </el-form-item>
    </c-col>

lianyang committed
17
    <c-col :span="2">
18
    <!-- @click="onLcrdocButtxmsel" -->
hpj committed
19 20 21 22
      <c-button
        size="small"
        type="primary"
        icon="el-icon-search"
23
        @click="showGridPromptDialog('letp.lcrdoc.buttxmsel', null, null,{TXT: 'ledgrp.blk.lcrdoc'}, {TXT: false},'doxpDialog')"
hpj committed
24 25 26 27 28 29 30 31
      >
        ...
      </c-button>
    </c-col>
  </div>
</template>
<script>
import Api from "~/service/Api";
32
import commonProcess from "~/mixin/commonProcess";
hpj committed
33 34 35 36 37 38
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Letnot/Event";

export default {
  inject: ["root"],
  props: ["model", "codes"],
39
  mixins: [commonProcess],
hpj committed
40 41 42 43 44 45 46 47 48
  data() {
    return {};
  },
  methods: { ...Event },
  created: function () {},
};
</script>
<style>
</style>