mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-09 02:46:45 +08:00
szx-1087需求
This commit is contained in:
@@ -409,6 +409,13 @@ export default {
|
||||
key: 'updateName',
|
||||
ellipsis: true, align: "center",
|
||||
width: 120,
|
||||
customRender: (value) => {
|
||||
return (
|
||||
<div>
|
||||
{ value.record.updateName || '-' }
|
||||
</div>
|
||||
)
|
||||
}
|
||||
},
|
||||
])
|
||||
//晋级记录列表数据
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
:disabled="disabled"
|
||||
v-model:value="selectData"
|
||||
style="width: 100%"
|
||||
placeholder="请查询姓名或工号"
|
||||
placeholder="placeholder"
|
||||
:options="isOpen?options:selectOptions"
|
||||
:filter-option="false"
|
||||
showSearch
|
||||
@@ -117,6 +117,10 @@ const props = defineProps({
|
||||
lecturer: {
|
||||
type: Boolean,
|
||||
default: false,
|
||||
},
|
||||
placeholder: {
|
||||
type: String,
|
||||
default: '请查询姓名或工号'
|
||||
}
|
||||
})
|
||||
const emit = defineEmits(['update:value','update:lable','update:system','update:level','update:newlable','update:orgId','update:id','update:payrollPlaceCode','update:payrollPlaceName'])
|
||||
|
||||
@@ -90,7 +90,7 @@
|
||||
</template>
|
||||
<template v-if="column.key === 'operation'">
|
||||
<a-space>
|
||||
<a-button type="link" @click="() => handleLook(record, String(record.courseform))">查看</a-button>
|
||||
<a-button v-if="record.certStatus === 1" type="link" @click="() => handleLook(record, String(record.courseform))">查看</a-button>
|
||||
|
||||
<a-button
|
||||
v-if="(record.isPermission === 'true' || record.isSuperPermission === 'true') && checkMenu('lecturerEdit')"
|
||||
@@ -175,7 +175,7 @@
|
||||
<!-- TODO GX01 -->
|
||||
<SearchTeacher @tlevel="teacherTlevel" :lecturer="true" :disabled="!!id"
|
||||
v-model:value="formParam.name" v-model:lable="formParam.orgNames" v-model:orgId="formParam.orgId"
|
||||
v-model:id="formParam.id" v-model:system="tSystemNames" v-model:level="formParam.tlevelId">
|
||||
v-model:id="formParam.id" v-model:system="tSystemNames" v-model:level="formParam.tlevelId" placeholder="请查询姓名或工号(只可查询非讲师人员)">
|
||||
</SearchTeacher>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
|
||||
Reference in New Issue
Block a user