{"remainingRequest":"D:\\jenkins\\workspace\\bzzgj-fvue\\node_modules\\thread-loader\\dist\\cjs.js!D:\\jenkins\\workspace\\bzzgj-fvue\\node_modules\\babel-loader\\lib\\index.js!D:\\jenkins\\workspace\\bzzgj-fvue\\node_modules\\cache-loader\\dist\\cjs.js??ref--0-0!D:\\jenkins\\workspace\\bzzgj-fvue\\node_modules\\vue-loader\\lib\\index.js??vue-loader-options!D:\\jenkins\\workspace\\bzzgj-fvue\\src\\views\\Manage\\duty\\CMGTDutyAnalysisRelevancy\\index.vue?vue&type=script&lang=js&","dependencies":[{"path":"D:\\jenkins\\workspace\\bzzgj-fvue\\src\\views\\Manage\\duty\\CMGTDutyAnalysisRelevancy\\index.vue","mtime":1690541169595},{"path":"D:\\jenkins\\workspace\\bzzgj-fvue\\node_modules\\cache-loader\\dist\\cjs.js","mtime":499162500000},{"path":"D:\\jenkins\\workspace\\bzzgj-fvue\\node_modules\\thread-loader\\dist\\cjs.js","mtime":499162500000},{"path":"D:\\jenkins\\workspace\\bzzgj-fvue\\node_modules\\babel-loader\\lib\\index.js","mtime":315532800000},{"path":"D:\\jenkins\\workspace\\bzzgj-fvue\\node_modules\\cache-loader\\dist\\cjs.js","mtime":499162500000},{"path":"D:\\jenkins\\workspace\\bzzgj-fvue\\node_modules\\vue-loader\\lib\\index.js","mtime":499162500000}],"contextDependencies":[],"result":["//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\nimport BasicInformation from \"./components/BasicInformation.vue\";\nimport MonthScheduling from \"./components/MonthScheduling.vue\";\nimport DutyWarningInformation from \"./components/DutyWarningInformation.vue\";\nimport { TableMixin } from '@/mixins/tableMixin';\nimport CMGTDutyAnalysisRelevancyApi from '@/api/CMGTDutyAnalysisRelevancyApi'; // 解构接口api对象\n\nvar getTableData = CMGTDutyAnalysisRelevancyApi.getTableData,\n getOrganizationData = CMGTDutyAnalysisRelevancyApi.getOrganizationData;\nexport default {\n name: 'CMGTDutyAnalysisRelevancy',\n // 执勤行为分析\n components: {\n BasicInformation: BasicInformation,\n MonthScheduling: MonthScheduling,\n DutyWarningInformation: DutyWarningInformation\n },\n mixins: [TableMixin],\n data: function data() {\n return {\n // 表格产讯参数\n query: {\n yearMonth: '',\n organizationId: ''\n },\n dutyRecordsDialog: false,\n // 执勤电子档案弹层\n organizationOpt: [],\n // 织机构下拉框数据\n rowInfo: {},\n // 点击行信息\n componentName: 'BasicInformation',\n // 执勤电子档案弹层内tab按钮配置\n dutyRecordsDialogTabOpt: [{\n tabName: '基本信息',\n componentName: 'BasicInformation',\n iconName: 'el-icon-user-solid'\n }, {\n tabName: '本月排班信息',\n componentName: 'MonthScheduling',\n iconName: 'el-icon-date'\n }, {\n tabName: '执勤预警信息',\n componentName: 'DutyWarningInformation',\n iconName: 'el-icon-warning'\n }]\n };\n },\n created: function created() {\n var _this = this;\n\n // 获取组织机构下拉框数据\n getOrganizationData(function (res) {\n return _this.organizationOpt = res;\n });\n },\n mounted: function mounted() {},\n methods: {\n // 重置\n clearQuerys: function clearQuerys() {\n this.query = this.$options.data().query;\n },\n // 获取表格数据\n loadData: function loadData(page) {\n var _this2 = this;\n\n this.loading = true;\n if (page) this.queryParam.pageBean.page = page;\n /*\r\n * this.queryParam 为封装的分页数组对象\r\n * this.query 为表格条件查询参数\r\n * */\n\n getTableData(this.query, this.queryParam, function (res) {\n // console.log(res, 'res')\n var total = res.total,\n tableData = res.rows;\n _this2.total = total;\n _this2.tableData = tableData;\n _this2.loading = false;\n });\n },\n // 展示弹层公共函数\n showDialog: function showDialog(dialogName, row) {\n if (row) this.rowInfo = row; // 保存行信息\n // console.log(row)\n // 后续多个弹层通过switch派单\n\n switch (dialogName) {\n case 'dutyRecordsDialog':\n break;\n }\n\n this[dialogName] = true;\n },\n // 隐藏弹层\n hideDialog: function hideDialog() {\n // 重置tabs选择为第一个tab选项(人员基本信息)\n this.componentName = this.$options.data().componentName;\n }\n }\n};",null]}