Commit 1cf5658d authored by youjie's avatar youjie

no message

parent a42466e3
<template>
<div>
<el-table
<div v-for="(item,index) in OrderList">
<el-table
border
ref="multipleTable"
:data="OrderList"
:data="[item]"
style="width: 100%"
:default-sort="{ prop: 'null', order: 'null' }"
:sort-by="[
......@@ -35,18 +36,7 @@
<span>{{ scope.row.OrderId }}</span>
</p>
<p>{{ scope.row.CreateTimeStr }}</p>
<p style="font-size: 13px;" v-if="scope.row.SaleRemarks">
<span>销售备注:</span>
<span style="color: red;">{{
scope.row.SaleRemarks ? scope.row.SaleRemarks : "无"
}}</span>
</p>
<p style="font-size: 13px;" v-if="scope.row.OP_Remarks">
<span>OP备注:</span>
<span style="color: red;">{{
scope.row.OP_Remarks ? scope.row.OP_Remarks : "无"
}}</span>
</p>
</div>
</template>
</el-table-column>
......@@ -168,6 +158,7 @@
</el-table-column>
<el-table-column sortable prop="DiscountsMoney" label="优惠">
</el-table-column>
<!--
<template v-if="pagesTitle == '审核'||pagesTitle == '申请'">
<el-table-column
prop="ApplyForMoney"
......@@ -213,9 +204,9 @@
</span>
</template>
</el-table-column>
</template>
</template> -->
<el-table-column
v-if="pagesTitle == '审核'"
v-if="pagesTitle == '审核'&&userInfo.EmployeeId==1"
prop="StateName"
label="审核人"
show-overflow-tooltip
......@@ -277,7 +268,54 @@
</template>
</template>
</el-table-column>
<template slot="append" v-if="pagesTitle == '审核'||pagesTitle == '申请'">
<div style="padding:10px;">
<div>
<p style="font-size: 13px;" v-if="item.SaleRemarks">
<span>销售备注:</span>
<span style="color: red;">{{
item.SaleRemarks ? item.SaleRemarks : "无"
}}</span>
</p>
<p style="font-size: 13px;" v-if="item.OP_Remarks">
<span>OP备注:</span>
<span style="color: red;">{{
item.OP_Remarks ? item.OP_Remarks : "无"
}}</span>
</p>
</div>
<div>
<template v-if="pagesTitle == '审核'||pagesTitle == '申请'">
<span>
申请改价金额:<span style="color: black;">{{item.ApplyForMoney}}</span>
</span>
<span style="margin-left: 20px;">
申请理由:<span style="color: black;">{{item.ApplyForReason}}</span>
</span>
<span v-if="pagesTitle=='审核'" style="margin-left: 20px;">
改价状态:<span style="color: black;"
>
<template v-if="item.ApplyForState==1">
待主管审核
</template>
<template v-else-if="item.ApplyForState==2">
主管审核通过
</template>
<template v-else-if="item.ApplyForState==3">
审核通过
</template>
<template v-else-if="item.ApplyForState==4">
拒绝
</template>
</span>
</span>
</template>
</div>
</div>
</template>
</el-table>
</div>
<!-- 申请弹窗 -->
<div class="combottomDiv OPremarkDiv" v-if="changePriceMsg.outerVisible">
<div class="combottomTitle">{{ titlePrice }}
......
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