a7e8641b by zrj

8.20 sjs

1 parent 3abc6e9b
......@@ -60,7 +60,12 @@
</el-table-column>
<el-table-column align="center" label="DATE OF ENTRY" prop="entryDate"/>
<el-table-column align="center" label="DATE OF DEPARTURE" prop="departureDate"/>
<el-table-column align="center" label="position" prop="position"/>
<el-table-column align="center" label="position" prop="position">
<template #default="scope">
<div v-if="scope.row.position=='other'">{{scope.row.remarks}}</div>
<div v-else>{{scope.row.position}}</div>
</template>
</el-table-column>
<el-table-column align="center" label="lastName" prop="lastName"/>
<el-table-column align="center" label="firstName" prop="fristName"/>
<el-table-column align="center" label="Gender" prop="sex">
......@@ -117,6 +122,7 @@ const open = (params) => {
form.value = {}
show.value = true
form.value = {...params}
console.log(form.value)
getMNAList()
}
defineExpose({
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!