jinhui.wang

时间格式修正,文本修正

...@@ -602,7 +602,7 @@ export default { ...@@ -602,7 +602,7 @@ export default {
602 created() { 602 created() {
603 //查询条件数据源 603 //查询条件数据源
604 let date = new Date() 604 let date = new Date()
605 - this.queryParams.fltDateStart = `${date.getFullYear()}-${(date.getMonth() + 1).length > 1 ? (date.getMonth() + 1) : '0' + (date.getMonth() + 1)}-${date.getDate()}` 605 + this.queryParams.fltDateStart = `${date.getFullYear()}-${(date.getMonth() + 1).length > 1 ? (date.getMonth() + 1) : '0' + (date.getMonth() + 1)}-${date.getDate().lenght > 1 ? date.getDate() : '0' + date.getDate()}`
606 this.findFltConditionData(); 606 this.findFltConditionData();
607 if (this.$store.state.tagsView.cachedViews.length == 0) { 607 if (this.$store.state.tagsView.cachedViews.length == 0) {
608 this.findAllFltData(); 608 this.findAllFltData();
......
...@@ -395,7 +395,7 @@ export default { ...@@ -395,7 +395,7 @@ export default {
395 disabled: true 395 disabled: true
396 }, 396 },
397 { 397 {
398 - name: "AccsPool", 398 + name: "ACCSpool",
399 value: "accsPool", 399 value: "accsPool",
400 width: "120", 400 width: "120",
401 align: "center", 401 align: "center",
...@@ -664,7 +664,7 @@ export default { ...@@ -664,7 +664,7 @@ export default {
664 }, 664 },
665 { 665 {
666 type: "", 666 type: "",
667 - name: "accsPool", 667 + name: "ACCSpool",
668 value: "accsPool", 668 value: "accsPool",
669 width: "", 669 width: "",
670 align: "center", 670 align: "center",
...@@ -819,7 +819,7 @@ export default { ...@@ -819,7 +819,7 @@ export default {
819 val === item.id ? item.msg = item.msg + '操作成功,正在释放中。' : '' 819 val === item.id ? item.msg = item.msg + '操作成功,正在释放中。' : ''
820 }) 820 })
821 res.data['accsPoolFlase'].map(val => { 821 res.data['accsPoolFlase'].map(val => {
822 - val === item.id ? item.msg = item.msg + 'accs pool状态不正确。' : '' 822 + val === item.id ? item.msg = item.msg + '推送状态/ACCSpool不正确。' : ''
823 }) 823 })
824 res.data['existReleasing'].map(val => { 824 res.data['existReleasing'].map(val => {
825 val === item.id ? item.msg = item.msg + '已经在释放,请勿重复释放。' : '' 825 val === item.id ? item.msg = item.msg + '已经在释放,请勿重复释放。' : ''
......