szx-1087需求

This commit is contained in:
sunhonglai
2025-05-07 10:35:51 +08:00
parent 93ba27d1fe
commit da7dca34a1
3 changed files with 14 additions and 3 deletions

View File

@@ -409,6 +409,13 @@ export default {
key: 'updateName',
ellipsis: true, align: "center",
width: 120,
customRender: (value) => {
return (
<div>
{ value.record.updateName || '-' }
</div>
)
}
},
])
//晋级记录列表数据

View File

@@ -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'])