|
@@ -100,6 +100,7 @@ export default {
|
|
// 查询参数
|
|
// 查询参数
|
|
queryParam: {},
|
|
queryParam: {},
|
|
extraQueryParam: {},
|
|
extraQueryParam: {},
|
|
|
|
+ changeMap: {},
|
|
// 表头
|
|
// 表头
|
|
columns: [
|
|
columns: [
|
|
{
|
|
{
|
|
@@ -125,7 +126,7 @@ export default {
|
|
title: '记录类型',
|
|
title: '记录类型',
|
|
dataIndex: 'changeType',
|
|
dataIndex: 'changeType',
|
|
customRender: (text, record, index) => {
|
|
customRender: (text, record, index) => {
|
|
- return this.BaseTool.Amount.formatter(text)
|
|
|
|
|
|
+ return this.changeMap[text]
|
|
}
|
|
}
|
|
},
|
|
},
|
|
{
|
|
{
|
|
@@ -178,6 +179,7 @@ export default {
|
|
},
|
|
},
|
|
created () {
|
|
created () {
|
|
// 下拉框map
|
|
// 下拉框map
|
|
|
|
+ this.changeMap = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.SB_CHANGE_LOG_TYPE)
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
tableOption () {
|
|
tableOption () {
|