Commit abb21965 authored by 吴春's avatar 吴春

提交每日提醒代码

parent 62b565da
...@@ -9,18 +9,48 @@ ...@@ -9,18 +9,48 @@
{{scope.row.ID}} {{scope.row.ID}}
</template> </template>
</el-table-column> --> </el-table-column> -->
<el-table-column prop="OrderId" label="订单号"></el-table-column> <el-table-column label="订单号">
<template slot-scope="scope">
{{scope.row.OrderId}} ({{scope.row.EnterName}})
<p>{{scope.row.CreateDate}}</p>
</template>
</el-table-column>
<el-table-column label="团号" width=""> <el-table-column label="团号" width="">
<template slot-scope="scope"> <template slot-scope="scope">
{{scope.row.TCID}} {{scope.row.TCID}}
<p>{{scope.row.TCNUM}}</p> <p>{{scope.row.TCNUM}}</p>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="EnterName" label="销售"></el-table-column> <!-- <el-table-column prop="EnterName" width="100" label="销售"></el-table-column> -->
<el-table-column prop="StartDate" label="出团日期"></el-table-column> <el-table-column prop="StartDate" width="110" label="出团日期"></el-table-column>
<el-table-column prop="PreferPrice" label="应收"></el-table-column> <el-table-column prop="PreferPrice" width="80" label="应收"></el-table-column>
<el-table-column prop="DueinMoney" label="待收"></el-table-column> <el-table-column prop="DueinMoney" width="80" label="待收"></el-table-column>
<el-table-column prop="CreateDate" label="创建日期"></el-table-column> <!-- <el-table-column prop="CreateDate" label="创建日期"></el-table-column> -->
<el-table-column label="改价状态" width="100" >
<template slot-scope="scope">
<span v-if="scope.row.ApplyForState==1">待主管审核</span>
<span v-else-if="scope.row.ApplyForState==2">待徐总审核</span>
<span v-else-if="scope.row.ApplyForState==4" style="color:red;">已拒绝</span>
<span v-else>-</span>
</template>
</el-table-column>
<el-table-column label="改价应收" width="80">
<template slot-scope="scope">
{{scope.row.ApplyForState>0?scope.row.ApplyForMoney:'-'}}
</template>
</el-table-column>
<el-table-column label="改价代收" width="80">
<template slot-scope="scope">
{{scope.row.ApplyForState>0?scope.row.ApplyDueinMoney:'-'}}
</template>
</el-table-column>
<el-table-column show-overflow-tooltip label="改价理由" width="165">
<template slot-scope="scope">
{{scope.row.ApplyForState>0?scope.row.ApplyForReason:'-'}}
<p>{{scope.row.ApplyForState>0?scope.row.ApplyCreateTimeStr:""}}</p>
</template>
</el-table-column>
</el-table> </el-table>
</div> </div>
<div v-if="UnTravelDate && UnTravelDate.olist&&UnTravelDate.olist.length>0"> <div v-if="UnTravelDate && UnTravelDate.olist&&UnTravelDate.olist.length>0">
......
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