|
@@ -44,7 +44,7 @@
|
|
|
<el-table :data="list">
|
|
|
<el-table-column label="序号" width="80px" align="center">
|
|
|
<template slot-scope="{ $index }">
|
|
|
- {{ $index + 1 }}
|
|
|
+ {{ $index + curPageBeginIndex }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="operator_id" label="操作人ID" />
|
|
@@ -71,6 +71,7 @@ let storeIndexList = ref([]);
|
|
|
let curStoreIndexCode = ref('');
|
|
|
let operatorName = ref('');
|
|
|
|
|
|
+let curPageBeginIndex = ref(1);
|
|
|
function queryOperateLogList() {
|
|
|
PageQueryOperateLogList({
|
|
|
data_type: curDateType.value,
|
|
@@ -78,10 +79,11 @@ function queryOperateLogList() {
|
|
|
operator_name: operatorName.value,
|
|
|
cur_page: cur_page.value,
|
|
|
page_capacity: page_capacity.value
|
|
|
- }).then(({ cur_page: page, total_count: total, data_list }) => {
|
|
|
+ }).then(({ cur_page: page, total_count: total, data_list, cur_page_begin_index }) => {
|
|
|
cur_page.value = page;
|
|
|
total_count.value = total;
|
|
|
list.value = data_list;
|
|
|
+ curPageBeginIndex.value = cur_page_begin_index;
|
|
|
});
|
|
|
}
|
|
|
|