|
@@ -9,7 +9,7 @@
|
|
|
</el-col>
|
|
|
<el-col :span="6" class="item">
|
|
|
<div class="label">出库日期:</div>
|
|
|
- <div class="value">{{detailData.createBy}}</div>
|
|
|
+ <div class="value">{{getDate()}}</div>
|
|
|
</el-col>
|
|
|
<el-col :span="6" class="item">
|
|
|
<div class="label">仓库:</div>
|
|
@@ -17,7 +17,7 @@
|
|
|
</el-col>
|
|
|
<el-col :span="6" class="item">
|
|
|
<div class="label">信息密钥:</div>
|
|
|
- <div class="value">{{detailData.customerNumber}}</div>
|
|
|
+ <div class="value">{{detailData.informationKey}}</div>
|
|
|
</el-col>
|
|
|
<el-col :span="24" class="item">
|
|
|
<div class="label">经销商:</div>
|
|
@@ -45,9 +45,9 @@
|
|
|
<el-row :gutter="20">
|
|
|
<el-col :span="3">{{ item.invoiceId || '' }}</el-col>
|
|
|
<el-col :span="2">{{ item.saleTypeName || '' }}</el-col>
|
|
|
- <el-col :span="3">{{ item.aaa || '' }}</el-col>
|
|
|
+ <el-col :span="3">{{ item.fileNo || '' }}</el-col>
|
|
|
<el-col :span="6">{{ item.specification || '' }}</el-col>
|
|
|
- <el-col :span="2">{{ item.qty || 0 }}</el-col>
|
|
|
+ <el-col :span="2">{{ item.refundableQty || 0 }}</el-col>
|
|
|
<el-col :span="2">{{ item.unit || '' }}</el-col>
|
|
|
<el-col :span="2">{{ item.price || 0 }}</el-col>
|
|
|
<el-col :span="2">{{ item.payAmount || 0 }}</el-col>
|
|
@@ -58,7 +58,7 @@
|
|
|
<el-col :span="2">发货日期</el-col>
|
|
|
<el-col :span="4">{{ item.theTime || '' }}</el-col>
|
|
|
<el-col :span="2">工程编号</el-col>
|
|
|
- <el-col :span="3">{{ item.aaa || '' }}</el-col>
|
|
|
+ <el-col :span="3">{{ item.refEnginRecordNo || '' }}</el-col>
|
|
|
<el-col :span="2">备注</el-col>
|
|
|
<el-col :span="8">{{ item.remark || '' }}</el-col>
|
|
|
</el-row>
|
|
@@ -142,6 +142,22 @@ export default {
|
|
|
this.$emit('backListFormDetail');
|
|
|
},
|
|
|
|
|
|
+ getDate() {
|
|
|
+ var date = new Date();
|
|
|
+ var seperator1 = "-";
|
|
|
+ var year = date.getFullYear();
|
|
|
+ var month = date.getMonth() + 1;
|
|
|
+ var strDate = date.getDate();
|
|
|
+ if (month >= 1 && month <= 9) {
|
|
|
+ month = "0" + month;
|
|
|
+ }
|
|
|
+ if (strDate >= 0 && strDate <= 9) {
|
|
|
+ strDate = "0" + strDate;
|
|
|
+ }
|
|
|
+ var currentdate = year + seperator1 + month + seperator1 + strDate;
|
|
|
+ return currentdate;
|
|
|
+ },
|
|
|
+
|
|
|
// 获取详情
|
|
|
getDetail() {
|
|
|
getDetail({id: this.listItem.id}).then(res => {
|