Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
P
precision-effect
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
耿迪迪
precision-effect
Commits
851fa1cb
Commit
851fa1cb
authored
Jun 24, 2023
by
lizhichao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1.项目交易中心买方经办人重置意见时重置说明2.外部采购审核时间,记录时分秒
parent
4a27fbf4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
3 deletions
+11
-3
TPurchase.java
...tem/src/main/java/com/zehong/system/domain/TPurchase.java
+2
-2
Calculate.vue
...on-effect-web/src/views/purchase/components/Calculate.vue
+8
-1
Evaluate.vue
precision-effect-web/src/views/trade/components/Evaluate.vue
+1
-0
No files found.
precision-effect-system/src/main/java/com/zehong/system/domain/TPurchase.java
View file @
851fa1cb
...
...
@@ -105,8 +105,8 @@ public class TPurchase extends BaseEntity
private
String
purchaseStatus
;
/** 审核时间 */
@JsonFormat
(
pattern
=
"yyyy-MM-dd"
)
@Excel
(
name
=
"审核时间"
,
width
=
30
,
dateFormat
=
"yyyy-MM-dd"
)
@JsonFormat
(
pattern
=
"yyyy-MM-dd
HH:mm:ss
"
)
@Excel
(
name
=
"审核时间"
,
width
=
30
,
dateFormat
=
"yyyy-MM-dd
HH:mm:ss
"
)
private
Date
approvedTime
;
/**
...
...
precision-effect-web/src/views/purchase/components/Calculate.vue
View file @
851fa1cb
...
...
@@ -68,8 +68,15 @@
let
param
=
{...
this
.
purchaseData
};
param
.
purchaseStatus
=
this
.
purchaseStatus
;
param
.
approvedUserId
=
this
.
$store
.
state
.
user
.
userId
;
param
.
approvedTime
=
new
Dat
e
();
param
.
approvedTime
=
this
.
getNowTim
e
();
return
param
;
},
getNowTime
(){
var
date
=
new
Date
();
var
seperator
=
"-"
;
var
currentdate
=
date
.
getFullYear
()
+
seperator
+
date
.
getMonth
()
+
seperator
+
date
.
getDate
()
+
" "
+
date
.
getHours
()
+
":"
+
date
.
getMinutes
()
+
":"
+
date
.
getSeconds
();
console
.
log
(
currentdate
,
"currentdate"
)
return
currentdate
;
}
}
}
...
...
precision-effect-web/src/views/trade/components/Evaluate.vue
View file @
851fa1cb
...
...
@@ -84,6 +84,7 @@
this
.
price
=
""
;
this
.
socre
=
""
;
this
.
dealPrice
=
""
;
this
.
dealRemark
=
""
;
},
checkParam
(){
if
(
!
this
.
dealPrice
){
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment