Tkp.vue 977 Bytes
Newer Older
1 2 3
<template>
  <div>
    <div class="title">货物服务</div>
潘际乾 committed
4
    <c-col :span="24">
5
      <el-form-item label-width="0">
liuxin committed
6
        <c-input type="textarea" v-model="model.didgrp.rec.lcrgod" placeholder="请输入" rows="5"></c-input>
7
      </el-form-item>
潘际乾 committed
8
    </c-col>
9
    <div class="title">单据要求</div>
潘际乾 committed
10
    <c-col :span="24">
11
      <el-form-item label-width="0">
liuxin committed
12
        <c-input type="textarea" v-model="model.didgrp.rec.lcrdoc" placeholder="请输入" rows="5"></c-input>
13
      </el-form-item>
潘际乾 committed
14
    </c-col>
15
    <div class="title">附加条款</div>
潘际乾 committed
16
    <c-col :span="24">
17
      <el-form-item label-width="0">
liuxin committed
18
        <c-input type="textarea" v-model="model.didgrp.rec.adlcnd" placeholder="请输入" rows="5"></c-input>
19
      </el-form-item>
潘际乾 committed
20
    </c-col>
21 22 23 24 25
  </div>
</template>

<script>
export default {
26
  inject: ['root'],
27 28 29 30 31 32 33 34 35 36 37
  props: ['model', 'codes']
}
</script>

<style scoped>
.title {
	color: rgba(0, 0, 0, 0.65);
	font-size: 14px;
  padding-bottom: 10px;
}
</style>