Commit 9e5120d8 authored by 黄奎's avatar 黄奎

1

parent bb9e144c
......@@ -48,7 +48,7 @@
<el-table :data="tableData" v-loading="loading" border style="width: 100%;margin-top:15px"
@selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" style="text-align:center;">
<el-table-column type="selection" width="55" style="text-align:center;" :selectable="checkSelectable">
</el-table-column>
<el-table-column prop="OrderNo" label="订单号" width="220">
</el-table-column>
......@@ -76,6 +76,17 @@
</div>
</template>
</el-table-column>
<el-table-column prop="CouponMoney" label="保险成本" width="80">
<template slot-scope="scope">
<div style="display: flex;align-items: center;">
<span v-if="scope.row.OrderType==5">{{scope.row.SDGoodsList[0].InsuranceCostMoney}}</span>
<span v-else>-</span>
</div>
</template>
</el-table-column>
<el-table-column prop="CostFinanceId" label="成本单据" width="100">
<template slot-scope="scope">
<div style="display: flex;align-items: center;">
......@@ -366,7 +377,11 @@
return
}
})
}
},
checkSelectable(row){//判断是否可以选择
return row.CostFinanceId==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