|
@@ -235,7 +235,7 @@
|
|
<el-button type="warning" size="small" @click="charGe">收费</el-button>
|
|
<el-button type="warning" size="small" @click="charGe">收费</el-button>
|
|
<el-button type="primary" size="small" @click="confirmCharge">确认收费</el-button>
|
|
<el-button type="primary" size="small" @click="confirmCharge">确认收费</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>
|
|
<el-table v-loading="loading" :data="increase_s" @selection-change="handleSelectionChange_s">
|
|
<el-table v-loading="loading" :data="increase_s" @selection-change="handleSelectionChange_s">
|
|
@@ -424,7 +424,51 @@
|
|
</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="increase_s"
|
|
|
|
+ @selection-change="handleSelectionChanGe">
|
|
|
|
+
|
|
|
|
+ <el-table-column label="序号" type="index" width="55" align="center"/>
|
|
|
|
+ <el-table-column label="提单号" align="center" prop="fMblno"/>
|
|
|
|
+ <el-table-column label="存货单号" align="center" prop="fBscorpno"/>
|
|
|
|
+ <el-table-column label="品名" align="center" prop="fProductName"/>
|
|
|
|
+ <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="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>{{scope.row.fBilltype}}</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="fRemarks"/>
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ </el-table>
|
|
|
|
+ </el-dialog>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
@@ -448,6 +492,7 @@ export default {
|
|
components: {},
|
|
components: {},
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
|
|
+ openPrint:false,
|
|
browseStatus: true,
|
|
browseStatus: true,
|
|
nothing:[],
|
|
nothing:[],
|
|
//导入状态
|
|
//导入状态
|