Commit 75a50037 authored by 吴春's avatar 吴春

1

parent 044b0fd4
...@@ -414,7 +414,7 @@ ...@@ -414,7 +414,7 @@
</template> </template>
<template v-if="pagesTitle == '审核'"> <template v-if="pagesTitle == '审核'">
<el-button <el-button
v-if="scope.row.ApplyForState == 1||(scope.row.ApplyForState == 2&&(userInfo.EmployeeId==1||userInfo.RB_Department_Id==2))" v-if="scope.row.ApplyForState == 1||(scope.row.ApplyForState == 2&&(userInfo.EmployeeId==ExamineBy||userInfo.RB_Department_Id==2))"
size="mini" type="primary" @click="ckChangePrice(scope.row, 2)">{{$t('fnc.shenhe')}}</el-button> size="mini" type="primary" @click="ckChangePrice(scope.row, 2)">{{$t('fnc.shenhe')}}</el-button>
<p v-else class=" fz14" :class="{ 'cursor-pointer c059FF6': scope.row.OrderType > 0 }" <p v-else class=" fz14" :class="{ 'cursor-pointer c059FF6': scope.row.OrderType > 0 }"
@click="ckChangePrice(scope.row, 3)"> @click="ckChangePrice(scope.row, 3)">
...@@ -579,6 +579,7 @@ ...@@ -579,6 +579,7 @@
queryObj: null, queryObj: null,
cdState: false, cdState: false,
copyId: 0, copyId: 0,
ExamineBy:0,
loading: true, loading: true,
loading0: false, loading0: false,
loading1: false, loading1: false,
...@@ -752,6 +753,18 @@ ...@@ -752,6 +753,18 @@
} }
}, },
methods: { methods: {
GetDefaultCountryList() {
this.apipost(
"dict_get_GetDefaultCountryList", {
},
res => {
if (res.data.resultCode == 1) {
this.ExamineBy = res.data.data.ParentID
} else {}
},
err => {}
);
},
getChangePriceObj() { getChangePriceObj() {
//此单应申请改价为 9999 方可帐平,公式: 应收 = 实收 + 手续费 退款 //此单应申请改价为 9999 方可帐平,公式: 应收 = 实收 + 手续费 退款
let Price = (this.changePriceObj.Money * 100) - (this.changePriceObj.DueInMoney * 100) let Price = (this.changePriceObj.Money * 100) - (this.changePriceObj.DueInMoney * 100)
...@@ -1133,6 +1146,7 @@ ...@@ -1133,6 +1146,7 @@
if (ActionMenuCode.indexOf("S_CheckAllOrder") != -1) { if (ActionMenuCode.indexOf("S_CheckAllOrder") != -1) {
this.S_CheckAllOrder = true; this.S_CheckAllOrder = true;
} }
this.GetDefaultCountryList();
} }
}; };
......
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