首页 > 其他分享 >解决层级按序排号、接口返回参数双向绑定值无法修改问题、表单重置、路由截取参数、目标打印

解决层级按序排号、接口返回参数双向绑定值无法修改问题、表单重置、路由截取参数、目标打印

时间:2022-08-29 14:01:03浏览次数:42  
标签:function inputs obj dom 表单 print 参数 按序 var

1、item.optionValues.sort((a, b) => a['optionSort'] - b['optionSort'])   //a-b从小到大   b-a从大到小

2、接口返回参数双向绑定值无法修改问题用this.$set()  //this.$set(需要被改值的对象,被改的键,被改的值)

3、Object.assign(this.$data.mesPiform, this.$options.data.call(this).mesPiform)  //重置表单某个独立的项

4、获取网页路由的参数 (需要配合判断使用确认路由中是否包含该参数信息):

let url = new URL(location.href) 

let preMes = url.searchParams.get('name')   5、目标打印:(1)创建print.js文件   (2)直接传结构就欧克
const Print = function (dom, options) {
    if (!(this instanceof Print)) return new Print(dom, options);

    this.options = this.extend({
        'noPrint': '.no-print'
    }, options);

    if ((typeof dom) === "string") {
        this.dom = document.querySelector(dom);
    } else {
        this.isDOM(dom)
        this.dom = this.isDOM(dom) ? dom : dom.$el;
    }

    this.init();
};
Print.prototype = {
    init: function () {
        var content = this.getStyle() + this.getHtml();
        this.writeIframe(content);
    },
    extend: function (obj, obj2) {
        for (var k in obj2) {
            obj[k] = obj2[k];
        }
        return obj;
    },

    getStyle: function () {
        var str = "",
            styles = document.querySelectorAll('style,link');
        for (var i = 0; i < styles.length; i++) {
            str += styles[i].outerHTML;
        }
        str += "<style>" + (this.options.noPrint ? this.options.noPrint : '.no-print') + "{display:none;}</style>";

        return str;
    },

    getHtml: function () {
        var inputs = document.querySelectorAll('input');
        var textareas = document.querySelectorAll('textarea');
        var selects = document.querySelectorAll('select');

        for (var k = 0; k < inputs.length; k++) {
            if (inputs[k].type == "checkbox" || inputs[k].type == "radio") {
                if (inputs[k].checked == true) {
                    inputs[k].setAttribute('checked', "checked")
                } else {
                    inputs[k].removeAttribute('checked')
                }
            } else if (inputs[k].type == "text") {
                inputs[k].setAttribute('value', inputs[k].value)
            } else {
                inputs[k].setAttribute('value', inputs[k].value)
            }
        }

        for (var k2 = 0; k2 < textareas.length; k2++) {
            if (textareas[k2].type == 'textarea') {
                textareas[k2].innerHTML = textareas[k2].value
            }
        }

        for (var k3 = 0; k3 < selects.length; k3++) {
            if (selects[k3].type == 'select-one') {
                var child = selects[k3].children;
                for (var i in child) {
                    if (child[i].tagName == 'OPTION') {
                        if (child[i].selected == true) {
                            child[i].setAttribute('selected', "selected")
                        } else {
                            child[i].removeAttribute('selected')
                        }
                    }
                }
            }
        }

        return this.dom.outerHTML;
    },

    writeIframe: function (content) {
        var w, doc, iframe = document.createElement('iframe'),
            f = document.body.appendChild(iframe);
        iframe.id = "myIframe";
        //iframe.style = "position:absolute;width:0;height:0;top:-10px;left:-10px;";
        iframe.setAttribute('style', 'position:absolute;width:0;height:0;top:-10px;left:-10px;');
        w = f.contentWindow || f.contentDocument;
        doc = f.contentDocument || f.contentWindow.document;
        doc.open();
        doc.write(content);
        doc.close();
        var _this = this
        iframe.onload = function () {
            _this.toPrint(w);
            setTimeout(function () {
                document.body.removeChild(iframe)
            }, 100)
        }
    },

    toPrint: function (frameWindow) {
        try {
            setTimeout(function () {
                frameWindow.focus();
                try {
                    if (!frameWindow.document.execCommand('print', false, null)) {
                        frameWindow.print();
                    }
                } catch (e) {
                    frameWindow.print();
                }
                frameWindow.close();
            }, 10);
        } catch (err) {
            console.log('err', err);
        }
    },
    isDOM: (typeof HTMLElement === 'object') ?
        function (obj) {
            return obj instanceof HTMLElement;
        } :
        function (obj) {
            return obj && typeof obj === 'object' && obj.nodeType === 1 && typeof obj.nodeName === 'string';
        }
};
const MyPlugin = {}
MyPlugin.install = function (Vue, options) {
    // 4. 添加实例方法
    Vue.prototype.$print = Print
}
export default MyPlugin
//加入class="no-print"为不用打印部分
<template> <div> <h1 ref="print"> <div>打印区域</div> <div class="no-print">打印区域</div> </h1> <button @click="printFn">打印</button> </div> </template> <script> export default { methods: { printFn() { //传入dom结构即可 this.$print(this.$refs.print); }, }, } </script> <style></style>

 

标签:function,inputs,obj,dom,表单,print,参数,按序,var
From: https://www.cnblogs.com/zj6666/p/16635724.html

相关文章

  • Python命令行运行脚本时传入参数的方式
    Python命令行运行脚本时传入参数的两种方式1、pythonscript.py0,1,232、pythonscript.py--a=0,1,2--b=3对应不同的参数解析方式,分别为sys.argv,argparse(1) sys.......
  • 硬件常用参数设置
    硬件常用参数设置整理者:ZHOU邮箱:[email protected] 常用阻抗参数信号TraceImpedanceMaxtracelength  Ethernet95Ω±15%differential;55Ω±15%......
  • C# webApi接受JSON格式参数
    [HttpPost]publicstringTestData(){try{//接收post传入的数据varrequest......
  • Mysql8.0修改lower_case_table_names参数导致重启失败
    GreatSQL社区原创内容未经授权不得随意使用,转载请联系小编并注明来源。GreatSQL是MySQL的国产分支版本,使用上与MySQL一致。事件起因:在测试一个数据迁移工具时,源端orac......
  • Apache日志 LogFormat参数说明
    Apache日志LogFormat参数说明第2页_服务器应用_Linux公社-Linux系统门户网站 https://www.linuxidc.com/Linux/2013-09/89741p2.htm在Apache的配置文件httpd.conf里默......
  • choices参数(数据库字段设计常见)
    """用户表 性别 学历 工作经验 是否结婚 是否生子 客户来源 ...针对某个可以列举完全的可能性字段,我们应该如何存储只要某个字段的可能性是可以列举完全的,那么一般情况下......
  • c++ delegate 类,最大16个参数,用程序生成的代码
    2017-02-1604:58:34 发布于 CSDN 现转博客园。 读这篇文章的前提是,我们使用的编辑器对c++11的支持不太友好。下面是测试代码:#include<stdio.h>#include<stdlib......
  • C++函数名称作为参数
    1#ifndefCHANPROJECT_VECTOR2D_H2#defineCHANPROJECT_VECTOR2D_H3#include"ChanGlobal.h"45namespaceCommon{6template<typenameT>7cl......
  • Pycharm自动添加函数注释参数失效
    问题:Pycharm自动添加函数注释参数失效解决办法:File>settings>PythonIntegratedTools>Docstrings>Docstringformat:reStructuredText 修改之后的效果: ......
  • element-UI dropdown 传多个参数
    <el-tree:data="layersName":props="defaultProps"node-key="id":default-checked-keys="checked"show-checkbox@check-change="handleCheckChange"dragg......