suyiScreen/node_modules/.cache/vue-loader/435afd15c74e8f7ace7cdb4254f...

1 line
4.6 KiB
JSON

{"remainingRequest":"F:\\lixiaobang\\suyi1111\\suyiScreen\\node_modules\\vue-loader\\lib\\index.js??vue-loader-options!F:\\lixiaobang\\suyi1111\\suyiScreen\\src\\components\\BasicBox\\index.vue?vue&type=script&lang=js&","dependencies":[{"path":"F:\\lixiaobang\\suyi1111\\suyiScreen\\src\\components\\BasicBox\\index.vue","mtime":1670891618064},{"path":"F:\\lixiaobang\\suyi1111\\suyiScreen\\node_modules\\cache-loader\\dist\\cjs.js","mtime":1670891604112},{"path":"F:\\lixiaobang\\suyi1111\\suyiScreen\\node_modules\\babel-loader\\lib\\index.js","mtime":1670891602826},{"path":"F:\\lixiaobang\\suyi1111\\suyiScreen\\node_modules\\cache-loader\\dist\\cjs.js","mtime":1670891604112},{"path":"F:\\lixiaobang\\suyi1111\\suyiScreen\\node_modules\\vue-loader\\lib\\index.js","mtime":1670891614530}],"contextDependencies":[],"result":[{"type":"Buffer","data":"base64:Ly8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KDQoNCg0KZXhwb3J0IGRlZmF1bHQgew0KDQogICAgcHJvcHM6IHsNCiAgICAgICAgdGl0bGU6IHsNCiAgICAgICAgICAgIGRlZmF1bHQ6ICgpID0+ICIiLA0KICAgICAgICAgICAgdHlwZTogU3RyaW5nLA0KICAgICAgICAgICAgcmVxdWlyZWQ6IHRydWUNCiAgICAgICAgfSwNCiAgICAgICAgZGF0YVNvdXJjZTogew0KICAgICAgICAgICAgZGVmYXVsdDogKCkgPT4gZmFsc2UsDQogICAgICAgICAgICB0eXBlOiBbQXJyYXksIEJvb2xlYW5dLA0KICAgICAgICAgICAgcmVxdWlyZWQ6IHRydWUNCiAgICAgICAgfSwNCiAgICB9LA0KICAgIGNvbXBvbmVudHM6IHsNCg0KICAgIH0sDQogICAgbW91bnRlZCgpIHsNCg0KICAgIH0sDQogICAgYmVmb3JlRGVzdHJveSgpIHsNCg0KICAgIH0sDQogICAgbWV0aG9kczogew0KDQogICAgfSwNCn07DQo="},{"version":3,"sources":["index.vue"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;AAoBA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA","file":"index.vue","sourceRoot":"src/components/BasicBox","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 <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 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 margin-left: -12px;\r\n background: url('~@/assets/leftthree.png') no-repeat;\r\n background-size: 92%;\r\n ul {\r\n padding-bottom: 10px;\r\n }\r\n\r\n li {\r\n width: 100%;\r\n display: block;\r\n position: relative;\r\n height: 25px;\r\n }\r\n\r\n .title {\r\n // max-width: 542px;\r\n // // font-family: monospace;\r\n // height: 22px;\r\n // color: $title-color;\r\n // font-size: 20px;\r\n // padding-left: 50px;\r\n // height: 40px;\r\n // line-height: 40px;\r\n // background: url('~@/assets/tit.png') no-repeat center;\r\nwidth: 92%;\r\n height: 35px;\r\n line-height: 59px;\r\n /* padding-left: 9px; */\r\n margin-bottom: 5px;\r\n background-size: contain;\r\n color: #fff;\r\n font-weight: 700;\r\n font-size: 15px;\r\n /* position: absolute; */\r\n text-align: center;\r\n\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\r\n li {\r\n position: relative;\r\n padding: 12px 0;\r\n width: 100%;\r\n\r\n .left {\r\n color: #5FB7E7;\r\n position: absolute;\r\n left: 25px;\r\n }\r\n\r\n .right {\r\n width: 68%;\r\n color: #fff;\r\n position: absolute;\r\n right: 25px;\r\n }\r\n }\r\n\r\n}\r\n</style>\r\n"]}]}