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
456c3375
Commit
456c3375
authored
Jun 13, 2023
by
耿迪迪
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://111.61.77.35:9999/gengdidi/precision-effect
parents
3a256255
67a15ef9
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
4 deletions
+8
-4
TTradeProjectMapper.xml
...rc/main/resources/mapper/business/TTradeProjectMapper.xml
+2
-1
Evaluate.vue
precision-effect-web/src/views/trade/components/Evaluate.vue
+4
-2
TableList.vue
...ision-effect-web/src/views/trade/components/TableList.vue
+2
-1
No files found.
precision-effect-system/src/main/resources/mapper/business/TTradeProjectMapper.xml
View file @
456c3375
...
...
@@ -186,7 +186,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if
test=
"tradePrice != null"
>
trade_price = #{tradePrice},
</if>
<if
test=
"tradeCount != null"
>
trade_count = #{tradeCount},
</if>
<if
test=
"tradeTotal != null"
>
trade_total = #{tradeTotal},
</if>
<if
test=
"tradeScore != null"
>
trade_score = #{tradeScore},
</if>
<if
test=
"tradeScore != null and tradeScore!=-1"
>
trade_score = #{tradeScore},
</if>
<if
test=
"tradeScore == -1"
>
trade_score = null,
</if>
<if
test=
"tradeDeptManagerId != null"
>
trade_dept_manager_id = #{tradeDeptManagerId},
</if>
<if
test=
"settlementTime != null"
>
settlement_time = #{settlementTime},
</if>
<if
test=
"dealPrice != null"
>
deal_price = #{dealPrice},
</if>
...
...
precision-effect-web/src/views/trade/components/Evaluate.vue
View file @
456c3375
...
...
@@ -94,9 +94,11 @@
},
submitSuggestion
(){
let
param
=
{
tradeId
:
this
.
tradeData
.
tradeId
,
tradeStatus
:
"1"
,
dealPrice
:
this
.
dealPrice
,
dealRemark
:
this
.
dealRemark
};
//
if(this.socre){
if
(
this
.
socre
){
param
.
tradeScore
=
this
.
socre
;
// }
}
else
{
param
.
tradeScore
=
-
1
;
}
return
param
;
}
}
...
...
precision-effect-web/src/views/trade/components/TableList.vue
View file @
456c3375
...
...
@@ -15,13 +15,14 @@
:formatter=
"getTradeStatus"
:show-overflow-tooltip=
"true"
/>
<el-table-column
label=
"申请人"
align=
"center"
prop=
"applyName"
/>
<el-table-column
label=
"卖方"
align=
"center"
prop=
"applyDeptName"
:show-overflow-tooltip=
"true"
/>
<el-table-column
label=
"申请人"
align=
"center"
prop=
"applyName"
/>
<el-table-column
label=
"申请时间"
align=
"center"
prop=
"createTime"
width=
"150px"
/>
<el-table-column
label=
"申报总价"
align=
"center"
prop=
"tradeTotal"
/>
<el-table-column
label=
"买方"
...
...
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