From 9057e04efad1b7d61c77a72e5c37a504d0aee935 Mon Sep 17 00:00:00 2001 From: doum <doum> Date: 星期五, 26 九月 2025 09:24:03 +0800 Subject: [PATCH] H5静态化 --- admin/src/components/business/OperaInformationWindow.vue | 15 +++++++++++++-- 1 files changed, 13 insertions(+), 2 deletions(-) diff --git a/admin/src/components/business/OperaInformationWindow.vue b/admin/src/components/business/OperaInformationWindow.vue index fbb573b..b34b6ed 100644 --- a/admin/src/components/business/OperaInformationWindow.vue +++ b/admin/src/components/business/OperaInformationWindow.vue @@ -10,6 +10,14 @@ <el-form-item label="鏍囬" prop="title"> <el-input v-model="form.title" placeholder="璇疯緭鍏ユ爣棰�" v-trim/> </el-form-item> + <el-form-item label="鎵�灞炴ā鍧�" v-if="form.type == 0" prop="module"> + <el-select v-model="form.module" > + <el-option :value="0" label="琛屼笟璧勮"/> + <el-option :value="1" label="杩愯惀缁忛獙"/> + <el-option :value="2" label="鍔熻兘浠嬬粛"/> + <el-option :value="3" label="甯傚満淇℃伅"/>index + </el-select> + </el-form-item> <el-form-item label="鍒楄〃鍥�" prop="imgurl" > <div class="upload_wrap"> <UploadAvatarImage :file="{ 'imgurlfull': form.fullImgurl, 'imgurl': form.imgurl }" :uploadData="{folder:''}" @uploadSuccess="uploadAvatarSuccess" /> @@ -37,7 +45,6 @@ </el-form> </GlobalWindow> </template> - <script> import BaseOpera from '@/components/base/BaseOpera' import GlobalWindow from '@/components/common/GlobalWindow' @@ -57,8 +64,10 @@ id: null, remark: '', title: '', + type:null, detail: '', imgurl: '', + module: 0, fullImgurl: '', jumpType: 0, content: '', @@ -81,7 +90,7 @@ }) }, methods: { - open (title, target) { + open (title, target,type) { this.title = title this.visible = true // 鏂板缓 @@ -92,12 +101,14 @@ id: null, remark: '', title: '', + type:type, detail: '', releaseDate: dayjs().format('YYYY-MM-DD HH:mm:ss'), imgurl: '', fullImgurl: '', jumpType: 0, content: '', + module: 0, sortnum: '', status: 0 } -- Gitblit v1.9.3