Selection.vue 1.78 KB
Newer Older
Wuyuqiu committed
1 2
<template>
  <div class="eibs-tab">
3 4 5 6 7 8 9 10 11 12 13
    <!-- ======================= 左边 ========================= -->
    <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="请选择收付汇日期"
            disabled
          ></c-date-picker>
Wuyuqiu committed
14
        </el-form-item>
15 16
      </c-col>
       <c-col :span="24">
17
        <el-form-item label="请选择需要修改的接口数据" prop="bopbut.basflg" class="checkbox-left"> 
18 19 20
          <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
      </c-col>
    </c-col>
    <!-- ======================= 右边 ========================= -->
    <c-col :span="12" style="padding-left: 20px">
      <c-col :span="24">
29
          <el-form-item label="款项来源" prop="bopbut.acttyp">
30 31 32
            <c-select
              v-model="model.bopbut.acttyp"
              style="width: 100%"
33
              placeholder="请选择款项来源"
34 35 36 37 38 39 40
              :code="codes.acttyp"
              disabled
            >
            </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/Dbdame/Event"

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

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

    }
}
</script>
<style>

</style>
67