156 lines
4.1 KiB
Vue
156 lines
4.1 KiB
Vue
|
|
<template>
|
||
|
|
<div class="dialog" v-if="dialogVisible">
|
||
|
|
<div class="head_box">
|
||
|
|
<span class="title">{{ title }}</span>
|
||
|
|
<div>
|
||
|
|
<el-button size="small" @click="save" type="primary" :loading="loading">保存</el-button>
|
||
|
|
<el-button size="small" @click="close">关闭</el-button>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<div class="cntinfo">
|
||
|
|
<el-descriptions column="2" border>
|
||
|
|
<el-descriptions-item label="培训项目名称">{{ formData.xm }}</el-descriptions-item>
|
||
|
|
<el-descriptions-item label="考试时间">{{ formData.sfzh }}</el-descriptions-item>
|
||
|
|
<el-descriptions-item label="考试辖区">{{ formData.lxdh }}</el-descriptions-item>
|
||
|
|
<el-descriptions-item label="考试地址">{{ formData.jzdz }}</el-descriptions-item>
|
||
|
|
<el-descriptions-item label="监考民警">{{ formData.rzsj }}</el-descriptions-item>
|
||
|
|
<el-descriptions-item label="考试方式">{{ formData.ssbmdm }}</el-descriptions-item>
|
||
|
|
</el-descriptions>
|
||
|
|
|
||
|
|
<!-- <el-descriptions title="考试人员" column="2" border class="mt20"> -->
|
||
|
|
<div class="label">考试人员</div>
|
||
|
|
<MyTable :tableData="pageData.tableData" :tableColumn="pageData.tableColumn"
|
||
|
|
:key="pageData.keyCount" :tableConfiger="pageData.tableConfiger" :controlsWidth="pageData.controlsWidth"
|
||
|
|
>
|
||
|
|
<!-- 操作 -->
|
||
|
|
<template #controls="{ row }">
|
||
|
|
<el-link type="primary" @click="addEdit('updata', row)">上传成绩</el-link>
|
||
|
|
<el-link type="primary" @click="addEdit('view', row)">查看成绩</el-link>
|
||
|
|
</template>
|
||
|
|
</MyTable>
|
||
|
|
<!-- </el-descriptions> -->
|
||
|
|
|
||
|
|
<view-and-upload-dialog v-model="viewAndUploadVisible" />
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script setup>
|
||
|
|
import { ref, computed, reactive, getCurrentInstance } from 'vue'
|
||
|
|
import { qcckPost } from "@/api/qcckApi.js";
|
||
|
|
import MyTable from '@/components/aboutTable/MyTable.vue';
|
||
|
|
import viewAndUploadDialog from './viewAndUploadDialog.vue';
|
||
|
|
|
||
|
|
const { proxy } = getCurrentInstance()
|
||
|
|
const title = ref('保安线下考试详情')
|
||
|
|
const loading = ref(false)
|
||
|
|
const disabled = ref(false)
|
||
|
|
const FormRef = ref(null)
|
||
|
|
const viewAndUploadVisible = ref(true)
|
||
|
|
|
||
|
|
const props = defineProps({
|
||
|
|
modelValue: {
|
||
|
|
type: Boolean,
|
||
|
|
default: false
|
||
|
|
},
|
||
|
|
dic: {
|
||
|
|
type: Object,
|
||
|
|
default: () => ({})
|
||
|
|
}
|
||
|
|
})
|
||
|
|
|
||
|
|
const emits = defineEmits(['update:modelValue'])
|
||
|
|
|
||
|
|
const dialogVisible = computed({
|
||
|
|
get() {
|
||
|
|
return props.modelValue
|
||
|
|
},
|
||
|
|
set(val) {
|
||
|
|
emits('update:modelValue', val)
|
||
|
|
}
|
||
|
|
})
|
||
|
|
|
||
|
|
const pageData = reactive({
|
||
|
|
tableData: [{}],
|
||
|
|
keyCount: 0,
|
||
|
|
tableConfiger: {
|
||
|
|
rowHieght: 61,
|
||
|
|
showSelectType: "null",
|
||
|
|
loading: false
|
||
|
|
},
|
||
|
|
total: 0,
|
||
|
|
pageConfiger: {
|
||
|
|
pageSize: 10,
|
||
|
|
pageCurrent: 1
|
||
|
|
},
|
||
|
|
controlsWidth: 180,
|
||
|
|
tableColumn: [
|
||
|
|
{ label: "姓名", prop: "xm" },
|
||
|
|
{ label: "证件号码", prop: "sfzh" },
|
||
|
|
{ label: "联系方式", prop: "lxdh" },
|
||
|
|
{ label: "线上培训时间", prop: "sfzh" },
|
||
|
|
{ label: "线下培训课程", prop: "lxdh" },
|
||
|
|
{ label: "考试成绩", prop: "lxdh" },
|
||
|
|
]
|
||
|
|
});
|
||
|
|
|
||
|
|
const formData = ref({})
|
||
|
|
|
||
|
|
const close = () => {
|
||
|
|
dialogVisible.value = false
|
||
|
|
}
|
||
|
|
|
||
|
|
const open = (row = {}, type = 'add') => {
|
||
|
|
disabled.value = false
|
||
|
|
dialogVisible.value = true
|
||
|
|
formData.value = { ...row }
|
||
|
|
if (type === 'add') {
|
||
|
|
title.value = '新增从业人员'
|
||
|
|
} else if (type === 'edit') {
|
||
|
|
title.value = '编辑从业人员'
|
||
|
|
} else {
|
||
|
|
disabled.value = true
|
||
|
|
title.value = '查看详情'
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
const save = () => {
|
||
|
|
FormRef.value.submit(() => {
|
||
|
|
loading.value = true;
|
||
|
|
const url = !formData.value?.id ? `/mosty-base/baxx/cyry/add` : `/mosty-base/baxx/cyry/edit`;
|
||
|
|
qcckPost(formData.value, url).then(() => {
|
||
|
|
loading.value = false;
|
||
|
|
proxy.$message.success("保存成功");
|
||
|
|
emits("refresh");
|
||
|
|
close();
|
||
|
|
}).catch(() => {
|
||
|
|
loading.value = false;
|
||
|
|
})
|
||
|
|
});
|
||
|
|
}
|
||
|
|
|
||
|
|
defineExpose({ open })
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style lang="scss" scoped>
|
||
|
|
@import "@/assets/css/layout.scss";
|
||
|
|
|
||
|
|
.label {
|
||
|
|
margin-top: 20px;
|
||
|
|
color: #000;
|
||
|
|
}
|
||
|
|
|
||
|
|
.cntinfo {
|
||
|
|
padding: 2rem 12rem 0rem 12rem;
|
||
|
|
height: calc(100% - 70px);
|
||
|
|
overflow: hidden;
|
||
|
|
overflow-y: auto;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mapBox {
|
||
|
|
width: 100%;
|
||
|
|
height: 400px;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
</style>
|