|
|
@@ -224,11 +224,11 @@ export default {
|
|
|
search: true,
|
|
|
overHidden: true,
|
|
|
},
|
|
|
- {
|
|
|
- label: "申请人",
|
|
|
- prop: "createUserName",
|
|
|
- overHidden: true,
|
|
|
- },
|
|
|
+ // {
|
|
|
+ // label: "申请人",
|
|
|
+ // prop: "createUserName",
|
|
|
+ // overHidden: true,
|
|
|
+ // },
|
|
|
{
|
|
|
label: "结算日期",
|
|
|
prop: "billDate",
|
|
|
@@ -345,6 +345,22 @@ export default {
|
|
|
overHidden: true,
|
|
|
},
|
|
|
{
|
|
|
+ label: "结算人",
|
|
|
+ prop: "createUserName",
|
|
|
+ width: "100",
|
|
|
+ search: false,
|
|
|
+ hide: true,
|
|
|
+ overHidden: true,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: "核销人",
|
|
|
+ prop: "createUserNames",
|
|
|
+ width: "100",
|
|
|
+ search: true,
|
|
|
+ hide: false,
|
|
|
+ overHidden: true,
|
|
|
+ },
|
|
|
+ {
|
|
|
label: "JOB NO",
|
|
|
prop: "businessNo",
|
|
|
width: "120",
|
|
|
@@ -383,6 +399,26 @@ export default {
|
|
|
overHidden: true
|
|
|
},
|
|
|
{
|
|
|
+ label: "发票汇率",
|
|
|
+ prop: "exrate",
|
|
|
+ overHidden: true,
|
|
|
+ hide: true,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: "是否转人民币",
|
|
|
+ prop: "isExchangeToCny",
|
|
|
+ overHidden: true,
|
|
|
+ hide: true,
|
|
|
+ width: "100",
|
|
|
+ dicData: [{
|
|
|
+ label: '否',
|
|
|
+ value: '0'
|
|
|
+ }, {
|
|
|
+ label: '是',
|
|
|
+ value: '1'
|
|
|
+ }]
|
|
|
+ },
|
|
|
+ {
|
|
|
label: "本币",
|
|
|
prop: "amountSub",
|
|
|
overHidden: true,
|
|
|
@@ -592,7 +628,29 @@ export default {
|
|
|
},
|
|
|
// tabs 切换
|
|
|
handleClick() {
|
|
|
- if (this.tabsValue == 'D') {
|
|
|
+ if (this.tabsValue == 'C') {
|
|
|
+ this.findObject(this.option.column, "createUserName").hide = true
|
|
|
+ this.findObject(this.option.column, "createUserName").search = false
|
|
|
+ this.findObject(this.option.column, "createUserNames").hide = false
|
|
|
+ this.findObject(this.option.column, "createUserNames").search = true
|
|
|
+ this.findObject(this.option.column, "exrate").hide = true
|
|
|
+ this.findObject(this.option.column, "isExchangeToCny").hide = true
|
|
|
+ this.findObject(this.option.column, "invCorpCnName").hide = true
|
|
|
+ this.findObject(this.option.column, "type").hide = true
|
|
|
+ this.findObject(this.option.column, "businessType").hide = false
|
|
|
+ this.findObject(this.option.column, "billDateStart").search = true
|
|
|
+ this.findObject(this.option.column, "billDateEnd").search = true
|
|
|
+ this.findObject(this.option.column, "businessDateStart").search = true
|
|
|
+ this.findObject(this.option.column, "businessDateEnd").search = true
|
|
|
+ this.findObject(this.option.column, "invoiceDateStart").search = false
|
|
|
+ this.findObject(this.option.column, "invoiceDateEnd").search = false
|
|
|
+ } else if (this.tabsValue == 'D') {
|
|
|
+ this.findObject(this.option.column, "createUserName").hide = false
|
|
|
+ this.findObject(this.option.column, "createUserName").search = true
|
|
|
+ this.findObject(this.option.column, "createUserNames").hide = true
|
|
|
+ this.findObject(this.option.column, "createUserNames").search = false
|
|
|
+ this.findObject(this.option.column, "exrate").hide = false
|
|
|
+ this.findObject(this.option.column, "isExchangeToCny").hide = false
|
|
|
this.findObject(this.option.column, "invCorpCnName").hide = false
|
|
|
this.findObject(this.option.column, "type").hide = false
|
|
|
this.findObject(this.option.column, "businessType").hide = true
|
|
|
@@ -602,9 +660,11 @@ export default {
|
|
|
this.findObject(this.option.column, "businessDateEnd").search = false
|
|
|
this.findObject(this.option.column, "invoiceDateStart").search = true
|
|
|
this.findObject(this.option.column, "invoiceDateEnd").search = true
|
|
|
-
|
|
|
-
|
|
|
} else {
|
|
|
+ this.findObject(this.option.column, "createUserName").hide = false
|
|
|
+ this.findObject(this.option.column, "createUserName").search = true
|
|
|
+ this.findObject(this.option.column, "createUserNames").hide = false
|
|
|
+ this.findObject(this.option.column, "createUserNames").search = true
|
|
|
this.findObject(this.option.column, "invCorpCnName").hide = true
|
|
|
this.findObject(this.option.column, "type").hide = true
|
|
|
this.findObject(this.option.column, "businessType").hide = false
|