|
@@ -91,6 +91,8 @@
|
|
|
:fullscreen="true"
|
|
|
style="padding: 0;margin:0"
|
|
|
width="70%">
|
|
|
+ <el-radio v-model="radio" label="1">显示</el-radio>
|
|
|
+ <el-radio v-model="radio" label="2">隐藏</el-radio>
|
|
|
<div ref="print">
|
|
|
<table class="table table-striped table-bordered" align="center" valign="center" style="font-size: 12px;border-collapse: collapse; border: none;margin-top: 10px;" >
|
|
|
<tr>
|
|
@@ -107,18 +109,18 @@
|
|
|
<table class="table table-striped table-bordered" align="center" valign="center">
|
|
|
<tr>
|
|
|
<td class="column" style="width: 15%;border-top: none;">品名</td>
|
|
|
- <td class="column" style="width: 15%;border-top: none;">单价</td>
|
|
|
+ <td class="column" style="width: 15%;border-top: none;" v-if="radio == 1">单价</td>
|
|
|
<!-- <td class="column" style="width: 15%;border-top: none;">采购计划</td> -->
|
|
|
<td class="column" style="width: 15%;border-top: none;">实际重量</td>
|
|
|
- <td class="column" style="width: 15%;border-top: none;">金额</td>
|
|
|
+ <td class="column" style="width: 15%;border-top: none;" v-if="radio == 1">金额</td>
|
|
|
<td class="column" style="width: 20%;border-top: none;">备注</td>
|
|
|
</tr>
|
|
|
<tr v-for="(item,index) in detailData" :key="index">
|
|
|
<td class="column">{{item.feeName}}</td>
|
|
|
- <td class="column">{{item.fUnitprice?Number(item.fUnitprice).toFixed(2):item.fUnitprice}}</td>
|
|
|
+ <td class="column" v-if="radio == 1">{{item.fUnitprice?Number(item.fUnitprice).toFixed(2):item.fUnitprice}}</td>
|
|
|
<!-- <td class="column">{{item.fPurchase}}({{item.fFeeunitName}})</td> -->
|
|
|
<td class="column">{{item.fQty}}({{item.fFeeunitName}})</td>
|
|
|
- <td class="column">{{item.fAmount?Number(item.fAmount).toFixed(2):item.fAmount}}</td>
|
|
|
+ <td class="column" v-if="radio == 1">{{item.fAmount?Number(item.fAmount).toFixed(2):item.fAmount}}</td>
|
|
|
<td class="column">{{item.remark}}</td>
|
|
|
</tr>
|
|
|
</table>
|
|
@@ -190,6 +192,7 @@ export default {
|
|
|
isItHidden:true,
|
|
|
// 非单个禁用
|
|
|
single: true,
|
|
|
+ radio:'1',
|
|
|
// 总条数
|
|
|
total: 0,
|
|
|
inDex:4,
|