优化字段

This commit is contained in:
duan 2024-06-22 14:52:19 +08:00
parent 5045f11c53
commit 72ed4be931
2 changed files with 7 additions and 2 deletions

View File

@ -61,9 +61,14 @@
<div class="head-container">
<el-table :data="tableData.data" v-loading="tableData.loading" v-if="orderType == 1">
<el-table-column label="日期" prop="tradeDay"></el-table-column>
<el-table-column label="营业额" prop="total">
<template v-slot="scope">
{{ scope.row.total }}
</template>
</el-table-column>
<el-table-column label="销售额" prop="total">
<template v-slot="scope">
{{ scope.row.total }}
{{ scope.row.total + scope.row.refund }}
</template>
</el-table-column>
<el-table-column label="微信小程序支付" prop="wxLite">

View File

@ -32,7 +32,7 @@
</el-row>
<el-row v-if="shopTypes[shopTypesActive].value == 'purveyor'">
<el-col :span="8">
<el-form-item label="应金额">
<el-form-item label="应金额">
<el-input v-model="queryForm.totalAmount" placeholder="请输入应收金额"
style="width: 220px;"></el-input>
</el-form-item>