Detp2.vue 4.24 KB
Newer Older
wuziqiang committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
<template>
  <div class="eibs-tab">
                              
	<c-col :span="12">
	    <span  v-text="model.detp.fenzhu"   data-path=".detp.fenzhu" > </span>
	</c-col>
                  
       <c-col :span="12">
        <el-form-item label="Partial Shipment" prop="dedgrp.rec.shppar">
            <c-select v-model="model.dedgrp.rec.shppar" style="width:100%" placeholder="请选择Partial Shipment">
              </c-select>
        </el-form-item>
       </c-col>
                  
	<c-col :span="12">
	    <span  v-text="model.detp.hwzydi"   data-path=".detp.hwzydi" > </span>
	</c-col>
                  
       <c-col :span="12">
        <el-form-item label="分期装运/提供服务" prop="dedgrp.rec.fqzytgfw">
            <c-select v-model="model.dedgrp.rec.fqzytgfw" style="width:100%" placeholder="请选择分期装运/提供服务">
              </c-select>
        </el-form-item>
       </c-col>
                                   
       <c-col :span="12">
        <el-form-item label="分期装运/提供服务" prop="dedgrp.rec.shpfro">
            <c-input type="textarea" v-model="model.dedgrp.rec.shpfro" maxlength="35" show-word-limit placeholder="请输入分期装运/提供服务" ></c-input>
        </el-form-item>
        </c-col>
                                   
       <c-col :span="12">
        <el-form-item label="分期时镧表" prop="dedgrp.rec.fqtime">
            <c-input type="textarea" v-model="model.dedgrp.rec.fqtime" maxlength="35" show-word-limit placeholder="请输入分期时镧表" ></c-input>
        </el-form-item>
        </c-col>
                                                    
       <c-col :span="12">
        <el-form-item label="货物运输或交货方式/服务方式" prop="dedgrp.rec.shpto">
            <c-input type="textarea" v-model="model.dedgrp.rec.shpto" maxlength="35" show-word-limit placeholder="请输入货物运输或交货方式/服务方式" ></c-input>
        </el-form-item>
        </c-col>
                  
       <c-col :span="12">
        <el-form-item label="运输方式" prop="dedgrp.rec.tratyp">
            <c-select v-model="model.dedgrp.rec.tratyp" style="width:100%" placeholder="请选择运输方式">
              </c-select>
        </el-form-item>
       </c-col>
                  
	<c-col :span="12">
	    <span  v-text="model.detp.sdysfs"   data-path=".detp.sdysfs" > </span>
	</c-col>
                  
       <c-col :span="12">
        <el-form-item label="输入运输方式" prop="dedgrp.rec.sdsrfs">
            <c-input type="textarea" v-model="model.dedgrp.rec.sdsrfs" maxlength="35" show-word-limit placeholder="请输入输入运输方式" ></c-input>
        </el-form-item>
        </c-col>
                                   
       <c-col :span="12">
        <el-form-item label="服务提供地点" prop="dedgrp.rec.shppro">
            <c-input type="textarea" v-model="model.dedgrp.rec.shppro" maxlength="35" show-word-limit placeholder="请输入服务提供地点" ></c-input>
        </el-form-item>
        </c-col>
                                   
       <c-col :span="12">
        <el-form-item label="合同编号" prop="dedgrp.rec.conno">
            <c-input  v-model="model.dedgrp.rec.conno" maxlength="35"  placeholder="请输入合同编号"></c-input>
        </el-form-item>
       </c-col>
                                   
       <c-col :span="12">
        <el-form-item label="合同币种" prop="dedgrp.rec.concur">
            <c-select v-model="model.dedgrp.rec.concur" style="width:100%" placeholder="请选择合同币种">
              </c-select>
        </el-form-item>
       </c-col>
                  
       <c-col :span="12">
        <el-form-item label="合同金额" prop="dedgrp.rec.conamt">
            <c-input  v-model="model.dedgrp.rec.conamt"  placeholder="请输入合同金额"></c-input>
        </el-form-item>
       </c-col>
  </div>
</template>
<script>
import Api from "~/service/Api"
wangren committed
89
import commonProcess from "~/mixin/commonProcess";
wuziqiang committed
90 91 92 93 94 95
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Detame/Event"

export default {
    inject: ['root'],
    props:["model","codes"],
wangren committed
96
    mixins: [commonProcess],
wuziqiang committed
97 98 99 100 101 102 103 104 105 106 107 108 109 110
    data(){
        return {

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

    }
}
</script>
<style>

</style>