Commit 4590d865 authored by 华国豪's avatar 华国豪 🙄
parents add9dce0 1a0cecd5
...@@ -282,7 +282,7 @@ ...@@ -282,7 +282,7 @@
</table> </table>
<table border="1" bordercolor="#D2D2D2" style="border-collapse:collapse;margin-top:15px;" width="100%" v-else-if="OrderSource==10"> <table border="1" bordercolor="#D2D2D2" style="border-collapse:collapse;margin-top:15px;" width="100%" v-else-if="OrderSource==10">
<tr class="_fujiashuoming_tr"> <tr class="_fujiashuoming_tr">
<td>签证产品编号:<span @click="jumpPage('VisaProduct',GetDetail,8)" class="_jump_page _font_bold">{{GetDetail.SourceID}}</span></td> <td>签证产品编号:<span @click="jumpPage('VisaProductOrder',GetDetail,8)" class="_jump_page _font_bold">{{GetDetail.SourceID}}</span></td>
<td @click="jumpPage('FinancialOrder',GetDetail,3)"> <span class="_jump_page _font_bold">签证收支</span> </td> <td @click="jumpPage('FinancialOrder',GetDetail,3)"> <span class="_jump_page _font_bold">签证收支</span> </td>
</tr> </tr>
</table> </table>
......
...@@ -2057,6 +2057,7 @@ export default { ...@@ -2057,6 +2057,7 @@ export default {
isShowHouse: false, isShowHouse: false,
isShowLayerRemarks: false, isShowLayerRemarks: false,
loading: true, loading: true,
isChecked: true,
comSelect: -1, comSelect: -1,
remarksMsg: { remarksMsg: {
OrderId: "0", OrderId: "0",
...@@ -2313,6 +2314,13 @@ export default { ...@@ -2313,6 +2314,13 @@ export default {
} }
}, },
methods: { methods: {
//是否可以修改成交单价
canEditUnitPrice() {
let userInfo = this.getLocalStorage();
if (userInfo != null && userInfo.EmployeeId == 1) {
this.isChecked = false;
}
},
maxCommissionMinusRate: function () { maxCommissionMinusRate: function () {
this.TCMsg.CommissionMinusRate = this.TCMsg.CommissionMinusRate.replace(/[^\.\d]/g,''); this.TCMsg.CommissionMinusRate = this.TCMsg.CommissionMinusRate.replace(/[^\.\d]/g,'');
this.TCMsg.CommissionMinusRate = this.TCMsg.CommissionMinusRate.replace('.',''); this.TCMsg.CommissionMinusRate = this.TCMsg.CommissionMinusRate.replace('.','');
...@@ -3780,6 +3788,7 @@ export default { ...@@ -3780,6 +3788,7 @@ export default {
this.getJyfs(); this.getJyfs();
this.getFylx(); this.getFylx();
this.getTuanInfo(); this.getTuanInfo();
this.canEditUnitPrice();
} }
}; };
</script> </script>
......
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