费用推送代码修正
This commit is contained in:
parent
447382eefe
commit
a160f15625
|
|
@ -180,7 +180,7 @@ export default {
|
|||
projectId: null,
|
||||
agreementId: '',
|
||||
agreementCode: '',
|
||||
month: new Date().getFullYear() + '-' + (new Date().getMonth() + 1),
|
||||
month: new Date().getFullYear() + '-' + String(new Date().getMonth() + 1).padStart(2, '0'),
|
||||
isSend: null
|
||||
},
|
||||
unitList: [], // 单位
|
||||
|
|
|
|||
|
|
@ -201,7 +201,7 @@ export default {
|
|||
projectId: null,
|
||||
agreementId: '',
|
||||
agreementCode: '',
|
||||
month: new Date().getFullYear() + '-' + (new Date().getMonth() + 1),
|
||||
month: new Date().getFullYear() + '-' + String(new Date().getMonth() + 1).padStart(2, '0'),
|
||||
isSend: null
|
||||
},
|
||||
unitList: [], // 单位
|
||||
|
|
|
|||
Loading…
Reference in New Issue