mirror of
https://github.com/lnbits/lnbits.git
synced 2025-04-04 18:12:02 +02:00
feat: basic search
This commit is contained in:
parent
777fcd9077
commit
366f89d5f1
lnbits
@ -72,6 +72,7 @@
|
||||
v-else-if="['component', 'response_code','request_method'].includes(col.name)"
|
||||
v-model="searchData[col.name]"
|
||||
:options="searchOptions[col.name]"
|
||||
@update:model-value="searchAuditBy(col.name)"
|
||||
:label="col.label"
|
||||
style="width: 100px"
|
||||
></q-select>
|
||||
|
@ -106,12 +106,13 @@ window.app = Vue.createApp({
|
||||
methods: {
|
||||
async fetchAudit(props) {
|
||||
try {
|
||||
console.log("### fetchAudit", this.searchData)
|
||||
const params = LNbits.utils.prepareFilterQuery(this.auditTable, props)
|
||||
const {data} = await LNbits.api.request(
|
||||
'GET',
|
||||
`/audit/api/v1?${params}`
|
||||
)
|
||||
|
||||
console.log("### data", data)
|
||||
this.auditTable.pagination.rowsNumber = data.total
|
||||
this.auditEntries = data.data
|
||||
await this.fetchAuditStats(props)
|
||||
@ -248,15 +249,14 @@ window.app = Vue.createApp({
|
||||
maintainAspectRatio: false,
|
||||
plugins: {
|
||||
title: {
|
||||
display: true,
|
||||
text: 'HTTP Methods'
|
||||
display: false,
|
||||
}
|
||||
}
|
||||
},
|
||||
data: {
|
||||
datasets: [
|
||||
{
|
||||
label: 'HTTP Methods',
|
||||
label: '',
|
||||
data: [],
|
||||
backgroundColor: [
|
||||
'rgb(255, 99, 132)',
|
||||
|
Loading…
x
Reference in New Issue
Block a user