|
@@ -1,6 +1,6 @@
|
|
|
<template>
|
|
<template>
|
|
|
<el-drawer
|
|
<el-drawer
|
|
|
- title="关联订单"
|
|
|
|
|
|
|
+ :title="`关联订单(发票总价:¥${fp_info.money})`"
|
|
|
size="60%"
|
|
size="60%"
|
|
|
:append-to-body="false"
|
|
:append-to-body="false"
|
|
|
:destroy-on-close="true"
|
|
:destroy-on-close="true"
|
|
@@ -10,37 +10,32 @@
|
|
|
:wrapperClosable="false"
|
|
:wrapperClosable="false"
|
|
|
ref="drawer_close">
|
|
ref="drawer_close">
|
|
|
<div v-loading="loading" style="padding: 20px" class="block">
|
|
<div v-loading="loading" style="padding: 20px" class="block">
|
|
|
- <el-table row-key="id" :data="list">
|
|
|
|
|
|
|
+ <el-table row-key="id" show-summary :data="list">
|
|
|
<el-table-column prop="title" label="关联项目">
|
|
<el-table-column prop="title" label="关联项目">
|
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
|
<a :href="scope.row.link" style="color: #006eff" target="_blank">{{scope.row.title}}</a>
|
|
<a :href="scope.row.link" style="color: #006eff" target="_blank">{{scope.row.title}}</a>
|
|
|
</template>
|
|
</template>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
- <el-table-column prop="money" label="应付金额">
|
|
|
|
|
|
|
+ <el-table-column prop="y_money" sortable label="应付金额">
|
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
|
<span>{{scope.row.y_money}}</span>
|
|
<span>{{scope.row.y_money}}</span>
|
|
|
</template>
|
|
</template>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
- <el-table-column prop="sf_money" label="实付金额">
|
|
|
|
|
|
|
+ <el-table-column prop="sf_money" sortable label="实付金额">
|
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
|
<span>{{scope.row.sf_money}}</span>
|
|
<span>{{scope.row.sf_money}}</span>
|
|
|
</template>
|
|
</template>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
- <el-table-column prop="sf_money" label="结算费率">
|
|
|
|
|
|
|
+ <el-table-column prop="title" label="结算费率">
|
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
|
<span>{{scope.row.js_rate}}</span>
|
|
<span>{{scope.row.js_rate}}</span>
|
|
|
</template>
|
|
</template>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
- <el-table-column prop="status" label="开票类型">
|
|
|
|
|
|
|
+ <el-table-column prop="title" label="开票类型">
|
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
|
<span>{{scope.row.invoice_type_text}}</span>
|
|
<span>{{scope.row.invoice_type_text}}</span>
|
|
|
</template>
|
|
</template>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
- <el-table-column prop="status" label="订单状态">
|
|
|
|
|
- <template slot-scope="scope">
|
|
|
|
|
- <span>{{scope.row.status_text}}</span>
|
|
|
|
|
- </template>
|
|
|
|
|
- </el-table-column>
|
|
|
|
|
</el-table>
|
|
</el-table>
|
|
|
</div>
|
|
</div>
|
|
|
</el-drawer>
|
|
</el-drawer>
|
|
@@ -56,6 +51,9 @@
|
|
|
back:{
|
|
back:{
|
|
|
type:Object
|
|
type:Object
|
|
|
},
|
|
},
|
|
|
|
|
+ fp_info:{
|
|
|
|
|
+ type:Object
|
|
|
|
|
+ }
|
|
|
},
|
|
},
|
|
|
data() {
|
|
data() {
|
|
|
return {
|
|
return {
|