1 line
5.4 KiB
JSON
1 line
5.4 KiB
JSON
{"remainingRequest":"F:\\lixiaobang\\suyi\\suyiScreen\\node_modules\\babel-loader\\lib\\index.js!F:\\lixiaobang\\suyi\\suyiScreen\\node_modules\\cache-loader\\dist\\cjs.js??ref--0-0!F:\\lixiaobang\\suyi\\suyiScreen\\node_modules\\vue-loader\\lib\\index.js??vue-loader-options!F:\\lixiaobang\\suyi\\suyiScreen\\src\\components\\BasicBox5\\index.vue?vue&type=script&lang=js&","dependencies":[{"path":"F:\\lixiaobang\\suyi\\suyiScreen\\src\\components\\BasicBox5\\index.vue","mtime":1670891618067},{"path":"F:\\lixiaobang\\suyi\\suyiScreen\\node_modules\\cache-loader\\dist\\cjs.js","mtime":1670891604112},{"path":"F:\\lixiaobang\\suyi\\suyiScreen\\node_modules\\babel-loader\\lib\\index.js","mtime":1670891602826},{"path":"F:\\lixiaobang\\suyi\\suyiScreen\\node_modules\\cache-loader\\dist\\cjs.js","mtime":1670891604112},{"path":"F:\\lixiaobang\\suyi\\suyiScreen\\node_modules\\vue-loader\\lib\\index.js","mtime":1670891614530}],"contextDependencies":[],"result":[{"type":"Buffer","data":"base64:Ly8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KZXhwb3J0IGRlZmF1bHQgewogIHByb3BzOiB7CiAgICB0aXRsZTogewogICAgICBkZWZhdWx0OiBmdW5jdGlvbiBfZGVmYXVsdCgpIHsKICAgICAgICByZXR1cm4gIiI7CiAgICAgIH0sCiAgICAgIHR5cGU6IFN0cmluZywKICAgICAgcmVxdWlyZWQ6IHRydWUKICAgIH0sCiAgICBkYXRhU291cmNlOiB7CiAgICAgIGRlZmF1bHQ6IGZ1bmN0aW9uIF9kZWZhdWx0KCkgewogICAgICAgIHJldHVybiBmYWxzZTsKICAgICAgfSwKICAgICAgdHlwZTogW0FycmF5LCBCb29sZWFuXSwKICAgICAgcmVxdWlyZWQ6IHRydWUKICAgIH0KICB9LAogIGRhdGE6IGZ1bmN0aW9uIGRhdGEoKSB7CiAgICByZXR1cm4ge307CiAgfSwKICBjb21wb25lbnRzOiB7fSwKICBtb3VudGVkOiBmdW5jdGlvbiBtb3VudGVkKCkge30sCiAgYmVmb3JlRGVzdHJveTogZnVuY3Rpb24gYmVmb3JlRGVzdHJveSgpIHt9LAogIG1ldGhvZHM6IHt9Cn07"},{"version":3,"sources":["index.vue"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;AAuBA,eAAA;AAEA,EAAA,KAAA,EAAA;AACA,IAAA,KAAA,EAAA;AACA,MAAA,OAAA,EAAA;AAAA,eAAA,EAAA;AAAA,OADA;AAEA,MAAA,IAAA,EAAA,MAFA;AAGA,MAAA,QAAA,EAAA;AAHA,KADA;AAMA,IAAA,UAAA,EAAA;AACA,MAAA,OAAA,EAAA;AAAA,eAAA,KAAA;AAAA,OADA;AAEA,MAAA,IAAA,EAAA,CAAA,KAAA,EAAA,OAAA,CAFA;AAGA,MAAA,QAAA,EAAA;AAHA;AANA,GAFA;AAeA,EAAA,IAfA,kBAeA;AACA,WAAA,EAAA;AAGA,GAnBA;AAoBA,EAAA,UAAA,EAAA,EApBA;AAuBA,EAAA,OAvBA,qBAuBA,CAEA,CAzBA;AA0BA,EAAA,aA1BA,2BA0BA,CAEA,CA5BA;AA6BA,EAAA,OAAA,EAAA;AA7BA,CAAA","sourcesContent":["<template>\r\n <div class=\"box\">\r\n <div class=\"title\">\r\n <!-- <span class=\"icon\"></span> -->\r\n {{ title }}\r\n </div>\r\n \r\n <slot name=\"top\"></slot>\r\n <div class=\"imgurl\">\r\n <img src=\"@/assets/landRes/floor.png\" alt=\"\">\r\n </div>\r\n <ul v-if=\"dataSource\">\r\n <li v-for=\"(item, index) in dataSource \" :key=\"index\">\r\n <span class=\"left\">{{ item.key }}:</span>\r\n <span class=\"right\">{{ item.value }}</span>\r\n </li>\r\n </ul>\r\n </div>\r\n</template>\r\n\r\n<script>\r\n\r\n\r\nexport default {\r\n\r\n props: {\r\n title: {\r\n default: () => \"\",\r\n type: String,\r\n required: true\r\n },\r\n dataSource: {\r\n default: () => false,\r\n type: [Array, Boolean],\r\n required: true\r\n },\r\n \r\n },\r\n data() {\r\n return {\r\n \r\n }\r\n },\r\n components: {\r\n\r\n },\r\n mounted() {\r\n\r\n },\r\n beforeDestroy() {\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@import \"~@/common/var.scss\";\r\n\r\n\r\n.box {\r\n\r\n // background: #11223289;\r\n background: rgba(16,29,37,0.8);\r\n border: 2px solid $border-color;\r\n padding: 5px 0;\r\n margin-bottom: 10px;\r\n width: 100%;\r\n float: right;\r\n max-height: 860px;\r\n \r\n ul {\r\n padding-bottom: 10px;\r\n max-height: 644px;\r\n overflow-y: scroll;\r\n }\r\n ul::-webkit-scrollbar {\r\n display: none;\r\n }\r\n li {\r\n width: 100%;\r\n display: block;\r\n position: relative;\r\n height: 65px;\r\n background: url('~@/assets/landRes/1.png') no-repeat;\r\n // background-size: contain;\r\n background-size:100%;\r\n padding: 22px 0px!important;\r\n\r\n }\r\n\r\n .title {\r\n width: 100%;\r\n height: 33px;\r\n line-height: 33px;\r\n padding-left: 30px;\r\n margin-bottom: 5px;\r\n background: -15px url('~@/assets/tit.png') no-repeat;\r\n background-size: contain;\r\n color: #8ec1d8;\r\n font-weight: 700;\r\n font-size: 16px;\r\n .icon {\r\n height: 10px;\r\n width: 10px;\r\n transform: rotate(45deg);\r\n background-color: #20BBD2;\r\n display: inline-block;\r\n line-height: 40px;\r\n margin-right: 5px;\r\n padding-left: 5px;\r\n }\r\n }\r\n.imgurl{\r\n padding-left: 20px;\r\n}\r\n li {\r\n position: relative;\r\n padding: 12px 0;\r\n width: 100%;\r\n\r\n .left {\r\n color: #fff;\r\n width: 38%;\r\n position: absolute;\r\n left: 30px;\r\n }\r\n\r\n .right {\r\n width: 62%;\r\n color: #5FB7E7;\r\n position: absolute;\r\n right: 25px;\r\n }\r\n }\r\n\r\n}\r\n</style>\r\n"],"sourceRoot":"src/components/BasicBox5"}]} |