1 |
- {"remainingRequest":"E:\\boman-framwork\\ruoyi-ui\\node_modules\\vue-loader\\lib\\index.js??vue-loader-options!E:\\boman-framwork\\ruoyi-ui\\src\\components\\BigPicture\\index.vue?vue&type=script&lang=js&","dependencies":[{"path":"E:\\boman-framwork\\ruoyi-ui\\src\\components\\BigPicture\\index.vue","mtime":1619684448373},{"path":"E:\\boman-framwork\\ruoyi-ui\\node_modules\\cache-loader\\dist\\cjs.js","mtime":499162500000},{"path":"E:\\boman-framwork\\ruoyi-ui\\node_modules\\babel-loader\\lib\\index.js","mtime":315532800000},{"path":"E:\\boman-framwork\\ruoyi-ui\\node_modules\\cache-loader\\dist\\cjs.js","mtime":499162500000},{"path":"E:\\boman-framwork\\ruoyi-ui\\node_modules\\vue-loader\\lib\\index.js","mtime":499162500000}],"contextDependencies":[],"result":[{"type":"Buffer","data":"base64:Ly8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KCmltcG9ydCB7CiAgc2Nyb2xsVG8KfSBmcm9tICdAL3V0aWxzL3Njcm9sbC10bycKCmV4cG9ydCBkZWZhdWx0IHsKICBuYW1lOiAnQmlnUGljdHVyZScsCiAgcHJvcHM6IHsKICAgIHVybHM6IHsKICAgICAgZGVmYXVsdDogJycsCiAgICAgIHR5cGU6IFN0cmluZwogICAgfSwKICAgIGhpZGRlbjogewogICAgICB0eXBlOiBPYmplY3QsCiAgICAgIGRlZmF1bHQ6ICgpID0+IHsKICAgICAgICByZXR1cm4gewogICAgICAgICAgc3RhdHVzOiAnJwogICAgICAgIH0KICAgICAgfQogICAgfQogIH0sCiAgbWV0aG9kczogewoKICB9Cn0K"},{"version":3,"sources":["index.vue"],"names":[],"mappings":";;;;;;;;;AASA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA","file":"index.vue","sourceRoot":"src/components/BigPicture","sourcesContent":["<template>\r\n <div :class=\"{'hidden': !hidden.status}\" @click=\"hidden.status=false\" class=\"heibox\">\r\n <div class=\"imgs\" @click.stop=\"\">\r\n <img :src=\"urls\" alt=\"\" class=\"img\">\r\n </div>\r\n </div>\r\n</template>\r\n\r\n<script>\r\n import {\r\n scrollTo\r\n } from '@/utils/scroll-to'\r\n\r\n export default {\r\n name: 'BigPicture',\r\n props: {\r\n urls: {\r\n default: '',\r\n type: String\r\n },\r\n hidden: {\r\n type: Object,\r\n default: () => {\r\n return {\r\n status: ''\r\n }\r\n }\r\n }\r\n },\r\n methods: {\r\n\r\n }\r\n }\r\n</script>\r\n\r\n<style lang=\"scss\" scoped>\r\n .heibox {\r\n width: 100%;\r\n height: 100%;\r\n background-color: rgba(0,0,0,.8);\r\n position: fixed;\r\n z-index: 99999;\r\n top: 0;\r\n left: 0;\r\n .imgs{\r\n width: 80%;\r\n position: absolute;\r\n left: 50%;\r\n top: 50%;\r\n transform: translate(-50%,-50%);\r\n .img{\r\n width: 100%;\r\n object-fit: contain;\r\n }\r\n }\r\n }\r\n .hidden {\r\n display: none;\r\n }\r\n</style>\r\n"]}]}
|