th.vue 1.56 KB
<template>
  <dialogBox title="转出" @submitForm="submitForm" :saveloding="saveloding" saveButton="确认转出" width="45%" 
    height='30%' @closeDialog="closeDialog" v-model="value">
    <div class="from-clues">
      <!-- 表单部分 -->
      <div class="from-clues-header">
        <lb-table :column="columns" border :key="key" :heightNum="390"  :pagination="false" heightNumSetting
        :data="tableData">
      </lb-table>
        <el-form :model="queryForm" ref="queryForm" label-width="120px">
              <el-form-item label="退回意见:">
                <el-input type="textarea" v-model="queryForm.shyj"></el-input>
              </el-form-item>
        </el-form>
      </div>
    </div>
  </dialogBox>
</template>

<script>
   import { completeTask } from "@/api/fqsq.js"
export default {
  components: {
  },
  props: {
    value: { type: Boolean, default: false },
    queryForm:{type:Object,default:false}
  },
  data () {
    return {
      saveloding:false,
      columns:[
      {
        label: '',
        align: 'center',
        render: (h, scope) => {
          return  <el-radio-group> <el-radio label="3">备选项</el-radio></el-radio-group>
        }
      },
      {
        prop: "thhjmc",
        label: "退回环节名称",
      },
      {
        prop: "blr",
        label: "办理人",
      },
     
    ],
      tableData:[],
      radio:3
    }
  },
  methods: {
    submitForm () {
    
    },
    closeDialog () {
      this.$emit("input", false);
    },
  }
}
</script>
<style scoped lang="scss">
@import "~@/styles/mixin.scss";

</style>