|
|
@ -97,6 +97,11 @@ |
|
|
|
<span>{{ scope.row.subscribedAll }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="款、票情况" align="center" width="200"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span class="bluezi" @click="lookPayment(scope.row)">查看</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
</el-table> |
|
|
|
<div v-show="formobj.trailersList !== null && formobj.trailersList.length > 0"> |
|
|
|
<div class="title">挂车信息</div> |
|
|
@ -212,19 +217,22 @@ |
|
|
|
</el-form> |
|
|
|
</el-dialog> |
|
|
|
<dingdanInfo v-show="viewState == 2" ref="divInfo" @doback="resetState" /> |
|
|
|
<paymentticket v-show="viewState == 3" ref="divPay" @doback="resetState"/> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
|
|
|
|
<script> |
|
|
|
import { fetchSid, getNextNodesForSubmit, getPreviousNodesForReject, completeBy, breakProcess, reject } from '@/api/tesheshenpi/qiankuantiche' |
|
|
|
import dingdanInfo from '../../chukuguanliFlow/chukuguanli/relation/dingdanInfo' |
|
|
|
import paymentticket from '../../chukuguanliFlow/chukuguanli/relation/paymentticket' |
|
|
|
import upload from '@/components/uploadFile/upload' |
|
|
|
|
|
|
|
export default { |
|
|
|
name: 'qiankuanticheDaiBanByFileAndQiTaInfo', |
|
|
|
components: { |
|
|
|
upload, |
|
|
|
dingdanInfo |
|
|
|
dingdanInfo, |
|
|
|
paymentticket |
|
|
|
}, |
|
|
|
data() { |
|
|
|
return { |
|
|
@ -388,6 +396,14 @@ export default { |
|
|
|
this.viewState = 2 |
|
|
|
this.$refs['divInfo'].showInfo({ sid: this.formobj.busSalesOrderSid }) |
|
|
|
}, |
|
|
|
// 查看款、票情况 |
|
|
|
lookPayment(row) { |
|
|
|
this.viewState = 3 |
|
|
|
const params = { |
|
|
|
vinSid: row.carSid |
|
|
|
} |
|
|
|
this.$refs['divPay'].showInfo(this.formobj.contractId, params) |
|
|
|
}, |
|
|
|
resetState() { |
|
|
|
this.viewState = 1 |
|
|
|
}, |
|
|
|