Commit 480bce7b authored by 吴春's avatar 吴春

合并代码

parent 1af78c56
......@@ -2057,6 +2057,7 @@ export default {
isShowHouse: false,
isShowLayerRemarks: false,
loading: true,
isChecked: true,
comSelect: -1,
remarksMsg: {
OrderId: "0",
......@@ -2313,6 +2314,13 @@ export default {
}
},
methods: {
//是否可以修改成交单价
canEditUnitPrice() {
let userInfo = this.getLocalStorage();
if (userInfo != null && userInfo.EmployeeId == 1) {
this.isChecked = false;
}
},
maxCommissionMinusRate: function () {
this.TCMsg.CommissionMinusRate = this.TCMsg.CommissionMinusRate.replace(/[^\.\d]/g,'');
this.TCMsg.CommissionMinusRate = this.TCMsg.CommissionMinusRate.replace('.','');
......@@ -3780,6 +3788,7 @@ export default {
this.getJyfs();
this.getFylx();
this.getTuanInfo();
this.canEditUnitPrice();
}
};
</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