From f4c324b44aadc4d8a44d4c67c588d2f76261ccaa Mon Sep 17 00:00:00 2001
From: wl <173@qq.com>
Date: 星期三, 30 十一月 2022 16:07:39 +0800
Subject: [PATCH] fix:消息分页 视频查询 图片查询
---
src/views/operate/fivepack/threepack/components/content.vue | 16 +++++++++-------
1 files changed, 9 insertions(+), 7 deletions(-)
diff --git a/src/views/operate/fivepack/threepack/components/content.vue b/src/views/operate/fivepack/threepack/components/content.vue
index 7275754..a3ea27b 100644
--- a/src/views/operate/fivepack/threepack/components/content.vue
+++ b/src/views/operate/fivepack/threepack/components/content.vue
@@ -37,6 +37,7 @@
v-if="isStorePage()"
type="primary"
icon="el-icon-plus"
+ class="button-addition"
@click="handleView(null, 'create')"
>娣诲姞</el-button
>
@@ -143,12 +144,12 @@
<!-- 鏌ョ湅淇敼椤甸潰 -->
<el-dialog
:visible.sync="dialogScore"
- width="45%"
+ width="60%"
:destroy-on-close="true"
title="鏌ョ湅绉垎"
- :before-close="handleClose"
+ :before-close="handleCloseScoreView"
>
- <scoreView :storeInfo="storeInfo" @closeDialog="closeDialog" />
+ <scoreView v-if="dialogScore" :storeInfo="storeInfoScoreView" />
</el-dialog>
<!-- 鍒嗛〉 -->
<div class="pagination">
@@ -200,6 +201,7 @@
userInfo: null,
dialogType: "",
storeInfo: null,
+ storeInfoScoreView: {},
};
},
@@ -227,8 +229,8 @@
this.dialogType = type;
},
handleScoreView(row) {
+ this.storeInfoScoreView = row;
this.dialogScore = true;
- this.storeInfo = row;
},
handleDelete(id) {
@@ -239,15 +241,15 @@
})
.catch((err) => this.$message({ type: "error", message: err }));
},
-
+ handleCloseScoreView() {
+ this.dialogScore = false;
+ },
handleClose() {
this.dialogUpdate = false;
- this.dialogScore = false;
},
closeDialog() {
this.dialogUpdate = false;
- this.dialogScore = false;
this.search();
},
--
Gitblit v1.8.0