|
@@ -16,6 +16,13 @@
|
|
|
:pagination="false"
|
|
|
:scroll="{ x: 1500, y: 300 }"
|
|
|
>
|
|
|
+ <!-- 表头 -->
|
|
|
+ <span slot="transferCostTitle" class="fontColor">
|
|
|
+ 转入成本
|
|
|
+ </span>
|
|
|
+ <span slot="remainingQuantitycostTitle" class="fontColor">
|
|
|
+ 余下数量的成本
|
|
|
+ </span>
|
|
|
<!-- 面料 -转入数量 弹框-->
|
|
|
<span slot="fabInQuaSlot" slot-scope="text">
|
|
|
<a>{{ text }}</a>
|
|
@@ -40,6 +47,10 @@
|
|
|
:pagination="false"
|
|
|
:scroll="{ x: 1000, y: 300 }"
|
|
|
>
|
|
|
+ <!-- 表头 -->
|
|
|
+ <span slot="transferCostTitle" class="fontColor">
|
|
|
+ 转入成本
|
|
|
+ </span>
|
|
|
<!--辅料-转入数量 弹框-->
|
|
|
<span slot="ingInQuaSlot" slot-scope="text">
|
|
|
<a>{{ text }}</a>
|
|
@@ -74,55 +85,55 @@
|
|
|
<div class="table-page-search-wrapper">
|
|
|
<a-form layout="inline">
|
|
|
<a-col :md="6" :sm="8">
|
|
|
- <a-form-item label="出货数量合计">
|
|
|
+ <a-form-item label="出货数量合计" class="fontColor">
|
|
|
<a-input v-model="sumInfo.shipQua"></a-input>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
|
|
|
<a-col :md="6" :sm="8">
|
|
|
- <a-form-item label="辅料金额合计">
|
|
|
+ <a-form-item label="辅料金额合计" class="fontColor">
|
|
|
<a-input v-model="sumInfo.ingAmount"></a-input>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
|
|
|
<a-col :md="6" :sm="8">
|
|
|
- <a-form-item label="辅料不含税金额合计">
|
|
|
+ <a-form-item label="辅料不含税金额合计" class="fontColor">
|
|
|
<a-input v-model="sumInfo.ingExcludAmount"></a-input>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
|
|
|
<a-col :md="6" :sm="8">
|
|
|
- <a-form-item label="出运美元外销总价">
|
|
|
+ <a-form-item label="出运美元外销总价" class="fontColor">
|
|
|
<a-input v-model="sumInfo.exportPriceUSD"></a-input>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
|
|
|
<a-col :md="6" :sm="8">
|
|
|
- <a-form-item label="出运加工费">
|
|
|
+ <a-form-item label="出运加工费" class="fontColor">
|
|
|
<a-input v-model="sumInfo.shipProcesFees"></a-input>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
|
|
|
<a-col :md="6" :sm="8">
|
|
|
- <a-form-item label="面料不含税金额合计">
|
|
|
+ <a-form-item label="面料不含税金额合计" class="fontColor">
|
|
|
<a-input v-model="sumInfo.fabricExcludTax"></a-input>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
|
|
|
<a-col :md="6" :sm="8">
|
|
|
- <a-form-item label="出运人民币外销金额">
|
|
|
+ <a-form-item label="出运人民币外销金额" class="fontColor">
|
|
|
<a-input v-model="sumInfo.exportedAmountRMB"></a-input>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
|
|
|
<a-col :md="6" :sm="8">
|
|
|
- <a-form-item label="合计金额">
|
|
|
+ <a-form-item label="合计金额" class="fontColor">
|
|
|
<a-input v-model="sumInfo.amountTotal"></a-input>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
|
|
|
<a-col :md="6" :sm="8">
|
|
|
- <a-form-item label="面料金额合计">
|
|
|
+ <a-form-item label="面料金额合计" class="fontColor">
|
|
|
<a-input v-model="sumInfo.fabricAmount"></a-input>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
@@ -191,13 +202,14 @@ export default {
|
|
|
width: 120,
|
|
|
className: 'replacecolor',
|
|
|
customCell: this.fabQuaCustomCell,
|
|
|
- scopedSlots: { customRender: 'fabInQuaSlot' }
|
|
|
+ scopedSlots: { customRender: 'fabInQuaSlot' },
|
|
|
},
|
|
|
{
|
|
|
- title: '转入成本',
|
|
|
+ // title: '转入成本',
|
|
|
dataIndex: 'transferCost',
|
|
|
width: 120,
|
|
|
- className: 'replacecolor'
|
|
|
+ className: 'replacecolor',
|
|
|
+ slots:{title:'transferCostTitle'} ,
|
|
|
},
|
|
|
|
|
|
{ title: '单耗/件', dataIndex: 'unitConsumption', width: 120, className: 'replacecolor' },
|
|
@@ -224,10 +236,12 @@ export default {
|
|
|
className: 'replacecolor'
|
|
|
},
|
|
|
{
|
|
|
- title: '余下数量的成本',
|
|
|
+ // title: '余下数量的成本',
|
|
|
dataIndex: 'remainingQuantitycost',
|
|
|
width: 120,
|
|
|
- className: 'replacecolor'
|
|
|
+ className: 'replacecolor',
|
|
|
+ slots:{title:'remainingQuantitycostTitle'} ,
|
|
|
+
|
|
|
}
|
|
|
],
|
|
|
fabData: [],
|
|
@@ -253,10 +267,11 @@ export default {
|
|
|
scopedSlots: { customRender: 'ingInQuaSlot' }
|
|
|
},
|
|
|
{
|
|
|
- title: '转入成本',
|
|
|
+ // title: '转入成本',
|
|
|
dataIndex: 'transferCost',
|
|
|
width: 130,
|
|
|
- className: 'replacecolor'
|
|
|
+ className: 'replacecolor',
|
|
|
+ slots:{title:'transferCostTitle'} ,
|
|
|
},
|
|
|
|
|
|
{ title: '使用数量', dataIndex: 'usageQuantity', width: 120, className: 'replacecolor' },
|
|
@@ -515,6 +530,9 @@ export default {
|
|
|
.table-title {
|
|
|
font-weight: 700;
|
|
|
}
|
|
|
+.fontColor{
|
|
|
+ color: red;
|
|
|
+}
|
|
|
|
|
|
/deep/ .ant-tabs-nav .ant-tabs-tab-active {
|
|
|
font-size: 18px;
|
|
@@ -525,4 +543,8 @@ export default {
|
|
|
/deep/ .ant-tabs-nav .ant-tabs-tab {
|
|
|
padding: 0 0 10px 0;
|
|
|
}
|
|
|
+/deep/ .fontColor .ant-form-item-label > label{
|
|
|
+ color: red !important;
|
|
|
+}
|
|
|
+
|
|
|
</style>
|