123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311 |
- <template>
- <a-modal
- centered
- class="noticeEdit-modal"
- :footer="null"
- :maskClosable="false"
- :title="modalTit"
- v-model="isShow"
- @cancle="isShow=false"
- :width="960">
- <!-- 表单 -->
- <div>
- <a-spin :spinning="spinning" tip="Loading...">
- <a-form-model
- id="noticeEdit-form"
- ref="ruleForm"
- :model="form"
- :rules="rules"
- :label-col="formItemLayout.labelCol"
- :wrapper-col="formItemLayout.wrapperCol"
- >
- <a-form-model-item label="类别" prop="type">
- <v-select code="NOTITY_BIZ_TYPE" id="noticeEdit-type" v-model="form.type" allowClear placeholder="请选择类别"></v-select>
- </a-form-model-item>
- <a-form-model-item label="可见性" prop="toAppName">
- <v-select code="NOTITY_APP_TYPE" id="noticeEdit-toAppName" v-model="form.toAppName" allowClear placeholder="请选择可见性"></v-select>
- </a-form-model-item>
- <a-form-model-item label="公告标题" prop="title">
- <a-input
- id="noticeEdit-title"
- :maxLength="30"
- v-model.trim="form.title"
- placeholder="请输入公告标题(最多30个字符)"
- allowClear />
- </a-form-model-item>
- <a-form-model-item label="发布时间" prop="releaseDate">
- <a-date-picker
- show-time
- id="noticeEdit-releaseDate"
- format="YYYY-MM-DD HH:mm:ss"
- placeholder="年/月/日 时/分/秒"
- :disabled-date="disabledDate"
- :disabledTime="disabledDateTime"
- v-model="form.releaseDate"/>
- </a-form-model-item>
- <a-form-model-item label="图片上传" prop="imgPaths">
- <Upload
- class="upload"
- id="noticeEdit-imgPaths"
- v-model="form.imgPaths"
- ref="imgPaths"
- :fileSize="10"
- :maxNums="5"
- @change="changeImage"
- listType="picture-card"></Upload>
- <span class="upload-desc">说明:单张大小小于10Mb,最多5张。</span>
- </a-form-model-item>
- <a-form-model-item label="附件上传" prop="attachList">
- <Upload
- id="noticeEdit-attachList"
- v-model="form.attachList"
- ref="attachList"
- :fileSize="10"
- :maxNums="3"
- fileType="*"
- uploadType="attach"
- :action="attachAction"
- @change="changeAttach"></Upload>
- <span class="upload-desc">说明:单个文件小于10Mb,最多3个附件。</span>
- </a-form-model-item>
- <a-form-model-item label="公告内容" prop="content">
- <editor id="noticeEdit-editor" ref="editor" class="noticeEdit-editor" @on-change="editorChange" :cache="false"></editor>
- </a-form-model-item>
- </a-form-model>
- <div class="btn-cont">
- <a-button type="primary" id="product-brand-edit-modal-save" @click="handleSave">保存</a-button>
- <a-button id="product-brand-edit-modal-back" @click="isShow = false" style="margin-left: 15px;">返回列表</a-button>
- </div>
- </a-spin>
- </div>
- </a-modal>
- </template>
- <script>
- import moment from 'moment'
- import { VSelect, Upload } from '@/components'
- import Editor from '@/components/WEeditor'
- import { noticeSave, noticeDetail } from '@/api/notice'
- export default {
- name: 'ProductBrandEditModal',
- components: { VSelect, Upload, Editor },
- props: {
- openModal: { // 弹框显示状态
- type: Boolean,
- default: false
- },
- itemId: {
- type: [Number, String],
- default: ''
- },
- nowData: {
- type: Object,
- default: null
- }
- },
- computed: {
- modalTit () {
- return (this.itemId ? '编辑' : '新增') + '公告'
- }
- },
- data () {
- return {
- isShow: this.openModal, // 是否打开弹框
- spinning: false,
- formItemLayout: {
- labelCol: { span: 4 },
- wrapperCol: { span: 20 }
- },
- form: {
- type: undefined,
- toAppName: undefined,
- title: '',
- releaseDate: null,
- imgPaths: '',
- attachList: '',
- content: ''
- },
- attachList: [],
- rules: {
- type: [
- { required: true, message: '请选择类别', trigger: 'change' }
- ],
- toAppName: [
- { required: true, message: '请选择可见性', trigger: 'change' }
- ],
- title: [
- { required: true, message: '请输入公告标题', trigger: 'blur' }
- ],
- releaseDate: [
- { required: true, message: '请选择发布时间', trigger: 'change' }
- ]
- },
- attachAction: process.env.VUE_APP_API_BASE_URL + '/uploadGetFileInfo'
- }
- },
- methods: {
- disabledDate (current) {
- return current && current < moment().startOf('day')
- },
- disabledDateTime (date) {
- if (!date) {
- date = moment()
- }
- return {
- disabledHours: () => this.getDisabledHours(date.format('YYYY-MM-DD HH:mm:ss')),
- disabledMinutes: () => this.getDisabledMinutes(date.format('YYYY-MM-DD HH:mm:ss')),
- disabledSeconds: () => this.getDisabledSeconds(date.format('YYYY-MM-DD HH:mm:ss'))
- }
- },
- // 禁用时间范围 时
- getDisabledHours (nowTime) {
- const todayDate = moment().format('YYYY-MM-DD HH:mm:ss')
- const time = nowTime.split(' ')
- const times = todayDate.split(' ')
- const timeArrs = times[1].split(':')
- const hours = []
- if (todayDate.split(' ')[0] == time[0]) {
- for (var i = 0; i < parseInt(timeArrs[0]); i++) {
- hours.push(i)
- }
- }
- return hours
- },
- // 禁用时间范围 分
- getDisabledMinutes (nowTime) {
- const todayDate = moment().format('YYYY-MM-DD HH:mm:ss')
- const time = nowTime.split(' ')
- const times = todayDate.split(' ')
- const timeArr = time[1].split(':')
- const timeArrs = times[1].split(':')
- const minutes = []
- if (todayDate.split(' ')[0] == time[0] && timeArrs[0] == timeArr[0]) {
- for (var i = 0; i < parseInt(timeArrs[1]); i++) {
- minutes.push(i)
- }
- }
- return minutes
- },
- // 禁用时间范围 秒
- getDisabledSeconds (nowTime) {
- const todayDate = moment().format('YYYY-MM-DD HH:mm:ss')
- const time = nowTime.split(' ')
- const times = todayDate.split(' ')
- const timeArr = time[1].split(':')
- const timeArrs = times[1].split(':')
- const second = []
- if (todayDate.split(' ')[0] == time[0] && timeArrs[0] == timeArr[0] && timeArrs[1] == timeArr[1]) {
- for (var i = 0; i <= parseInt(timeArrs[2]); i++) {
- second.push(i)
- }
- }
- return second
- },
- // 详情
- getDetail () {
- noticeDetail({ id: this.itemId }).then(res => {
- if (res.status == 200) {
- this.form = Object.assign(this.form, res.data)
- this.form.attachList = ''
- this.attachList = res.data.attachList
- this.form.releaseDate = moment(res.data.releaseDate, 'YYYY-MM-DD HH:mm:ss')
- this.$refs.imgPaths.setFileList(res.data.imgPaths)
- this.$refs.attachList.setFileList(res.data.attachList)
- this.$refs.editor.setHtml(res.data.content)
- }
- })
- },
- // 保存
- handleSave () {
- const _this = this
- _this.$refs.ruleForm.validate(valid => {
- if (valid) {
- const formData = JSON.parse(JSON.stringify(_this.form))
- formData.releaseDate = moment(formData.releaseDate).format('YYYY-MM-DD HH:mm:ss')
- formData.id = _this.itemId ? _this.itemId : undefined
- formData.attachList = this.attachList
- _this.spinning = true
- noticeSave(formData).then(res => {
- if (res.status == 200) {
- _this.$message.success(res.message)
- _this.$emit('ok')
- _this.isShow = false
- _this.spinning = false
- }else{
- _this.spinning = false
- }
- })
- } else {
- return false
- }
- })
- },
- // 图片上传
- changeImage (file) {
- this.form.imgPaths = file
- },
- // 附件上传
- changeAttach (file) {
- this.attachList = JSON.parse(file)
- },
- // 文本编辑器
- editorChange (html, text) {
- this.form.content = html
- }
- },
- watch: {
- // 父页面传过来的弹框状态
- openModal (newValue, oldValue) {
- this.isShow = newValue
- },
- // 重定义的弹框状态
- isShow (newValue, oldValue) {
- if (!newValue) {
- this.$emit('close')
- this.attachList = []
- this.$refs.imgPaths.setFileList('')
- this.$refs.attachList.setFileList([])
- this.$refs.editor.setHtml('')
- this.$refs.ruleForm.resetFields()
- }
- },
- itemId (newValue, oldValue) {
- if (this.isShow && newValue) {
- this.getDetail()
- }
- }
- }
- }
- </script>
- <style lang="less">
- .noticeEdit-modal{
- .ant-modal-body {
- padding: 40px 40px 24px;
- }
- .upload{
- width: 100%!important;
- }
- // 商品图片描述
- .upload-desc{
- font-size: 12px;
- color: #808695;
- }
- // 文本编辑器 工具栏样式换行
- .noticeEdit-editor{
- .w-e-toolbar{
- flex-wrap: wrap;
- }
- }
- .btn-cont {
- text-align: center;
- margin: 35px 0 10px;
- }
- #noticeEdit-attachList{
- height: auto;
- }
- a{
- color: inherit;
- }
- }
- </style>
|