|
|
@@ -20,7 +20,7 @@ module.exports = app => {
|
|
|
if (existingRecord.status === 0) {
|
|
|
await conn.update(this.tableName, {
|
|
|
status: 1,
|
|
|
- create_time: this.app.formatDate(new Date())
|
|
|
+ create_time: new Date()
|
|
|
}, {
|
|
|
where: {
|
|
|
id: existingRecord.id
|
|
|
@@ -32,7 +32,7 @@ module.exports = app => {
|
|
|
project_account_id: userId,
|
|
|
tender_id: tenderId,
|
|
|
status: 1,
|
|
|
- create_time: this.app.formatDate(new Date())
|
|
|
+ create_time: new Date()
|
|
|
});
|
|
|
}
|
|
|
}
|