1 |
- {"remainingRequest":"E:\\boman-framwork\\ruoyi-ui\\node_modules\\vue-loader\\lib\\index.js??vue-loader-options!E:\\boman-framwork\\ruoyi-ui\\src\\views\\system\\table\\index.vue?vue&type=script&lang=js&","dependencies":[{"path":"E:\\boman-framwork\\ruoyi-ui\\src\\views\\system\\table\\index.vue","mtime":1617152835179},{"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:Ly8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KLy8KCmV4cG9ydCBkZWZhdWx0IHsKICBuYW1lOiAiaW5kZXgiLAogIGRhdGEoKSB7CiAgICByZXR1cm4gewogICAgICAgYWN0aXZlTmFtZXM6IFsnMSddLAogICAgICAgdGl0bGU6J+WNleihqDEnLAogICAgICAgLy8g5p+l6K+i5Y+C5pWwCiAgICAgICBxdWVyeVBhcmFtczogewogICAgICAgICBwYWdlTnVtOiAxLAogICAgICAgICBwYWdlU2l6ZTogMTAsCiAgICAgICAgIGRpY3ROYW1lOiB1bmRlZmluZWQsCiAgICAgICAgIGRpY3RUeXBlOiB1bmRlZmluZWQsCiAgICAgICAgIHN0YXR1czogdW5kZWZpbmVkCiAgICAgICB9LAogICAgICAgbGFibGV0aXQ6J+afpeivouWPguaVsDEyMzMnCiAgICB9OwogIH0sCiAgbWV0aG9kczogewogICAgaGFuZGxlQ2hhbmdlKHZhbCkgewogICAgICAgICAgICBjb25zb2xlLmxvZyh2YWwpOwogICAgICAgICAgfQogIH0sCn07Cg=="},{"version":3,"sources":["index.vue"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAsCA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA","file":"index.vue","sourceRoot":"src/views/system/table","sourcesContent":["<template>\r\n <div class=\"table_total\">\r\n <div class=\"table_header\">\r\n <p>单表</p>\r\n <el-divider></el-divider>\r\n <div class=\"table_headerBtun\">\r\n <el-button type=\"primary\" plain v-for=\"(item,index) in 7\" :key=\"index\">新增</el-button>\r\n </div>\r\n </div>\r\n <!-- 内容 -->\r\n <div class=\"table_nav\">\r\n <el-collapse v-model=\"activeNames\" @change=\"handleChange\">\r\n <el-collapse-item :title=\"title\" :name=\"index\" v-for=\"(item,index) in 4\" :key=\"index\">\r\n <el-form :model=\"queryParams\" ref=\"queryForm\" :inline=\"true\" >\r\n <el-row :gutter=\"0\">\r\n <el-col :span=\"6\" v-for=\"(item,index) in 12\" :key=\"index\">\r\n <el-form-item :label=\"labletit\" prop=\"dictName\">\r\n <el-input\r\n v-model=\"queryParams.dictName\"\r\n placeholder=\"请输入字典名称\"\r\n clearable\r\n size=\"small\"\r\n @keyup.enter.native=\"handleQuery\"\r\n />\r\n </el-form-item>\r\n </el-col>\r\n </el-row>\r\n </el-form>\r\n </el-collapse-item>\r\n\r\n </el-collapse>\r\n </div>\r\n\r\n </div>\r\n\r\n</template>\r\n\r\n<script>\r\n export default {\r\n name: \"index\",\r\n data() {\r\n return {\r\n activeNames: ['1'],\r\n title:'单表1',\r\n // 查询参数\r\n queryParams: {\r\n pageNum: 1,\r\n pageSize: 10,\r\n dictName: undefined,\r\n dictType: undefined,\r\n status: undefined\r\n },\r\n labletit:'查询参数1233'\r\n };\r\n },\r\n methods: {\r\n handleChange(val) {\r\n console.log(val);\r\n }\r\n },\r\n };\r\n</script>\r\n\r\n\r\n<style lang=\"scss\">\r\n .table_header{\r\n .el-divider--horizontal{\r\n margin-top: 16px;\r\n }\r\n }\r\n .table_nav{\r\n .el-collapse-item__wrap{\r\n border-bottom: 0;\r\n }\r\n .el-collapse-item__header{\r\n border-bottom: 0;\r\n font-size: 15px;\r\n font-family: PingFang SC;\r\n font-weight: bold;\r\n color: #3C8DBC;\r\n line-height: 36px;\r\n }\r\n .el-form-item__content{\r\n width: 55%;\r\n }\r\n .el-collapse{\r\n border-top: 0;\r\n }\r\n }\r\n</style>\r\n\r\n\r\n\r\n<style scoped lang=\"scss\">\r\n .app-main{\r\n // background-color: #eef0ff !important;\r\n }\r\n .table_total{\r\n background-color: #eef0ff;\r\n height: 100%;\r\n padding: 20px;\r\n // 头部\r\n .table_header{\r\n background-color: #fff;\r\n border-radius: 6px;\r\n padding: 23px;\r\n margin-bottom: 20px;\r\n p{\r\n font-size: 15px;\r\n font-weight: bold;\r\n color: #3C8DBC;\r\n line-height: 36px;\r\n }\r\n p::before{\r\n content: \"\";\r\n display: block;\r\n width: 18px;\r\n height: 8px;\r\n background: #3C8DBC;\r\n border-radius: 3px;\r\n\r\n }\r\n }\r\n // 内容\r\n .table_nav{\r\n background-color: #fff;\r\n border-radius: 6px;\r\n padding: 23px;\r\n }\r\n }\r\n p{\r\n margin: 0;\r\n\r\n }\r\n</style>\r\n"]}]}
|