|
@@ -0,0 +1,160 @@
|
|
|
+<template>
|
|
|
+ <!-- 新增/修改项目文件 -->
|
|
|
+ <div id="addProjectDialog">
|
|
|
+ <el-dialog
|
|
|
+ :title="dialogType === 'create' ? '添加项目' : '修改项目'"
|
|
|
+ :visible.sync="addProjectVisible"
|
|
|
+ width="570px"
|
|
|
+ :before-close="handleClose"
|
|
|
+ >
|
|
|
+ <el-form :model="form">
|
|
|
+ <el-form-item label="">
|
|
|
+ <el-input v-model="form.name" placeholder="请输入项目名称" autocomplete="off"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="">
|
|
|
+ <el-upload class="avatar-uploader" accept="image/*" action="#" :show-file-list="false" :http-request="uploadImg">
|
|
|
+ <img v-if="form.url" :src="form.url" class="avatar" />
|
|
|
+ <i v-else class="el-icon-plus avatar-uploader-icon"></i>
|
|
|
+ </el-upload>
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
+ <div slot="footer" class="dialog-footer">
|
|
|
+ <el-button @click="handleClose">取 消</el-button>
|
|
|
+ <el-button type="primary" @click="handleClose">确 定</el-button>
|
|
|
+ </div>
|
|
|
+ </el-dialog>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+<script lang="ts">
|
|
|
+import { Vue, Component, Prop, Emit, Watch, Ref } from "vue-property-decorator";
|
|
|
+import { imageUploadUrl, imageGetUrl } from "@/api/imageservice";
|
|
|
+
|
|
|
+@Component({
|
|
|
+ name: "AddProjectDialog",
|
|
|
+ components: {},
|
|
|
+})
|
|
|
+export default class extends Vue {
|
|
|
+ @Prop() private addProjectVisible!: boolean;
|
|
|
+ @Prop() private dialogType!: string;
|
|
|
+ @Prop() private formData!: any;
|
|
|
+
|
|
|
+ @Emit("update:addProjectVisible")
|
|
|
+ handleClose() {
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+
|
|
|
+ private form: any = {
|
|
|
+ name: "",
|
|
|
+ url: "",
|
|
|
+ };
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 自定义图片上传
|
|
|
+ */
|
|
|
+ private uploadImg(param: any) {
|
|
|
+ const elFile = param.file;
|
|
|
+ const fileReader = new FileReader();
|
|
|
+ fileReader.readAsDataURL(elFile); //读取图片
|
|
|
+
|
|
|
+ const ftype = elFile.type;
|
|
|
+ const fname = elFile.name;
|
|
|
+ const uid = elFile.uid;
|
|
|
+
|
|
|
+ fileReader.addEventListener("load", () => {
|
|
|
+ // 读取完成
|
|
|
+ const res = fileReader.result;
|
|
|
+ //将canvas的base64位图片转换成图片png的file
|
|
|
+ const blob = this.dataURLtoBlob(res, ftype);
|
|
|
+ //将其转换成file对象
|
|
|
+ const file = new File([blob], fname, {
|
|
|
+ type: ftype,
|
|
|
+ lastModified: Date.now(),
|
|
|
+ }); //blob转file
|
|
|
+
|
|
|
+ // try sending
|
|
|
+ const reader = new FileReader();
|
|
|
+ const fileType = file.name.split(".");
|
|
|
+ const imgType = fileType[fileType.length - 1];
|
|
|
+ const uploadKey = `${uid}.${imgType}`;
|
|
|
+ reader.onloadend = () => {
|
|
|
+ // 这个事件在读取结束后,无论成功或者失败都会触发
|
|
|
+ if (reader.error) {
|
|
|
+ console.error("读取文件失败:",reader.error);
|
|
|
+ } else {
|
|
|
+ // 构造 XMLHttpRequest 对象,发送文件 Binary 数据
|
|
|
+ const xhr = new XMLHttpRequest();
|
|
|
+ xhr.open("POST", `${imageUploadUrl}${uploadKey}`);
|
|
|
+ xhr.send(reader.result);
|
|
|
+ xhr.onreadystatechange = () => {
|
|
|
+ if (xhr.readyState == 4) {
|
|
|
+ if (xhr.status == 200) {
|
|
|
+ this.form.url = `${imageGetUrl}${uploadKey}`;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ };
|
|
|
+ }
|
|
|
+ };
|
|
|
+ reader.readAsArrayBuffer(file);
|
|
|
+ })
|
|
|
+ }
|
|
|
+
|
|
|
+ private dataURLtoBlob(dataURI: any, type: string) {
|
|
|
+ const binary = atob(dataURI.split(",")[1]);
|
|
|
+ const array = [];
|
|
|
+ for (let i = 0; i < binary.length; i++) {
|
|
|
+ array.push(binary.charCodeAt(i));
|
|
|
+ }
|
|
|
+ return new Blob([new Uint8Array(array)], { type: type });
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 点击确定(添加/修改项目)
|
|
|
+ */
|
|
|
+ private handleClick() {
|
|
|
+ if (this.dialogType === "create") {
|
|
|
+ //创建项目
|
|
|
+ console.log("创建项目");
|
|
|
+ } else if (this.dialogType === "update" && this.form?.id) {
|
|
|
+ //修改项目
|
|
|
+ console.log("修改项目");
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ @Watch("addProjectVisible")
|
|
|
+ onVisibleChanged(val: boolean) {
|
|
|
+ if (val) {
|
|
|
+ this.form.name = this.formData.name;
|
|
|
+ this.form.url = this.formData.url;
|
|
|
+ if (this.formData?.id) this.form.id = this.formData.id;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</script>
|
|
|
+<style lang="scss" scoped>
|
|
|
+::v-deep .el-dialog__body {
|
|
|
+ padding: 30px 120px;
|
|
|
+ .avatar-uploader .el-upload {
|
|
|
+ border: 1px dashed #d9d9d9;
|
|
|
+ border-radius: 6px;
|
|
|
+ cursor: pointer;
|
|
|
+ position: relative;
|
|
|
+ overflow: hidden;
|
|
|
+ }
|
|
|
+ .avatar-uploader .el-upload:hover {
|
|
|
+ border-color: #409eff;
|
|
|
+ }
|
|
|
+ .avatar-uploader-icon {
|
|
|
+ font-size: 28px;
|
|
|
+ color: #8c939d;
|
|
|
+ width: 120px;
|
|
|
+ height: 120px;
|
|
|
+ line-height: 120px;
|
|
|
+ text-align: center;
|
|
|
+ }
|
|
|
+ .avatar {
|
|
|
+ width: 120px;
|
|
|
+ height: 120px;
|
|
|
+ display: block;
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|