Commit 563d1d4982e96f3bd707313b1579875086c655f5

Authored by 郭娟
1 parent e8945892
Exists in charge

fix:优化拜访收费中详情页面展示财务审批类型字段

Showing 1 changed file with 8 additions and 0 deletions   Show diff stats
pages/charge/visitsAndFees/detail.vue
... ... @@ -232,8 +232,16 @@
232 232 }
233 233 this.bfDataList = this.$assignValues(this.objData, this.bfDataList);
234 234 // console.log("拜访信息",this.bfDataList);
  235 + // console.log('打印this.objData',this.objData);
235 236 this.jcrDataList = this.$assignValues(this.objData, this.jcrDataList);
236 237 this.sfDataList = this.$assignValues(this.objData, this.sfDataList);
  238 + if(this.objData.invoiceYearType){
  239 + this.sfDataList.push({
  240 + name: "财务审批类型",
  241 + value: this.objData.invoiceYearType,
  242 + key: "invoiceYearType"
  243 + })
  244 + }
237 245 // console.log("收费信息", this.sfDataList);
238 246 this.dataList.map(item => {
239 247 if (item.key === 'address') {
... ...