|
@@ -66,10 +66,10 @@ var vm = new Vue({
|
|
|
}
|
|
|
},
|
|
|
created: function () {
|
|
|
- var _this = this
|
|
|
this.years = new Date().getFullYear()
|
|
|
this.months = parseInt(new Date().getMonth() + 1)
|
|
|
this.dValue = this.years + '年' + this.months + '月'
|
|
|
+ this.curDate = new Date()
|
|
|
this.subPoint()
|
|
|
this.onLoad()
|
|
|
},
|
|
@@ -125,7 +125,7 @@ var vm = new Vue({
|
|
|
abbr: getShortName(v.company_name),
|
|
|
color: _this.statusColors[Math.floor(Math.random() * _this.statusColors.length)],
|
|
|
legal: v.legal_person,
|
|
|
- money: parseInt(v.capital),
|
|
|
+ money: v.capital,
|
|
|
address: v.company_address,
|
|
|
_id: v.id,
|
|
|
status: _this.statusEnum.indexOf(v.company_status) || 0,
|