management/front/dkha-web-sz-main/node_modules/.cache/babel-loader/746519110e361430b7c850e7e24...

1 line
28 KiB
JSON
Raw Normal View History

2023-12-18 13:12:25 +08:00
{"remainingRequest":"C:\\Users\\27446\\Desktop\\up\\front\\dkha-web-sz-main\\node_modules\\babel-loader\\lib\\index.js!C:\\Users\\27446\\Desktop\\up\\front\\dkha-web-sz-main\\src\\mixins\\view-module.js","dependencies":[{"path":"C:\\Users\\27446\\Desktop\\up\\front\\dkha-web-sz-main\\src\\mixins\\view-module.js","mtime":1622438583806},{"path":"C:\\Users\\27446\\Desktop\\up\\front\\dkha-web-sz-main\\node_modules\\cache-loader\\dist\\cjs.js","mtime":499162500000},{"path":"C:\\Users\\27446\\Desktop\\up\\front\\dkha-web-sz-main\\node_modules\\babel-loader\\lib\\index.js","mtime":499162500000}],"contextDependencies":[],"result":["import \"core-js/modules/es7.object.get-own-property-descriptors\";\nimport \"core-js/modules/es6.object.keys\";\nimport \"core-js/modules/es6.function.name\";\nimport \"core-js/modules/es6.regexp.replace\";\nimport \"core-js/modules/es7.array.includes\";\nimport \"core-js/modules/es6.string.includes\";\nimport \"core-js/modules/web.dom.iterable\";\nimport _defineProperty from \"C:\\\\Users\\\\27446\\\\Desktop\\\\up\\\\front\\\\dkha-web-sz-main\\\\node_modules\\\\@babel\\\\runtime-corejs2/helpers/esm/defineProperty\";\n\nfunction ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(source, true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(source).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }\n\nimport Cookies from 'js-cookie';\nimport qs from 'qs';\nimport { getDictDataListAll, getPersonRegion } from '@/utils';\nexport default {\n data: function data() {\n /* eslint-disable */\n return {\n // 设置属性\n mixinViewModuleOptions: {\n createdIsNeed: true,\n // 此页面是否在创建时,调用查询数据列表接口?\n activatedIsNeed: true,\n // 此页面是否在激活(进入)时,调用查询数据列表接口?\n getDataListURL: '',\n // 数据列表接口API地址\n getDataListIsPage: false,\n // 数据列表接口,是否需要分页?\n deleteURL: '',\n // 删除接口API地址\n deleteIsBatch: false,\n // 删除接口,是否需要批量?\n deleteIsBatchKey: 'id',\n // 删除接口批量状态下由那个key进行标记操作比如piduid...\n exportURL: '',\n // 导出接口API地址\n needCheckRecord: false //是否需要在翻页的时候 记录勾选状态\n\n },\n // 默认属性\n dataForm: {},\n // 查询条件\n dataList: [],\n // 数据列表\n order: '',\n // 排序ascdesc\n orderField: '',\n // 排序,字段\n page: 1,\n // 当前页码\n limit: 10,\n // 每页数\n total: 0,\n // 总条数\n dataListLoading: false,\n // 数据列表loading状态\n dataListSelections: [],\n // 数据列表,多选项\n addOrUpdateVisible: false,\n // 新增更新弹窗visible状态\n checkList: {} //分页跳转 记录 勾选状态\n\n /* eslint-enable */\n\n };\n },\n created: function created() {\n var params = this.$route.params;\n\n for (var key in this.dataForm) {\n if (params[key]) {\n this.dataForm[key] = params[key];\n }\n }\n\n if (this.mixinViewModuleOptions.createdIsNeed) {\n this.query();\n }\n },\n activated: function activated() {\n var params = this.$ro