From a67fb8cc8644174b16c3cfe8082b7cf61e5b85e9 Mon Sep 17 00:00:00 2001 From: value <z1292839451@163.com> Date: 星期五, 10 五月 2024 09:53:10 +0800 Subject: [PATCH] 复核按钮权限恢复 --- src/view/notice.vue | 112 +++++++++++++++++++++++++------------------------------ 1 files changed, 51 insertions(+), 61 deletions(-) diff --git a/src/view/notice.vue b/src/view/notice.vue index 691e041..4aae834 100644 --- a/src/view/notice.vue +++ b/src/view/notice.vue @@ -33,74 +33,64 @@ </el-dropdown-menu> </el-dropdown> </div> - <div class="notice-content" @scroll="scrollFn" v-loading="loading"> - <div class="notice-content-item" v-for="(m,i) in list" :key="i"> - <div class="btns" v-if="m"> - <el-dropdown style="margin-right: 20px;" trigger="click" @command="e=>handleDropdown(e,m)" v-if="m.messageType==2||m.messageType==3"> - <span class="el-dropdown-link"> - <span class="more" style="line-height: 26px;display: inline-block;">···</span> - </span> - <el-dropdown-menu slot="dropdown" v-if="m.messageType==2"> - <el-dropdown-item v-for="(n,j) in dropdownList0" :key="j" :command="n.value"> - {{ n.label }} - </el-dropdown-item> - </el-dropdown-menu> - <el-dropdown-menu slot="dropdown" v-if="m.messageType==3"> - <el-dropdown-item v-for="(n,j) in dropdownList1" :key="j" :command="n.value"> - {{ n.label }} - </el-dropdown-item> - </el-dropdown-menu> - </el-dropdown> - <i class="el-icon-close" style="cursor: pointer;" @click="handleDel(m)"></i> - </div> - <div class="content"> - <img :src="`../../static/img/notice-${m.messageType}.svg`" alt="" style="width: 50px;margin-right: 18px;"> - <div class="content-info"> - <h4 style="font-weight: normal;margin-bottom: 4px;display: flex;align-items: center;justify-content: space-between;"> - <span>{{ m.theme }}<el-tag :type="!m.messageStatus?'danger':'success'" size="small" v-if="m.messageType==1||m.messageType==2||m.messageType==3" style="margin-left: 8px;">{{ !m.messageStatus?'鏈鐞�':'宸插鐞�' }}</el-tag></span> - <span class="time" style="color: #999999;font-size: 12px;">{{ m.createTime }}</span> - </h4> - <p style="color: #999999;font-size: 14px;margin-bottom: 6px;cursor: pointer;" class="ellipsis-multiline" @click="goNoticeDetail(m)">{{ m.content }}</p> - <p style="font-size: 12px;color: #999999;display: flex;align-items: center;justify-content: space-between;"> - <span>鍙戦�佷汉锛歿{m.createUser}}</span> - <span>鏀朵欢浜猴細{{ m.consigneeUser }}</span> - </p> + <div class="notice-content" v-loading="loading"> + <scroll-pagination @load="refresh" :finishLoding="finishLoding"> + <div class="notice-content-item" v-for="(m,i) in list" :key="i"> + <div class="btns" v-if="m"> + <el-dropdown style="margin-right: 20px;" trigger="click" @command="e=>handleDropdown(e,m)" v-if="m.messageType==2||m.messageType==3"> + <span class="el-dropdown-link"> + <span class="more" style="line-height: 26px;display: inline-block;">···</span> + </span> + <el-dropdown-menu slot="dropdown" v-if="m.messageType==2"> + <el-dropdown-item v-for="(n,j) in dropdownList0" :key="j" :command="n.value"> + {{ n.label }} + </el-dropdown-item> + </el-dropdown-menu> + <el-dropdown-menu slot="dropdown" v-if="m.messageType==3"> + <el-dropdown-item v-for="(n,j) in dropdownList1" :key="j" :command="n.value"> + {{ n.label }} + </el-dropdown-item> + </el-dropdown-menu> + </el-dropdown> + <i class="el-icon-close" style="cursor: pointer;" @click="handleDel(m)"></i> + </div> + <div class="content"> + <img :src="`../../static/img/notice-${m.messageType}.svg`" alt="" style="width: 50px;margin-right: 18px;"> + <div class="content-info"> + <h4 style="font-weight: normal;margin-bottom: 4px;display: flex;align-items: center;justify-content: space-between;"> + <span>{{ m.theme }}<el-tag :type="!m.messageStatus?'danger':'success'" size="small" v-if="m.messageType==1||m.messageType==2||m.messageType==3" style="margin-left: 8px;">{{ !m.messageStatus?'鏈鐞�':'宸插鐞�' }}</el-tag></span> + <span class="time" style="color: #999999;font-size: 12px;">{{ m.createTime }}</span> + </h4> + <p style="color: #999999;font-size: 14px;margin-bottom: 6px;cursor: pointer;" class="ellipsis-multiline" @click="goNoticeDetail(m)">{{ m.content }}</p> + <p style="font-size: 12px;color: #999999;display: flex;align-items: center;justify-content: space-between;"> + <span>鍙戦�佷汉锛歿{m.createUser}}</span> + <span>鏀朵欢浜猴細{{ m.consigneeUser }}</span> + </p> + </div> + </div> + <div class="new-notice" v-if="!m.viewStatus"> + <span>new</span> </div> </div> - <div class="new-notice" v-if="!m.viewStatus"> - <span>new</span> - </div> - </div> - <div v-if="list.length<1&&!loading&&!isLoding" style="color:#909399;font-size:14px;text-align: center;margin-top:200px" >鏆傛棤鏁版嵁</div> - <div v-if="list.length>0"> - <el-button - v-if="isLoding" - type="text" - style="display: flex; margin: 0 auto; color: #909399" - ><i class="el-icon-loading" style="font-size:20px"></i - ></el-button> - <el-button - type="text" - v-if="finishLoding" - style="display: flex; margin: 0 auto; color: #909399" - >宸茬粡娌℃湁鏇村鍟</el-button - > - </div> + </scroll-pagination> + <div v-if="list.length<1&&!loading" style="color:#909399;font-size:14px;text-align: center;margin-top:200px" >鏆傛棤鏁版嵁</div> </div> </el-drawer> </div> </template> <script> - +import ScrollPagination from '../components/tool/scroll-paging.vue' export default { + components: { + ScrollPagination + }, data(){ return{ drawer:false, direction:'rtl', options:[], type:'0', - list:[], dropdownList0:[ { label:'閫氳繃', @@ -129,11 +119,11 @@ value:4 }, ], + list:[], currentPage:1, - pageSize: 16, // 涓�椤�16鏉� + pageSize: 8, // 涓�椤�7鏉� total: null, - loading: false, // 缁勪欢loading鐨勫睍绀�,榛樿涓簍rue - isLoding: false, // 鍔犺浇涓紝loading鍥炬爣,榛樿涓簍rue + loading: true, // 缁勪欢loading鐨勫睍绀�,榛樿涓簍rue finishLoding: false // 鍔犺浇瀹屾垚锛屾樉绀哄凡缁忔病鏈夋洿澶氫簡 } }, @@ -145,13 +135,11 @@ }, methods:{ refresh(){ - if(this.currentPage>1){ - this.isLoding = true - }else{ + if(this.currentPage==1){ this.loading = true } if(this.list.length==0){ - window.addEventListener("scroll", this.throttle(this.scrollFn, 20000)); + this.finishLoding = false } let type = this.type==0?null:this.type; this.$axios.get(this.$api.informationNotification.page+'?size='+this.pageSize+'¤t='+this.currentPage+(type?'&messageType='+type:'')).then(res => { @@ -170,9 +158,9 @@ if(this.total==this.list.length){ this.finishLoding = true; } + this.currentPage++ } this.loading = false - this.isLoding = false; }) }, open(){ @@ -192,6 +180,8 @@ goNoticeDetail(row){ this.$axios.put(this.$api.informationNotification.triggerModificationStatusToRead+'/'+row.id).then(res => { this.drawer = false; + row.num = Math.random(100); + this.$bus.$emit("change", JSON.stringify(row)); this.$parent.addTab({ v: "娑堟伅璇︽儏", i: "el-icon-s-tools", -- Gitblit v1.9.3