| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- <template>
- <div class="filebox">
- <el-card shadow="never">
- <div class="left">
- <el-button type="primary" @click="addCate">添加分类</el-button>
- <el-input placeholder="请输入分类搜索" style="margin: 15px 0;"></el-input>
- <el-scrollbar height="320px" style="margin:0 -10px;">
- <div :class="['li',category=='all'?'active':'']" @click="checkCategory('all');">
- <i :class="['fa',category=='all'?'fa-folder-open-o':'fa-folder-o']"></i> 全部
- </div>
- <div :class="['li',category=='unclassed'?'active':'']" @click="checkCategory('unclassed');">
- <i :class="['fa',category==''?'fa-folder-open-o':'fa-folder-o']"></i> 未归类
- </div>
- <template v-for="(item,key) in catelist">
- <div :class="['li',category==key?'active':'']" @click="checkCategory(key);">
- <i :class="['fa',category==key?'fa-folder-open-o':'fa-folder-o']"></i> {{item}}
- <div class="fr"><span @click.stop="editCate(key,item)">编辑</span>|<span @click.stop="delCate(key,item)">删除</span></div>
- </div>
- </template>
- </el-scrollbar>
- </div>
- <div class="right">
- <el-input placeholder="请输入名称搜索" style="width: 725px;margin-left: 7px;" v-model="keywords">
- <template #append>
- <el-button type="primary" size="small" @click="refresh">搜索</el-button>
- </template>
- </el-input>
- <el-upload
- :multiple="true"
- accept="image/*"
- action="{$config.baseUrl}{$config.upload.uploadurl}"
- :data="{category:category,disks:'{$config.upload.disks}'}"
- :headers="{'x-requested-with': 'XMLHttpRequest'}"
- list-type="picture-card"
- :on-success="beforeUploadSuccess"
- :file-list="list">
- <i class="fa fa-cloud-upload"></i>
- <template #file="{file}">
- <div :class="inArray(file.fullurl)!==false?'checked':''" @click="checkImg(file)">
- <div class="img">
- <img @load="parseImg" class="upload-file-img" :data-url="file.thumburl" style="width: 100%"/>
- </div>
- <span>{{file.filename}}</span>
- <i class="fa fa-check"></i>
- </div>
- </template>
- </el-upload>
- <el-pagination
- style="position: absolute;bottom: 15px;right: 15px"
- @current-change="pageChange"
- small
- :page-size="17"
- :current-page="page"
- background
- layout="prev, pager, next"
- :total="total"
- ></el-pagination>
- </div>
- </el-card>
- <div class="footer">
- <el-button type="danger" @click="delPic">删除</el-button>
- <el-button type="warning" @click="setCategory">归类</el-button>
- <el-button type="primary" @click="confirmImg">选定</el-button>
- <el-button type="success" @click="refresh">刷新</el-button>
- </div>
- </div>
- <el-dialog
- v-model="editCateForm.show"
- destroy-on-close
- :lock-scroll="false"
- :title="editCateForm.title"
- width="50%"
- :modal="false"
- align-center>
- <el-select style="width: 100%" v-model="editCateForm.key" v-if="editCateForm.type=='set'">
- <el-option
- v-for="(item,key) in catelist"
- :key="key"
- :label="item"
- :value="key">
- </el-option>
- </el-select>
- <el-input placeholder="请输入分类名称" v-model="editCateForm.value" v-else></el-input>
- <template #footer>
- <span class="dialog-footer">
- <el-button type="danger" @click="editCateForm.show=false">取消</el-button>
- <el-button type="primary" @click="confirm">确认</el-button>
- </span>
- </template>
- </el-dialog>
- </template>
- <script>
- export default{
- data:{
- list:[],
- page:1,
- category:'all',
- catelist:Yunqi.data.categoryList,
- checked:[],
- keywords:'',
- total:0,
- editCateForm:{
- show:false,
- type:'add',
- key:'',
- value:''
- },
- loading:false,
- limit:Yunqi.data.limit,
- },
- onLoad:function (){
- this.getImglist();
- },
- methods: {
- inArray:function (url) {
- let r=false;
- for(let i=0;i<this.checked.length;i++){
- if(this.checked[i].fullurl==url){
- r=i;
- break;
- }
- }
- return r;
- },
- beforeUploadSuccess:function (res,file) {
- if(res.code===0){
- Yunqi.message.error(__(res.msg));
- }
- th
|