From 0dd41bd8cee430d3a948b89c664cb511c400993c Mon Sep 17 00:00:00 2001
From: inleft <inleft@qq.com>
Date: Fri, 12 Aug 2022 19:11:46 +0800
Subject: [PATCH] 新增链接添加按钮,优化Dplayer播放

---
 src/components/mini/box10-add.vue |  317 ++++++++++++++++++++++++++++++++++++----------------
 1 files changed, 216 insertions(+), 101 deletions(-)

diff --git a/src/components/mini/box10-add.vue b/src/components/mini/box10-add.vue
index 8a2ca36..8800027 100644
--- a/src/components/mini/box10-add.vue
+++ b/src/components/mini/box10-add.vue
@@ -1,43 +1,48 @@
 <template>
 	<div>
 		<a-form-model ref="myForm" :model="form" :label-col="labelCol" :wrapper-col="wrapperCol" :rules="rules">
+			<a-form-model-item label="认证" prop="secret">
+				<a-input v-model="form.secret" autocomplete='new-password' type="password" placeholder="口令">
+					<a-icon slot="prefix" type="lock" style="color:rgba(0,0,0,.25)" />
+				</a-input>
+			</a-form-model-item>
+
 			<a-form-model-item label="标题" prop="title">
 				<a-input v-model="form.title" placeholder="限 50字内" />
 			</a-form-model-item>
 
 			<a-form-model-item label="模式切换" prop="common">
 				<a-switch v-model="form.online" />
-				<span class="myTip">
-					本地文件/由系统生成文件
+				<span class="myTip" v-if="form.online">
+					由系统生成文件
+				</span>
+				<span class="myTip" v-else>
+					本地文件上传
 				</span>
 			</a-form-model-item>
 
-
-			<a-form-model-item label="日志文件" v-show="!form.online" prop="blogFileList">
-				<a-upload action="https://www.mocky.io/v2/5cc8019d300000980a055e76"
-					:default-file-list="form.blogFileList">
+			<a-form-model-item label="日志文件" v-show="!form.online">
+				<a-upload ref="blogFileUpload" :customRequest="customRequest" name="file" :showUploadList="true"
+					@change="handleChange" :default-file-list="form.blogFileList" :beforeUpload="beforeUpload"
+					:data="{'fileType':fileTypeMarkDown}" accept=".md,.html,.htm,.txt">
 					<a-button>
-						<a-icon type="upload" /> 限 markdown/html
+						<a-icon type="upload" />限 markdown/html
 					</a-button>
 				</a-upload>
 			</a-form-model-item>
 
-			<a-form-model-item label="日志内容" v-show="form.online" prop="content">
+			<a-form-model-item label="日志内容" v-show="form.online">
 				<a-input v-model="form.content" type="textarea" placeholder="限10k字数" />
 			</a-form-model-item>
 
 			<a-form-model-item label="分类" prop="class">
-				<a-select v-model="form.class" :allowClear="true" mode="multiple" placeholder="多选(至少一个)"
+				<a-select v-model="form.class" :allowClear="true" mode="default" placeholder="日志分类"
 					:getPopupContainer="getCalendarContainer()">
-					<a-select-option value="shanghai">
-						Zone one
+
+					<a-select-option v-for="(item,index) in this.blogArticleType" :key="index" :value="item.id">
+						{{ item.typeName }}
 					</a-select-option>
-					<a-select-option value="beijing">
-						Zone two
-					</a-select-option>
-					<a-select-option value="beijing2">
-						Zone two
-					</a-select-option>
+
 				</a-select>
 			</a-form-model-item>
 
@@ -53,15 +58,22 @@
 					</span>
 				</a-form-model-item>
 
-				<a-form-model-item label=" 文件类型">
-					<a-radio-group v-model="form.blogType">
-						<a-radio value="Markdown">
+				<a-form-model-item label=" 日志类型">
+					<a-select v-model="form.blogType" mode="default" placeholder=""
+						:getPopupContainer="getCalendarContainer()">
+						<a-select-option value="1">
 							markdown
-						</a-radio>
-						<a-radio value="Html">
+						</a-select-option>
+						<a-select-option value="2">
 							html
-						</a-radio>
-					</a-radio-group>
+						</a-select-option>
+						<a-select-option value="3">
+							video
+						</a-select-option>
+						<a-select-option value="5">
+							fast(闪念)
+						</a-select-option>
+					</a-select>
 				</a-form-model-item>
 
 
@@ -89,15 +101,18 @@
 
 
 				<a-form-model-item label="封面">
-					<a-upload action="https://www.mocky.io/v2/5cc8019d300000980a055e76" list-type="picture"
-						:default-file-list="form.coverFileList" class="upload-list-inline">
+					<a-upload :customRequest="customRequest" name="file" :showUploadList="true" list-type="picture"
+						:data="{'fileType':fileTypeCover}" @change="handleChangeCoverFile"
+						:default-file-list="form.coverFileList" :beforeUpload="beforeUploadCover"
+						accept=".jpg,.png,.jpeg">
+						<!-- :disabled="form.coverFileList.length>=1" -->
 						<a-button>
-							<a-icon type="upload" /> jpg/png/jpeg..
+							<a-icon type="upload" />jpg/png/jpeg..
 						</a-button>
 					</a-upload>
-					<span class="myTip">
+					<!-- <span class="myTip">
 						自动转码,可以传高清图
-					</span>
+					</span> -->
 				</a-form-model-item>
 
 				<a-form-model-item label="定时">
@@ -106,14 +121,21 @@
 						:getCalendarContainer="getCalendarContainer()" />
 				</a-form-model-item>
 
-				<a-form-model-item label="置顶权重">
-					<a-slider v-model="form.sliderValue" :default-value="20" :step="5"
-						:getTooltipPopupContainer="getCalendarContainer()" />
-					<span class="myTip">
-						越小越靠前
-					</span>
-				</a-form-model-item>
+				<div v-bind:class="{'myBorder':form.top}" style="padding: 3px;margin-bottom: 10px;">
+					<a-form-model-item label="置顶">
+						<a-switch v-model="form.top" />
+					</a-form-model-item>
 
+					<div v-show="form.top">
+						<a-form-model-item label="权重">
+							<a-slider v-model="form.sliderValue" :default-value="50" :step="5"
+								:getTooltipPopupContainer="getCalendarContainer()" />
+							<span class="myTip">
+								越小越靠前
+							</span>
+						</a-form-model-item>
+					</div>
+				</div>
 
 
 				<div v-bind:class="{'myBorder':form.lock}" style="padding: 3px;">
@@ -128,19 +150,20 @@
 					<div v-show="form.lock ">
 						<a-form-model-item label="阅读权限">
 							<a-radio-group v-model="form.auth">
-								<a-radio value="private">
+								<a-radio value="2">
 									私人
 								</a-radio>
-								<a-radio value="password">
+								<a-radio value="3">
 									密码授权
 								</a-radio>
 							</a-radio-group>
 						</a-form-model-item>
 
-						<a-form-model-item label="授权密码" v-show="form.auth=='password'">
-							<a-input v-model="form.password" type="password" placeholder="独立密码">
+						<a-form-model-item label="授权密码" v-show="form.auth==3">
+							<a-input-password v-model="form.password" autocomplete='new-password' type="password"
+								placeholder="独立密码">
 								<a-icon slot="prefix" type="lock" style="color:rgba(0,0,0,.25)" />
-							</a-input>
+							</a-input-password>
 						</a-form-model-item>
 					</div>
 
@@ -154,32 +177,45 @@
 
 <script>
 	import moment from "moment";
-	export default {
-		data() {
+	import {
+		sysFileInfoUpload,
+		myFileInfoUpload
+	} from '../../api/fileManage.js';
 
+	import {
+		queryBlogArticleType
+	} from '../../api/blogArticleType.js'
+
+	import myConstant from "../../config/myConstant.js"
+	import md5 from 'js-md5';
+
+	export default {
+		beforeMount() {
+			queryBlogArticleType({}).then((res) => {
+				this.blogArticleType = res.data;
+			})
+		},
+		data() {
+			let _this = this;
 			let validateContent = (rule, value, callback) => {
-				if (this.form.online) {
-					console.log("内容未填");
-					this.$refs.myForm.validateField('content')
+				if (_this.form.online) {
+					//this.$refs.myForm.validateField('content')
+					if (_this.form.content == null || _this.form.content == "") {
+						callback(new Error('内容未填'));
+					}
 				} else {
-					console.log("文件未传");
-					this.$refs.myForm.validateField('blogFileList')
+					//this.$refs.myForm.validateField('blogFileList')
+					if (_this.form.fileId == null) {
+						callback(new Error('文件未传'));
+					}
 				}
 				callback();
 			};
 
 			return {
-
-				blogFileList: [],
-				coverFileList: [
-					// {
-					// uid: '-1',
-					// name: 'xxx.png',
-					// status: 'done',
-					// url: 'https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png',
-					// thumbUrl: 'https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png',
-					// } 
-				],
+				fileTypeMarkDown: myConstant.fileTypeMarkDown,
+				fileTypeCover: myConstant.fileTypeCover,
+				blogArticleType: [],
 				tags: [],
 				inputVisible: false,
 				inputValue: '',
@@ -190,17 +226,22 @@
 					span: 13
 				},
 				form: {
+					secret: '',
 					online: false,
 					preference: false,
 					title: '',
 					content: '',
 					class: [],
 					tempSave: false,
-					blogType: "Markdown",
+					blogType: "1",
 					publishDate: "",
 					lock: false,
-					auth: "private",
+					top: false,
+					sliderValue: 50,
+					auth: 1,
 					password: "",
+					fileId: null,
+					coverFile: null,
 					blogFileList: [],
 					coverFileList: [],
 				},
@@ -211,62 +252,136 @@
 							trigger: 'blur'
 						},
 						{
-							min: 5,
+							min: 1,
 							max: 50,
 							message: '字数限制1~50',
 							trigger: 'blur'
 						},
 					],
+					secret: [{
+						required: true,
+						message: '好像这里错了..',
+						trigger: 'blur'
+					}],
 					common: [{
 						validator: validateContent,
 						trigger: []
 					}],
-					content: [{
-						max: 10,
-						required: true,
-						message: '至少填一下上传内容',
-						trigger: 'blur'
-					}, ],
-					blogFileList: [{
-						min: 1,
-						required: true,
-						message: '文件未上传',
-					}],
+					// content: [{
+					// 	max: 10,
+					// 	required: true,
+					// 	message: '至少填一下上传内容',
+					// 	trigger: 'blur'
+					// }, ],
+					// blogFileList: [{
+					// 	max: 1,
+					// 	required: true,
+					// 	message: '文件未上传',
+					// }],
 					class: [{
 						required: true,
 						message: '至少选一个分类',
 						trigger: 'blur'
 					}, ],
-					// region: [{
-					// 	required: true,
-					// 	message: 'Please select Activity zone',
-					// 	trigger: 'change'
-					// }],
-					// date1: [{
-					// 	required: true,
-					// 	message: 'Please pick a date',
-					// 	trigger: 'change'
-					// }],
-					// type: [{
-					// 	type: 'array',
-					// 	required: true,
-					// 	message: 'Please select at least one activity type',
-					// 	trigger: 'change',
-					// }, ],
-					// resource: [{
-					// 	required: true,
-					// 	message: 'Please select activity resource',
-					// 	trigger: 'change'
-					// }, ],
-					// desc: [{
-					// 	required: true,
-					// 	message: 'Please input activity form',
-					// 	trigger: 'blur'
-					// }],
+
 				}
 			};
 		},
 		methods: {
+			reset() {
+				// this.form.blogFileList = [];
+				// this.form.coverFileList = [];
+			},
+			beforeUploadCover(file, fileList) {
+				return new Promise((resolve, reject) => {
+					if (this.form.secret == null || this.form.secret == "") {
+						this.$message.error('需要正确的授权码');
+						return reject(false);
+					}
+
+					if (this.form.coverFileList.length >= 1) {
+						this.$message.error('这里最多上传一个文件');
+						return reject(false);
+					}
+					if (file.size > myConstant.uploadFileSizeLimit) {
+						this.$message.error('上传文件大小不能超过 2M!');
+						return reject(false);
+					}
+					return resolve(true)
+				});
+			},
+			beforeUpload(file, fileList) {
+				return new Promise((resolve, reject) => {
+					if (this.form.secret == null || this.form.secret == "") {
+						this.$message.error('需要正确的口令..');
+						return reject(false);
+					}
+
+					if (this.form.blogFileList.length >= 1) {
+						this.$message.error('这里最多上传一个文件');
+						return reject(false);
+					}
+
+					if (file.size > myConstant.uploadFileSizeLimit) {
+						this.$message.error('上传文件大小不能超过 2M!');
+						return reject(false);
+					}
+					return resolve(true)
+				});
+
+			},
+			handleChange(info) {
+				this.form.blogFileList = info.fileList;
+
+				if (info.file.status !== 'uploading') {
+					console.log(info.file, info.fileList);
+				}
+				if (info.file.status === 'done') {
+					this.form.fileId = info.file.response.data;
+					this.$message.success(`${info.file.name} file uploaded successfully`);
+				} else if (info.file.status === 'error') {
+					this.$message.error(`${info.file.name} file upload failed.`);
+				}
+
+				if (this.form.blogFileList == null || this.form.blogFileList.length == 0) {
+					this.form.fileId = null
+				}
+			},
+			handleChangeCoverFile(info) {
+				this.form.coverFileList = info.fileList;
+
+				if (info.file.status !== 'uploading') {
+					console.log(info.file, info.fileList);
+				}
+				if (info.file.status === 'done') {
+					this.form.coverFile = info.file.response.data;
+					this.$message.success(`${info.file.name} file uploaded successfully`);
+				} else if (info.file.status === 'error') {
+					this.$message.error(`${info.file.name} file upload failed.`);
+				}
+
+				if (this.form.coverFileList == null || this.form.coverFileList.length == 0) {
+					this.form.coverFile = null
+				}
+			},
+			/**
+			 * 上传文件
+			 */
+			customRequest(option) {
+				const formData = new FormData()
+				formData.append('file', option.file)
+				formData.append('fileType', option.data.fileType)
+				formData.append('authCode', this.form.secret == "" ? "" : md5(this.form.secret))
+				myFileInfoUpload(formData).then((res) => {
+					if (res.success) {
+						this.$message.success('上传成功')
+
+						option.onSuccess(res, option.file)
+					} else {
+						this.$message.error('上传失败:' + res.message)
+					}
+				})
+			},
 			disabledDate(current) {
 				return current < moment().subtract(1, "day");
 			},
@@ -274,9 +389,9 @@
 				return trigger => trigger.parentNode;
 			},
 			handleClose(removedTag) {
-				const tags = this.tags.filter(tag => tag !== removedTag);
+				// const tags = this.tags.filter(tag => tag !== removedTag);
 				//console.log(tags);
-				this.tags = tags;
+				this.tags = this.tags.filter(tag => tag !== removedTag);
 			},
 
 			showInput() {

--
Gitblit v1.9.1