Commit 65133b70 authored by youjie's avatar youjie

no message

parent 468d4e45
......@@ -187,7 +187,7 @@
审核通过
</template>
<template v-else-if="scope.row.ApplyForState==4">
拒绝
驳回
</template>
</span>
</template>
......@@ -290,10 +290,10 @@
</div>
<div style="margin-top: 10px;" v-if="item.ApplyForState==4">
<p v-if="item.ManagerRefuseReason">
主管拒绝理由:<span style="color: red;">{{item.ManagerRefuseReason}}</span>
主管驳回理由:<span style="color: red;">{{item.ManagerRefuseReason}}</span>
</p>
<p v-if="item.RefuseReason">
总经理拒绝理由:<span style="color: red;">{{item.RefuseReason}}</span>
总经理驳回理由:<span style="color: red;">{{item.RefuseReason}}</span>
</p>
</div>
<div style="margin-top: 10px;" v-if="item.ApplyForState
......@@ -326,7 +326,7 @@
审核通过
</template>
<template v-else-if="item.ApplyForState==4">
拒绝
驳回
</template>
</span>
</span>
......@@ -539,7 +539,7 @@
审核通过
</template>
<template v-else-if="scope.row.ApplyForState==4">
拒绝
驳回
</template>
</span>
</template>
......@@ -625,10 +625,10 @@
</div>
<div style="padding: 10px 0;" v-if="changePriceObj.ApplyForState==4">
<p v-if="changePriceObj.ManagerRefuseReason">
主管拒绝理由:<span style="color: red;">{{changePriceObj.ManagerRefuseReason}}</span>
主管驳回理由:<span style="color: red;">{{changePriceObj.ManagerRefuseReason}}</span>
</p>
<p v-if="changePriceObj.RefuseReason">
总经理拒绝理由:<span style="color: red;">{{changePriceObj.RefuseReason}}</span>
总经理驳回理由:<span style="color: red;">{{changePriceObj.RefuseReason}}</span>
</p>
</div>
<div slot="footer" class="dialog-footer"
......@@ -684,10 +684,8 @@
>
<el-button
:loading="loading"
class="normalBtn"
v-if="titlePrice != '改价详情'"
:class="[
changePriceMsg.ApplyForState == 2||changePriceMsg.ApplyForState == 3 ? 'normalBtn' : 'hollowFixedBtn'
]"
type="primary"
@click="
changePriceMsg.DialogType == 1
......@@ -699,18 +697,16 @@
</el-button>
<el-button
:loading="loading"
class="normalBtn"
v-if="titlePrice != '改价详情'"
:class="[
changePriceMsg.ApplyForState == 4 ? 'normalBtn' : 'hollowFixedBtn'
]"
type="primary"
@click="
changePriceMsg.DialogType == 1
? ''
:setChangePrice('拒绝')
:setChangePrice('驳回')
"
>
拒绝
驳回
</el-button>
<button
class="hollowFixedBtn"
......@@ -760,7 +756,7 @@
:readonly="changePriceMsg.DialogType == 1 ? true : false"
>
<el-radio :label="2">通过</el-radio>
<el-radio :label="3">拒绝</el-radio>
<el-radio :label="3">驳回</el-radio>
</el-radio-group>
</el-form-item></el-col
>
......@@ -1005,11 +1001,11 @@ export default {
if(this.titlePrice == "应收总金额改价审核"){
if(this.changePriceObj.ApplyForState==1){
if(type=='通过') this.changePriceMsg.ApplyForState = 2
if(type=='拒绝') this.changePriceMsg.ApplyForState = 4
if(type=='驳回') this.changePriceMsg.ApplyForState = 4
}
if(this.changePriceObj.ApplyForState==2){
if(type=='通过') this.changePriceMsg.ApplyForState = 3
if(type=='拒绝') this.changePriceMsg.ApplyForState = 4
if(type=='驳回') this.changePriceMsg.ApplyForState = 4
}
this.ExamineOrderChangePrice()
}
......
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