Commit 456c3375 authored by 耿迪迪's avatar 耿迪迪
parents 3a256255 67a15ef9
......@@ -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>
......
......@@ -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;
}
}
......
......@@ -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="买方"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment