diff --git a/packages/2.0.5/AppBroadcast/components/List.vue b/packages/2.0.5/AppBroadcast/components/List.vue index e5307ddd..46decdce 100644 --- a/packages/2.0.5/AppBroadcast/components/List.vue +++ b/packages/2.0.5/AppBroadcast/components/List.vue @@ -21,7 +21,7 @@ - 添加 + diff --git a/packages/2.0.5/AppBuildManage/components/BuildMsg.vue b/packages/2.0.5/AppBuildManage/components/BuildMsg.vue index e049cd60..3f9d71f4 100644 --- a/packages/2.0.5/AppBuildManage/components/BuildMsg.vue +++ b/packages/2.0.5/AppBuildManage/components/BuildMsg.vue @@ -83,11 +83,11 @@ - - + + 编辑 详情 - + diff --git a/packages/2.0.5/AppBuildManage/components/List.vue b/packages/2.0.5/AppBuildManage/components/List.vue index 6cd2b4c4..5ed67d22 100644 --- a/packages/2.0.5/AppBuildManage/components/List.vue +++ b/packages/2.0.5/AppBuildManage/components/List.vue @@ -46,15 +46,15 @@ - - + + 编辑 删除 房屋信息 - + 楼栋模型 - + diff --git a/packages/2.0.5/AppGridMap/components/list.vue b/packages/2.0.5/AppGridMap/components/list.vue index 7c921999..dc692e33 100644 --- a/packages/2.0.5/AppGridMap/components/list.vue +++ b/packages/2.0.5/AppGridMap/components/list.vue @@ -3,7 +3,7 @@ - 网格管理 + 网格地图 import List from './components/List' import Add from './components/Add' +import Play from './components/Play' export default { label: '媒资管理', @@ -28,7 +29,8 @@ export default { components: { Add, - List + List, + Play }, methods: { onChange(data) { @@ -36,6 +38,10 @@ export default { this.component = 'Add' this.params = data.params } + if (data.type === 'Play') { + this.component = 'Play' + this.params = data.params + } if (data.type == 'list') { this.component = 'List' diff --git a/packages/2.0.5/AppMediaManage/components/List.vue b/packages/2.0.5/AppMediaManage/components/List.vue index 4f14159a..88c34217 100644 --- a/packages/2.0.5/AppMediaManage/components/List.vue +++ b/packages/2.0.5/AppMediaManage/components/List.vue @@ -31,9 +31,10 @@ - + + 播发 删除 - + @@ -136,6 +137,15 @@ export default { }) }, + play (id) { + this.$emit('change', { + type: 'Play', + params: { + id: id || '' + }, + }) + }, + // 添加 onAdd(id) { this.$emit('change', { diff --git a/packages/2.0.5/AppMediaManage/components/Play.vue b/packages/2.0.5/AppMediaManage/components/Play.vue new file mode 100644 index 00000000..b2007476 --- /dev/null +++ b/packages/2.0.5/AppMediaManage/components/Play.vue @@ -0,0 +1,261 @@ + + + + + + + + + + + + + + + + + + + + + 立即播放 + 定时播放 + + + + + + + + 每周一 + 每周二 + 每周三 + 每周四 + 每周五 + 每周六 + 每周日 + + + + + + + + + + + + + + + + + + + + 取消 + 提交 + + + + + + + diff --git a/packages/3.0.0/AppContentInfo/components/Add.vue b/packages/3.0.0/AppContentInfo/components/Add.vue index 779cf669..cf1c995f 100644 --- a/packages/3.0.0/AppContentInfo/components/Add.vue +++ b/packages/3.0.0/AppContentInfo/components/Add.vue @@ -58,20 +58,6 @@ :limit="1"> - - - - 最多上传1张图片,单个文件最大10MB,支持jpg、jpeg、png格式 - 图片比例:1.6:1 - - - @@ -104,7 +90,6 @@ files: [], categoryId: '', contentType: '0', - pictureUrl: [], areaName: '', thumbUrl: [] }, @@ -146,9 +131,6 @@ this.instance.post(`/app/appcontentinfo/queryDetailById?id=${id}`).then(res => { if (res.code === 0) { this.form = res.data - this.form.pictureUrl = res.data.pictureUrl ? [{ - url: res.data.pictureUrl - }] : [] } }) }, @@ -175,8 +157,7 @@ moduleId: this.$route.query.moduleId, createUserName: this.user.info.name, createUserId: this.user.info.id, - categoryName: this.cateList.length ? this.cateList.filter(v => v.id === this.form.categoryId)[0].categoryName : '', - pictureUrl: this.form.pictureUrl.length ? this.form.pictureUrl[0].url : '' + categoryName: this.cateList.length ? this.cateList.filter(v => v.id === this.form.categoryId)[0].categoryName : '' }).then(res => { if (res.code == 0) { this.$message.success('提交成功') diff --git a/packages/3.0.0/AppConvenienceAddressBook/components/List.vue b/packages/3.0.0/AppConvenienceAddressBook/components/List.vue index 29f8e633..d42ec38a 100644 --- a/packages/3.0.0/AppConvenienceAddressBook/components/List.vue +++ b/packages/3.0.0/AppConvenienceAddressBook/components/List.vue @@ -235,7 +235,7 @@ remove(id) { this.$confirm('确定删除该数据?').then(() => { - this.instance.post(`/app/appeveryvillagecode/delete?ids=${id}`).then(res => { + this.instance.post(`/app/appconvenientaddressbook/delete?ids=${id}`).then(res => { if (res.code == 0) { this.$message.success('删除成功!') this.getList() diff --git a/packages/3.0.0/AppMeetingChinaunion/AppMeetingChinaunion.vue b/packages/3.0.0/AppMeetingChinaunion/AppMeetingChinaunion.vue index 2299a195..139282f2 100644 --- a/packages/3.0.0/AppMeetingChinaunion/AppMeetingChinaunion.vue +++ b/packages/3.0.0/AppMeetingChinaunion/AppMeetingChinaunion.vue @@ -222,7 +222,7 @@ export default { showSupplement: false, //补录 showDetail: true, //详情 showAdd: false, //添加 - showList: false, //列表 + showList: true, //列表 meetingId: "",//会议id meetingStatus: '', //会议状态 partyType: '', //2表示支部可进支部党组织设置 diff --git a/packages/3.0.0/AppMeetingChinaunion/components/add.vue b/packages/3.0.0/AppMeetingChinaunion/components/add.vue index 8231e469..1d9b7ff0 100644 --- a/packages/3.0.0/AppMeetingChinaunion/components/add.vue +++ b/packages/3.0.0/AppMeetingChinaunion/components/add.vue @@ -35,7 +35,7 @@ 请选择 - + 线下举办 diff --git a/packages/3.0.0/AppNotice/components/Add.vue b/packages/3.0.0/AppNotice/components/Add.vue index c2497797..147f7ae3 100644 --- a/packages/3.0.0/AppNotice/components/Add.vue +++ b/packages/3.0.0/AppNotice/components/Add.vue @@ -11,6 +11,9 @@ + + + @@ -44,6 +47,7 @@ form: { title: '', content: '', + publishUnitName: '', images: [] }, id: '' diff --git a/packages/3.0.0/AppPartyHistoryClass/AppPartyHistoryClass.vue b/packages/3.0.0/AppPartyHistoryClass/AppPartyHistoryClass.vue index 827b2d62..95dea88c 100644 --- a/packages/3.0.0/AppPartyHistoryClass/AppPartyHistoryClass.vue +++ b/packages/3.0.0/AppPartyHistoryClass/AppPartyHistoryClass.vue @@ -2,7 +2,7 @@ - + diff --git a/packages/3.0.0/AppPartyHistoryClass/components/partyClassAdd.vue b/packages/3.0.0/AppPartyHistoryClass/components/partyClassAdd.vue index d621e89e..5b15997a 100644 --- a/packages/3.0.0/AppPartyHistoryClass/components/partyClassAdd.vue +++ b/packages/3.0.0/AppPartyHistoryClass/components/partyClassAdd.vue @@ -1,63 +1,65 @@ - - - - - - - - - - - - - - - - - - - 图片比例:1.6:1 - - - - - - - - - - - - {{form.title}} - {{dict.getLabel("classroomUpdateStatus",form.updateStatus)}} - {{form.episodeNum}} - {{form.updateDate}} - {{form.organizationName}} - - - - - - - - - 取消 - 保存 - - 保存并发布 - + + + + + + + + + + + + + + + + + + + + 图片比例:1.6:1 + + + + + + + + + + + + {{form.title}} + {{dict.getLabel("classroomUpdateStatus",form.updateStatus)}} + {{form.episodeNum}} + {{form.updateDate}} + {{form.organizationName}} + + + + + + + + + + 取消 + 保存 + + 保存并发布 + - - + +
最多上传1张图片,单个文件最大10MB,支持jpg、jpeg、png格式
图片比例:1.6:1