Commit ddbe40bc authored by youjie's avatar youjie

no message

parent cb7475f7
<style scoped>
/deep/.el-table th.el-table__cell{
background-color: #E6E6E6;
}
</style>
......@@ -262,7 +264,7 @@
<el-table-column
prop=""
label="关联信息"
show-overflow-tooltip>
show-overflow-tooltip width="200">
<template slot-scope="scope">
<template v-if="scope.row.TCIDAndTCNUMList.length>0">
<p class="_TCIDAndTCNUMList" style="display: flex;">
......@@ -300,7 +302,7 @@
<el-table-column
prop=""
label="费用类型"
show-overflow-tooltip>
show-overflow-tooltip width="150">
<template slot-scope="scope">
<template v-for="(s,si) in scope.row.CostTypeList">
<span style="background-color: rgba(64,158,255,.1);display: inline-block;padding: 0 5px;height: 22px;line-height: 20px;font-size: 12px;color: #646464;border-radius: 4px;box-sizing: border-box;border: 1px solid rgba(64,158,255,.2);white-space: nowrap;margin-bottom: 4px;">{{s}}</span></br>
......@@ -310,7 +312,7 @@
<el-table-column
prop=""
label="金额"
show-overflow-tooltip>
show-overflow-tooltip width="150">
<template slot-scope="scope">
<p style="line-height:20px" v-if="scope.row.Money>0">{{scope.row.Type==1?'应收':'应付'}}<span>{{scope.row.Money}}</span></p>
<p style="line-height:20px" v-if="scope.row.PayMoney>0">{{scope.row.Type==1?'实收':'实付'}}<span>{{scope.row.PayMoney}}</span></p>
......@@ -328,7 +330,7 @@
<el-table-column
prop=""
label="制单人员"
show-overflow-tooltip>
show-overflow-tooltip width="170">
<template slot-scope="scope">
<div>{{scope.row.EmName}}</div>
<div>{{scope.row.CreateDate}}</div>
......@@ -337,7 +339,7 @@
<el-table-column
prop=""
label="当前状态"
show-overflow-tooltip>
show-overflow-tooltip width="120">
<template slot-scope="scope">
<i v-if="scope.row.Status==1" class="iconfont icon-daiqueren" style="color: #4BCA81"></i>
<i v-if="scope.row.Status==4" class="iconfont icon-yiquxiao" style="color: #4BCA81"></i>
......@@ -370,7 +372,7 @@
<el-table-column
prop=""
label="关联月结付款单"
show-overflow-tooltip>
show-overflow-tooltip width="120">
<template slot-scope="scope">
<span v-if="scope.row.ReFinanceId" style="cursor: pointer;color: #00C6FF;"
@click="openDetails(scope.row.ReFinanceId)">{{ scope.row.ReFinanceId }}</span>
......
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