Selection.vue 1.76 KB
Newer Older
Wuyuqiu committed
1 2
<template>
  <div class="eibs-tab">
3 4 5 6 7 8 9 10 11
    <!-- ======================= 左边 ========================= -->
    <c-col :span="12" style="padding-right: 20px">
      <c-col :span="24">
        <el-form-item label="收付汇日期" prop="ctlmod.dbl.reldat">
          <c-date-picker
            type="date"
            v-model="model.ctlmod.dbl.reldat"
            style="width: 100%"
            placeholder="请选择收付汇日期"
12
            disabled
13
          ></c-date-picker>
Wuyuqiu committed
14
        </el-form-item>
15 16 17 18 19 20
      </c-col>
       <c-col :span="24">
        <el-form-item label="请选择接口数据" prop="bopbut.basflg" class="checkbox-left"> 
          <c-checkbox
                disabled :checked="true"
                v-model="model.bopbut.basflg"
21
                >基础信息</c-checkbox
22
              >
Wuyuqiu committed
23
        </el-form-item>
24 25 26 27 28 29 30 31 32 33 34
      </c-col>
    </c-col>
    <!-- ======================= 右边 ========================= -->
    <c-col :span="12" style="padding-left: 20px">
      <c-col :span="24">
          <el-form-item label="款项去向" prop="bopbut.acttyp">
            <c-select
              v-model="model.bopbut.acttyp"
              style="width: 100%"
              placeholder="请选择款项去向"
              :code="codes.acttyp"
35
              disabled
36 37 38 39 40
            >
            </c-select>
          </el-form-item>
      </c-col>
    </c-col>
Wuyuqiu committed
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
  </div>
</template>
<script>
import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Dbcdel/Event"

export default {
    inject: ['root'],
    props:["model","codes"],
    mixins: [commonProcess],
    data(){
        return {

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

    }
}
</script>
<style>

</style>