mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-05-05 18:40:14 +08:00
前端财务中心页面添加分页
This commit is contained in:
@@ -171,6 +171,7 @@ export default {
|
||||
getMerchantOrderList(param).then((response) => {
|
||||
console.log("getMerchantOrderList", response)
|
||||
this.merchantOrderList = response.rows;
|
||||
this.total = response.total;
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
@@ -167,7 +167,6 @@
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
|
||||
<pagination
|
||||
v-show="total > 0"
|
||||
:total="total"
|
||||
@@ -176,6 +175,7 @@
|
||||
@pagination="getFinancialMerchantList"
|
||||
/>
|
||||
</div>
|
||||
|
||||
</template>
|
||||
|
||||
<script>
|
||||
@@ -244,8 +244,10 @@ export default {
|
||||
// 获取运营商列表
|
||||
getFinancialMerchantList() {
|
||||
getFinancialMerchantList().then((response) => {
|
||||
console.log("merchantList", response)
|
||||
console.log("response", response)
|
||||
this.merchantList = response.rows;
|
||||
console.log("response.total", response.total)
|
||||
this.total = response.total;
|
||||
})
|
||||
},
|
||||
// 取消按钮
|
||||
|
||||
Reference in New Issue
Block a user