|
@@ -1,10 +1,12 @@
|
|
|
<!--销售合同-->
|
|
|
<!--2019年5月30日 20:25:16 by jlx-->
|
|
|
<template>
|
|
|
- <div class='container'>
|
|
|
+ <div class="container">
|
|
|
<el-row>
|
|
|
<el-col :span="12">
|
|
|
- <h2 class="bg-left">查看合同详情</h2>
|
|
|
+ <h2 class="bg-left">
|
|
|
+ 查看合同详情<span>状态:{{ status }}</span>
|
|
|
+ </h2>
|
|
|
</el-col>
|
|
|
<el-col :span="12" class="bg-right">
|
|
|
<el-button
|
|
@@ -16,169 +18,95 @@
|
|
|
>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
-
|
|
|
+
|
|
|
<ws-form
|
|
|
ref="deptBudgetList"
|
|
|
:rules="mainReportAdd"
|
|
|
:model="deptBudgetList"
|
|
|
>
|
|
|
<div class="remark">
|
|
|
- <h3>基本信息</h3>
|
|
|
+ <h3>基本信息</h3>
|
|
|
</div>
|
|
|
- <ws-info-table>
|
|
|
- <ws-form-item
|
|
|
- label="合同编号"
|
|
|
- span="1"
|
|
|
- prop="contractNo"
|
|
|
- >
|
|
|
- {{deptBudgetList.contractNo}}
|
|
|
- </ws-form-item>
|
|
|
- <ws-form-item
|
|
|
- label="运输方式"
|
|
|
- span="1"
|
|
|
- prop="shippingType"
|
|
|
- >
|
|
|
- {{deptBudgetList.shippingType}}
|
|
|
- </ws-form-item>
|
|
|
- <ws-form-item
|
|
|
- label="买方"
|
|
|
- span="1"
|
|
|
- prop="buyer"
|
|
|
- >
|
|
|
- {{deptBudgetList.buyer}}
|
|
|
- </ws-form-item>
|
|
|
- <ws-form-item
|
|
|
- label="结算方式"
|
|
|
- span="1"
|
|
|
- prop="settlementMethod"
|
|
|
- >{{deptBudgetList.settlementMethod}}
|
|
|
- </ws-form-item>
|
|
|
- <ws-form-item
|
|
|
- label="卖方"
|
|
|
- span="1"
|
|
|
- prop="seller"
|
|
|
- >{{deptBudgetList.seller}}
|
|
|
- </ws-form-item>
|
|
|
- <ws-form-item
|
|
|
- label="货源地"
|
|
|
- span="1"
|
|
|
- prop="sourceGoods"
|
|
|
- >{{deptBudgetList.sourceGoods}}
|
|
|
- </ws-form-item>
|
|
|
- <ws-form-item
|
|
|
- label="买方电话"
|
|
|
- span="1"
|
|
|
- prop="buyerPhone"
|
|
|
- >{{deptBudgetList.buyerPhone}}
|
|
|
- </ws-form-item>
|
|
|
- <ws-form-item
|
|
|
- label="交货地"
|
|
|
- span="1"
|
|
|
- prop="placeDelivery">
|
|
|
- {{deptBudgetList.placeDelivery}}
|
|
|
- </ws-form-item>
|
|
|
- <ws-form-item
|
|
|
- label="卖方电话"
|
|
|
- span="1"
|
|
|
- prop="sellerPhone">
|
|
|
- {{deptBudgetList.sellerPhone}}
|
|
|
- </ws-form-item>
|
|
|
- <ws-form-item
|
|
|
- label="包装方式"
|
|
|
- span="1"
|
|
|
- prop="packingMethod">
|
|
|
- {{deptBudgetList.packingMethod}}
|
|
|
- </ws-form-item>
|
|
|
- <ws-form-item
|
|
|
- label="重量(吨)"
|
|
|
- span="1"
|
|
|
- prop="weight">
|
|
|
- {{deptBudgetList.weight}}
|
|
|
- </ws-form-item>
|
|
|
- <ws-form-item
|
|
|
- label="验收方式"
|
|
|
- span="1"
|
|
|
- prop="acceptanceMethod">
|
|
|
- {{deptBudgetList.acceptanceMethod}}
|
|
|
- </ws-form-item>
|
|
|
- <ws-form-item
|
|
|
- label="溢短装(%)"
|
|
|
- span="1"
|
|
|
- prop="overShort">
|
|
|
- {{deptBudgetList.overShort}}
|
|
|
- </ws-form-item>
|
|
|
- <ws-form-item
|
|
|
- label="交货日期(起)"
|
|
|
- span="1"
|
|
|
- prop="deliveryDateStart">
|
|
|
- {{deptBudgetList.deliveryDateStart}}
|
|
|
- </ws-form-item>
|
|
|
- <ws-form-item
|
|
|
- label="合同单价(元/吨)"
|
|
|
- span="1"
|
|
|
- prop="unitContractPrice">
|
|
|
- {{deptBudgetList.unitContractPrice}}
|
|
|
- </ws-form-item>
|
|
|
- <ws-form-item
|
|
|
- label="交货日期(止)"
|
|
|
- span="1"
|
|
|
- prop="deliveryDateEnd">
|
|
|
- {{deptBudgetList.deliveryDateEnd}}
|
|
|
- </ws-form-item>
|
|
|
- <ws-form-item
|
|
|
- label="合同总价(元)"
|
|
|
- span="1"
|
|
|
- prop="totalContractPrice">
|
|
|
- {{deptBudgetList.totalContractPrice}}
|
|
|
- </ws-form-item>
|
|
|
- <ws-form-item
|
|
|
- label="签订日期"
|
|
|
- span="1"
|
|
|
- prop="signingDate">
|
|
|
- {{deptBudgetList.signingDate}}
|
|
|
- </ws-form-item>
|
|
|
- </ws-info-table>
|
|
|
+ <ws-info-table>
|
|
|
+ <ws-form-item label="合同编号" span="1" prop="contractNo">
|
|
|
+ {{ deptBudgetList.contractNo }}
|
|
|
+ </ws-form-item>
|
|
|
+ <ws-form-item label="运输方式" span="1" prop="shippingType">
|
|
|
+ {{ deptBudgetList.shippingType }}
|
|
|
+ </ws-form-item>
|
|
|
+ <ws-form-item label="买方" span="1" prop="buyer">
|
|
|
+ {{ deptBudgetList.buyer }}
|
|
|
+ </ws-form-item>
|
|
|
+ <ws-form-item label="结算方式" span="1" prop="settlementMethod"
|
|
|
+ >{{ deptBudgetList.settlementMethod }}
|
|
|
+ </ws-form-item>
|
|
|
+ <ws-form-item label="卖方" span="1" prop="seller"
|
|
|
+ >{{ deptBudgetList.seller }}
|
|
|
+ </ws-form-item>
|
|
|
+ <ws-form-item label="货源地" span="1" prop="sourceGoods"
|
|
|
+ >{{ deptBudgetList.sourceGoods }}
|
|
|
+ </ws-form-item>
|
|
|
+ <ws-form-item label="买方电话" span="1" prop="buyerPhone"
|
|
|
+ >{{ deptBudgetList.buyerPhone }}
|
|
|
+ </ws-form-item>
|
|
|
+ <ws-form-item label="交货地" span="1" prop="placeDelivery">
|
|
|
+ {{ deptBudgetList.placeDelivery }}
|
|
|
+ </ws-form-item>
|
|
|
+ <ws-form-item label="卖方电话" span="1" prop="sellerPhone">
|
|
|
+ {{ deptBudgetList.sellerPhone }}
|
|
|
+ </ws-form-item>
|
|
|
+ <ws-form-item label="包装方式" span="1" prop="packingMethod">
|
|
|
+ {{ deptBudgetList.packingMethod }}
|
|
|
+ </ws-form-item>
|
|
|
+ <ws-form-item label="重量(吨)" span="1" prop="weight">
|
|
|
+ {{ deptBudgetList.weight }}
|
|
|
+ </ws-form-item>
|
|
|
+ <ws-form-item label="验收方式" span="1" prop="acceptanceMethod">
|
|
|
+ {{ deptBudgetList.acceptanceMethod }}
|
|
|
+ </ws-form-item>
|
|
|
+ <ws-form-item label="溢短装(%)" span="1" prop="overShort">
|
|
|
+ {{ deptBudgetList.overShort }}
|
|
|
+ </ws-form-item>
|
|
|
+ <ws-form-item label="交货日期(起)" span="1" prop="deliveryDateStart">
|
|
|
+ {{ deptBudgetList.deliveryDateStart }}
|
|
|
+ </ws-form-item>
|
|
|
+ <ws-form-item
|
|
|
+ label="合同单价(元/吨)"
|
|
|
+ span="1"
|
|
|
+ prop="unitContractPrice"
|
|
|
+ >
|
|
|
+ {{ deptBudgetList.unitContractPrice }}
|
|
|
+ </ws-form-item>
|
|
|
+ <ws-form-item label="交货日期(止)" span="1" prop="deliveryDateEnd">
|
|
|
+ {{ deptBudgetList.deliveryDateEnd }}
|
|
|
+ </ws-form-item>
|
|
|
+ <ws-form-item label="合同总价(元)" span="1" prop="totalContractPrice">
|
|
|
+ {{ deptBudgetList.totalContractPrice }}
|
|
|
+ </ws-form-item>
|
|
|
+ <ws-form-item label="签订日期" span="1" prop="signingDate">
|
|
|
+ {{ deptBudgetList.signingDate }}
|
|
|
+ </ws-form-item>
|
|
|
+ </ws-info-table>
|
|
|
<base-card>
|
|
|
-
|
|
|
- <!--面试信息-->
|
|
|
- <div class="remark">
|
|
|
- <h3>货物信息</h3>
|
|
|
- </div>
|
|
|
+ <!--面试信息-->
|
|
|
+ <div class="remark">
|
|
|
+ <h3>货物信息</h3>
|
|
|
+ </div>
|
|
|
<ws-info-table>
|
|
|
- <ws-form-item
|
|
|
- label="货名"
|
|
|
- span="1"
|
|
|
- prop="waterContent"
|
|
|
- >
|
|
|
- {{deptBudgetList.contractGoodsInfo.goodsName}}
|
|
|
+ <ws-form-item label="货名" span="1" prop="waterContent">
|
|
|
+ {{ deptBudgetList.contractGoodsInfo.goodsName }}
|
|
|
</ws-form-item>
|
|
|
- <ws-form-item
|
|
|
- label="水分(%)<="
|
|
|
- span="1"
|
|
|
- prop="intendedShipId"
|
|
|
- >
|
|
|
- {{deptBudgetList.contractGoodsInfo.waterContent}}
|
|
|
+ <ws-form-item label="水分(%)<=" span="1" prop="intendedShipId">
|
|
|
+ {{ deptBudgetList.contractGoodsInfo.waterContent }}
|
|
|
</ws-form-item>
|
|
|
- <ws-form-item
|
|
|
- label="品级"
|
|
|
- span="1"
|
|
|
- prop="grade"
|
|
|
- >
|
|
|
- {{deptBudgetList.contractGoodsInfo.grade}}
|
|
|
+ <ws-form-item label="品级" span="1" prop="grade">
|
|
|
+ {{ deptBudgetList.contractGoodsInfo.grade }}
|
|
|
</ws-form-item>
|
|
|
- <ws-form-item
|
|
|
- label="杂质(%)<="
|
|
|
- span="1"
|
|
|
- prop="impurity"
|
|
|
- >
|
|
|
- {{deptBudgetList.contractGoodsInfo.impurity}}
|
|
|
+ <ws-form-item label="杂质(%)<=" span="1" prop="impurity">
|
|
|
+ {{ deptBudgetList.contractGoodsInfo.impurity }}
|
|
|
</ws-form-item>
|
|
|
- <ws-form-item
|
|
|
- label="容重(克/升)<="
|
|
|
- span="1"
|
|
|
- prop="bulkDensity"
|
|
|
- >
|
|
|
- {{deptBudgetList.contractGoodsInfo.bulkDensity}}
|
|
|
+ <ws-form-item label="容重(克/升)<=" span="1" prop="bulkDensity">
|
|
|
+ {{ deptBudgetList.contractGoodsInfo.bulkDensity }}
|
|
|
</ws-form-item>
|
|
|
<ws-form-item
|
|
|
label="霉变粒(%)<="
|
|
@@ -186,14 +114,10 @@
|
|
|
prop="mildewGrain"
|
|
|
class="result"
|
|
|
>
|
|
|
- {{deptBudgetList.contractGoodsInfo.mildewGrain}}
|
|
|
+ {{ deptBudgetList.contractGoodsInfo.mildewGrain }}
|
|
|
</ws-form-item>
|
|
|
- <ws-form-item
|
|
|
- label="热损伤(%)<="
|
|
|
- span="1"
|
|
|
- prop="jiaorenli"
|
|
|
- >
|
|
|
- {{deptBudgetList.contractGoodsInfo.jiaorenli}}
|
|
|
+ <ws-form-item label="热损伤(%)<=" span="1" prop="jiaorenli">
|
|
|
+ {{ deptBudgetList.contractGoodsInfo.jiaorenli }}
|
|
|
</ws-form-item>
|
|
|
<ws-form-item
|
|
|
label="不完善粒(%)<="
|
|
@@ -201,74 +125,54 @@
|
|
|
prop="imperfectGrain"
|
|
|
class="result"
|
|
|
>
|
|
|
- {{deptBudgetList.contractGoodsInfo.imperfectGrain}}
|
|
|
+ {{ deptBudgetList.contractGoodsInfo.imperfectGrain }}
|
|
|
</ws-form-item>
|
|
|
</ws-info-table>
|
|
|
<div class="remark">
|
|
|
<h3>流程信息</h3>
|
|
|
</div>
|
|
|
<ws-info-table>
|
|
|
- <ws-form-item
|
|
|
- label="合同收入(元)"
|
|
|
- span="1"
|
|
|
- prop="goodsNameKey"
|
|
|
- >
|
|
|
- {{deptBudgetList.contractProcessInfo.goodsNameKey}}
|
|
|
+ <ws-form-item label="合同收入(元)" span="1" prop="goodsNameKey">
|
|
|
+ {{ deptBudgetList.contractProcessInfo.goodsNameKey }}
|
|
|
</ws-form-item>
|
|
|
- <ws-form-item
|
|
|
- label="已开发票(元)"
|
|
|
- span="1"
|
|
|
- prop="goodsName"
|
|
|
- >
|
|
|
- {{deptBudgetList.contractProcessInfo.goodsName}}
|
|
|
+ <ws-form-item label="已开发票(元)" span="1" prop="goodsName">
|
|
|
+ {{ deptBudgetList.contractProcessInfo.goodsName }}
|
|
|
</ws-form-item>
|
|
|
- <ws-form-item
|
|
|
- label="费用支出(元)"
|
|
|
- span="1"
|
|
|
- prop="waterContent"
|
|
|
- >{{deptBudgetList.contractProcessInfo.waterContent}}
|
|
|
+ <ws-form-item label="费用支出(元)" span="1" prop="waterContent"
|
|
|
+ >{{ deptBudgetList.contractProcessInfo.waterContent }}
|
|
|
</ws-form-item>
|
|
|
- <ws-form-item
|
|
|
- label="未开发票(元)"
|
|
|
- span="1"
|
|
|
- prop="impurity"
|
|
|
- >{{deptBudgetList.contractProcessInfo.impurity}}
|
|
|
+ <ws-form-item label="未开发票(元)" span="1" prop="impurity"
|
|
|
+ >{{ deptBudgetList.contractProcessInfo.impurity }}
|
|
|
</ws-form-item>
|
|
|
- <ws-form-item
|
|
|
- label="未回款(元)"
|
|
|
- span="1"
|
|
|
- prop="mildewGrain"
|
|
|
- >{{deptBudgetList.contractProcessInfo.mildewGrain}}
|
|
|
+ <ws-form-item label="未回款(元)" span="1" prop="mildewGrain"
|
|
|
+ >{{ deptBudgetList.contractProcessInfo.mildewGrain }}
|
|
|
</ws-form-item>
|
|
|
<ws-form-item
|
|
|
label="已完成发运量(吨)"
|
|
|
span="1"
|
|
|
prop="imperfectGrain"
|
|
|
class="result"
|
|
|
- >{{deptBudgetList.contractProcessInfo.imperfectGrain}}
|
|
|
+ >{{ deptBudgetList.contractProcessInfo.imperfectGrain }}
|
|
|
</ws-form-item>
|
|
|
- <ws-form-item
|
|
|
- label="双章原件回收情况"
|
|
|
- span="1"
|
|
|
- prop="grade"
|
|
|
- >{{deptBudgetList.contractProcessInfo.grade}}
|
|
|
+ <ws-form-item label="双章原件回收情况" span="1" prop="grade"
|
|
|
+ >{{ deptBudgetList.contractProcessInfo.grade }}
|
|
|
</ws-form-item>
|
|
|
</ws-info-table>
|
|
|
<div class="remark">
|
|
|
<h3>备注信息</h3>
|
|
|
</div>
|
|
|
- {{deptBudgetList.remarks}}
|
|
|
- <img :src="deptBudgetList.addressUrl" alt="">
|
|
|
+ {{ deptBudgetList.remarks }}
|
|
|
+ <img :src="deptBudgetList.addressUrl" alt="" />
|
|
|
</base-card>
|
|
|
</ws-form>
|
|
|
- <div style='text-align:right;padding:10px;'>
|
|
|
+ <div style="text-align: right; padding: 10px">
|
|
|
<el-button
|
|
|
- class="bg-bottom"
|
|
|
- type="primary"
|
|
|
- size="small"
|
|
|
- @click="returnsales()"
|
|
|
- >关闭</el-button
|
|
|
- >
|
|
|
+ class="bg-bottom"
|
|
|
+ type="primary"
|
|
|
+ size="small"
|
|
|
+ @click="returnsales()"
|
|
|
+ >关闭</el-button
|
|
|
+ >
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
@@ -306,6 +210,7 @@ export default {
|
|
|
showType: true,
|
|
|
// 年
|
|
|
year: '',
|
|
|
+ status: '',
|
|
|
// 提交类型
|
|
|
submitType: true,
|
|
|
tableData: [{ date: 1111, name: 'qqqq', address: 'errrtt' }],
|
|
@@ -320,13 +225,14 @@ export default {
|
|
|
},
|
|
|
|
|
|
activated() {
|
|
|
+ this.status = this.$route.query.status
|
|
|
this.loaddata()
|
|
|
this.showType = this.isShow
|
|
|
},
|
|
|
methods: {
|
|
|
loaddata() {
|
|
|
// 数据
|
|
|
- examineList({ id: this.$route.params.id })
|
|
|
+ examineList({ id: this.$route.query.id })
|
|
|
.toPromise()
|
|
|
.then((response) => {
|
|
|
this.deptBudgetList = response
|