Commit ccb5818f authored by jingnan's avatar jingnan 👀

Merge branch 'dev' of http://94.191.100.41/tfmom/tf-mom-web into dev

parents cafd5a3a 3e94494a
...@@ -213,6 +213,28 @@ export default { ...@@ -213,6 +213,28 @@ export default {
} }
var zoomConfig = { var zoomConfig = {
levels: [ levels: [
[
{
unit: 'month',
// step: 1,
format: function(date) {
var month =
(new Date(date).getFullYear() - 2007) * 12 +
new Date(date).getMonth() +
1
return month + '月' // ganttAg.date.getWeek(date)
}
},
{
unit: 'week',
format: function(date) {
var newDate = new Date(date)
var oldDate = new Date('2007/01/01')
var days = (newDate - oldDate) / (1 * 24 * 60 * 60 * 7 * 1000)
return Math.ceil(days + 1) + '周' // ganttAss.date.getWeek(date)
}
}
],
[ [
{ {
unit: 'week', unit: 'week',
...@@ -247,29 +269,6 @@ export default { ...@@ -247,29 +269,6 @@ export default {
unit: 'hour', unit: 'hour',
format: '%H' format: '%H'
} }
],
[
{
unit: 'month',
// step: 1,
format: function(date) {
var month =
(new Date(date).getFullYear() - 2007) * 12 +
new Date(date).getMonth() +
1
return month + '月' // ganttAg.date.getWeek(date)
}
},
{
unit: 'week',
format: function(date) {
var newDate = new Date(date)
var oldDate = new Date('2007/01/01')
var days = (newDate - oldDate) / (1 * 24 * 60 * 60 * 7 * 1000)
return Math.ceil(days + 1) + '周' // ganttAss.date.getWeek(date)
}
}
] ]
], ],
startDate: new Date('2007/01/01'), startDate: new Date('2007/01/01'),
......
...@@ -461,12 +461,12 @@ export default { ...@@ -461,12 +461,12 @@ export default {
this.searchFormData.aoName = '' this.searchFormData.aoName = ''
this.searchFormData.actualEnd = '' this.searchFormData.actualEnd = ''
this.activeName = tab.index this.activeName = tab.index
this.groupPage = 1
this.groupTotal = 0
this.groupDropList = []
this.getGroupList()
if (this.activeName === '1') { if (this.activeName === '1') {
this.defaultPercent = 100 this.defaultPercent = 100
this.groupPage = 1
this.groupTotal = 0
this.groupDropList = []
this.getGroupList()
} else { } else {
this.defaultPercent = 80 this.defaultPercent = 80
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment