123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400 |
- <style>
- .ping .ant-modal-content .ant-modal-footer {
- display: none !important;
- }
- .ant-modal-body {
- padding-top: 0px;
- }
- li {
- list-style-type: none;
- }
- </style>
- <style lang="scss" scoped>
- .actor-photo-list {
- display: flex;
- padding-left: 0;
- li {
- width: 25%;
- margin: 10px;
- position: relative;
- height: 250px;
- border: 1px solid #f2f2f2;
- img,
- video {
- width: 100%;
- margin-top: auto;
- margin-bottom: auto;
- top: 0;
- bottom: 0;
- position: absolute;
- max-height: 250px;
- }
- }
- }
- </style>
- <template>
- <a-card :bordered="false">
- <!-- 查询区域 -->
- <div class="table-page-search-wrapper">
- <a-form layout="inline">
- <a-row :gutter="24">
- <a-col :md="6" :sm="8">
- <a-form-item label="素材名称">
- <a-input placeholder="请输入素材名称" v-model="queryParam.buildingName"></a-input>
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="8">
- <span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
- <a-button type="primary" @click="searchQuery" icon="search">查询</a-button>
- <a-button
- type="primary"
- @click="searchReset"
- icon="reload"
- style="margin-left: 8px"
- >重置</a-button>
- </span>
- </a-col>
- </a-row>
- </a-form>
- </div>
- <!-- 操作按钮区域 -->
- <!-- <div class="table-operator">
- <a-button @click="handleAdd" v-show="show" type="primary" icon="plus">新增</a-button>
- </div>-->
- <!-- table区域-begin -->
- <div>
- <a-table
- ref="table"
- size="middle"
- bordered
- rowKey="id"
- :columns="columns"
- :dataSource="dataSource"
- :pagination="ipagination"
- :loading="loading"
- >
- <!-- 字符串超长截取省略号显示-->
- <span slot="esContent" slot-scope="text">
- <j-ellipsis :value="text" :length="10" />
- </span>
- <span slot="url" slot-scope="url,record">
- <img :src="url" alt style="height:150px"/>
- </span>
- <span slot="action">
- <!-- <a href="javascript:;" @click="handleDetail(record)">详情</a>
- <a-divider type="vertical" />
- <a-dropdown>
- <a class="ant-dropdown-link">
- 更多
- <a-icon type="down" />
- </a>
- <a-menu slot="overlay">
- <a-menu-item v-show="show">
- <a @click="handleEdit(record)">编辑</a>
- </a-menu-item>
- </a-menu>
- </a-dropdown>
- <a-divider type="vertical" />
- <a href="javascript:;" @click="showDetail(record)">场地信息</a>-->
- </span>
- </a-table>
- </div>
- <!-- table区域-end -->
- <!-- 表单区域 -->
- <a-modal title="详情" v-model="detail" class="ping" :width="800">
- <a-tabs defaultActiveKey="1" @change="callback" v-model="indexDetail">
- <a-tab-pane tab="场地图集" key="1" forceRender>
- <div>
- <a type="primary" style="margin-left:10px" @click="addPhoto=true">新增场地图片</a>
- <ul class="actor-photo-list">
- <li v-for="(item,index) of photoList" :key="index">
- <a-icon
- type="close-circle"
- style="position:absolute;top:-5px;right:-5px;color:red;z-index:10;cursor: pointer;"
- @click="deteleImg(item.id)"
- />
- <img :src="item.photoUrl" alt />
- </li>
- </ul>
- </div>
- <div style="text-align:right">
- <a-pagination
- showQuickJumper
- :total="total"
- @change="pageChange"
- :pageSize.sync="pageSize"
- />
- </div>
- </a-tab-pane>
- <a-tab-pane tab="场地视频" key="2">
- <div>
- <a type="primary" style="margin-left:10px" @click="addVideo=true">新增场地视频</a>
- <ul class="actor-photo-list">
- <li v-for="(item,index) of videoList" :key="index">
- <a-icon
- type="close-circle"
- style="position:absolute;top:-5px;right:-5px;color:red;z-index:10;cursor: pointer;"
- @click="deteleVideo(item.id)"
- />
- <video
- class="video"
- :src="item.videoUrl"
- controls="controls"
- style="min-height:160px"
- >您的浏览器不支持 video 标签。</video>
- </li>
- </ul>
- </div>
- <div style="text-align:right">
- <a-pagination
- showQuickJumper
- :total="videoTotal"
- @change="pageChange"
- :pageSize.sync="pageSize"
- />
- </div>
- </a-tab-pane>
- </a-tabs>
- </a-modal>
- <!-- 新增图集 -->
- <a-modal
- v-model="addPhoto"
- title="新增图集"
- @ok="handleOk('photo')"
- @cancel="handleCancel('photo')"
- >
- <upload-to-ali
- style="margin:10px"
- v-model="imageUrl"
- :customDomain="customDomain"
- preview
- :region="region"
- :bucket="bucket"
- :accept="acceptImage"
- :max="1"
- :size="1024000"
- :accessKeyId="accessKeyId"
- :accessKeySecret="accessKeySecret"
- ></upload-to-ali>
- </a-modal>
- <!-- 新增作品 -->
- <a-modal
- v-model="addVideo"
- title="新增作品"
- @ok="handleOk('video')"
- @cancel="handleCancel('video')"
- >
- <upload-to-ali
- style="margin:10px"
- v-model="videoUrl"
- :customDomain="customDomain"
- preview
- :region="region"
- :bucket="bucket"
- :accept="acceptVideo"
- :max="1"
- :size="1024000"
- :accessKeyId="accessKeyId"
- :accessKeySecret="accessKeySecret"
- ></upload-to-ali>
- </a-modal>
- </a-card>
- </template>
- <script>
- import { JeecgListMixin } from '@/mixins/JeecgListMixin'
- import JEllipsis from '@/components/jeecg/JEllipsis'
- import UploadToAli from '@femessage/upload-to-ali'
- import { yardPhotoList, yardVideoList, yardPhotoDelete, yardVideoDelete, yardPhotoAdd, yardVideoAdd } from '@/api/yard'
- export default {
- name: 'YardList',
- mixins: [JeecgListMixin],
- components: {
- JEllipsis,
- UploadToAli
- },
- data() {
- return {
- queryParam: {},
- description: '场地管理',
- // 新增修改按钮是否显示
- show: true,
- // 表头
- columns: [
- // {
- // title: '素材名称',
- // align: 'center',
- // dataIndex: ''
- // },
- {
- title: '素材展示',
- align: 'center',
- dataIndex: 'url',
- scopedSlots: { customRender: 'url' }
- },
- // {
- // title: '素材上传人',
- // align: 'center',
- // dataIndex: ''
- // },
- // {
- // title: '素材审核',
- // align: 'center',
- // dataIndex: ''
- // },
- {
- title: '创建时间',
- align: 'center',
- dataIndex: 'createTime'
- },
- // {
- // title: '投放',
- // align: 'center',
- // dataIndex: ''
- // },
- {
- title: '操作',
- dataIndex: 'action',
- align: 'center',
- scopedSlots: { customRender: 'action' }
- }
- ],
- url: {
- list: '/ctop/materialInfo/list'
- },
- detail: false,
- indexDetail: '1',
- currentPage: 0,
- pageSize: 4,
- videoTotal: 0,
- photoTotal: 0,
- total: 0,
- videoList: [],
- photoList: [],
- imageUrl: '',
- videoUrl: '',
- customDomain: '',
- region: 'oss-cn-beijing',
- bucket: 'ctop-media',
- acceptVideo: 'video/mpeg,video/mp4',
- acceptImage: 'image/jpeg,image/jpg,image/png',
- accessKeyId: 'LTAIbNbqWzSOklQV',
- accessKeySecret: '1rkPz7JNoXk8sJevPaeYHWqfkQXBGh',
- addPhoto: false,
- addVideo: false,
- confirmLoading: true
- }
- },
- methods: {
- showDetail(item) {
- console.log(item)
- this.detail = true
- this.id = item.id
- this.getPhoto()
- },
- callback(key) {
- console.log(key)
- if (key == '1') {
- this.currentPage = 1
- this.getPhoto()
- } else if (key == '2') {
- this.currentPage = 1
- this.getVideo()
- }
- },
- pageChange: function(page) {
- console.log(page)
- this.currentPage = page
- if (this.indexDetail == '1') {
- this.getPhoto()
- } else if (this.indexDetail == '2') {
- this.getVideo()
- }
- },
- getPhoto() {
- yardPhotoList({ pageNo: this.currentPage, pageSize: 4, yardId: this.id }).then(res => {
- if (res.code == 0) {
- console.log(res)
- this.photoList = res.result.records
- this.total = res.result.total
- }
- })
- },
- getVideo() {
- yardVideoList({ pageNo: this.currentPage, pageSize: 4, yardId: this.id }).then(res => {
- if (res.code == 0) {
- console.log(res)
- this.videoList = res.result.records
- this.videoTotal = res.result.total
- }
- })
- },
- handleOk(type) {
- const that = this
- if (type == 'photo') {
- yardPhotoAdd({ yardId: that.id, photoUrl: that.imageUrl })
- .then(res => {
- if (res.success) {
- this.getPhoto()
- this.handleCancel('photo')
- } else {
- that.$message.warning(res.message)
- }
- })
- .finally(() => {
- that.confirmLoading = false
- that.handleCancel('photo')
- })
- } else {
- yardVideoAdd({ yardId: that.id, videoUrl: that.videoUrl })
- .then(res => {
- if (res.success) {
- this.getVideo()
- this.handleCancel('video')
- } else {
- that.$message.warning(res.message)
- }
- })
- .finally(() => {
- that.confirmLoading = false
- that.handleCancel('video')
- })
- }
- },
- handleCancel(type) {
- if (type == 'photo') {
- this.imageUrl = ''
- this.addPhoto = false
- } else {
- this.videoUrl = ''
- this.addVideo = false
- }
- },
- deteleImg(id) {
- yardPhotoDelete({ id: id }).then(res => {
- if (res.code == 200) {
- console.log(res)
- this.getPhoto()
- }
- })
- },
- deteleVideo(id) {
- yardVideoDelete({ id: id }).then(res => {
- if (res.code == 200) {
- console.log(res)
- this.getVideo()
- }
- })
- }
- }
- }
- </script>
- <style scoped>
- @import '~@assets/less/common.less';
- </style>
|