From a95b1f6e57354b0798c0043f986a44f523723d32 Mon Sep 17 00:00:00 2001 From: jiangping <jp@doumee.com> Date: 星期五, 04 七月 2025 11:19:59 +0800 Subject: [PATCH] ss --- admin/src/views/business/information.vue | 19 ++++++++++++++++++- 1 files changed, 18 insertions(+), 1 deletions(-) diff --git a/admin/src/views/business/information.vue b/admin/src/views/business/information.vue index 2263d20..c865cfa 100644 --- a/admin/src/views/business/information.vue +++ b/admin/src/views/business/information.vue @@ -5,6 +5,14 @@ <el-form-item label="鏍囬" prop="title"> <el-input v-model="searchForm.title" clearable placeholder="璇疯緭鍏ユ爣棰�" @keypress.enter.native="search"></el-input> </el-form-item> + <el-form-item label="鎵�灞炴ā鍧�" prop="module"> + <el-select v-model="searchForm.module" clearable @change="search" > + <el-option :value="0" label="琛屼笟璧勮"/> + <el-option :value="1" label="杩愯惀缁忛獙"/> + <el-option :value="2" label="鍔熻兘浠嬬粛"/> + <el-option :value="3" label="甯傚満淇℃伅"/> + </el-select> + </el-form-item> <el-form-item label="鐘舵��" prop="status"> <el-select v-model="searchForm.status" clearable @change="search" placeholder="鐘舵��"> <el-option label="姝e父" value="0"></el-option> @@ -39,11 +47,19 @@ </el-image> </template> </el-table-column> - <el-table-column prop="detail" label="绠�浠�" min-width="200px"></el-table-column> + <el-table-column prop="detail" label="绠�浠�" min-width="200px" show-overflow-tooltip> </el-table-column> <el-table-column prop="jumpType" label="鍐呭" align="center" min-width="150px"> <template slot-scope="{row}"> <span v-if= "row.content!=null && row.content!=''"><el-button @click="showContentDo(row)" >鏌ョ湅鍐呭</el-button></span> <span v-else>-</span> + </template> + </el-table-column> + <el-table-column prop="module" label="鎵�灞炴ā鍧�" min-width="100px"> + <template slot-scope="{row}"> + <span v-if="row.module == 0">琛屼笟璧勮</span> + <span v-if="row.module == 1">钀ョ粡楠�</span> + <span v-if="row.module == 2">鍔熻兘浠嬬粛</span> + <span v-if="row.module == 3">甯傚満淇℃伅</span> </template> </el-table-column> <el-table-column prop="status" label="鐘舵��" min-width="100px"> @@ -115,6 +131,7 @@ searchForm: { type:0, title: '', + module: null, status: null } } -- Gitblit v1.9.3