Browse Source

优化标签发放详情弹出框

gongwencan 8 months ago
parent
commit
b4bea0c7c5
1 changed files with 0 additions and 8 deletions
  1. 0 8
      src/components/DialogTagDistributeDetail.vue

+ 0 - 8
src/components/DialogTagDistributeDetail.vue

@@ -83,12 +83,6 @@
               ></el-table-column>
           </el-table>
         </div>
-
-        <my-pagination
-          :total="total"
-          :pagination="pagination"
-          @current-change="currentPageNoChange"
-        />
       </div>
     </el-dialog>
   </template>
@@ -107,14 +101,12 @@ export default {
   methods: {
     open (data) {
       this.oData = data
-      this.pagination.pageNo = 1
       this.visible = true
       this.list = data.details
     },
     close () {
       this.oData = null
       this.visible = true
-      this.total = 0
       this.list = Object.freeze([])
     }
   }