mirror of
				https://gitee.com/hhyykk/ipms-sjy-ui.git
				synced 2025-10-31 02:08:45 +08:00 
			
		
		
		
	REVIEW 公众号素材管理
This commit is contained in:
		| @@ -23,7 +23,7 @@ | ||||
|     </el-table> | ||||
|  | ||||
|     <el-dialog | ||||
|       v-model="modelVisible" | ||||
|       v-model="dialogVisible" | ||||
|       :title="modelConfig.title" | ||||
|       :close-on-click-modal="false" | ||||
|       width="400px" | ||||
| @@ -39,7 +39,7 @@ | ||||
|         </el-form-item> | ||||
|       </el-form> | ||||
|       <template #footer> | ||||
|         <el-button @click="modelVisible = false">取 消</el-button> | ||||
|         <el-button @click="dialogVisible = false">取 消</el-button> | ||||
|         <el-button type="primary" @click="addNewObject">保 存</el-button> | ||||
|       </template> | ||||
|     </el-dialog> | ||||
| @@ -49,7 +49,7 @@ | ||||
| const message = useMessage() | ||||
| const signalList = ref<any[]>([]) | ||||
| const messageList = ref<any[]>([]) | ||||
| const modelVisible = ref(false) | ||||
| const dialogVisible = ref(false) | ||||
| const modelType = ref('') | ||||
| const modelObjectForm = ref<any>({}) | ||||
| const rootElements = ref() | ||||
| @@ -85,7 +85,7 @@ const initDataList = () => { | ||||
| const openModel = (type) => { | ||||
|   modelType.value = type | ||||
|   modelObjectForm.value = {} | ||||
|   modelVisible.value = true | ||||
|   dialogVisible.value = true | ||||
| } | ||||
| const addNewObject = () => { | ||||
|   if (modelType.value === 'message') { | ||||
| @@ -101,7 +101,7 @@ const addNewObject = () => { | ||||
|     const signalRef = bpmnInstances().moddle.create('bpmn:Signal', modelObjectForm.value) | ||||
|     rootElements.value.push(signalRef) | ||||
|   } | ||||
|   modelVisible.value = false | ||||
|   dialogVisible.value = false | ||||
|   initDataList() | ||||
| } | ||||
|  | ||||
|   | ||||
							
								
								
									
										2
									
								
								src/types/auto-components.d.ts
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								src/types/auto-components.d.ts
									
									
									
									
										vendored
									
									
								
							| @@ -24,6 +24,7 @@ declare module '@vue/runtime-core' { | ||||
|     DocAlert: typeof import('./../components/DocAlert/index.vue')['default'] | ||||
|     Echart: typeof import('./../components/Echart/src/Echart.vue')['default'] | ||||
|     Editor: typeof import('./../components/Editor/src/Editor.vue')['default'] | ||||
|     ElAlert: typeof import('element-plus/es')['ElAlert'] | ||||
|     ElBadge: typeof import('element-plus/es')['ElBadge'] | ||||
|     ElButton: typeof import('element-plus/es')['ElButton'] | ||||
|     ElButtonGroup: typeof import('element-plus/es')['ElButtonGroup'] | ||||
| @@ -74,6 +75,7 @@ declare module '@vue/runtime-core' { | ||||
|     ElTableColumn: typeof import('element-plus/es')['ElTableColumn'] | ||||
|     ElTabPane: typeof import('element-plus/es')['ElTabPane'] | ||||
|     ElTabs: typeof import('element-plus/es')['ElTabs'] | ||||
|     ElTag: typeof import('element-plus/es')['ElTag'] | ||||
|     ElTooltip: typeof import('element-plus/es')['ElTooltip'] | ||||
|     ElTree: typeof import('element-plus/es')['ElTree'] | ||||
|     ElUpload: typeof import('element-plus/es')['ElUpload'] | ||||
|   | ||||
| @@ -247,10 +247,8 @@ | ||||
|           </el-row> | ||||
|         </div> | ||||
|         <template #footer> | ||||
|           <div class="dialog-footer"> | ||||
|             <el-button @click="dialogNewsVisible = false">取 消</el-button> | ||||
|             <el-button type="primary" @click="submitForm">提 交</el-button> | ||||
|           </div> | ||||
|           <el-button @click="dialogNewsVisible = false">取 消</el-button> | ||||
|           <el-button type="primary" @click="submitForm">提 交</el-button> | ||||
|         </template> | ||||
|       </el-dialog> | ||||
|     </Teleport> | ||||
|   | ||||
| @@ -1,32 +1,32 @@ | ||||
| <template> | ||||
|   <div class="app-container"> | ||||
|     <doc-alert title="公众号素材" url="https://doc.iocoder.cn/mp/material/" /> | ||||
|  | ||||
|     <!-- 搜索工作栏 --> | ||||
|   <doc-alert title="公众号素材" url="https://doc.iocoder.cn/mp/material/" /> | ||||
|   <!-- 搜索工作栏 --> | ||||
|   <ContentWrap> | ||||
|     <el-form | ||||
|       class="-mb-15px" | ||||
|       :model="queryParams" | ||||
|       ref="queryFormRef" | ||||
|       size="small" | ||||
|       :inline="true" | ||||
|       v-show="showSearch" | ||||
|       label-width="68px" | ||||
|     > | ||||
|       <el-form-item label="公众号" prop="accountId"> | ||||
|         <el-select v-model="queryParams.accountId" placeholder="请选择公众号"> | ||||
|         <el-select v-model="queryParams.accountId" placeholder="请选择公众号" class="!w-240px"> | ||||
|           <el-option | ||||
|             v-for="item in accounts" | ||||
|             :key="parseInt(item.id)" | ||||
|             v-for="item in accountList" | ||||
|             :key="item.id" | ||||
|             :label="item.name" | ||||
|             :value="parseInt(item.id)" | ||||
|             :value="item.id" | ||||
|           /> | ||||
|         </el-select> | ||||
|       </el-form-item> | ||||
|       <el-form-item> | ||||
|         <el-button type="primary" @click="handleQuery"><Icon icon="ep:search" />搜索</el-button> | ||||
|         <el-button @click="handleQuery"><Icon icon="ep:search" />搜索</el-button> | ||||
|         <el-button @click="resetQuery"><Icon icon="ep:refresh" />重置</el-button> | ||||
|       </el-form-item> | ||||
|     </el-form> | ||||
|   </ContentWrap> | ||||
|  | ||||
|   <ContentWrap> | ||||
|     <el-tabs v-model="type" @tab-change="handleTabChange"> | ||||
|       <!-- tab 1:图片  --> | ||||
|       <el-tab-pane name="image"> | ||||
| @@ -44,11 +44,11 @@ | ||||
|             :before-upload="beforeImageUpload" | ||||
|             :on-success="handleUploadSuccess" | ||||
|           > | ||||
|             <el-button size="small" type="primary">点击上传</el-button> | ||||
|             <el-button type="primary" plain>点击上传</el-button> | ||||
|             <template #tip> | ||||
|               <span class="el-upload__tip" style="margin-left: 5px" | ||||
|                 >支持 bmp/png/jpeg/jpg/gif 格式,大小不超过 2M</span | ||||
|               > | ||||
|               <span class="el-upload__tip" style="margin-left: 5px"> | ||||
|                 支持 bmp/png/jpeg/jpg/gif 格式,大小不超过 2M | ||||
|               </span> | ||||
|             </template> | ||||
|           </el-upload> | ||||
|         </div> | ||||
| @@ -64,14 +64,14 @@ | ||||
|                 circle | ||||
|                 @click="handleDelete(item)" | ||||
|                 v-hasPermi="['mp:material:delete']" | ||||
|                 ><Icon icon="ep:delete" | ||||
|               /></el-button> | ||||
|               > | ||||
|                 <Icon icon="ep:delete" /> | ||||
|               </el-button> | ||||
|             </el-row> | ||||
|           </div> | ||||
|         </div> | ||||
|         <!-- 分页组件 --> | ||||
|         <pagination | ||||
|           v-show="total > 0" | ||||
|         <Pagination | ||||
|           :total="total" | ||||
|           v-model:page="queryParams.pageNo" | ||||
|           v-model:limit="queryParams.pageSize" | ||||
| @@ -95,11 +95,11 @@ | ||||
|             :on-success="handleUploadSuccess" | ||||
|             :before-upload="beforeVoiceUpload" | ||||
|           > | ||||
|             <el-button size="small" type="primary">点击上传</el-button> | ||||
|             <el-button type="primary" plain>点击上传</el-button> | ||||
|             <template #tip> | ||||
|               <span class="el-upload__tip" style="margin-left: 5px" | ||||
|                 >格式支持 mp3/wma/wav/amr,文件大小不超过 2M,播放长度不超过 60s</span | ||||
|               > | ||||
|               <span class="el-upload__tip" style="margin-left: 5px"> | ||||
|                 格式支持 mp3/wma/wav/amr,文件大小不超过 2M,播放长度不超过 60s | ||||
|               </span> | ||||
|             </template> | ||||
|           </el-upload> | ||||
|         </div> | ||||
| @@ -118,24 +118,23 @@ | ||||
|           </el-table-column> | ||||
|           <el-table-column label="操作" align="center" class-name="small-padding fixed-width"> | ||||
|             <template #default="scope"> | ||||
|               <el-button type="primary" link size="small" plain @click="handleDownload(scope.row)" | ||||
|                 ><Icon icon="ep:download" />下载</el-button | ||||
|               > | ||||
|               <el-button type="primary" link plain @click="handleDownload(scope.row)"> | ||||
|                 <Icon icon="ep:download" />下载 | ||||
|               </el-button> | ||||
|               <el-button | ||||
|                 type="primary" | ||||
|                 link | ||||
|                 size="small" | ||||
|                 plain | ||||
|                 @click="handleDelete(scope.row)" | ||||
|                 v-hasPermi="['mp:material:delete']" | ||||
|                 ><Icon icon="ep:delete" />删除</el-button | ||||
|               > | ||||
|                 <Icon icon="ep:delete" />删除 | ||||
|               </el-button> | ||||
|             </template> | ||||
|           </el-table-column> | ||||
|         </el-table> | ||||
|         <!-- 分页组件 --> | ||||
|         <pagination | ||||
|           v-show="total > 0" | ||||
|         <Pagination | ||||
|           :total="total" | ||||
|           v-model:page="queryParams.pageNo" | ||||
|           v-model:limit="queryParams.pageSize" | ||||
| @@ -149,7 +148,7 @@ | ||||
|           <span><Icon icon="ep:video-play" /> 视频</span> | ||||
|         </template> | ||||
|         <div class="add_but" v-hasPermi="['mp:material:upload-permanent']"> | ||||
|           <el-button size="small" type="primary" @click="handleAddVideo">新建视频</el-button> | ||||
|           <el-button type="primary" plain @click="handleAddVideo">新建视频</el-button> | ||||
|         </div> | ||||
|         <!-- 新建视频的弹窗 --> | ||||
|         <el-dialog | ||||
| @@ -220,14 +219,9 @@ | ||||
|               <span>{{ formatDate(scope.row.createTime) }}</span> | ||||
|             </template> | ||||
|           </el-table-column> | ||||
|           <el-table-column | ||||
|             label="操作" | ||||
|             align="center" | ||||
|             fixed="right" | ||||
|             class-name="small-padding fixed-width" | ||||
|           > | ||||
|           <el-table-column label="操作" align="center" fixed="right"> | ||||
|             <template #default="scope"> | ||||
|               <el-button type="primary" link size="small" plain @click="handleDownload(scope.row)" | ||||
|               <el-button type="primary" link plain @click="handleDownload(scope.row)" | ||||
|                 ><Icon icon="ep:download" />下载</el-button | ||||
|               > | ||||
|               <el-button | ||||
| @@ -237,14 +231,14 @@ | ||||
|                 plain | ||||
|                 @click="handleDelete(scope.row)" | ||||
|                 v-hasPermi="['mp:material:delete']" | ||||
|                 ><Icon icon="ep:delete" />删除</el-button | ||||
|               > | ||||
|                 <Icon icon="ep:delete" />删除 | ||||
|               </el-button> | ||||
|             </template> | ||||
|           </el-table-column> | ||||
|         </el-table> | ||||
|         <!-- 分页组件 --> | ||||
|         <pagination | ||||
|           v-show="total > 0" | ||||
|         <Pagination | ||||
|           :total="total" | ||||
|           v-model:page="queryParams.pageNo" | ||||
|           v-model:limit="queryParams.pageSize" | ||||
| @@ -252,11 +246,9 @@ | ||||
|         /> | ||||
|       </el-tab-pane> | ||||
|     </el-tabs> | ||||
|   </div> | ||||
|   </ContentWrap> | ||||
| </template> | ||||
|  | ||||
| <script setup> | ||||
| import { ref } from 'vue' | ||||
| <script setup name="MpMaterial"> | ||||
| import WxVoicePlayer from '@/views/mp/components/wx-voice-play/main.vue' | ||||
| import WxVideoPlayer from '@/views/mp/components/wx-video-play/main.vue' | ||||
| import { getSimpleAccountList } from '@/api/mp/account' | ||||
| @@ -275,8 +267,6 @@ const uploadVideoRef = ref() | ||||
| const type = ref('image') | ||||
| // 遮罩层 | ||||
| const loading = ref(false) | ||||
| // 显示搜索条件 | ||||
| const showSearch = ref(true) | ||||
| // 总条数 | ||||
| const total = ref(0) | ||||
| // 数据列表 | ||||
| @@ -308,14 +298,14 @@ const uploadRules = reactive({ | ||||
| }) | ||||
|  | ||||
| // 公众号账号列表 | ||||
| const accounts = ref([]) | ||||
| const accountList = ref([]) | ||||
|  | ||||
| onMounted(() => { | ||||
|   getSimpleAccountList().then((data) => { | ||||
|     accounts.value = data | ||||
|     accountList.value = data | ||||
|     // 默认选中第一个 | ||||
|     if (accounts.value.length > 0) { | ||||
|       setAccountId(accounts.value[0].id) | ||||
|     if (accountList.value.length > 0) { | ||||
|       setAccountId(accountList.value[0].id) | ||||
|     } | ||||
|     // 加载数据 | ||||
|     getList() | ||||
| @@ -365,8 +355,8 @@ const handleQuery = () => { | ||||
| const resetQuery = () => { | ||||
|   queryFormRef.value?.resetFields() | ||||
|   // 默认选中第一个 | ||||
|   if (accounts.value.length > 0) { | ||||
|     setAccountId(accounts.value[0].id) | ||||
|   if (accountList.value.length > 0) { | ||||
|     setAccountId(accountList.value[0].id) | ||||
|   } | ||||
|   handleQuery() | ||||
| } | ||||
|   | ||||
| @@ -4,13 +4,12 @@ | ||||
|   <ContentWrap> | ||||
|     <el-form | ||||
|       class="-mb-15px" | ||||
|       :model="queryParams" | ||||
|       ref="queryFormRef" | ||||
|       :inline="true" | ||||
|       label-width="68px" | ||||
|     > | ||||
|       <el-form-item label="公众号" prop="accountId"> | ||||
|         <el-select v-model="accountId" placeholder="请选择公众号"> | ||||
|         <el-select v-model="accountId" placeholder="请选择公众号" class="!w-240px"> | ||||
|           <el-option | ||||
|             v-for="item in accountList" | ||||
|             :key="item.id" | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 YunaiV
					YunaiV