123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466 |
- <template>
- <view class="real-name">
- <!-- <view class="history">
- 历史发布
- </view> -->
- <view class="item">
- <view class="label">
- 活动标题
- </view>
- <view class="right" @click="goEdit('活动标题', 1)">
- {{form.title ? form.title : '去填写'}}
- <u-icon name="arrow-right" size="20" margin-left="20"></u-icon>
- </view>
- </view>
- <view class="item">
- <view class="label">
- 封面图
- </view>
- <view class="right" @click="goEdit('封面图', 2)">
- {{form.cover ? '已上传' : '去上传'}}
- <u-icon name="arrow-right" size="20" margin-left="20"></u-icon>
- </view>
- </view>
- <view class="item">
- <view class="label">
- 活动内容
- </view>
- <view class="right" @click="goEdit('活动内容',3)">
- {{form.body ? '已填写' : '点击填写'}}
- <u-icon name="arrow-right" size="20" margin-left="20"></u-icon>
- </view>
- </view>
- <view class="item">
- <view class="label">
- 活动时间
- </view>
- <view class="right" @click="goEdit('活动时间',4)">
- {{form.published_at ? form.published_at : '去选择'}}
- <u-icon name="arrow-right" size="20" margin-left="20"></u-icon>
- </view>
- </view>
- <!-- <view class="item">
- <view class="label">
- 活动地点
- </view>
- <view class="right">
- {{form.class_address}}
- </view>
- </view> -->
- <u-popup v-model="show" mode="bottom" height="100%">
- <view class="form">
- <view class="back" @click="show=!show">
- <u-icon name="arrow-left" color="#2979ff" size="28"></u-icon>
- </view>
- <u-navbar :is-back="false" title="填写信息"></u-navbar>
- <view class="title">
- {{input_name}}
- </view>
- <!-- 富文本编辑 -->
- <view class="" v-if="item==3">
- <!-- <robin-editor class="editor" @cancel="hideEditor" @save="saveEditor" v-model="form.body"
- :imageUploader="uploadImg" :muiltImage="true">
- </robin-editor> -->
- <jinEdit placeholder="请输入内容..." @editOk="editOk" uploadFileUrl="/api/common/upload"
- :html="form.body"></jinEdit>
- </view>
- <!-- 选择时间 -->
- <view class="input" v-if="item==4" @click="show1=!show1">
- {{form.published_at? form.published_at : '点击选择时间'}}
- <u-picker mode="time" v-model="show1" :params="params" @confirm="changeDate"></u-picker>
- </view>
- <!-- 上传图片 -->
- <view class="upload_image1" v-if="item==2&&image_edit==0">
- <u-upload ref="uUpload" :action="action" :auto-upload="true" :form-data='imageDate'
- :file-list="fileList" @on-success='uploadSuccess' :on-progress='changeImage'></u-upload>
- </view>
- <view class="upload_image" v-if="item==2 && image_edit==1">
- <u-image width="100%" height="300rpx" :src="uploadImage"></u-image>
- </view>
- <view class="input" v-if="item==1">
- <u-input :placeholder=' "请输入" + input_name' v-model="value" />
- </view>
- <view class="complate" v-if="item==2 && image_edit==1" @click="reload">
- 重新上传
- </view>
- <view class="complate1" v-if="item==2" @click="complate">
- 完成
- </view>
- <view class="complate" v-if="item!==2 && item!=3" @click="complate">
- 完成
- </view>
- </view>
- </u-popup>
- <view class="buttom" @click="release">
- 提交审核
- </view>
- </view>
- </template>
- <script>
- import jinEdit from '../../components/jin-edit/jin-edit.vue';
- export default {
- components: {
- jinEdit
- },
- data() {
- return {
- show: false,
- input_name: '',
- placeholder: '开始输入...',
- value: '',
- form: {
- title: '',
- published_at: '',
- class_address: '', //上课地点
- status: 1,
- category_id: '',
- body: '',
- sort: 0,
- category_id: '',
- is_message: 0
- },
- params: {
- year: true,
- month: true,
- day: true,
- hour: true,
- minute: true,
- second: true
- },
- show1: false,
- item: '',
- action: '', //封面图上传地址
- imageDate: {
- file_type: 'img',
- type: 'article'
- }, //上传图片携带参数
- fileList: [],
- uploadImage: '',
- image_edit: 0,
- tab_name: ''
- }
- },
- onLoad(options) {
- this.form.category_id = options.category_id
- this.tab_name = options.tab_name
- },
- onShow() {
- if (this.is_weixin()) {
- this.navTitle()
- }
- this.action = '/api/base/common/upload'
- this.category()
- },
- methods: {
- //判断是否是微信
- is_weixin() {
- let ua = navigator.userAgent.toLowerCase();
- return ua.indexOf('micromessenger') != -1;
- },
- navTitle() {
- let navTitle = document.getElementsByTagName('uni-page-head');
- navTitle[0].style.display = 'none'
- },
- editOk(res) {
- console.log(res.html);
- console.log(this.form, '///////////////')
- this.form.body = res.html
- this.show = false
- },
- hideEditor() {
- this.form.body = ''
- this.show = !this.show
- },
- uploadImg() {
- this.action = '/api/base/common/upload'
- },
- onEditorReady() {
- // #ifdef MP-BAIDU
- this.editorCtx = requireDynamicLib('editorLib').createEditorContext('editorId');
- // #endif
- // #ifdef APP-PLUS || H5 ||MP-WEIXIN
- uni.createSelectorQuery().select('#editor').context((res) => {
- this.editorCtx = res.context
- }).exec()
- // #endif
- },
- undo() {
- this.editorCtx.undo()
- },
- //添加通知公告
- release() {
- if (!this.form.title) {
- uni.showToast({
- title: '请填写活动标题',
- icon: 'none'
- })
- return
- } else if (!this.form.body) {
- uni.showToast({
- title: '请填写活动内容',
- icon: 'none'
- })
- return
- }
- this.$u.post('/inform/information', this.form).then(res => {
- console.log(res, '提及扫')
- if (res.code == 200) {
- uni.showToast({
- title: '添加成功',
- icon: 'none'
- })
- setTimeout(function() {
- uni.reLaunch({
- url: './success'
- })
- }, 1500)
- }
- })
- },
- //获取配置项
- category() {
- this.$u.get('/base/setting-key', {
- key: 'CLASS_ADDRESS'
- }).then(res => {
- console.log(res, 'ppp')
- this.form.class_address = res.data.value
- })
- },
- //上传图片成功
- uploadSuccess(data) {
- console.log(data, 'ppp')
- this.form.cover = data.data.id
- this.uploadImage = data.data.url
- this.image_edit = 1
- },
- onRemove() {
- console.log('pooo')
- this.uploadImage = ''
- },
- changeDate(e) {
- let day = e.year + '-' + e.month + '-' + e.day + ' ' + e.hour + ':' + e.minute + ':' + e.second
- console.log(day)
- this.form.published_at = day
- },
- //重新上传
- reload() {
- this.image_edit = 0
- console.log('---------')
- this.fileList = [],
- this.uploadImage = ''
- },
- complate() {
- console.log('++++++++++')
- let item = this.item
- switch (item) {
- case 1:
- this.form.title = this.value
- break
- case 2:
- this.image_edit = 1
- break
- }
- console.log(this.title)
- this.show = !this.show
- },
- goEdit(name, item) {
- if (this.uploadImage) {
- this.fileList.push({
- url: this.uploadImage
- })
- }
- this.item = item
- console.log(item)
- this.show = true
- this.input_name = name
- this.textarea = ''
- this.value = ''
- },
- //发布
- // release() {
- // uni.navigateTo({
- // url: './success'
- // })
- // }
- // 点击发布
- }
- }
- </script>
- <style lang="scss" scoped>
- .container {
- padding: 10px;
- }
- #editor {
- width: 100%;
- height: 300px;
- background-color: #CCCCCC;
- }
- button {
- margin-top: 10px;
- }
- .upload_image1 {
- height: 100px;
- width: 100px;
- overflow: hidden;
- margin-left: 10px;
- }
- .upload_image {
- width: 90%;
- margin: 0 auto;
- }
- .complate,
- .complate1 {
- width: 50%;
- margin: 0 auto;
- margin-top: 20%;
- line-height: 44px;
- text-align: center;
- height: 44px;
- background: #3B7653;
- opacity: 1;
- border-radius: 24px;
- font-size: 18px;
- font-family: PingFang SC;
- font-weight: 500;
- color: #FFFFFF;
- opacity: 1;
- }
- .complate1 {
- margin-top: 30px;
- }
- .real-name {
- padding: 0 16px;
- .history {
- font-size: 12px;
- font-family: PingFang SC;
- font-weight: 400;
- height: 30px;
- line-height: 30px;
- text-align: right;
- color: #282828;
- opacity: 1;
- }
- .item {
- display: flex;
- align-items: center;
- height: 46px;
- line-height: 46px;
- .label {
- flex: 0 0 30%;
- font-size: 16px;
- font-family: PingFang SC;
- font-weight: bold;
- line-height: 20px;
- color: #282828;
- opacity: 1;
- }
- .right {
- flex: 1;
- font-size: 13px;
- font-family: PingFang SC;
- font-weight: 400;
- line-height: 20px;
- color: #282828;
- opacity: 0.42;
- text-align: right;
- }
- }
- .form {
- position: relative;
- .back {
- position: absolute;
- left: 10px;
- top: 0px;
- width: 30px;
- height: 44px;
- line-height: 44px;
- text-align: center;
- z-index: 9999;
- // background: #18B566;
- }
- .title {
- padding: 0 20px;
- height: 40px;
- line-height: 40px;
- font-size: 16px;
- font-weight: 550;
- }
- .input {
- margin: 0 20px;
- height: 40px;
- line-height: 40px;
- border-bottom: solid 1px rgba(175, 175, 175, .2);
- }
- .input1 {
- margin: 0 20px;
- height: 40px;
- line-height: 40px;
- border: solid 1px rgba(175, 175, 175, .2);
- }
- }
- .item1 {
- .dec {
- font-size: 13px;
- font-family: PingFang SC;
- font-weight: 400;
- line-height: 20px;
- color: #AFAFAF;
- opacity: 1;
- padding-bottom: 10px;
- border-bottom: solid 1px rgba(175, 175, 175, .2);
- }
- }
- .buttom {
- width: 229px;
- height: 56px;
- line-height: 56px;
- background: #D5D8DB;
- text-align: center;
- border-radius: 28px;
- margin: 0 auto;
- margin-top: 40%;
- font-size: 18px;
- font-family: PingFang SC;
- font-weight: bold;
- color: #282828;
- opacity: 1;
- }
- }
- </style>
|