经办人
This commit is contained in:
@@ -81,23 +81,6 @@
|
|||||||
<ai-info-item label="群发内容" :value="item.content" isLine v-if="item.contentType == 'text'"></ai-info-item>
|
<ai-info-item label="群发内容" :value="item.content" isLine v-if="item.contentType == 'text'"></ai-info-item>
|
||||||
</ai-wrapper>
|
</ai-wrapper>
|
||||||
|
|
||||||
<!-- <ai-wrapper v-for="item in data.fileList" :key="item.id">
|
|
||||||
<ai-info-item label="图片" isLine v-if="item.contentType == 'image'">
|
|
||||||
<ai-uploader v-model="images" :instance="instance" :limit="9" disabled/>
|
|
||||||
</ai-info-item>
|
|
||||||
</ai-wrapper>
|
|
||||||
|
|
||||||
<ai-wrapper v-for="item in data.fileList" :key="item.id">
|
|
||||||
<ai-info-item label="视频" isLine v-if="item.contentType == 'video'">
|
|
||||||
<video :src="item.accessUrl" style="width: 100%; height:100%; object-fit: fill;" muted controls="controls"></video>
|
|
||||||
</ai-info-item>
|
|
||||||
</ai-wrapper>
|
|
||||||
|
|
||||||
<ai-wrapper v-for="item in data.fileList" :key="item.id">
|
|
||||||
<ai-info-item label="附件" isLine v-if="item.contentType == 'file'">
|
|
||||||
<ai-file-list :fileList="fileDownLoad"></ai-file-list>
|
|
||||||
</ai-info-item>
|
|
||||||
</ai-wrapper> -->
|
|
||||||
<ai-wrapper>
|
<ai-wrapper>
|
||||||
<ai-info-item label="图片" isLine v-show="images.length">
|
<ai-info-item label="图片" isLine v-show="images.length">
|
||||||
<ai-uploader v-model="images" :instance="instance" :limit="9" disabled/>
|
<ai-uploader v-model="images" :instance="instance" :limit="9" disabled/>
|
||||||
@@ -210,8 +193,6 @@ export default {
|
|||||||
this.instance.post(`/app/pushmessage/detail?id=${this.$route.query.id}`).then(res => {
|
this.instance.post(`/app/pushmessage/detail?id=${this.$route.query.id}`).then(res => {
|
||||||
if (res?.data) {
|
if (res?.data) {
|
||||||
this.data = res.data
|
this.data = res.data
|
||||||
// this.images = [{url: res.data.fileList.filter(e => e.contentType == "image").map().accessUrl}]
|
|
||||||
// this.fileDownLoad = [{url: res.data.fileList.filter(e => e.contentType == "file")[0]?.accessUrl}]
|
|
||||||
this.images = res.data.fileList.filter(e => e.contentType == "image")?.map(i => {
|
this.images = res.data.fileList.filter(e => e.contentType == "image")?.map(i => {
|
||||||
return {
|
return {
|
||||||
url: i.accessUrl
|
url: i.accessUrl
|
||||||
|
|||||||
@@ -44,6 +44,7 @@
|
|||||||
size="small"
|
size="small"
|
||||||
unlink-panels
|
unlink-panels
|
||||||
placeholder="选择结束日期"
|
placeholder="选择结束日期"
|
||||||
|
:picker-options="{start: search.createTimeStart, minTime: search.createTimeStart}"
|
||||||
@change="search.current = 1, getList()" />
|
@change="search.current = 1, getList()" />
|
||||||
</template>
|
</template>
|
||||||
<template #right>
|
<template #right>
|
||||||
|
|||||||
Reference in New Issue
Block a user