Commit 70737448 by yuzhenWang

薪资单--银行加name

parent 005a8c87
......@@ -123,7 +123,7 @@ export function electronicExport(data) {
return request({
url: '/csf/api/salary/salary/export',
method: 'post',
data: data,
data: data
})
}
......
......@@ -292,7 +292,11 @@ const salaryTableColumns = ref([
requestParams: { pageNo: 1, pageSize: 20 }, // 固定参数
// 远程搜索配置
filterable: true,
keywordField: 'queryContent'
keywordField: 'queryContent',
onChangeExtraFields: {
bank1Name: 'bankName'
}
// debounceWait: 300
},
{
......@@ -347,7 +351,10 @@ const salaryTableColumns = ref([
requestParams: { pageNo: 1, pageSize: 20 }, // 固定参数
// 远程搜索配置
filterable: true,
keywordField: 'queryContent'
keywordField: 'queryContent',
onChangeExtraFields: {
bank2Name: 'bankName'
}
// debounceWait: 300
},
{
......@@ -404,7 +411,10 @@ const bankTableColumns = ref([
requestParams: { pageNo: 1, pageSize: 20 }, // 固定参数
// 远程搜索配置
filterable: true,
keywordField: 'queryContent'
keywordField: 'queryContent',
onChangeExtraFields: {
bankName: 'bankName' // 将选项原始对象的 broker 字段赋值给行数据的 brokerName
}
// debounceWait: 300
},
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment