Commit 83f5166b authored by 黄奎's avatar 黄奎

页面修改

parent b2260a4b
......@@ -433,7 +433,7 @@
地接成本<br />(人民币)
</td>
<td colspan="2">
成本<br />[地接成本(人民币)+其它成本(人民币)小计]
成本<br />[地接成本(人民币)+其它成本(人民币)小计+单地接]
</td>
<td>
同业销售价格
......
......@@ -341,7 +341,7 @@
地接成本<br />(人民币)
</td>
<td colspan="2">
成本<br />[地接成本(人民币)+其它成本(人民币)小计]
成本<br />[地接成本(人民币)+其它成本(人民币)小计+单地接]
</td>
<td>
同业销售价格
......
......@@ -369,7 +369,7 @@
</td>
<td>
<el-form-item label="单地接">
<el-input v-model="teamPrice.SingleDMCPrice" @keyup.native="checkPrice(teamPrice,'SingleDMCPrice')"
<el-input v-model="teamPrice.SingleDMCPrice" @keyup.native="checkPrice(teamPrice,'SingleDMCPrice'),getchange()"
class="w70">
</el-input>
</el-form-item>
......@@ -410,8 +410,8 @@
</td>
<td colspan="3">
<el-form-item label="助理OP">
<el-select class="w250" v-model="postConfig.Assistantlist" :placeholder="$t('pub.pleaseSel')"
filterable multiple>
<el-select class="w250" v-model="postConfig.Assistantlist" :placeholder="$t('pub.pleaseSel')" filterable
multiple>
<el-option :label="$t('pub.unlimitedSel')" :value='0'></el-option>
<el-option v-for="(item,index) in EmployeeList" :label="item.EmName" :value="item.EmployeeId"
:key="index"></el-option>
......@@ -465,7 +465,7 @@
地接成本<br />(人民币)
</td>
<td colspan="2">
成本<br />[地接成本(人民币)+其它成本(人民币)小计]
成本<br />[地接成本(人民币)+其它成本(人民币)小计+单地接]
</td>
<td>
同业销售价格
......@@ -925,7 +925,12 @@
//其他价格
var otherPrice = Number(that.getCostTotalMoney());
var jpyotherPrice = 0;
x.TotalMoney = (trip + otherPrice).toFixed(0);
var SingleDMCPrice = 0;
if (that.teamPrice && that.teamPrice.SingleDMCPrice) {
console.log("1111");
SingleDMCPrice = Number(that.teamPrice.SingleDMCPrice);
}
x.TotalMoney = (trip + otherPrice + SingleDMCPrice).toFixed(0);
x.JPYTotalMoney = (jpyTrip + jpyotherPrice).toFixed(2);
});
},
......
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