leadership-participant.vue 1.25 KB
Newer Older
wangcong 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
<template>
  <Form ref="formInline">
    <FormItem prop="user" label="选择领导:" :label-width="100">
      <Select v-model="formData">
        <Option v-for="option in optionList" :key="option.value" :value="option.value">
          {{option.label}}
        </Option>
      </Select>
    </FormItem>
    
  </Form>
</template>

<script>
import BaseDataSelect from './baseDataSelect'

export default {
  components: {
    BaseDataSelect,
  },
  props: {
    checkedList: { type: Object, default: {} },
    bizAttr: { type: Object },
  },
  data() {
    return {
      formData: this.checkedList,
      optionList: [
        {
          value: 'FCZ',
          label: '副处长',
        },
        {
          value: 'ZCZ',
          label: '正处长',
        },
        {
          value: 'BMLSFZR',
          label: '部门临时负责人',
        },
        {
          value: 'ZDLD',
          label: '总队领导',
        },
        {
          value: 'FGTLD',
          label: '分管厅领导',
        },
        {
          value: 'TLD',
          label: '厅领导',
        },
      ],
    }
  },
  mounted() {
    console.log(111111111111111111, this.bizAttr)
  },
  methods: {
    handleBasedataChange() {
      
    }
  },
};
</script>

<style>
</style>