Browse Source

wanda-adm:feat > 添加、编辑设备

shaun-sheep 4 years ago
parent
commit
4ca86d3138

+ 173 - 63
src/components/business/dataForm.vue

@@ -1,93 +1,197 @@
 <template>
     <el-row :gutter="20" class="data-form">
-        <el-form label-position="top" label-width="80px">
-            <!-- template v-for-->
-            <template>
+        <el-form label-position="top" label-width="300px" :model="form">
+            <template v-if="Object.keys(header).length > 0">
                 <p class="title">基础信息</p>
-                <el-row :gutter="20">
-                    <template v-for="(item,index) in header.basicInfos.data">
-                        <el-col :span="8" :key="index">
-                            <el-form-item
-                                :key="index"
-                                :label="item.name">
-                                <el-input v-model="form[item.path]"/>
-                            </el-form-item>
-                        </el-col>
-                    </template>
+                <el-row :gutter="18">
+                    <el-col :span="8" :key="item.path" v-for="item in header.basicInfos.data">
+                        <el-form-item
+                            :label="item.name">
+                            <el-input v-model="form[item.path]"/>
+                        </el-form-item>
+                    </el-col>
                 </el-row>
-            </template>
-            <div class="content">
-                <el-tabs v-model="activeName" type="card" @tab-click="handleClick">
-                    <el-tab-pane v-for="(item,index) in paneMsg" :key="index" :label="item" :name="index.toString()"/>
-                </el-tabs>
-                <div class="table">
-                    <el-row :gutter="20">
-                        <template v-for="(item,index) in header.dictStages.data">
-                            <el-col span="8" :key="index">
-                                <el-form-item
-                                    :key="index"
-                                    :label="item.name">
-                                    <el-input v-model="form[item.path]"/>
-                                </el-form-item>
-                            </el-col>
-                        </template>
-                    </el-row>
-                </div>
-            </div>
 
+                <div class="content">
+                    <el-tabs v-model="activeName" type="card" @tab-click="handleClick">
+                        <el-tab-pane v-for="(item,index) in paneMsg" :key="index" :label="item"
+                                     :name="index.toString()"/>
+                    </el-tabs>
+                    <div class="table">
 
-        </el-form>
+                        <el-row :gutter="18">
+                            <el-col :span="item.dataType == 'ATTACHMENT'? 24:8"
+                                    :key="item.path"
+                                    v-for="item in header.dictStages.data"
+                                    :style="{ 'height':item.dataType == 'ATTACHMENT'? 'auto':'93px' }"
+                            >
+                                <el-form-item :label="item.name">
+                                    <el-input
+                                        :disabled="!item.editable"
+                                        v-if="item.dataType == 'STRING'"
+                                        v-model="form[item.path]"/>
+
+                                    <el-input
+                                        v-else-if="item.dataType == 'DOUBLE' || item.dataType == 'INTEGER'"
+                                        type="number"
+                                        v-model="form[item.path]">
+                                        <template slot="append" v-if="item.unit">{{ item.unit }}</template>
+                                    </el-input>
+
+                                    <el-select
+                                        v-else-if="item.dataType == 'MENUM'"
+                                        placeholder="请选择"
+                                        v-model="form[item.path]"
+                                        multiple
+                                        collapse-tags>
+                                        <el-option :key="index" :label="op.name" :value="op.code"
+                                                   v-for="(op,index) in item.dataSource"></el-option>
+                                    </el-select>
+
+                                    <el-select
+                                        v-else-if="item.dataType == 'ENUM' || item.dataType == 'BOOLEAN'"
+                                        placeholder="请选择"
+                                        v-model="form[item.path]">
+                                        <el-option :key="index" :label="op.name" :value="op.code"
+                                                   v-for="(op,index) in item.dataSource"></el-option>
+                                    </el-select>
+                                    <el-date-picker
+                                        v-else-if="item.dataType == 'DATETIME'"
+                                        v-model="form[item.path]"
+                                        placeholder="选择日期"
+                                        type="date">
+                                    </el-date-picker>
+                                    <uploadImgs
+                                        v-else-if="item.dataType == 'ATTACHMENT'&& item.path === 'infos.Pic'"
+                                        :readOnly="false"
+                                        v-model="form[item.path]"
+                                        :keysArr="Array.isArray(buildData[item.path]) ? buildData[item.path]:[]"
+                                        :context-key="item.path"
+                                        :isShow="1"
+                                        @change="changeItem"/>
 
+                                    <uploadFiles
+                                        v-else-if="item.dataType == 'ATTACHMENT'"
+                                        v-model="form[item.path]"
+                                        :readOnly="false"
+                                        :isShow="1"
+                                        :keys-arr="Array.isArray(buildData[item.path]) ? buildData[item.path]:[] "
+                                        :show-file-list="false"
+                                        :context-key="item.path"
+                                        @change="changeItem"/>
+                                </el-form-item>
+
+                            </el-col>
 
+                        </el-row>
+                    </div>
+                </div>
+            </template>
+        </el-form>
     </el-row>
 </template>
 
 <script lang="ts">
+
 import { Component, Prop, Vue, Watch } from 'vue-property-decorator'
+import uploadFiles from "@/components/public/uploadFiles.vue";
+import uploadImgs from "@/components/public/uploadImgs.vue";
+
+function flattenKeys(obj: any) {
+    let res = {}
+
+    function isObject(val: any) {
+        return typeof val === 'object' && !Array.isArray(val)
+    }
+
+    function digKeys(prev: any, obj: any) {
+        Object.entries(obj).forEach(([key, value]) => {
+            const currentKey = prev ? `${ prev }.${ key }` : key
+            if (isObject(value)) {
+                digKeys(currentKey, value)
+            } else {
+                res[currentKey] = value
+            }
+        })
+    }
+
+    digKeys('', obj)
+
+    return res
+}
+
 @Component({
     name: "dataForm",
+    components: { uploadFiles, uploadImgs }
 })
 export default class extends Vue {
-    @Prop({ default: Object }) dataFormList?: {};
     // tabs数据
     paneMsg = ['设计阶段维护', '施工阶段维护', '运维阶段维护']
-    activeName = this.paneMsg[0]
+    activeName = ""
     header = {}
     form = {}
+    // 默认当前阶段
+    currentHeader = this.paneMsg[0]
+    buildData = {}
+    @Prop({ default: Object }) deviceHeaders ?: {}
+    @Prop({ default: Object }) currRowContent ?: {}
 
-    @Watch('deviceHeaders', { immediate: true, deep: true })
-    async deviceHeaders() {
-        await this.test()
+    @Watch('currRowContent', { immediate: true, deep: true })
+    handleRow() {
+        this.$nextTick(() => {
+            // string =>array key
+            this.form = {}
+            this.form = Object.keys(this.currRowContent).length > 0 ? flattenKeys(this.currRowContent) : {}
+        })
+
+    }
 
+    @Watch('deviceHeaders', { immediate: true, deep: true })
+    changeHeaders() {
+        this.$nextTick(() => {
+            let header = []
+            if (typeof this.deviceHeaders == 'object' && Object.keys(this.deviceHeaders).length > 0) {
+                this.deviceHeaders.dictStages.length > 0 && this.deviceHeaders.dictStages.forEach(item => {
+                    if (this.currentHeader == item.name) {
+                        item.infos && item.infos.forEach(val => header.push(val))
+                    }
+                })
+                header.map(item => {
+                    const category = ['ENUM', 'MENUM', 'BOOLEAN']
+                    if (item.category == 'STATIC' && item.dataType.includes(category) && item.dataSource) {
+                        item.props = {
+                            value: 'code',
+                            label: 'name',
+                            children: 'content',
+                            checkStrictly: true
+                        }
+                    }
+                    return item
+                })
+            }
+            this.header = {
+                basicInfos: {
+                    name: '基础信息台账',
+                    data: this.deviceHeaders.basicInfos
+                },
+                dictStages: {
+                    name: this.currentHeader,
+                    data: header
+                }
+            }
+        })
     }
 
-    // test() {
-    //     let header = []
-    //     console.log(this.dataFormList)
-    //     if (Object.keys(this.dataFormList.length > 0)) {
-    //         this.dataFormList.dictStages.forEach(item => {
-    //             console.log(this.activeName)
-    //             if (this.activeName == item.name) {
-    //                 console.log(this.activeName)
-    //                 item.infos && item.infos.forEach(val => header.push(val))
-    //             }
-    //         })
-    //     }
-    //     this.header = {
-    //         basicInfos: {
-    //             name: '基础信息台账',
-    //             data: this.dataFormList.basicInfos
-    //         },
-    //         dictStages: {
-    //             name: this.activeName,
-    //             data: header
-    //         }
-    //     }
-    // }
+    changeItem(val) {
+        console.log(val)
+        let _key = Object.keys(val)[0] + '';
+        this.form[_key] = val[_key];
+
+    }
 
     handleClick(val) {
-        this.activeName = val.label
-        this.deviceHeaders()
+        this.currentHeader = val.label
+        this.changeHeaders()
     }
 }
 
@@ -96,6 +200,11 @@ export default class extends Vue {
 <style scoped lang="scss">
 $border: 1px solid #E1E7EA;
 .data-form {
+    //.el-upload-dragger {
+    //    width: auto;
+    //    height: auto;
+    //}
+
     .title {
         border-left: 7px solid;
         text-indent: 10px;
@@ -113,4 +222,5 @@ $border: 1px solid #E1E7EA;
         }
     }
 }
+
 </style>

+ 7 - 4
src/components/public/adm-multi-table.vue

@@ -31,8 +31,10 @@
 </template>
 
 <script lang="ts">
+
+
 import { ElTable } from "element-ui/types/table";
-import { Component, Prop, Ref, Vue, Watch } from "vue-property-decorator";
+import { Component, Emit, Prop, Ref, Vue, Watch } from "vue-property-decorator";
 @Component({
     name: "adm-multi-table",
 })
@@ -45,15 +47,16 @@ export default class extends Vue {
     // 当前页头文字
     @Prop({ default: "" }) currentHeader?: string;
 
+    @Emit('handleCurrentEdit')
     handleEdit(index, row) {
-        console.log(index, row);
+        return row
     }
 
     @Watch("headersStage", { immediate: true, deep: true })
     onCurrentHeaderChange() {
         this.$nextTick(() => {
-            if (this.tableDom?.doLayout) 
-            this.tableDom.doLayout();
+            if (this.tableDom?.doLayout)
+                this.tableDom.doLayout();
         });
     }
 }

+ 219 - 0
src/components/public/uploadFiles.vue

@@ -0,0 +1,219 @@
+<template>
+    <div id="saga-upload">
+        <div id="uploadFile">
+            <el-upload
+                class="upload-file"
+                action
+                :http-request="uploadAndSubmit"
+                :show-file-list="false">
+                <el-button size="small" :type="isShow ===1 ? 'text':'primary'" v-if="!readOnly">点击上传</el-button>
+                <div slot="tip" class="el-upload__tip" v-if="(isShow !== 1 || isShow == undefined) && !readOnly">
+                    请上传文件,且不大于50M
+                </div>
+            </el-upload>
+            <div v-show="item && filesArr.length" v-for="(item,index) in filesArr" :key="item.key">
+                <p class="file-list">
+                    <span class="file-name" :title="item.name">{{ item.name }}</span>
+                    <i title="下载" class="el-icon-download" style="margin-left:10px; cursor:pointer"
+                       @click="download(item)"></i>
+                    <i v-if="!readOnly" title="删除" class="el-icon-close delete-icon"
+                       style="margin-left:10px; cursor:pointer" @click="deleteFile(index,item)"></i>
+                </p>
+            </div>
+        </div>
+    </div>
+</template>
+
+<script lang="ts">
+import { Component, Prop, Vue, Watch } from "vue-property-decorator";
+import tools from "@/utils/maintain";
+
+@Component({
+    name: 'uploadFiles'
+})
+export default class extends Vue {
+    @Prop({ default: Array }) keysArr?: [] | undefined
+    @Prop({ default: Boolean }) readOnly?: boolean
+    @Prop({ default: Number }) isShow?: number
+    @Prop() contextKey?: {} | ''
+    @Prop() defined: null
+
+
+    filesArr = []
+
+    created() {
+        this.fileFlag()
+    }
+
+
+    //判断是否为空
+    fileFlag() {
+        let type = typeof (this.keysArr)
+        if (type == 'string') {
+            this.filesArr = [this.keysArr]
+        } else {
+            this.filesArr = tools.deepCopy(this.keysArr)
+        }
+
+        if (!this.keysArr) {
+            this.filesArr = []
+        }
+    }
+
+    resetFile() {
+        this.filesArr = []
+    }
+
+    //点击下载
+    download(item: any) {
+        if (item.key) {
+            let a = document.createElement("a");
+            a.href = `/image-service/common/file_get/${ item.key }?systemId=dataPlatform`;
+            a.download = `${ item.name }`;
+            a.click();
+            document.body.removeChild(a);
+        } else {
+            this.$message({
+                message: "无该获取该文件资源链接!",
+                type: "error"
+            });
+        }
+    }
+
+    //删除图片
+    deleteFile(i: any, key: number) {
+        this.filesArr.splice(i, 1);
+        this.$emit("change", this.filesArr, this.defined);
+    }
+
+    //上传
+    uploadAndSubmit(item) {
+        let file = item.file;
+        // try sending
+        let size = item.file.size;
+        if (size > 50 * 1024 * 1024) { //文件大于50M
+            this.$message.error('文件不可大于50M,请重新上传')
+            return false
+        } else {
+            let reader = new FileReader();
+            let vm: any = this;
+            let fileType = file.name.split(".");
+            let type = fileType[fileType.length - 1];
+            let key = "&key=" + fileType[0] + file.uid + "." + type
+            let CreateTime = tools.formatDate(new Date(file.lastModified))
+            reader.onloadstart = function () {
+                // 这个事件在读取开始时触发
+            };
+            reader.onprogress = function (p) {
+                // 这个事件在读取进行中定时触发
+
+            };
+            reader.onload = function () {
+                // 这个事件在读取成功结束后触发
+            };
+            reader.onloadend = function () {
+                // 这个事件在读取结束后,无论成功或者失败都会触发
+                if (reader.error) {
+                } else {
+                    // document.getElementById("bytesRead").textContent = file.size;
+                    // 构造 XMLHttpRequest 对象,发送文件 Binary 数据
+                    var xhr = new XMLHttpRequest();
+                    xhr.open(
+                        /* method */
+                        "POST",
+                        /* target url */
+                        "/image-service/common/file_upload?systemId=dataPlatform&secret=9e0891a7a8c8e885&overwrite=true" + key
+                        /*, async, default to true */
+                    );
+                    //xhr.overrideMimeType("application/octet-stream");
+                    xhr.send(reader.result);
+                    xhr.onreadystatechange = function () {
+                        if (xhr.readyState == 4) {
+                            console.log(xhr)
+                            if (xhr.status == 200) {
+                                let fileObject = {
+                                    key: key.split("=")[1],
+                                    type,
+                                    name: file.name,
+                                    createTime: CreateTime,
+                                    systemId: 'dataPlatform'
+                                }
+                                vm.filesArr.push(fileObject);
+
+                                if (vm.isShow === 1) {
+                                    let oFile = {}
+                                    oFile[vm.contextKey] = vm.filesArr
+                                    vm.$emit("change", oFile, vm.defined);
+                                } else {
+                                    vm.$emit("change", vm.filesArr, vm.defined);
+                                }
+                            } else {
+                                this.$message.error('上传错误')
+                            }
+                        }
+                    };
+                }
+            };
+            reader.readAsArrayBuffer(file);
+        }
+    }
+
+    @Watch('keysArr', { immediate: true, deep: true })
+    handleKeysArr() {
+        this.fileFlag()
+    }
+}
+</script>
+
+<style scoped lang="scss">
+#saga-upload {
+    .dill-image {
+        position: absolute;
+        right: 0;
+        top: 0;
+        font-size: 20px;
+    }
+
+    .el-upload-dragger {
+        width: 180px;
+        height: 180px;
+    }
+
+    img {
+        position: absolute;
+        top: 0;
+        bottom: 0;
+        left: 0;
+        right: 0;
+        width: 100%;
+        height: 100%;
+    }
+
+    #uploadFile {
+        .upload-file {
+            overflow: hidden;
+            .el-upload-dragger {
+                width: inherit;
+                height: inherit;
+                border: none;
+            }
+        }
+        .file-list {
+            .file-name {
+                display: inline-block;
+                width: 400px;
+                font-size: 12px;
+                color: #409eff;
+                overflow: hidden;
+                white-space: nowrap;
+                text-overflow: ellipsis;
+                vertical-align: top;
+                cursor: pointer;
+            }
+            .file-name:hover {
+                color: #66b1ff;
+            }
+        }
+    }
+}
+</style>

+ 257 - 0
src/components/public/uploadImgs.vue

@@ -0,0 +1,257 @@
+<template>
+        <div id="sagaUploads">
+            <div class="saga-upload-images">
+                <div v-if="type != 'video'" class="point-view" v-for="(item,index) in imagesArr">
+                    <div class="point-image">
+                        <i v-if="!readOnly" class="el-icon-delete" @click="delImage(index,item)"></i>
+                        <img @click="lookImg" :src="imageGetUrl + '&key=' +item.key" alt>
+                    </div>
+                    <p v-if="readOnly">{{ item.name }}</p>
+                    <form-input v-else :label="''" @change="getName" :keys="index" :value="item.name" :width="10"></form-input>
+                </div>
+                <div v-if="type == 'video'" class="point-view" v-for="(item,index) in imagesArr">
+                    <div class="point-image">
+                        <i v-if="!readOnly" class="el-icon-delete" @click="delImage(index,item)"></i>
+                        <video
+                            width="100%"
+                            height="100%;"
+                            :src="imageGetUrl + '&key=' +item.key"
+                            controls="controls"
+                        >您的浏览器不支持 video 标签。
+                        </video>
+                    </div>
+                    <p v-if="readOnly">{{ item.name }}</p>
+                    <form-input v-else :label="''" @change="getName" :keys="index" :value="item.name"
+                                :width="10"></form-input>
+                </div>
+                <div v-if="!readOnly" style="float:left;">
+                    <el-upload
+                        class="avatar-uploader"
+                        :http-request="uploadAndSubmit"
+                        :show-file-list="false"
+                        :accept="accept"
+                        action
+                        drag
+                        style="position: relative"
+                    >
+                        <i class="el-icon-plus avatar-uploader-icon"></i>
+                    </el-upload>
+                    <video style="display:none;" id="video" controls/>
+                </div>
+            </div>
+            <details-dialog :title="'图片'" :iframeSrc="iframeSrc" :dialog="dialog" :setData="imagesArr"></details-dialog>
+        </div>
+    </template>
+
+
+<script lang="ts">
+import { Component, Prop, Vue, Watch } from "vue-property-decorator";
+import tools from "@/utils/maintain";
+
+@Component({
+    name: 'uploadFiles'
+})
+export default class extends Vue {
+    @Prop({ default: Array }) keysArr?: [] | undefined
+    @Prop({ default: Boolean }) readOnly?: boolean
+    @Prop({ default: Number }) isShow?: number
+    @Prop() contextKey?: {} | ''
+    @Prop() defined: null
+    @Prop({ default: 'image/*' }) accept: null
+    @Prop({ default: 'image' }) type: null
+    @Prop({ default: Array }) videoPicArr?: []
+
+
+    filesArr = [];
+    baseUrl = "";
+    imageGetUrl = "/image-service/common/image_get?systemId=dataPlatform";
+    imageUploadUrl = "/image-service/common/image_upload?systemId=dataPlatform&secret=9e0891a7a8c8e885&overwrite=true";
+    imagesArr = [];
+
+    created() {
+        this.imageFlag()
+    }
+
+    getName(name, index) {
+        this.imagesArr[index].name = name
+        if (this.isShow === 1) {
+            let oFile = {}
+            oFile[this.contextKey] = this.imagesArr
+            this.$emit("change", oFile, this.defined, this.videoPicArr);
+
+        } else {
+            this.$emit("change", this.imagesArr, this.defined, this.videoPicArr);
+
+        }
+    }
+
+    //判断是否为空
+    imageFlag() {
+        let type = typeof this.keysArr;
+        if (type == "string") {
+            this.imagesArr = [this.keysArr];
+        } else {
+            this.imagesArr = tools.copyArr(this.keysArr);
+        }
+
+        if (!this.keysArr) {
+            this.imagesArr = [];
+        }
+    }
+
+    //查看图片
+    lookImg() {
+        console.log(1)
+        // this.dialog.details = true
+        // this.iframeSrc = process.env.BASE_URL + ":8890/photo-View.html"
+    }
+
+    //删除图片
+    delImage(i, key) {
+        if (this.type == "video") {
+            this.videoPicArr = this.videoPicArr.map(item => {
+                if (item.key.substring(0, item.length - 3) == this.imagesArr[i].key.substring(0, this.imagesArr[i].length - 3)) {
+                    return undefined
+                } else {
+                    return item
+                }
+            }).filter(p => p)
+        }
+        this.imagesArr.splice(i, 1);
+        this.$emit("change", this.imagesArr, this.defined, this.videoPicArr);
+    }
+
+    //上传
+    uploadAndSubmit(item, key) {
+        // let form = document.forms["demoForm"];
+
+        // if (form["file"].files.length > 0) {
+        // 寻找表单域中的 <input type="file" ... /> 标签
+        // let file = form["file"].files[0];
+
+        let file = item.file;
+        // try sending
+        let reader = new FileReader();
+
+        let vm = this;
+
+        let fileType = file.name.split(".");
+        let type = fileType[fileType.length - 1];
+        let CreateTime = tools.formatDate(new Date(file.lastModified))
+
+        let uploadKey = file.uid
+        if (!!key) {
+            uploadKey = key
+        }
+
+        reader.onloadstart = function () {
+            // 这个事件在读取开始时触发
+        };
+        reader.onprogress = function (p) {
+            // 这个事件在读取进行中定时触发
+        };
+
+        reader.onload = function () {
+            // 这个事件在读取成功结束后触发
+        };
+        reader.onloadend = function () {
+            // 这个事件在读取结束后,无论成功或者失败都会触发
+            if (reader.error) {
+            } else {
+                // document.getElementById("bytesRead").textContent = file.size;
+                // 构造 XMLHttpRequest 对象,发送文件 Binary 数据
+                let xhr = new XMLHttpRequest();
+                xhr.open(
+                    /* method */
+                    "POST",
+                    /* target url */
+                    vm.imageUploadUrl + "&key=" + uploadKey + "." + type
+                    /*, async, default to true */
+                );
+                //xhr.overrideMimeType("application/octet-stream");
+                xhr.send(reader.result);
+                xhr.onreadystatechange = function () {
+                    if (xhr.readyState == 4) {
+                        if (xhr.status == 200) {
+                            if (vm.type == 'image') {
+                                vm.imagesArr.push({
+                                    name: uploadKey + '',
+                                    key: uploadKey + "." + type,
+                                    systemId: "dataPlatform",
+                                    type: "image",
+                                    createTime: CreateTime
+                                });
+                            }
+                            if (type == 'mp4') {
+                                vm.imagesArr.push({
+                                    name: uploadKey + '',
+                                    key: uploadKey + "." + type,
+                                    systemId: "dataPlatform",
+                                    type: "video",
+                                    createTime: CreateTime
+                                });
+                                vm.creatImg(vm.imageGetUrl + "&key=" + uploadKey + "." + type, uploadKey)
+                            }
+                            if (vm.type == "video" && type == "png") {
+                                vm.videoPicArr.push({
+                                    name: uploadKey + '',
+                                    key: uploadKey + "." + type,
+                                    systemId: "dataPlatform",
+                                    type: "image_video",
+                                    createTime: CreateTime
+                                })
+                            }
+                            if (vm.isShow === 1) {
+                                let oFile = {}
+                                oFile[vm.contextKey] = vm.imagesArr
+                                vm.$emit("change", oFile, vm.defined, vm.videoPicArr);
+                            } else {
+                                vm.$emit("change", vm.imagesArr, vm.defined, vm.videoPicArr);
+
+                            }
+                        }
+                    }
+                };
+            }
+        };
+        reader.readAsArrayBuffer(file);
+    }
+
+    dataURLtoBlob(dataURI, type) {
+        let binary = atob(dataURI.split(',')[1]);
+        let array = [];
+        for (let i = 0; i < binary.length; i++) {
+            array.push(binary.charCodeAt(i));
+        }
+        return new Blob([new Uint8Array(array)], { type: type });
+    }
+
+    creatImg(reader, key) {
+        let videoDom = document.getElementById('video');
+        videoDom.src = reader;
+        let vm = this
+        videoDom.onloadeddata = function () {
+            // 这里可以打印视频时长
+            // 这里取得视频封面
+            let canvas = document.createElement('canvas');
+            canvas.width = 300;
+            canvas.height = 300 * this.videoHeight / this.videoWidth;
+            canvas.getContext('2d').drawImage(this, 0, 0, canvas.width, canvas.height);
+            //将canvas的base64位图片转换成图片png的file
+            let blob = vm.dataURLtoBlob(canvas.toDataURL('image/png'), "image/png")
+            //将其转换成file对象
+            let file = new File([blob], "video_image.png", { type: "image/png", lastModified: Date.now() })//blob转file
+            vm.uploadAndSubmit({ file: file }, key)
+        }
+    }
+
+    @Watch('keysArr', { immediate: true, deep: true })
+    handleKeysArr() {
+        this.imageFlag()
+    }
+}
+</script>
+
+<style scoped>
+
+</style>

+ 19 - 0
src/utils/maintain.ts

@@ -29,6 +29,25 @@ export const tools = {
                 data = data[arr[i]]
             }
         }
+    },
+    deepCopy: function (obj: any): any {
+        const out = [],
+            len = obj.length;
+        for (let i = 0; i < len; i++) {
+            if (obj[i] instanceof Array) {
+                out[i] = tools.deepCopy(obj[i]);
+            } else out[i] = obj[i];
+        }
+        return out;
+    },
+    formatDate: (now: any) => {
+        let year = now.getFullYear();
+        let month = now.getMonth() + 1;
+        let date = now.getDate();
+        let hour = now.getHours();
+        let minute = now.getMinutes();
+        let second = now.getSeconds();
+        return year + "-" + month + "-" + (date > 10 ? date : '0' + date) + " " + hour + ":" + (minute > 10 ? minute : '0' + minute) + ":" + (second > 10 ? second : '0' + second);
     }
 }
 export default tools

+ 128 - 38
src/views/maintain/device/index.vue

@@ -15,7 +15,8 @@
             </el-tabs>
             <div class="table" v-loading="loading">
                 <template v-if="deviceType.length > 0">
-                    <admMultiTable :currentHeader="currentHeader" :tableData="tableData" :headersStage="headersStage"/>
+                    <admMultiTable :currentHeader="currentHeader" @handleCurrentEdit="handleCurrentEdit"
+                                   :tableData="tableData" :headersStage="headersStage"/>
                     <Pagination v-if="tableData.length > 0" :paginationList="paginationList"
                                 @handleCurrentChange="handleCurrentChange"
                                 @handleSizeChange="handleSizeChange"/>
@@ -28,32 +29,69 @@
             </div>
         </div>
         <!--        添加/编辑 设备-->
-        <el-dialog
-            :title="deviceMsg"
-            :visible.sync="dialogVisible"
-            @close="close"
-        >
-            <template v-if="next">
-                <div class="align" style="height: 400px">
-                    <span class="text ">设备类别</span>
-                    <el-cascader :options="list" clearable v-model="deviceVal"
-                                 :props="optionProps"
-                                 class="adm-select"></el-cascader>
+        <el-scrollbar style="height:400px;">
+
+            <el-dialog
+                :title="deviceMsg"
+                :visible.sync="dialogVisible"
+                @close="close"
+            >
+                <template slot="title">
+                    <div class="alertTitle">
+                        <span>添加设备</span>
+                        <el-button type="text"><span class="el-icon-question"></span>维护帮助</el-button>
+                    </div>
+                </template>
+                <template v-if="status == '添加'">
+                    <template v-if="next">
+                        <div class="align" style="height: 400px">
+                            <span class="text ">设备类别</span>
+                            <el-cascader :options="list" clearable v-model="deviceVal"
+                                         :props="optionProps"
+                                         class="adm-select"></el-cascader>
+
+                        </div>
+                        <el-button type="primary" class="fr" @click="handleNext">下一步</el-button>
+                    </template>
+                    <template v-else-if="displayLocation && deviceVal">
+                        <div class="dialog-button">
+                            <el-button type="primary">保存</el-button>
+                            <el-button type="default">取消</el-button>
+                            <el-button type="default">重置</el-button>
+                        </div>
+                    </template>
+                    <template v-else>
+                        <div>
+                            <dataForm :deviceHeaders="deviceHeaders" ref="dataForm" :currRowContent="currRowContent"/>
+                        </div>
+                        <span slot="footer" class="dialog-footer">
+                         <el-button type="primary" @click="handleDataForm">确 定</el-button>
+                         <el-button @click="handlePosition">维护位置</el-button>
+                    </span>
+                    </template>
+                </template>
+                <template v-else>
+                    <template v-if="maintain == '维护'">
+                        <div class="dialog-button">
+                            <el-button type="primary">保存</el-button>
+                            <el-button type="default">取消</el-button>
+                            <el-button type="default">重置</el-button>
+                        </div>
+                    </template>
+                    <template v-else>
+                        <div>
+                            <dataForm :deviceHeaders="deviceHeaders" ref="dataForm" :currRowContent="currRowContent"/>
+                        </div>
+                        <span slot="footer" class="dialog-footer">
+                         <el-button type="primary" @click="handleDataForm">确 定</el-button>
+                         <el-button @click="handlePosition">维护位置</el-button>
+                    </span>
+                    </template>
+                </template>
+            </el-dialog>
 
-                </div>
-                <el-button type="primary" class="fr" @click="handleNext">下一步</el-button>
-            </template>
-            <template v-else-if="displayLocation && deviceVal">
-                <el-button type="primary" class="fr ml-10">保存</el-button>
-                <el-button type="default" class="fr ml-10">取消</el-button>
-                <el-button type="default" class="fr ml-10">重置</el-button>
-            </template>
-            <template v-else>
-                <dataForm :dataFormList="dataFormList"/>
-                <el-button type="primary" class="fr ml-10">确定</el-button>
-                <el-button type="default" class="fr" @click="handlePosition">维护位置</el-button>
-            </template>
-        </el-dialog>
+
+        </el-scrollbar>
     </div>
 </template>
 <script lang="ts">
@@ -123,7 +161,14 @@ export default class extends Vue {
     // 主体数据
     tableData = []
     codeToDataSource = {}
-    dataFormList = {}
+    deviceHeaders = {}
+    // 当前行数据
+    currRowContent = {}
+    // 弹窗显示
+    status = '添加'
+    // 维护位置开关
+    maintain = ''
+
     // 项目id
     get projectId(): string {
         return UserModule.projectId
@@ -196,11 +241,10 @@ export default class extends Vue {
                 category: this.deviceVal[1]
             }
             await dictInfo(param).then(res => {
-                this.dataFormList = res
-
+                this.deviceHeaders = res
             })
         } else {
-            this.dataFormList = {}
+            console.log(5)
         }
     }
 
@@ -324,6 +368,7 @@ export default class extends Vue {
 
     // 添加设备
     addDevice() {
+        this.status = '添加'
         this.dialogVisible = true
     }
 
@@ -333,6 +378,19 @@ export default class extends Vue {
         this.displayLocation = true
     }
 
+    // 添加/编辑 事件处理
+    handleDataForm() {
+        console.log(this.$refs.dataForm.form)
+    }
+
+    // 编辑当前行
+    handleCurrentEdit(val) {
+        this.status = '编辑'
+        this.currRowContent = val
+        this.handleNext()
+        this.dialogVisible = true
+    }
+
     // close
     close() {
         this.next = true
@@ -366,6 +424,11 @@ $border: 1px solid #E1E7EA;
     padding: 12px;
     height: 100%;
 
+    .el-dialog__header {
+        padding: 10px;
+    }
+
+
     .operation {
         margin: 12px 0;
 
@@ -433,7 +496,18 @@ $border: 1px solid #E1E7EA;
 }
 
 </style>
-<style>
+<style lang="scss">
+.adm-device {
+    .el-dialog__header {
+        padding: 10px;
+    }
+
+    .el-select, .el-date-editor.el-input, .el-date-editor.el-input__inner {
+        width: 100%;
+    }
+
+}
+
 .data-form {
     height: 430px;
 }
@@ -452,19 +526,35 @@ $border: 1px solid #E1E7EA;
     border-bottom: 1px solid #D8D8D8;
 }
 
-.fl {
-    float: left;
-}
 
 .fr {
     float: right;
 }
 
-.el-dialog__body {
-    overflow: hidden;
+.dialog-button {
+    float: right;
+    margin-left: 10px;
+    margin-top: 30px;
 }
 
-.ml-10 {
-    margin-left: 10px;
+.el-dialog {
+    .el-dialog__body {
+        max-height: 500px !important;
+        min-height: 100px;
+        overflow-y: auto;
+        overflow-x: hidden;
+    }
 }
+
+.alertTitle {
+    overflow: hidden;
+    line-height: 32px;
+
+    button {
+        float: right;
+        margin-right: 40px;
+    }
+}
+
+
 </style>