vue-element-admin/node_modules/.cache/vue-loader/4b28e0fb0f3aa559ca01153c2564e864.json
2025-08-23 22:52:14 +08:00

1 line
4.8 KiB
JSON

{"remainingRequest":"/Users/kang/Gitea/vue-element-admin/node_modules/vue-loader/lib/index.js??vue-loader-options!/Users/kang/Gitea/vue-element-admin/src/views/devices/index.vue?vue&type=style&index=0&id=2bf58d14&lang=css","dependencies":[{"path":"/Users/kang/Gitea/vue-element-admin/src/views/devices/index.vue","mtime":1754665376734},{"path":"/Users/kang/Gitea/vue-element-admin/node_modules/css-loader/dist/cjs.js","mtime":1754409278208},{"path":"/Users/kang/Gitea/vue-element-admin/node_modules/vue-loader/lib/loaders/stylePostLoader.js","mtime":1754409279720},{"path":"/Users/kang/Gitea/vue-element-admin/node_modules/postcss-loader/src/index.js","mtime":1754409279211},{"path":"/Users/kang/Gitea/vue-element-admin/node_modules/cache-loader/dist/cjs.js","mtime":1754409278035},{"path":"/Users/kang/Gitea/vue-element-admin/node_modules/vue-loader/lib/index.js","mtime":1754409279720}],"contextDependencies":[],"result":[{"type":"Buffer","data":"base64:CgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgouZWwtaW5wdXRfX2lubmVyIHsKICBoZWlnaHQ6IDQwcHg7CiAgbGluZS1oZWlnaHQ6IDQwcHg7Cn0K"},{"version":3,"sources":["index.vue"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAyFA;AACA;AACA;AACA","file":"index.vue","sourceRoot":"src/views/devices","sourcesContent":["<template>\n <div class=\"components-container\">\n <div class=\"filter-container\">\n <div class=\"left-item\" style=\"float: left;\">\n <el-button type=\"primary\" style=\"padding: 8px;\" @click=\"addDeviceDialog = true\">\n <svg-icon icon-class=\"add-device\" />\n {{ $t('devices.addDevice') }}\n </el-button>\n <el-dialog v-el-drag-dialog :visible.sync=\"addDeviceDialog\" title=\"Shipping address\" @dragDialog=\"handleDrag\">\n <el-select ref=\"select\" v-model=\"value\" placeholder=\"请选择\">\n <el-option v-for=\"item in options\" :key=\"item.value\" :label=\"item.label\" :value=\"item.value\" />\n </el-select>\n <el-table :data=\"gridData\">\n <el-table-column property=\"date\" label=\"Date\" width=\"150\" />\n <el-table-column property=\"name\" label=\"Name\" width=\"200\" />\n <el-table-column property=\"address\" label=\"Address\" />\n </el-table>\n </el-dialog>\n\n <el-button style=\"padding: 8px; margin-left: 10px;\" @click=\"addDeviceDialog = true\">\n <svg-icon icon-class=\"import-device\" />\n {{ $t('devices.importDevice') }}\n </el-button>\n <el-dialog v-el-drag-dialog :visible.sync=\"addDeviceDialog\" title=\"Shipping address\" @dragDialog=\"handleDrag\">\n <el-select ref=\"select\" v-model=\"value\" placeholder=\"请选择\">\n <el-option v-for=\"item in options\" :key=\"item.value\" :label=\"item.label\" :value=\"item.value\" />\n </el-select>\n <el-table :data=\"gridData\">\n <el-table-column property=\"date\" label=\"Date\" width=\"150\" />\n <el-table-column property=\"name\" label=\"Name\" width=\"200\" />\n <el-table-column property=\"address\" label=\"Address\" />\n </el-table>\n </el-dialog>\n </div>\n <div class=\"right-item\" style=\"float: right;\">\n <el-input v-model=\"value\" placeholder=\"请输入内容\"></el-input>\n <el-button type=\"primary\" icon=\"el-icon-search\" style=\"padding: 8px;\"></el-button>\n </div>\n </div>\n\n\n </div>\n</template>\n\n<script>\nimport elDragDialog from '@/directive/el-drag-dialog' // base on element-ui\n\nexport default {\n name: 'DragDialogDemo',\n directives: { elDragDialog },\n data() {\n return {\n addDeviceDialog: false,\n options: [\n { value: '选项1', label: '黄金糕' },\n { value: '选项2', label: '双皮奶' },\n { value: '选项3', label: '蚵仔煎' },\n { value: '选项4', label: '龙须面' }\n ],\n value: '',\n gridData: [{\n date: '2016-05-02',\n name: 'John Smith',\n address: 'No.1518, Jinshajiang Road, Putuo District'\n }, {\n date: '2016-05-04',\n name: 'John Smith',\n address: 'No.1518, Jinshajiang Road, Putuo District'\n }, {\n date: '2016-05-01',\n name: 'John Smith',\n address: 'No.1518, Jinshajiang Road, Putuo District'\n }, {\n date: '2016-05-03',\n name: 'John Smith',\n address: 'No.1518, Jinshajiang Road, Putuo District'\n }]\n }\n },\n methods: {\n // v-el-drag-dialog onDrag callback function\n handleDrag() {\n this.$refs.select.blur()\n }\n }\n}\n</script>\n\n<style>\n.el-input__inner {\n height: 40px;\n line-height: 40px;\n}\n</style>\n"]}]}