From 9057e04efad1b7d61c77a72e5c37a504d0aee935 Mon Sep 17 00:00:00 2001
From: doum <doum>
Date: 星期五, 26 九月 2025 09:24:03 +0800
Subject: [PATCH] H5静态化
---
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