Cfap.vue 1.77 KB
Newer Older
lianyang committed
1 2
<template>
  <div class="eibs-tab">
lianyang committed
3 4 5 6

    <c-col :span="12">
      <el-form-item label="数据采集标志" prop="cfabrt.cfaflg">
        <c-select v-model="model.cfabrt.cfaflg" style="width:100%" placeholder="请选择数据采集标志"
7 8
        :code="codes.cfaflg"
        @change="eventFunction('cfabrt.cfaflg')">
lianyang committed
9 10 11 12 13
        </c-select>
      </el-form-item>
    </c-col>

    <c-col :span="5" :offset="2">
14
      <c-checkbox v-model="model.cfabrt.basflg" disabled>签约信息</c-checkbox>
lianyang committed
15 16 17
    </c-col>

    <c-col :span="5">
18
      <c-checkbox v-model="model.cfabrt.dclflg" disabled>变动信息</c-checkbox>
lianyang committed
19 20 21 22 23
    </c-col>

    <c-col :span="24">
      <el-form-item label="地区机构号" prop="cfabrt.ownextkey">
        <c-select v-model="model.cfabrt.ownextkey" style="width:100%" placeholder="请选择地区机构号"
24
        :code="codes.ownextkey1" :disabled="model.cfabrt.cfatyp!='A'">
lianyang committed
25 26 27 28 29
        </c-select>
      </el-form-item>
    </c-col>

    <c-col :span="24">
30
      <el-form-item label="不报送原因" prop="cfabrt.cfabrttxt">
lianyang committed
31 32
        <!-- <c-select v-model="model.cfabrt.cfabrttxt" style="width:100%" placeholder="请选择不报送原因">
        </c-select> -->
33 34 35 36
        <c-select v-model="model.cfabrt.cfabrttxt" style="width:100%" placeholder="" 
        :disabled="model.cfabrt.cfaflg!=4"
        :code="codes.cfabrttxt">
        </c-select>
lianyang committed
37 38
      </el-form-item>
    </c-col>
lianyang committed
39 40 41 42 43 44 45 46 47
  </div>
</template>
<script>
import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Brtudp/Event"

export default {
lianyang committed
48 49 50 51 52
  inject: ['root'],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
    return {
lianyang committed
53 54

    }
lianyang committed
55 56 57 58 59
  },
  methods: { ...Event },
  created: function () {

  }
lianyang committed
60 61 62 63
}
</script>
<style>
</style>