fix:修复修改密码报错问题

This commit is contained in:
2024-06-30 09:52:27 +08:00
parent 0750e6c16f
commit 23bfb3ce1c
6 changed files with 26 additions and 27 deletions

View File

@@ -14,13 +14,12 @@
>
<!-- <el-table-column type="selection" width="55"/>-->
<!-- <el-table-column v-if="false" prop="id" label="id"/>-->
<el-table-column prop="operate" label="操作" :min-width="flexWidth('operate',crud.data,操作)" />
<!-- <el-table-column prop="trace_id" label="链路追踪" /> -->
<el-table-column prop="method" label="方法" :min-width="flexWidth('method',crud.data,方法)" />
<el-table-column prop="requestparam" label="请求参数" :show-overflow-tooltip="true" width="300px" />
<el-table-column prop="responseparam" label="返回参数" :show-overflow-tooltip="true" width="300px" />
<el-table-column prop="logTime" label="记录时间" :min-width="flexWidth('logTime',crud.data,记录时间)" />
<el-table-column prop="content" label="内容详情" :show-overflow-tooltip="true" width="300px" />
<el-table-column prop="method" label="方法" width="150px" />
<el-table-column prop="requestparam" label="请求参数" class="text-wrapper" />
<el-table-column prop="responseparam" label="返回参数" class="text-wrapper" />
<el-table-column prop="logTime" label="记录时间" width="190px" />
<el-table-column prop="content" label="内容详情" class="text-wrapper" />
</el-table>
<!--分页组件-->
@@ -102,5 +101,8 @@ export default {
</script>
<style scoped>
.text-wrapper {
word-break: break-all;
word-wrap: break-word
}
</style>

View File

@@ -8,18 +8,14 @@
<!-- style="width: 200px;"-->
<!-- class="filter-item"-->
<!-- />-->
<el-select
<el-input
v-model="query.method"
clearable
filterable
size="small"
placeholder="请输入你要搜索的方法名"
style="width: 200px;"
class="filter-item"
style="width: 200px"
@change="crud.toQuery"
>
<el-option v-for="item in methods" :key="item.id" :label="item.label" :value="item.value" />
</el-select>
/>
<el-input
v-model="query.requestparam"
clearable