fix: 茅台预约,自测问题修复。

This commit is contained in:
tianyongbao
2024-12-07 23:57:13 +08:00
parent c15d93346b
commit 5c8d83c960

View File

@@ -6,6 +6,9 @@
<el-form-item label="用户" prop="title">
<el-input v-model="queryParams.mobile" placeholder="请输入用户" clearable @keyup.enter="handleQuery" />
</el-form-item>
<el-form-item label="日志记录内容" prop="logContent">
<el-input v-model="queryParams.logContent" placeholder="请输入日志记录内容" clearable @keyup.enter="handleQuery" />
</el-form-item>
<el-form-item label="操作状态" prop="status">
<el-select v-model="queryParams.status" placeholder="请选择操作状态" clearable>
<el-option v-for="dict in sys_common_status" :key="dict.value" :label="dict.label" :value="dict.value" />
@@ -50,15 +53,15 @@
</template>
</el-table-column>
<el-table-column label="操作时间" align="center" prop="operTime" width="160"> </el-table-column>
<!-- <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
<el-table-column label="操作" align="center" width="100" class-name="small-padding fixed-width">
<template v-slot="scope">
<div class="ctrl-btn d-flex">
<el-tooltip v-for="item in operateList" :key="item.id" class="item" effect="dark" :content="item.title" placement="top">
<el-button :icon="item.icon" :v-hasPermi="item.hasPermi" circle @click="handleOperate(item.id,scope.row)"></el-button>
<el-button :icon="item.icon" :v-hasPermi="item.hasPermi" circle @click="handleOperate(item.id, scope.row)"></el-button>
</el-tooltip>
</div>
</template>
</el-table-column> -->
</el-table-column>
</el-table>
<el-pagination small background layout="total, prev, pager, next" :total="total" @current-change="handleCurrentChange" />
</div>
@@ -99,7 +102,11 @@ const single = ref(true)
const multiple = ref(true)
const total = ref(0)
const title = ref('')
const operateList = ref([{ id: 'view', icon: 'View', title: '查看', hasPermi: ['invest:ilog:query'] }])
const operateList = ref([
// { id: 'view', icon: 'View', title: '查看', hasPermi: ['invest:ilog:query'] },
// { id: 'edit', icon: 'Edit', title: '修改', hasPermi: ['invest:heartJourney:edit'] },
{ id: 'delete', icon: 'Delete', title: '删除', hasPermi: ['invest:heartJourney:remove'] }
])
const data = reactive({
form: {},
queryParams: {
@@ -169,7 +176,8 @@ function handleQuery() {
/** 重置按钮操作 */
function resetQuery() {
proxy.resetForm('queryRef')
queryParams.value.mobile = null
queryParams.value.status = null
handleQuery()
}