|
@@ -519,7 +519,7 @@ export default {
|
|
getMonthDate() {
|
|
getMonthDate() {
|
|
var time = new Date();
|
|
var time = new Date();
|
|
var year = time.getFullYear();
|
|
var year = time.getFullYear();
|
|
- var month = time.getMonth();
|
|
|
|
|
|
+ var month = time.getMonth() + 1;
|
|
if (month > 9) {
|
|
if (month > 9) {
|
|
this.shipDate.endMonth = year + "-" + month
|
|
this.shipDate.endMonth = year + "-" + month
|
|
} else if (month > 0) {
|
|
} else if (month > 0) {
|