|
@@ -364,7 +364,7 @@
|
|
>
|
|
>
|
|
<el-button type="primary" size="small" @click="confirmReconciliation">确认对账</el-button>
|
|
<el-button type="primary" size="small" @click="confirmReconciliation">确认对账</el-button>
|
|
<el-button type="success" size="small">导出</el-button>
|
|
<el-button type="success" size="small">导出</el-button>
|
|
- <el-button type="info" size="small">打印</el-button>
|
|
|
|
|
|
+ <el-button type="info" size="small" @click="openPrint=true">打印</el-button>
|
|
<el-button type="danger" size="small">删除</el-button>
|
|
<el-button type="danger" size="small">删除</el-button>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
@@ -672,6 +672,49 @@
|
|
</div>
|
|
</div>
|
|
</el-dialog>
|
|
</el-dialog>
|
|
</el-dialog>
|
|
</el-dialog>
|
|
|
|
+
|
|
|
|
+ <!-- 打印页面 -->
|
|
|
|
+ <el-dialog
|
|
|
|
+ :visible.sync="openPrint"
|
|
|
|
+ width="70%"
|
|
|
|
+ append-to-body
|
|
|
|
+ :close-on-click-modal="false"
|
|
|
|
+ title="对账单"
|
|
|
|
+ >
|
|
|
|
+ <el-table
|
|
|
|
+ border="true"
|
|
|
|
+ v-loading="loading"
|
|
|
|
+ :data="DzfeeList"
|
|
|
|
+ @selection-change="handleSelectionChanGe">
|
|
|
|
+
|
|
|
|
+ <el-table-column label="行号" align="center" type="index" />
|
|
|
|
+ <el-table-column label="提单号" align="center" prop="fMblno" />
|
|
|
|
+ <el-table-column label="业务日期" align="center" prop="fBsdate">
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <span>{{scope.row.fBsdate.slice(0,10)}}</span>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column label="费用名称" align="center" prop="fFeeName" />
|
|
|
|
+ <el-table-column label="收/付" align="center" prop="fSrcdc">
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <span v-if="scope.row.fSrcdc == 'D'">收</span>
|
|
|
|
+ <span v-else-if="scope.row.fSrcdc == 'C'">付</span>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column label="金额" align="center" prop="fAmtdr" />
|
|
|
|
+ <el-table-column label="本次金额" align="center" prop="fAmt" />
|
|
|
|
+ <el-table-column label="业务类型" align="center" prop="fBilltype">
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <span v-if="scope.row.fBilltype == 'SJRK'">入库</span>
|
|
|
|
+ <span v-else-if="scope.row.fBilltype == 'SJCK'">出库</span>
|
|
|
|
+ <span v-else-if="scope.row.fBilltype == 'CKDB'">调拨</span>
|
|
|
|
+ <span v-else-if="scope.row.fBilltype == 'HQZY'">货权转移</span>
|
|
|
|
+ <span v-else>{{scope.row.fBilltype}}</span>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ </el-table>
|
|
|
|
+ <el-button style="marginTop:10px">打印</el-button>
|
|
|
|
+ </el-dialog>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
@@ -687,6 +730,7 @@ export default {
|
|
},
|
|
},
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
|
|
+ openPrint:false,
|
|
statrGo:true,
|
|
statrGo:true,
|
|
state_s: true,
|
|
state_s: true,
|
|
browseStatus:false,
|
|
browseStatus:false,
|