解决服务指令各类型回显的名称跟业务不一致
This commit is contained in:
parent
7a876f6b7f
commit
70043c3917
|
|
@ -4,7 +4,7 @@ export const columns: BasicColumn[] = [
|
|||
{
|
||||
title: '分类标签',
|
||||
align: 'center',
|
||||
dataIndex: 'instructionTagId_dictText',
|
||||
dataIndex: 'instructionName',
|
||||
customCell: (record, index, column) => {
|
||||
if (record.instructionRowSpan != null) {
|
||||
return { rowSpan: record.instructionRowSpan };
|
||||
|
|
@ -14,7 +14,7 @@ export const columns: BasicColumn[] = [
|
|||
{
|
||||
title: '服务类别',
|
||||
align: 'center',
|
||||
dataIndex: 'categoryId_dictText',
|
||||
dataIndex: 'categoryName',
|
||||
customCell: (record, index, column) => {
|
||||
if (record.categoryRowSpan != null) {
|
||||
return { rowSpan: record.categoryRowSpan };
|
||||
|
|
@ -24,7 +24,7 @@ export const columns: BasicColumn[] = [
|
|||
{
|
||||
title: '服务类型',
|
||||
align: 'center',
|
||||
dataIndex: 'typeId_dictText',
|
||||
dataIndex: 'typeName',
|
||||
customCell: (record, index, column) => {
|
||||
if (record.typeRowSpan != null) {
|
||||
return { rowSpan: record.typeRowSpan };
|
||||
|
|
|
|||
|
|
@ -160,6 +160,7 @@ function searchReset() {
|
|||
function init(record) {
|
||||
queryParam.queryIds = record.queryIds
|
||||
queryParam.dataSourceCode = record.orgCode;
|
||||
console.log("🌊 ~ init ~ queryParam:", queryParam)
|
||||
sourceOrgName.value = record.sourceOrgName
|
||||
targetOrgName.value = record.targetOrgName
|
||||
reload();
|
||||
|
|
|
|||
Loading…
Reference in New Issue