You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
78 lines
1.7 KiB
78 lines
1.7 KiB
<!--
|
|
@ 作者: 鲁智强
|
|
@ 时间: 2023-08-15 11:34:38
|
|
@ 备注:
|
|
-->
|
|
<template>
|
|
<el-dialog :model-value="true" title="执行人" @close="handleClose">
|
|
<el-table :data="tablea" label-width="120px" class="demo-ruleForm" style="width:100%">
|
|
<el-table-column label="照片">
|
|
<template #default="scope">
|
|
<el-image style="width: 100px; height: 100px" :src="scope.row.icon"/>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column prop="name" label="姓名"/>
|
|
<el-table-column prop="number" label="工号"/>
|
|
<el-table-column prop="department" label="行政组织"/>
|
|
</el-table>
|
|
</el-dialog>
|
|
</template>
|
|
<script lang="ts" setup>
|
|
import { reactive } from "vue"
|
|
import {get_runman } from '@/api/opk/zxy/news/api'
|
|
|
|
const isshow = ref(false)
|
|
const props= defineProps( {
|
|
title: {
|
|
type: String,
|
|
default: "",
|
|
},
|
|
xdPostBox: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
rowInfo: {
|
|
type: Object,
|
|
default() {
|
|
return {};
|
|
},
|
|
},
|
|
arrayNum: {
|
|
type: Number,
|
|
default: 0,
|
|
},
|
|
});
|
|
const orgTreeProps ={
|
|
label: 'name',
|
|
}
|
|
const orgTreeProp = {
|
|
label:'title',
|
|
children:'children'
|
|
}
|
|
|
|
const emit = defineEmits(["update:xdPostBox","editRow","addRow"])
|
|
const formData = reactive({
|
|
deaprtname:"",
|
|
year:"",
|
|
asd:[] as string[],
|
|
})
|
|
const tablea = ref<any>([])
|
|
function ge_adds(){
|
|
const yui = props.rowInfo.targetid
|
|
get_runman({id:yui,level:1,orgid:props.rowInfo.orgid,posid:"",type:1})
|
|
.then((data) => {
|
|
tablea.value = data.data;
|
|
}).finally(()=>{
|
|
isshow.value = false
|
|
})
|
|
}
|
|
ge_adds()
|
|
// 关闭弹窗
|
|
const handleClose = ()=> {
|
|
emit("update:xdPostBox", false);
|
|
}
|
|
onMounted(()=>{
|
|
Object.assign(formData,props.rowInfo);
|
|
})
|
|
</script>
|
|
|