123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389 |
- <template>
- <div v-if="type == 'image'">
- <ul v-for="(item,index) in value" :key="index" class="el-upload-list el-upload-list--picture-card">
- <li tabindex="0" class="el-upload-list__item is-ready" :style="'width: '+width+'px;height: '+height+'px'">
- <div>
- <img :src="item" alt="" class="el-upload-list__item-thumbnail">
- <span class="el-upload-list__item-actions">
- <span v-if="index != 0" class="el-upload-list__item-preview" @click="moveMaterial(index,'up')">
- <i class="el-icon-back" />
- </span>
- <span class="el-upload-list__item-preview" @click="zoomMaterial(index)">
- <i class="el-icon-view" />
- </span>
- <span class="el-upload-list__item-delete" @click="deleteMaterial(index)">
- <i class="el-icon-delete" />
- </span>
- <span v-if="index != value.length-1" class="el-upload-list__item-preview" @click="moveMaterial(index,'down')">
- <i class="el-icon-right" />
- </span>
- </span>
- </div>
- </li>
- </ul>
- <div v-if="num > value.length" tabindex="0" class="el-upload el-upload--picture-card" :style="'width: '+width+'px;height: '+height+'px;'+'line-height:'+height+'px;'" @click="toSeleteMaterial">
- <i class="el-icon-plus" />
- </div>
- <!-- 查看 -->
- <el-dialog
- append-to-body
- :visible.sync="dialogVisible"
- width="35%">
- <img :src="url" alt="" style="width: 100%">
- </el-dialog>
- <!-- 素材列表 -->
- <el-dialog
- title="图片素材库"
- append-to-body
- :visible.sync="listDialogVisible"
- width="70%">
- <el-container>
- <el-aside width="unset">
- <div style="margin-bottom: 10px">
- <el-button
- class="el-icon-plus"
- size="small"
- @click="materialgroupAdd()"
- >
- 添加分组
- </el-button>
- </div>
- <div class="group-list">
- <div class="group-item" v-for="(group) in materialGroupList">
- <el-button @click="selectGroup(group)" type="primary" plain >{{group.name}}</el-button>
- </div>
- </div>
- </el-aside>
- <el-main>
- <el-card>
- <div slot="header">
- <el-row>
- <el-col :span="12">
- <span>{{ materialGroup.name }}</span>
- <span v-if="materialGroup.groupId >0">
- <el-button size="small" type="text" class="el-icon-edit" style="margin-left: 10px;" @click="materialgroupEdit(materialGroup)">重命名</el-button>
- <el-button size="small" type="text" class="el-icon-delete" style="margin-left: 10px;color: red" @click="materialgroupDelete(materialGroup)">删除</el-button>
- </span>
- </el-col>
- <el-col :span="12" style="text-align: right;">
- <el-upload
- :action="uploadUrl"
- :file-list="[]"
- :on-progress="handleProgress"
- :before-upload="beforeUpload"
- :on-success="handleSuccess"
- :data="{type: 1}"
- multiple
- >
- <el-button size="small" type="primary">批量上传</el-button>
- </el-upload>
- </el-col>
- </el-row>
- </div>
- <div v-loading="tableLoading">
- <el-alert
- v-if="tableData.length <= 0"
- title="暂无数据"
- type="info"
- :closable="false"
- center
- show-icon
- />
- <el-row :gutter="5">
- <el-checkbox-group v-model="urls" :max="num - value.length">
- <el-col v-for="(item,index) in tableData" :key="index" :span="4">
- <el-card :body-style="{ padding: '5px' }">
- <el-image
- style="width: 100%;height: 100px"
- :src="item.url"
- fit="contain"
- :preview-src-list="[item.url]"
- :z-index="9999"
- />
- <div>
- <el-checkbox class="material-name" :label="item.url">
- 选择
- </el-checkbox>
- <el-row>
- <el-col :span="24" class="col-do">
- <el-button type="text" size="medium" @click="materialDel(item)">删除</el-button>
- </el-col>
- </el-row>
- </div>
- </el-card>
- </el-col>
- </el-checkbox-group>
- </el-row>
- <pagination
- v-show="total>0"
- :total="total"
- :page.sync="queryParams.pageNum"
- :limit.sync="queryParams.pageSize"
- @pagination="getMaterialList"
- />
-
- </div>
- </el-card>
- </el-main>
- </el-container>
- <span slot="footer" class="dialog-footer">
- <el-button @click="listDialogVisible = false">取 消</el-button>
- <el-button type="primary" @click="submit">确 定</el-button>
- </span>
-
- </el-dialog>
- </div>
- </template>
- <script>
- import { listMaterial, getMaterial, delMaterial, addMaterial, updateMaterial, exportMaterial } from "@/api/store/material";
- import { getAllMaterialGroup,listMaterialGroup, getMaterialGroup, delMaterialGroup, addMaterialGroup, updateMaterialGroup, exportMaterialGroup } from "@/api/store/materialGroup";
- export default {
- name: 'ImageSelect',
- props: {
- // 素材数据
- value: {
- type: Array,
- default() {
- return []
- }
- },
- // 素材类型
- type: {
- type: String
- },
- // 素材限制数量,默认5个
- num: {
- type: Number,
- default() {
- return 5
- }
- },
- // 宽度
- width: {
- type: Number,
- default() {
- return 150
- }
- },
- // 宽度
- height: {
- type: Number,
- default() {
- return 150
- }
- }
- },
- data() {
- return {
- uploadUrl:process.env.VUE_APP_BASE_API+"/common/uploadOSS",
- dialogVisible: false,
- url: '',
- listDialogVisible: false,
- materialGroupList: [],
- materialGroupLoading: false,
- materialGroup:{},
- tableData: [],
- resultNumber: 0,
- total: 0,
- queryParams: {
- pageNum: 1,
- pageSize: 10,
- type: null,
- groupId: null,
- name: null,
- url: null,
- isDel: null,
- createUserId: null,
- },
- tableLoading: false,
- urls: []
- }
- },
- mounted(){
- this.getAllMaterialGroup();
- },
- methods: {
- selectGroup(item){
- this.materialGroup=item;
- this.queryParams.groupId=item.groupId;
- this.getMaterialList();
- },
- materialgroupAdd() {
- const that = this
- this.$prompt('请输入分组名', '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消'
- }).then(({ value }) => {
- addMaterialGroup({
- name: value
- }).then(function() {
- that.materialGroup={};
- that.getAllMaterialGroup()
- })
- }).catch(() => {
- })
- },
- materialgroupDelete(materialgroupObj) {
- const that = this
- this.$confirm('是否确认删除该分组?', '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning'
- }).then(function() {
- delMaterialGroup(materialgroupObj.groupId)
- .then(function() {
- that.materialGroup={};
- that.getAllMaterialGroup()
- })
- })
- },
- materialgroupEdit(materialgroupObj) {
- const that = this
- this.$prompt('请输入分组名', '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- inputValue: materialgroupObj.name
- }).then(({ value }) => {
- updateMaterialGroup({
- groupId: materialgroupObj.groupId,
- name: value
- }).then(function() {
- that.materialGroup={};
- that.getAllMaterialGroup()
- })
- }).catch(() => {
- })
- },
- getAllMaterialGroup() {
- this.materialGroupLoading = true;
- getAllMaterialGroup({}).then(response => {
- this.materialGroupList = response.data
- console.log(this.materialGroupList)
- this.materialGroupLoading = false;
- });
- },
- getMaterialList() {
- this.tableLoading = true;
- listMaterial(this.queryParams).then(response => {
- this.tableData = response.rows;
- this.total = response.total;
- this.tableLoading = false;
- });
- },
- moveMaterial(index, type) {
- if (type == 'up') {
- const tempOption = this.value[index - 1]
- this.$set(this.value, index - 1, this.value[index])
- this.$set(this.value, index, tempOption)
- }
- if (type == 'down') {
- const tempOption = this.value[index + 1]
- this.$set(this.value, index + 1, this.value[index])
- this.$set(this.value, index, tempOption)
- }
- },
- zoomMaterial(index) {
- this.dialogVisible = true
- this.url = this.value[index]
- },
- deleteMaterial(index) {
- const that = this
- this.$confirm('是否确认删除?', '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning'
- }).then(function() {
- that.value.splice(index, 1)
- that.urls = []
- })
- },
- toSeleteMaterial() {
- this.listDialogVisible = true
- this.getAllMaterialGroup()
- this.getMaterialList();
- },
- materialDel(item) {
- const that = this
- this.$confirm('是否确认删除该素材?', '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning'
- }).then(function() {
- delMaterial(item.materialId)
- .then(function() {
- that.queryParams.pageNum=0;
- that.getMaterialList();
- })
- })
- },
- handleProgress(event, file, fileList) {
- },
- handleSuccess(response, file, fileList) {
- const that = this
- addMaterial({
- type: '1',
- groupId: this.queryParams.groupId,
- name: file.name,
- url: response.url
- }).then(() => {
- this.resultNumber++
- if (fileList.length === this.resultNumber) {
- that.getMaterialList()
- this.resultNumber = 0
- }
- })
- },
- beforeUpload(file) {
- const isPic =
- file.type === 'image/jpeg' ||
- file.type === 'image/png' ||
- file.type === 'image/gif' ||
- file.type === 'image/jpg'
- const isLt2M = file.size / 1024 / 1024 < 2
- if (!isPic) {
- this.$message.error('上传图片只能是 JPG、JPEG、PNG、GIF 格式!')
- return false
- }
- if (!isLt2M) {
- this.$message.error('上传头像图片大小不能超过 2MB!')
- }
- return isPic && isLt2M
- },
- submit() {
- this.urls.forEach(item => {
- this.$set(this.value, this.value.length, item)
- })
- this.listDialogVisible = false
- }
- }
- }
- </script>
- <style rel="stylesheet/scss" lang="scss" scoped>
- ::v-deep .el-icon-circle-close{
- color: red;
- }
- .material-name{
- padding: 8px 0px;
- }
- .col-do{
- text-align: center;
- }
- .button-do{
- padding: unset!important;
- font-size: 12px;
- }
- .group-list{
- display: flex;
- flex-direction:column;
- align-items: flex-start;
- }
- .group-item{
- margin: 5px;
- }
- </style>
|