| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- <template>
- <view>
- <view class="search-box ddflex">
- <view class="search-input ddflex fflex">
- <image src="/static/images/ssico.png"></image>
- <input @confirm="searchFn" confirm-type="search" @input="searchFn" v-model="searchVal" class="fflex"
- placeholder="请输入关键词" />
- </view>
- </view>
- <view style="height: 120rpx;"></view>
- <view class="ddflex" style="padding: 30rpx;">
- <view class="poster-item" v-for="item in pageList" @click="jumpDetail(item)">
- <image class="poster-item-pic" :src="item.pic" mode="aspectFill"></image>
- <view class="poster-item-title tover">{{item.title?item.title:'未命名'}}</view>
- <view class="zhuanfa">编辑</view>
- <!-- <view class="poster-item-use">2056 人正在使用</view> -->
- </view>
- </view>
- <view class="nodata nosp bgfff" v-if="pageList.length==0">
- <image src="/static/images/empty_sp.png"></image>
- <text>暂无海报</text>
- </view>
-
- <view class="act-create" @click="showBtn">
- <image src="../static/images/add.png"></image>
- <view>发布</view>
- </view>
- <view class="ceng" v-if="isShowbtn" @click="hideBtn"></view>
- <view class="side ddflex" v-if="isShowbtn">
- <view class="li" @click="jumpUrl('/library/longPosterService/longPosterService')">
- <image src="/static/images/ll_dt.png"></image>
- <view>年度账单</view>
- </view>
- <view class="li" @click="jumpUrl('/library/longPosterService/longPosterService2')">
- <image src="/static/images/ll_cz.png"></image>
- <view>日/月/年报</view>
- </view>
- </view>
- </view>
- </template>
- <script>
- const app = getApp();
- const req = require("../../utils/request.js");
- export default {
- components: {},
- props: {},
- data() {
- return {
- searchVal:'',
- isShowbtn:false,
-
- searchVal:'',
- isShow: false,
- pageList: [],
- isLoad: true,
- form: {
- page: 1,
- limit: 10
- },
- }
- },
- async onLoad(options) {
- await req.silenceLogin()
- this.getPageList(true);
- },
- onShow() {
-
- },
- onHide() {
- this.hideBtn()
- },
- onReachBottom: function() {
- this.form.page++;
- this.getPageList(false);
- },
- methods: {
- jumpUrl(url){
- uni.navigateTo({
- url:url
- })
- },
- // 获取海报
- getPageList(isShow){
- if (!this.isLoad) return false;
- this.isLoad = false;
- let form = this.form;
- form.code = 'poster_long'
- form.search = this.searchVal?this.searchVal:null
- req.loadIng('加载中')
- req.getRequest('/api/material/library',form,res => {
- this.isShow = true;
- res = res?res.list:[]
- if (res && res.length == 10) {
- this.isLoad = true;
- }
- if (this.form.page > 1) {
- res = this.pageList.concat(res);
- }
- this.pageList = res;
- uni.hideLoading()
- },isShow);
- },
-
- // 搜索
- searchFn(){
- this.isLoad = true
- this.form.page = 1
- this.getPageList()
- },
- showBtn() {
- this.isShowbtn = true;
- },
- hideBtn() {
- this.isShowbtn = false;
- },
- download(url){
- uni.downloadFile({
- url: url, //仅为示例,并非真实的资源
- success: (res) => {
- console.log(res)
- if (res.statusCode === 200) {
- console.log('下载成功');
- var oA = document.createElement("a");
- oA.download = ''; // 设置下载的文件名,默认是'下载'
- oA.href = res.tempFilePath; //临时路径再保存到本地
- document.body.appendChild(oA);
- oA.click();
- oA.remove(); // 下载之后把创建的元素删除
- req.msg('已保存')
- }
-
- }
- });
- },
- jumpDetail(item){
- if(item.cateCode=='nianduzhangdan'){
- this.jumpUrl('/library/longPosterService/longPosterService?id='+item.id)
- }
- if(item.cateCode=='lipeiribao'){
- this.jumpUrl('/library/longPosterService/longPosterService2?id='+item.id)
- }
- }
- },
- mounted() {
-
- },
- onPageScroll: function(e) {
- }
- }
- </script>
- <style>
- @import "./index.css";
- </style>
|