mounted () {
            const that = this
            window.onresize = () => {
                return (() => {

                   //这里写要操作的函数
                    window.screenWidth = document.body.clientWidth
                    that.screenWidth = window.screenWidth


                })()
            }