cloud-web-corejs 1.0.54-dev.6 → 1.0.54-dev.600
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +21 -7
- package/src/App.vue +30 -34
- package/src/api/user.js +16 -0
- package/src/components/Qrcode/fileParse.vue +0 -1
- package/src/components/Tinymce/index.vue +112 -71
- package/src/components/VabUpload/image-viewer.vue +2 -2
- package/src/components/VabUpload/index.js +49 -1
- package/src/components/VabUpload/index.vue +2 -1
- package/src/components/VabUpload/mixins.js +1822 -2
- package/src/components/VabUpload/propertiesDialog.vue +1 -1
- package/src/components/VabUpload/view.vue +209 -119
- package/src/components/advancedSearchDialog/mixins.js +28 -1
- package/src/components/base-textarea/index.vue +104 -0
- package/src/components/baseAlert/index.js +44 -1
- package/src/components/baseAlert/index.vue +23 -19
- package/src/components/baseAlert/mixins.js +61 -1
- package/src/components/baseAttachment/index.vue +49 -40
- package/src/components/baseAttachment/install.js +21 -5
- package/src/components/baseAttachment/mixins.js +310 -1
- package/src/components/baseInputBatch/mixins.js +58 -1
- package/src/components/baseInputExport/index.vue +21 -14
- package/src/components/baseInputExport/mixins.js +391 -1
- package/src/components/baseTabs/mixins.js +166 -1
- package/src/components/cnPrint/index.js +44 -1
- package/src/components/cnPrint/mixins.js +189 -1
- package/src/components/code-editor/index.vue +102 -63
- package/src/components/confirmDialog/index.js +41 -1
- package/src/components/confirmDialog/index.vue +24 -17
- package/src/components/confirmDialog/mixins.js +31 -1
- package/src/components/errorMsg/index.js +44 -1
- package/src/components/errorMsg/index.vue +78 -70
- package/src/components/errorMsg/mixins.js +101 -5
- package/src/components/excelExport/button.vue +57 -4
- package/src/components/excelExport/exportFieldDialog.vue +305 -33
- package/src/components/excelExport/index.js +2 -1
- package/src/components/excelExport/index.vue +64 -7
- package/src/components/excelExport/mixins.js +5 -1
- package/src/components/excelImport/index.js +13 -13
- package/src/components/excelImport/index.vue +2 -1
- package/src/components/excelImport/mixins.js +2 -1
- package/src/components/fileLibrary/fileObjAuthDialog.vue +262 -150
- package/src/components/fileLibrary/fileObjAuthEditDialog.vue +12 -1
- package/src/components/fileLibrary/fileObjNotifyEdit.vue +192 -0
- package/src/components/fileLibrary/filterDialog.vue +454 -0
- package/src/components/fileLibrary/index.vue +605 -262
- package/src/components/fileLibrary/mixins/categoryMoveDialogMixins.js +1 -1
- package/src/components/fileLibrary/mixins/fileCategoryDialogMixins.js +1 -1
- package/src/components/fileLibrary/mixins/fileHistoryDialogMixins.js +2 -2
- package/src/components/fileLibrary/mixins/fileObjAuthDialogMixin.js +344 -209
- package/src/components/fileLibrary/mixins/fileObjAuthEditDialogMixin.js +33 -26
- package/src/components/fileLibrary/mixins/fileObjAuthEditMixin.js +5 -5
- package/src/components/fileLibrary/mixins/indexMixins.js +245 -112
- package/src/components/fileLibrary/mixins/propertiesDialogMixins.js +64 -4
- package/src/components/fileLibrary/mixins/recycleBinDialogMixins.js +3 -3
- package/src/components/fileLibrary/propertiesDialog.vue +113 -74
- package/src/components/fileLibrary/shareDialog.vue +1 -1
- package/src/components/formOplog/mixins.js +85 -4
- package/src/components/hiprint/css/bootstrap.min.css +6 -0
- package/src/components/hiprint/fonts/glyphicons-halflings-regular.eot +0 -0
- package/src/components/hiprint/fonts/glyphicons-halflings-regular.svg +288 -0
- package/src/components/hiprint/fonts/glyphicons-halflings-regular.ttf +0 -0
- package/src/components/hiprint/fonts/glyphicons-halflings-regular.woff +0 -0
- package/src/components/hiprint/fonts/glyphicons-halflings-regular.woff2 +0 -0
- package/src/components/hiprint/hiprint.bundle.js +7 -2
- package/src/components/hiprint/view/design/index.vue +140 -47
- package/src/components/hiprint/view/design/mixins.js +611 -1
- package/src/components/hiprint/view/design/preview.vue +75 -52
- package/src/components/hiprint/view/json-view.vue +31 -31
- package/src/components/jdPrint/index.js +44 -1
- package/src/components/jdPrint/mixins.js +208 -1
- package/src/components/jsonImport/index.js +187 -17
- package/src/components/jsonImport/mixins.js +333 -1
- package/src/components/langImport/index.js +80 -1
- package/src/components/langImport/mixins.js +500 -16
- package/src/components/langTag/mixins/addButton.js +51 -5
- package/src/components/langTag/mixins/deleteButton.js +55 -5
- package/src/components/langTag/mixins/view.js +47 -5
- package/src/components/luckysheet/dialog.vue +159 -0
- package/src/components/luckysheet/export.js +595 -0
- package/src/components/luckysheet/fileUtils.js +147 -0
- package/src/components/luckysheet/index.js +72 -0
- package/src/components/luckysheet/templateJson.js +12078 -0
- package/src/components/luckysheet/view.vue +210 -0
- package/src/components/obsUpload/index.js +34 -0
- package/src/components/obsUpload/index.vue +231 -0
- package/src/components/obsUpload/mixins.js +1476 -0
- package/src/components/onlineTalk/index.vue +327 -5
- package/src/components/onlineTalk/mixins.js +852 -1
- package/src/components/oplogTable/mixins.js +83 -4
- package/src/components/pddPrint/index.js +44 -1
- package/src/components/pddPrint/mixins.js +252 -1
- package/src/components/projectTag/mixins/addButton.js +52 -1
- package/src/components/projectTag/mixins/deleteButton.js +52 -1
- package/src/components/projectTag/mixins/view.js +43 -1
- package/src/components/scriptDescription/button.vue +12 -4
- package/src/components/scriptDescription/mixins.js +30 -1
- package/src/components/scriptTest/mixins.js +90 -1
- package/src/components/statusTag/mixins.js +66 -1
- package/src/components/table/CellSlot.vue +1 -0
- package/src/components/table/config.js +1 -1
- package/src/components/table/index - /345/211/257/346/234/254.js" +1101 -0
- package/src/components/table/index.js +1103 -10
- package/src/components/table/plugins/extend-cell-area/vxe-table-extend-cell-area.es6.min.js +11028 -0
- package/src/components/table/plugins/extend-cell-area/vxe-table-extend-cell-area.min.css +200 -0
- package/src/components/table/tableForm.vue +99 -63
- package/src/components/table/tableFormMixin.js +1 -1
- package/src/components/table/util/index.js +335 -0
- package/src/components/table/vxeFilter/index.js +154 -1
- package/src/components/table/vxeFilter/mixin.js +308 -6
- package/src/components/tempStorage/index.vue +76 -55
- package/src/components/tempStorage/tempStorageDialog.vue +179 -54
- package/src/components/vb-tabs/x-tabs.vue +56 -30
- package/src/components/vipPrint/index.js +44 -1
- package/src/components/vipPrint/mixins.js +268 -1
- package/src/components/wf/addOpinionButton.vue +57 -0
- package/src/components/wf/content.vue +834 -362
- package/src/components/wf/mixins/addOpinionButton.js +53 -0
- package/src/components/wf/mixins/setCandidateButton.js +161 -0
- package/src/components/wf/mixins/setCandidateDialog.js +213 -1
- package/src/components/wf/mixins/setCandidateDialog2.js +252 -0
- package/src/components/wf/mixins/wfFlowEleScriptDialog.js +131 -0
- package/src/components/wf/mixins/wfTaskUserRangeDialog.js +69 -0
- package/src/components/wf/setCandidateButton.vue +40 -0
- package/src/components/wf/setCandidateDialog.vue +10 -0
- package/src/components/wf/setCandidateDialog2.vue +105 -0
- package/src/components/wf/wf.js +2156 -1
- package/src/components/wf/wfFlowEleScriptDialog.vue +89 -0
- package/src/components/wf/wfStartDialog.vue +66 -42
- package/src/components/wf/wfTaskUserRangeDialog.vue +65 -0
- package/src/components/wf/wfUtil.js +279 -1
- package/src/components/xform/form-designer/designer.js +5 -3
- package/src/components/xform/form-designer/form-widget/components/gantt/index.vue +434 -0
- package/src/components/xform/form-designer/form-widget/container-widget/containerMixin.js +1 -1
- package/src/components/xform/form-designer/form-widget/container-widget/data-table-mixin.js +9 -8
- package/src/components/xform/form-designer/form-widget/container-widget/data-table-widget.vue +4 -1
- package/src/components/xform/form-designer/form-widget/container-widget/detail-widget.vue +3 -3
- package/src/components/xform/form-designer/form-widget/dialog/baseFormulaDialog copy.vue +971 -0
- package/src/components/xform/form-designer/form-widget/dialog/baseFormulaDialog.vue +971 -0
- package/src/components/xform/form-designer/form-widget/dialog/exportDialog.vue +13 -0
- package/src/components/xform/form-designer/form-widget/dialog/fileReferenceDialog.vue +301 -0
- package/src/components/xform/form-designer/form-widget/dialog/formDialog.vue +86 -48
- package/src/components/xform/form-designer/form-widget/dialog/formDrawer.vue +6 -1
- package/src/components/xform/form-designer/form-widget/dialog/formFieldDialog.vue +2 -2
- package/src/components/xform/form-designer/form-widget/dialog/formulaDialog.vue +799 -0
- package/src/components/xform/form-designer/form-widget/dialog/importDialog.vue +38 -7
- package/src/components/xform/form-designer/form-widget/dialog/importDialogMixin.js +9 -8
- package/src/components/xform/form-designer/form-widget/dialog/preformDialog.vue +2 -2
- package/src/components/xform/form-designer/form-widget/dialog/searchFormDialog.vue +212 -73
- package/src/components/xform/form-designer/form-widget/dialog/vabSearchDialog.vue +2 -2
- package/src/components/xform/form-designer/form-widget/field-widget/a-link-widget.vue +2 -2
- package/src/components/xform/form-designer/form-widget/field-widget/a-text-widget.vue +1 -1
- package/src/components/xform/form-designer/form-widget/field-widget/baseAttachment-widget.vue +34 -5
- package/src/components/xform/form-designer/form-widget/field-widget/button-widget.vue +1 -1
- package/src/components/xform/form-designer/form-widget/field-widget/cascader-widget.vue +19 -1
- package/src/components/xform/form-designer/form-widget/field-widget/census-widget.vue +40 -28
- package/src/components/xform/form-designer/form-widget/field-widget/checkbox-widget.vue +18 -7
- package/src/components/xform/form-designer/form-widget/field-widget/color-widget.vue +4 -1
- package/src/components/xform/form-designer/form-widget/field-widget/copy_button-widget.vue +95 -0
- package/src/components/xform/form-designer/form-widget/field-widget/date-range-widget.vue +14 -2
- package/src/components/xform/form-designer/form-widget/field-widget/date-widget.vue +30 -4
- package/src/components/xform/form-designer/form-widget/field-widget/download-button-widget.vue +133 -0
- package/src/components/xform/form-designer/form-widget/field-widget/dropdown-item-widget.vue +86 -0
- package/src/components/xform/form-designer/form-widget/field-widget/dropdown-widget.vue +128 -0
- package/src/components/xform/form-designer/form-widget/field-widget/echart-bar-widget.vue +1 -1
- package/src/components/xform/form-designer/form-widget/field-widget/echart-category-widget.vue +1 -1
- package/src/components/xform/form-designer/form-widget/field-widget/echart-pie-widget.vue +1 -1
- package/src/components/xform/form-designer/form-widget/field-widget/fieldMixin.js +25 -16
- package/src/components/xform/form-designer/form-widget/field-widget/form-item-wrapper.vue +705 -379
- package/src/components/xform/form-designer/form-widget/field-widget/gantt-widget.vue +964 -0
- package/src/components/xform/form-designer/form-widget/field-widget/html-text-widget.vue +6 -2
- package/src/components/xform/form-designer/form-widget/field-widget/import-button-widget.vue +22 -11
- package/src/components/xform/form-designer/form-widget/field-widget/import2-button-widget.vue +90 -0
- package/src/components/xform/form-designer/form-widget/field-widget/input-widget.vue +7 -2
- package/src/components/xform/form-designer/form-widget/field-widget/mixins/echart-bar-mixin.js +49 -8
- package/src/components/xform/form-designer/form-widget/field-widget/mixins/echart-category-mixin.js +61 -88
- package/src/components/xform/form-designer/form-widget/field-widget/mixins/echart-pie-mixin.js +13 -0
- package/src/components/xform/form-designer/form-widget/field-widget/mixins/vabsearch-mixin.js +179 -0
- package/src/components/xform/form-designer/form-widget/field-widget/multiSearch-widget.vue +53 -0
- package/src/components/xform/form-designer/form-widget/field-widget/number-widget.vue +114 -81
- package/src/components/xform/form-designer/form-widget/field-widget/oplog-widget.vue +186 -0
- package/src/components/xform/form-designer/form-widget/field-widget/print-button-widget.vue +55 -28
- package/src/components/xform/form-designer/form-widget/field-widget/print-detail-button-widget.vue +119 -0
- package/src/components/xform/form-designer/form-widget/field-widget/project-tag-widget.vue +154 -47
- package/src/components/xform/form-designer/form-widget/field-widget/radio-widget.vue +26 -6
- package/src/components/xform/form-designer/form-widget/field-widget/search_button-widget.vue +2 -2
- package/src/components/xform/form-designer/form-widget/field-widget/select-export-button-widget.vue +86 -0
- package/src/components/xform/form-designer/form-widget/field-widget/select-export-item-button-widget.vue +92 -0
- package/src/components/xform/form-designer/form-widget/field-widget/select-widget.vue +24 -9
- package/src/components/xform/form-designer/form-widget/field-widget/singerSearch-widget.vue +53 -0
- package/src/components/xform/form-designer/form-widget/field-widget/singleUpload-widget.vue +145 -0
- package/src/components/xform/form-designer/form-widget/field-widget/static-content-wrapper.vue +12 -1
- package/src/components/xform/form-designer/form-widget/field-widget/static-text-widget.vue +8 -3
- package/src/components/xform/form-designer/form-widget/field-widget/status-widget.vue +31 -17
- package/src/components/xform/form-designer/form-widget/field-widget/table-export-button-widget.vue +42 -37
- package/src/components/xform/form-designer/form-widget/field-widget/tableexportbuttonwidget.vue +99 -0
- package/src/components/xform/form-designer/form-widget/field-widget/tempStorage-widget.vue +147 -0
- package/src/components/xform/form-designer/form-widget/field-widget/text-widget.vue +106 -33
- package/src/components/xform/form-designer/form-widget/field-widget/time-range-widget.vue +2 -2
- package/src/components/xform/form-designer/form-widget/field-widget/vabSearch-widget.vue +3 -171
- package/src/components/xform/form-designer/form-widget/field-widget/vabUpload-widget.vue +260 -58
- package/src/components/xform/form-designer/form-widget/field-widget/vabUpload2-widget.vue +753 -0
- package/src/components/xform/form-designer/form-widget/indexMixin.js +1 -1
- package/src/components/xform/form-designer/indexMixin.js +3 -2
- package/src/components/xform/form-designer/refMixinDesign.js +1 -28
- package/src/components/xform/form-designer/setting-panel/form-setting.vue +977 -165
- package/src/components/xform/form-designer/setting-panel/index.vue +4 -0
- package/src/components/xform/form-designer/setting-panel/indexMixin.js +1 -1
- package/src/components/xform/form-designer/setting-panel/option-items-setting.vue +537 -302
- package/src/components/xform/form-designer/setting-panel/property-editor/a-link-editor.vue +4 -4
- package/src/components/xform/form-designer/setting-panel/property-editor/a-text-editor.vue +3 -3
- package/src/components/xform/form-designer/setting-panel/property-editor/autoValueEnabled-editor.vue +38 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/censusClass-editor.vue +6 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/colorClass-editor.vue +28 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/commonAttributeEnabled-editor.vue +41 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/container-data-table/columnRenderDialog.vue +125 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/container-data-table/data-table-editor.vue +956 -1042
- package/src/components/xform/form-designer/setting-panel/property-editor/container-data-table/exportItemColumns-dialog.vue +432 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/container-data-table/onCheckboxChange-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/container-data-table/table-column-dialog.vue +1127 -512
- package/src/components/xform/form-designer/setting-panel/property-editor/container-detail/detail-editor.vue +2 -2
- package/src/components/xform/form-designer/setting-panel/property-editor/container-detail-pane/detail-pane-editor.vue +3 -3
- package/src/components/xform/form-designer/setting-panel/property-editor/container-grid-col/grid-col-offset-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/container-grid-col/grid-col-pull-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/container-grid-col/grid-col-push-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/container-list-h5/list-h5-editor.vue +0 -8
- package/src/components/xform/form-designer/setting-panel/property-editor/container-tree/tree-customClass-editor.vue +31 -2
- package/src/components/xform/form-designer/setting-panel/property-editor/copyButton-editor.vue +36 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/downloadButtonFlag-editor.vue +32 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/dropdownFlag-editor.vue +89 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/event-handler/eventMixin.js +2 -2
- package/src/components/xform/form-designer/setting-panel/property-editor/event-handler/onAfterConfirmFile-editor.vue +32 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/event-handler/onClick-editor.vue +14 -7
- package/src/components/xform/form-designer/setting-panel/property-editor/field-button/clickBindEvent-editor.vue +35 -20
- package/src/components/xform/form-designer/setting-panel/property-editor/field-button/search-dialog-event-editor.vue +64 -5
- package/src/components/xform/form-designer/setting-panel/property-editor/field-date-range/date-range-defaultTime-editor.vue +27 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/field-dropdown-menu/dropdown-item-editor.vue +21 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/field-dropdown-menu/dropdown-menu-editor.vue +59 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/field-echart/echart-bar-editor.vue +185 -69
- package/src/components/xform/form-designer/setting-panel/property-editor/field-echart/echart-category-editor.vue +188 -86
- package/src/components/xform/form-designer/setting-panel/property-editor/field-echart/echart-pie-editor.vue +84 -39
- package/src/components/xform/form-designer/setting-panel/property-editor/field-gantt/gantt-editor.vue +36 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/field-import-button/import-button-editor.vue +77 -20
- package/src/components/xform/form-designer/setting-panel/property-editor/field-import-button/import2-button-editor.vue +96 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/field-print-button/print-button-editor.vue +44 -15
- package/src/components/xform/form-designer/setting-panel/property-editor/field-print-button/print-detail-button-editor.vue +115 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/field-rate/rate-defaultValue-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-static-text/preWrap-editor.vue +23 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/field-static-text/textContent-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-status/field-status-editor.vue +67 -41
- package/src/components/xform/form-designer/setting-panel/property-editor/field-table-export-button/select-export-button-editor.vue +56 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/field-table-export-button/select-export-item-button-editor.vue +71 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/field-table-export-button/table-export-button-editor.vue +26 -7
- package/src/components/xform/form-designer/setting-panel/property-editor/field-vabSearch/vabSearchName-editor.vue +13 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-vabUpload/field-vabUpload-editor.vue +33 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/field-vabUpload2/field-vabUpload2-editor.vue +66 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/formScriptEnabled-editor.vue +89 -19
- package/src/components/xform/form-designer/setting-panel/property-editor/formatType-editor.vue +137 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/formula-editor.vue +721 -466
- package/src/components/xform/form-designer/setting-panel/property-editor/labelColor-editor.vue +20 -11
- package/src/components/xform/form-designer/setting-panel/property-editor/labelIconClass-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/labelIconPosition-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/labelTooltip-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/limit-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/multiple-editor.vue +19 -14
- package/src/components/xform/form-designer/setting-panel/property-editor/multipleLimit-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/name-editor.vue +126 -50
- package/src/components/xform/form-designer/setting-panel/property-editor/oplog-editor.vue +31 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/placeholder-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/precision-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/project-tag-editor.vue +349 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/required-editor.vue +10 -6
- package/src/components/xform/form-designer/setting-panel/property-editor/requiredHint-editor.vue +3 -3
- package/src/components/xform/form-designer/setting-panel/property-editor/showRuleFlag-editor.vue +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/tempStorage-editor.vue +42 -0
- package/src/components/xform/form-designer/setting-panel/property-editor/textFlag-editor.vue +305 -19
- package/src/components/xform/form-designer/setting-panel/property-editor/validation-editor.vue +2 -2
- package/src/components/xform/form-designer/setting-panel/property-editor/validationHint-editor.vue +2 -2
- package/src/components/xform/form-designer/setting-panel/property-editor/wfFlag-editor.vue +372 -50
- package/src/components/xform/form-designer/setting-panel/property-editor/widgetShowRuleFlag-editor.vue +263 -0
- package/src/components/xform/form-designer/setting-panel/propertyRegister.js +35 -11
- package/src/components/xform/form-designer/toolbar-panel/index.vue +12 -11
- package/src/components/xform/form-designer/toolbar-panel/indexMixin.js +1 -1
- package/src/components/xform/form-designer/widget-panel/index.vue +21 -1
- package/src/components/xform/form-designer/widget-panel/indexMixin.js +19 -18
- package/src/components/xform/form-designer/widget-panel/widgetsConfig.js +1734 -917
- package/src/components/xform/form-render/container-item/containerItemMixin.js +12 -11
- package/src/components/xform/form-render/container-item/data-table-item.vue +206 -198
- package/src/components/xform/form-render/container-item/data-table-mixin.js +22 -18
- package/src/components/xform/form-render/container-item/detail-pane-item.vue +17 -3
- package/src/components/xform/form-render/container-item/grid-col-item.vue +10 -3
- package/src/components/xform/form-render/container-item/grid-item.vue +1 -1
- package/src/components/xform/form-render/container-item/list-h5-item.vue +1 -9
- package/src/components/xform/form-render/container-item/list-h5-item2.vue +1 -8
- package/src/components/xform/form-render/container-item/tab-item.vue +62 -25
- package/src/components/xform/form-render/container-item/table-cell-item.vue +38 -32
- package/src/components/xform/form-render/container-item/table-item.vue +4 -2
- package/src/components/xform/form-render/container-item/table2-cell-item.vue +53 -34
- package/src/components/xform/form-render/container-item/table2-item.vue +153 -92
- package/src/components/xform/form-render/container-item/tree-item.vue +32 -11
- package/src/components/xform/form-render/dynamicDialogRender.js +1 -1
- package/src/components/xform/form-render/index.vue +77 -20
- package/src/components/xform/form-render/indexMixin.js +3698 -13
- package/src/components/xform/form-render/refMixin.js +3 -3
- package/src/components/xform/lang/zh-CN.js +29 -4
- package/src/components/xform/mixins/defaultHandle.js +3 -2
- package/src/components/xform/mixins/scriptHttp.js +3 -1
- package/src/components/xform/utils/emitter.js +4 -4
- package/src/components/xform/utils/formHttp.js +162 -0
- package/src/components/xform/utils/format.js +41 -34
- package/src/components/xform/utils/formula-util.js +969 -0
- package/src/components/xform/utils/util.js +1469 -1
- package/src/components/xform/utils/validators.js +2 -5
- package/src/components/xform/utils/vue2js-generator.js +2 -2
- package/src/components/xhsPrint/index.js +44 -1
- package/src/components/xhsPrint/mixins.js +269 -1
- package/src/directive/LimitNumber/index.js +125 -1
- package/src/directive/el-dialog-center/index.js +34 -1
- package/src/directive/el-drag-dialog/drag.js +86 -1
- package/src/directive/el-readonly/index.js +15 -1
- package/src/directive/permission/hasPermi.js +34 -1
- package/src/index.js +215 -190
- package/src/lang/index.js +56 -51
- package/src/lang/locale/en/login.js +20 -0
- package/src/lang/locale/zh/login.js +20 -0
- package/src/layout/components/AppMain.vue +8 -1
- package/src/layout/components/Sidebar/default.vue +1423 -1222
- package/src/layout/components/TagsView/index.vue +37 -12
- package/src/layout/components/createCompany/createCompanyDialog.vue +157 -0
- package/src/layout/components/extractedCode/createDialog.vue +92 -0
- package/src/layout/components/extractedCode/queryDialog.vue +96 -0
- package/src/layout/components/extractedCode/viewDialog.vue +193 -0
- package/src/layout/components/watermark/index.vue +83 -0
- package/src/layout/defaultLayout.vue +1 -1
- package/src/mixins/selectDialog/index.js +266 -1
- package/src/mixins/tableTree/index.js +199 -4
- package/src/mixins/wf/index.js +33 -1
- package/src/permission.js +135 -18
- package/src/resources/js/base/common.js +109 -109
- package/src/router/modules/system.js +4 -0
- package/src/store/config/index.js +667 -1
- package/src/store/getters.js +3 -1
- package/src/store/modules/permission.js +46 -41
- package/src/store/modules/settings.js +1 -1
- package/src/store/modules/tagsView.js +5 -8
- package/src/store/modules/user.js +10 -16
- package/src/utils/aes.js +2 -1
- package/src/utils/auth.js +1 -1
- package/src/utils/global.js +1 -1
- package/src/utils/index.js +2 -3
- package/src/utils/keepAlive.js +1 -1
- package/src/utils/pddLog.js +92 -0
- package/src/utils/pdfUtil.js +71 -0
- package/src/utils/request.js +28 -28
- package/src/utils/vab.js +19 -989
- package/src/utils/validate.js +1 -1
- package/src/utils/wf.js +4 -4
- package/src/views/bd/setting/bd_attach_setting/edit.vue +4 -4
- package/src/views/bd/setting/bd_attach_setting/list.vue +28 -55
- package/src/views/bd/setting/bd_attach_setting/mixins/dialog.js +84 -1
- package/src/views/bd/setting/bd_attach_setting/mixins/edit.js +116 -5
- package/src/views/bd/setting/bd_attach_setting/mixins/list.js +239 -1
- package/src/views/bd/setting/bd_company_env/dialog.vue +174 -0
- package/src/views/bd/setting/bd_company_env/edit.vue +193 -0
- package/src/views/bd/setting/bd_company_env/list.vue +175 -0
- package/src/views/bd/setting/config_manage/list.vue +83 -0
- package/src/views/bd/setting/formVersion/button.vue +55 -0
- package/src/views/bd/setting/formVersion/ftHistoryDialog.vue +394 -0
- package/src/views/bd/setting/formVersion/preformDialog.vue +86 -0
- package/src/views/bd/setting/formVersion/reverButton.vue +84 -0
- package/src/views/bd/setting/form_import_log/edit.vue +130 -0
- package/src/views/bd/setting/form_import_log/list.vue +211 -0
- package/src/views/bd/setting/form_script/edit.vue +151 -74
- package/src/views/bd/setting/form_script/edit1.vue +328 -187
- package/src/views/bd/setting/form_script/form_list.vue +99 -37
- package/src/views/bd/setting/form_script/list1.vue +181 -118
- package/src/views/bd/setting/form_script/mixins/dialog.js +130 -1
- package/src/views/bd/setting/form_script/mixins/edit.js +221 -7
- package/src/views/bd/setting/form_script/mixins/edit1.js +215 -9
- package/src/views/bd/setting/form_script/mixins/form_list.js +297 -14
- package/src/views/bd/setting/form_script/mixins/list.js +237 -1
- package/src/views/bd/setting/form_script/mixins/list1.js +424 -14
- package/src/views/bd/setting/form_script/mixins/list2.js +10 -1
- package/src/views/bd/setting/form_script/mixins/otherAuthDialog.js +194 -0
- package/src/views/bd/setting/form_script/mixins/preformDialog.js +34 -1
- package/src/views/bd/setting/form_script/otherAuthDialog.vue +83 -0
- package/src/views/bd/setting/form_template/batchWfObjConfigDialog.vue +105 -0
- package/src/views/bd/setting/form_template/edit.vue +298 -184
- package/src/views/bd/setting/form_template/editWfObjConfigDialog.vue +2 -2
- package/src/views/bd/setting/form_template/list.vue +326 -212
- package/src/views/bd/setting/form_template/mixins/batchWfObjConfigDialog.js +282 -0
- package/src/views/bd/setting/form_template/mixins/dialog.js +103 -1
- package/src/views/bd/setting/form_template/mixins/edit.js +250 -9
- package/src/views/bd/setting/form_template/mixins/editWfObjConfigDialog.js +92 -1
- package/src/views/bd/setting/form_template/mixins/ftHistoryDialog.js +91 -1
- package/src/views/bd/setting/form_template/mixins/itemEdit.js +104 -1
- package/src/views/bd/setting/form_template/mixins/itemList.js +234 -1
- package/src/views/bd/setting/form_template/mixins/list.js +689 -22
- package/src/views/bd/setting/form_template/mixins/list2.js +411 -0
- package/src/views/bd/setting/form_template/mixins/otherAuthDialog.js +193 -0
- package/src/views/bd/setting/form_template/mixins/preformDialog.js +28 -3
- package/src/views/bd/setting/form_template/mixins/wf_list.js +434 -0
- package/src/views/bd/setting/form_template/otherAuthDialog.vue +83 -0
- package/src/views/bd/setting/form_template/wfObjConfigDialog.vue +254 -0
- package/src/views/bd/setting/form_template/wf_list.vue +127 -0
- package/src/views/bd/setting/logic_param/edit.vue +146 -0
- package/src/views/bd/setting/logic_param/edit1.vue +106 -0
- package/src/views/bd/setting/logic_param/edit2.vue +139 -0
- package/src/views/bd/setting/logic_param/list.vue +74 -0
- package/src/views/bd/setting/logic_param/list1.vue +12 -0
- package/src/views/bd/setting/logic_param/list2.vue +12 -0
- package/src/views/bd/setting/logic_param/mixins/edit.js +93 -0
- package/src/views/bd/setting/logic_param/mixins/list.js +376 -0
- package/src/views/bd/setting/menu_kind/authDialog.vue +1 -1
- package/src/views/bd/setting/menu_kind/list.vue +172 -83
- package/src/views/bd/setting/menu_kind/mixins/authDialog.js +300 -7
- package/src/views/bd/setting/menu_kind/mixins/dialog.js +139 -1
- package/src/views/bd/setting/menu_kind/mixins/list.js +201 -1
- package/src/views/bd/setting/push_data/edit.vue +139 -0
- package/src/views/bd/setting/push_data/list.vue +283 -0
- package/src/views/bd/setting/push_data_h/edit.vue +153 -0
- package/src/views/bd/setting/push_data_h/list.vue +293 -0
- package/src/views/bd/setting/request_async_setting/edit.vue +320 -0
- package/src/views/bd/setting/request_async_setting/list.vue +372 -0
- package/src/views/bd/setting/request_setting/edit.vue +300 -0
- package/src/views/bd/setting/request_setting/list.vue +311 -0
- package/src/views/bd/setting/table_model/edit.vue +888 -426
- package/src/views/bd/setting/table_model/list.vue +195 -126
- package/src/views/bd/setting/table_model/mixins/dialog.js +71 -1
- package/src/views/bd/setting/table_model/mixins/edit.js +1248 -13
- package/src/views/bd/setting/table_model/mixins/list.js +446 -14
- package/src/views/bd/setting/table_model/mixins/otherAuthDialog.js +201 -0
- package/src/views/bd/setting/table_model/mixins/zdDialog.js +108 -1
- package/src/views/bd/setting/table_model/otherAuthDialog.vue +83 -0
- package/src/views/bd/setting/utils/index.js +60 -1
- package/src/views/user/access_log/list.vue +418 -349
- package/src/views/user/area/dialog.vue +235 -116
- package/src/views/user/area/list.vue +318 -0
- package/src/views/user/bill_setting/edit.vue +1 -1
- package/src/views/user/bill_setting/list.vue +1 -1
- package/src/views/user/common_attribute/itemEdit.vue +2 -2
- package/src/views/user/common_attribute/list.vue +5 -2
- package/src/views/user/common_script/edit.vue +1 -1
- package/src/views/user/common_script/list.vue +1 -1
- package/src/views/user/company_info/dialog.vue +195 -154
- package/src/views/user/company_info/edit.vue +1 -1
- package/src/views/user/extend_datasource/dialog.vue +4 -0
- package/src/views/user/extend_datasource/edit.vue +5 -1
- package/src/views/user/extend_datasource/list.vue +5 -1
- package/src/views/user/fieldTranslation/editDialog.vue +8 -8
- package/src/views/user/fieldTranslation/list.vue +33 -33
- package/src/views/user/file_type/edit.vue +30 -1
- package/src/views/user/file_type/list.vue +28 -0
- package/src/views/user/form/vform/designer.vue +776 -749
- package/src/views/user/form/vform/out_render.vue +1 -1
- package/src/views/user/form/vform/render.vue +67 -37
- package/src/views/user/form/view/edit.vue +38 -37
- package/src/views/user/form/view/list.vue +270 -49
- package/src/views/user/groups/edit.vue +2 -0
- package/src/views/user/groups/list.vue +1 -0
- package/src/views/user/home/default.vue +1026 -979
- package/src/views/user/home/dev.vue +29 -0
- package/src/views/user/home/index.vue +18 -7
- package/src/views/user/login/default.vue +167 -36
- package/src/views/user/login/index.vue +4 -6
- package/src/views/user/login/indexMixin.js +186 -9
- package/src/views/user/menu/list.vue +27 -1
- package/src/views/user/notify_message/dialog.vue +44 -22
- package/src/views/user/notify_template/edit.vue +188 -187
- package/src/views/user/notify_template/edit2.vue +176 -0
- package/src/views/user/notify_template/list.vue +4 -1
- package/src/views/user/notify_template/list2.vue +190 -0
- package/src/views/user/outLink/form_view.vue +211 -184
- package/src/views/user/outLink/index.vue +67 -11
- package/src/views/user/outLink/view.vue +39 -13
- package/src/views/user/position/list.vue +4 -4
- package/src/views/user/project_tag/dialog.vue +9 -4
- package/src/views/user/project_tag/edit.vue +2 -2
- package/src/views/user/project_tag/list.vue +9 -4
- package/src/views/user/push_setting/list.vue +2 -2
- package/src/views/user/request_setting/edit.vue +258 -0
- package/src/views/user/request_setting/list.vue +248 -0
- package/src/views/user/role/authConfig.vue +89 -0
- package/src/views/user/role/dialog.vue +70 -48
- package/src/views/user/role/edit.vue +609 -429
- package/src/views/user/role/list.vue +4 -4
- package/src/views/user/sale_org/dialog.vue +1 -1
- package/src/views/user/sale_org/list.vue +4 -1
- package/src/views/user/system_notice/infoDialog.vue +2 -1
- package/src/views/user/user/dialog.vue +46 -23
- package/src/views/user/user/edit.vue +1290 -1021
- package/src/views/user/user/form_dialog.vue +158 -0
- package/src/views/user/user/form_edit.vue +117 -49
- package/src/views/user/user/form_info.vue +210 -0
- package/src/views/user/user/form_list.vue +1 -0
- package/src/views/user/user/list.vue +652 -563
- package/src/views/user/user/modifyPasswordDialog.vue +64 -53
- package/src/views/user/wf/wfReport/index.vue +619 -0
- package/src/views/user/wf/wf_auto_submit_data/list.vue +2 -0
- package/src/views/user/wf/wf_manage/list.vue +379 -250
- package/src/views/user/wf/wf_manage/wfContentDialog.vue +25 -22
- package/src/views/user/wf/wf_obj_config/importItemDialog.vue +109 -0
- package/src/views/user/wf/wf_obj_config/itemEdit.vue +25 -1
- package/src/views/user/wf/wf_obj_config/list.vue +138 -5
- package/src/views/user/wf/wf_obj_config/wfBizDataSettingDialog.vue +292 -0
- package/src/views/user/wf/wf_transfer_setting/edit.vue +282 -0
- package/src/views/user/wf/wf_transfer_setting/list.vue +319 -0
- package/src/views/user/workbench_menu/list.vue +555 -0
- package/src/components/excelExport/export-panel.js +0 -458
|
@@ -5,5 +5,856 @@ import {treeScolly} from '../../utils/global.js';
|
|
|
5
5
|
import settingConfig from "@/settings";
|
|
6
6
|
|
|
7
7
|
let tmixins = {};
|
|
8
|
-
(function(_0x19b6a2,_0x552858){function _0x136d4c(_0xa5f929,_0x45933b,_0x23a870,_0x5195df,_0xeb6d8){return _0x376c(_0x45933b-0x3c9,_0xeb6d8);}function _0xd0cadf(_0x97e731,_0x17b2d3,_0x7ca4da,_0x116546,_0x3b7f68){return _0x376c(_0x17b2d3-0x2b8,_0x97e731);}function _0x4d28eb(_0x2e88fb,_0x3571f1,_0xb44e0c,_0x51d203,_0xd9e167){return _0x376c(_0xb44e0c-0x39c,_0x2e88fb);}const _0x24913b=_0x19b6a2();function _0x37182f(_0x2d3950,_0x48056b,_0x596670,_0x124abc,_0xe66002){return _0x283a(_0x48056b- -0x393,_0x2d3950);}function _0x32ad9a(_0x16fbfa,_0x29f9e0,_0x34b74e,_0xe43410,_0x20abbd){return _0x283a(_0x16fbfa-0x1cf,_0x34b74e);}function _0x1dd3e5(_0x310f42,_0x329d24,_0x27c730,_0x16b9ea,_0xa9aa02){return _0x283a(_0x27c730- -0x183,_0xa9aa02);}function _0x49bd5d(_0x20b5d2,_0x4c546f,_0x569743,_0xf19678,_0x594a99){return _0x376c(_0x569743-0x3c7,_0x20b5d2);}function _0x11590d(_0x33a4b4,_0x4b35a3,_0x479c89,_0x12b770,_0x20bfb6){return _0x283a(_0x479c89-0x172,_0x4b35a3);}function _0x19ec6e(_0x2ceca6,_0x5148c3,_0x265771,_0x1ba569,_0x2c0bdc){return _0x376c(_0x2ceca6- -0x10e,_0x265771);}function _0x595c15(_0x112416,_0x29dcd0,_0x2223b8,_0xb9854b,_0x3dbe41){return _0x283a(_0x29dcd0-0x1c4,_0x3dbe41);}while(!![]){try{const _0x323387=parseInt(_0xd0cadf("rNv^".split("").reverse().join(""),0x3ec,0x433,0x4ef,0x34a))/0x1+-parseInt(_0x4d28eb("\u0037\u0074\u0042\u0026",0x70d,0x61d,0x558,0x57d))/0x2*(-parseInt(_0x37182f(-0x101,-0xeb,-0x1ee,0x39,0x4d))/0x3)+parseInt(_0x1dd3e5(-0xec,0x3c,-0xb,0x13a,-0xc))/0x4*(parseInt(_0xd0cadf("\u0039\u0037\u0041\u0045",0x412,0x42b,0x4e9,0x33e))/0x5)+-parseInt(_0xd0cadf("\u0043\u002a\u004e\u0037",0x3fb,0x4c1,0x435,0x3ef))/0x6*(parseInt(_0x11590d(0x24b,0x227,0x1ea,0x2a7,0xe5))/0x7)+-parseInt(_0x595c15(0x26e,0x24a,0x2f4,0x286,0x2cd))/0x8*(parseInt(_0x136d4c(0x2c7,0x407,0x42a,0x506,"5ZKN".split("").reverse().join("")))/0x9)+parseInt(_0x136d4c(0x423,0x40b,0x413,0x3ae,"\u0050\u004e\u0026\u0074"))/0xa*(parseInt(_0x37182f(-0xe2,-0x1bb,-0x2e7,-0x2f5,-0x1eb))/0xb)+parseInt(_0x19ec6e(-0xf2,-0x1e0,"\u0076\u0023\u0058\u0062",0x2f,-0xf9))/0xc*(parseInt(_0x37182f(-0x278,-0x27a,-0x324,-0x16c,-0x249))/0xd);if(_0x323387===_0x552858){break;}else{_0x24913b["\u0070\u0075\u0073\u0068"](_0x24913b["\u0073\u0068\u0069\u0066\u0074"]());}}catch(_0x7d68bf){_0x24913b["\u0070\u0075\u0073\u0068"](_0x24913b["\u0073\u0068\u0069\u0066\u0074"]());}}})(_0x5b13,0x8fedb);function _0x376c(_0x17b0a2,_0x5b1392){const _0x283a07=_0x5b13();_0x376c=function(_0x29dcee,_0xa06a4b){_0x29dcee=_0x29dcee-0x0;let _0x31cf62=_0x283a07[_0x29dcee];if(_0x376c["\u0063\u0079\u0043\u005a\u0042\u006a"]===undefined){var _0x396504=function(_0xfa5e62){const _0x5bf0c0="=/+9876543210ZYXWVUTSRQPONMLKJIHGFEDCBAzyxwvutsrqponmlkjihgfedcba".split("").reverse().join("");let _0x277a0c="".split("").reverse().join("");let _0x9ebc73="".split("").reverse().join("");for(let _0x144f90=0x0,_0x3f2320,_0x1cc0fa,_0x133b6a=0x0;_0x1cc0fa=_0xfa5e62["\u0063\u0068\u0061\u0072\u0041\u0074"](_0x133b6a++);~_0x1cc0fa&&(_0x3f2320=_0x144f90%0x4?_0x3f2320*0x40+_0x1cc0fa:_0x1cc0fa,_0x144f90++%0x4)?_0x277a0c+=String['fromCharCode'](0xff&_0x3f2320>>(-0x2*_0x144f90&0x6)):0x0){_0x1cc0fa=_0x5bf0c0["\u0069\u006e\u0064\u0065\u0078\u004f\u0066"](_0x1cc0fa);}for(let _0x2f8c91=0x0,_0x415416=_0x277a0c["\u006c\u0065\u006e\u0067\u0074\u0068"];_0x2f8c91<_0x415416;_0x2f8c91++){_0x9ebc73+="\u0025"+('00'+_0x277a0c['charCodeAt'](_0x2f8c91)["\u0074\u006f\u0053\u0074\u0072\u0069\u006e\u0067"](0x10))["\u0073\u006c\u0069\u0063\u0065"](-0x2);}return decodeURIComponent(_0x9ebc73);};const _0x4733d4=function(_0x46f24f,_0x5887ca){let _0x30351d=[],_0x3e06b0=0x0,_0xc00737,_0x1b6a01="".split("").reverse().join("");_0x46f24f=_0x396504(_0x46f24f);let _0x50b10e;for(_0x50b10e=0x0;_0x50b10e<0x100;_0x50b10e++){_0x30351d[_0x50b10e]=_0x50b10e;}for(_0x50b10e=0x0;_0x50b10e<0x100;_0x50b10e++){_0x3e06b0=(_0x3e06b0+_0x30351d[_0x50b10e]+_0x5887ca["\u0063\u0068\u0061\u0072\u0043\u006f\u0064\u0065\u0041\u0074"](_0x50b10e%_0x5887ca['length']))%0x100;_0xc00737=_0x30351d[_0x50b10e];_0x30351d[_0x50b10e]=_0x30351d[_0x3e06b0];_0x30351d[_0x3e06b0]=_0xc00737;}_0x50b10e=0x0;_0x3e06b0=0x0;for(let _0x323c4f=0x0;_0x323c4f<_0x46f24f['length'];_0x323c4f++){_0x50b10e=(_0x50b10e+0x1)%0x100;_0x3e06b0=(_0x3e06b0+_0x30351d[_0x50b10e])%0x100;_0xc00737=_0x30351d[_0x50b10e];_0x30351d[_0x50b10e]=_0x30351d[_0x3e06b0];_0x30351d[_0x3e06b0]=_0xc00737;_0x1b6a01+=String['fromCharCode'](_0x46f24f['charCodeAt'](_0x323c4f)^_0x30351d[(_0x30351d[_0x50b10e]+_0x30351d[_0x3e06b0])%0x100]);}return _0x1b6a01;};_0x376c["\u0075\u0078\u0068\u006f\u006c\u0070"]=_0x4733d4;_0x17b0a2=arguments;_0x376c['cyCZBj']=!![];}const _0xa6c607=_0x283a07[0x0];const _0x19c875=_0x29dcee+_0xa6c607;const _0x376c0f=_0x17b0a2[_0x19c875];if(!_0x376c0f){if(_0x376c["\u0045\u0074\u0077\u0073\u0066\u0069"]===undefined){_0x376c['Etwsfi']=!![];}_0x31cf62=_0x376c['uxholp'](_0x31cf62,_0xa06a4b);_0x17b0a2[_0x19c875]=_0x31cf62;}else{_0x31cf62=_0x376c0f;}return _0x31cf62;};return _0x376c(_0x17b0a2,_0x5b1392);}tmixins={'data'(){return{'isFullscreen':![],'dialogTableVisible':![],'userInfo':null,'content':null,'userContentMap':{},'showUserDialog':![],'talkUserId':null,"\u0069\u006e\u0069\u0074\u0065\u0064":![],"\u0074\u0069\u006d\u0065\u0072\u0030":null,"\u0074\u0069\u006d\u0065\u0072":null,"\u0074\u0061\u006c\u006b\u0055\u0073\u0065\u0072\u0073":[],"\u006b\u0065\u0079\u0077\u006f\u0072\u0064":null,'unread':![],'isExitsRead':![],"\u0062\u0074\u006e\u0044\u0069\u0073\u0061\u0062\u006c\u0065\u0064":![],'isCanUserTalk':![],'roleCodes':[],"\u0066\u0069\u006c\u0065\u0073":[],"\u0074\u0065\u006d\u0070\u0049\u006e\u0064\u0065\u0078":0x1,'showPrivateUploadBtn':![],'showPrivateProfileDialog':![],"\u0065\u0064\u0069\u0074\u0046\u0069\u006c\u0065\u0049\u006e\u0064\u0065\u0078":-(0x3017f^0x3017e),'showFileNameDialog':![],'editFileName':null,'editFileSuffix':null};},"\u006d\u006f\u0075\u006e\u0074\u0065\u0064"(){this["\u0069\u006e\u0069\u0074\u0043\u0061\u006e\u0055\u0073\u0065\u0072\u0054\u0061\u006c\u006b"]();},"\u0063\u006f\u006d\u0070\u0075\u0074\u0065\u0064":{'title'(){function _0x2bd326(_0x2da930,_0x5feea0,_0x3468dd,_0x3abab1,_0x5e6b7f){return _0x283a(_0x5feea0- -0xfb,_0x3468dd);}function _0x101705(_0x5a5003,_0x47f392,_0x449847,_0x207c88,_0x3ea1e5){return _0x283a(_0x3ea1e5- -0xef,_0x207c88);}if(this["\u0074\u0061\u006c\u006b\u0055\u0073\u0065\u0072\u0049\u0064"]){var _0x462055;let _0x219317=this["\u0074\u0061\u006c\u006b\u0055\u0073\u0065\u0072"]["\u006e\u0069\u0063\u006b\u004e\u0061\u006d\u0065"];_0x462055=0x5+0x8;return _0x101705(0x1fe,0x12d,0x2ef,0xed,0x1a0)+_0x219317+"\uff09";}else{return _0x2bd326(0x76,-0xa5,0x2a,-0xd3,0x1d);}},"\u0074\u0061\u006c\u006b\u0055\u0073\u0065\u0072\u0044\u0061\u0074\u0061\u0073"(){const _0x409c83={"\u0076\u0066\u004c\u0057\u005a":function(_0xcce9be,_0x5770b5){return _0xcce9be^_0x5770b5;}};let _0x590928=this['keyword'];let _0x3dcc6b=this['unread'];return this['talkUsers']["\u0066\u0069\u006c\u0074\u0065\u0072"](_0x2d2489=>{let _0x1bb64b=_0x590928?_0x2d2489['nickName']['includes'](_0x590928):!![];let _0x32803f=_0x3dcc6b?_0x2d2489['readed']==_0x409c83["\u0076\u0066\u004c\u0057\u005a"](0x2648f,0x2648e):!![];return _0x1bb64b&&_0x32803f;});},'talkUser'(){function _0x5d0769(_0x21689c,_0x3ce1e0,_0x18cfaf,_0x4a0946,_0x4da33d){return _0x376c(_0x21689c-0x38c,_0x4da33d);}const _0x5462ae={"\u0043\u0073\u0071\u0041\u0046":function(_0x262866,_0x4ef91c){return _0x262866!==_0x4ef91c;}};var _0x54640b=0x7+0x4;let _0x2eca30=this["\u0074\u0061\u006c\u006b\u0055\u0073\u0065\u0072\u0049\u0064"];_0x54640b=0x1;function _0x4bde45(_0x410bb5,_0x3e2b60,_0x34bfc2,_0xe6da5d,_0x5ae5ef){return _0x376c(_0x34bfc2-0x267,_0xe6da5d);}if(_0x2eca30){if(_0x5462ae["\u0043\u0073\u0071\u0041\u0046"](_0x4bde45(0x263,0x2f8,0x377,"tPD1".split("").reverse().join(""),0x3c5),_0x4bde45(0x455,0x4d7,0x3ba,'RTIa',0x282))){var _0x220bf6=0x8+0x6;let _0x119c16=_0x37ccbb['objx']||[];_0x220bf6=0x4;this["\u0072\u006f\u006c\u0065\u0043\u006f\u0064\u0065\u0073"]=_0x119c16;this['showUserDialog']=!![];}else{return this["\u0074\u0061\u006c\u006b\u0055\u0073\u0065\u0072\u0073"]['find'](_0x9293e0=>_0x9293e0['toUser']===_0x2eca30)||{};}}else{return{};}},"\u0072\u0065\u0063\u006f\u0072\u0064\u0073"(){let _0xf812e9=this["\u0074\u0061\u006c\u006b\u0055\u0073\u0065\u0072"];let _0x3f380d=_0xf812e9&&_0xf812e9["\u0074\u006f\u0055\u0073\u0065\u0072"]&&_0xf812e9["\u0074\u0061\u006c\u006b\u0052\u0065\u0063\u006f\u0072\u0064\u0073"]?_0xf812e9["\u0074\u0061\u006c\u006b\u0052\u0065\u0063\u006f\u0072\u0064\u0073"]:[];let _0x318688=xeUtils["\u0067\u0072\u006f\u0075\u0070\u0042\u0079"](_0x3f380d,_0x45b750(-0x1af,-0x2e7,-0x210,'RCjC',-0x303));let _0x32eadd=[];Object["\u006b\u0065\u0079\u0073"](_0x318688)['forEach'](_0x136b58=>{_0x32eadd['push']({'time':_0x136b58,'datas':_0x318688[_0x136b58]});});function _0x45b750(_0x9b4f87,_0x40360f,_0x271dfa,_0x23c0f6,_0x46b317){return _0x376c(_0x9b4f87- -0x2db,_0x23c0f6);}return _0x32eadd;},'hasFile'(){function _0x56b798(_0x28b46a,_0x4b6e70,_0x4fc079,_0x5f194a,_0x335b03){return _0x376c(_0x4fc079- -0x265,_0x5f194a);}const _0xf37533={'zskPu':function(_0x284eda,_0x4bd17b){return _0x284eda>_0x4bd17b;}};let _0x3d38e9=this["\u0066\u0069\u006c\u0065\u0073"]["\u0066\u0069\u006c\u0074\u0065\u0072"](_0x376c67=>_0x376c67["\u0073\u0074\u0061\u0074\u0075\u0073"]!==_0x56b798(0xac,-0xbe,-0x41,"^9Tt".split("").reverse().join(""),-0xe9));return _0xf37533['zskPu'](_0x3d38e9['length'],0x610ea^0x610ea);}},"\u0062\u0065\u0066\u006f\u0072\u0065\u0044\u0065\u0073\u0074\u0072\u006f\u0079"(){this['clearTimerHandle']();},"\u006d\u0065\u0074\u0068\u006f\u0064\u0073":{'bindMove'(_0x397713){const _0x1a8476={'IvYPi':function(_0x1cbd3c,_0x4c8edb){return _0x1cbd3c-_0x4c8edb;},'dcCNO':function(_0x52bca9,_0x3e4cb4){return _0x52bca9^_0x3e4cb4;},"\u0043\u004d\u0069\u0066\u0071":_0x49096c(0x1cd,0x143,"KBu1".split("").reverse().join(""),0xd9,0x15d),"\u0078\u0076\u0048\u0066\u0058":_0x4571bd(0x22d,0x37b,0x312,"\u005e\u0076\u004e\u0072",0x130),'mwowH':_0x4571bd(0x399,0x43c,0x350,"&Bt7".split("").reverse().join(""),0x41c),"\u006f\u0068\u004b\u0044\u0065":function(_0x2fe23e,_0x2a9ac9){return _0x2fe23e(_0x2a9ac9);}};let _0x5c514c=this;_0x5c514c['btnDisabled']=![];let _0x514e70=_0x397713["\u0074\u0061\u0072\u0067\u0065\u0074"];let _0xb40f3e=document;var _0x577d6b;let _0x5d4930=window["\u0069\u006e\u006e\u0065\u0072\u0048\u0065\u0069\u0067\u0068\u0074"]-(0x3f07e^0x3f01a);_0x577d6b=0x6+0x4;var _0xd6162f=0x8+0x4;function _0x49096c(_0x518ce5,_0x2b9118,_0x2c9413,_0x22b6c5,_0x5439e5){return _0x376c(_0x5439e5-0xcb,_0x2c9413);}function _0x17c3fa(_0x5c7348,_0xd31740,_0xa4401c,_0x40dcb4,_0x37b397){return _0x376c(_0x5c7348- -0x255,_0xd31740);}let _0x424744=window['innerWidth']-(0x9ed61^0x9ed05);_0xd6162f=_0x1a8476['mwowH'];var _0x177ef2=0x9+0x4;function _0x4571bd(_0x1518ee,_0x2a0272,_0xf35dfd,_0x15351b,_0x2bdf9f){return _0x376c(_0x1518ee-0x169,_0x15351b);}let _0x8b7c8a=_0x1a8476['ohKDe'](getComputedStyle,_0x514e70);_0x177ef2=0x2+0x3;let _0x241a63=Number(_0x8b7c8a['left']["\u0072\u0065\u0070\u006c\u0061\u0063\u0065\u0041\u006c\u006c"]("\u0070\u0078","".split("").reverse().join("")));let _0x542574=Number(_0x8b7c8a['top']['replaceAll']('px',''));let _0x5ac265=_0x397713['clientY'];let _0x5ab6c0=_0x397713['clientX'];indexUtil['addClass'](document['body'],_0x1a8476['xvHfX']);_0xb40f3e["\u006f\u006e\u006d\u006f\u0075\u0073\u0065\u006d\u006f\u0076\u0065"]=function(_0x4ad34e){_0x4ad34e['preventDefault']();let _0x28e2c5=_0x542574+(_0x4ad34e['clientY']-_0x5ac265);let _0x4a4acd=_0x241a63+(_0x4ad34e['clientX']-_0x5ab6c0);var _0x176630=0x7+0x2;let _0x105a23=Math["\u0061\u0062\u0073"](_0x4ad34e['clientY']-_0x5ac265)+Math['abs'](_0x1a8476['IvYPi'](_0x4ad34e['clientX'],_0x5ab6c0));_0x176630=0x4+0x8;_0x5c514c['btnDisabled']=_0x105a23>(0xf3e26^0xf3e24);_0x514e70['style']["\u0074\u006f\u0070"]=Math['min'](Math['max'](_0x28e2c5,_0x1a8476['dcCNO'](0xe9d95,0xe9d95)),_0x5d4930)+"\u0070\u0078";_0x514e70["\u0073\u0074\u0079\u006c\u0065"]['left']=Math['min'](Math['max'](_0x4a4acd,0x9efb4^0x9efb4),_0x424744)+'px';};_0xb40f3e['onmouseup']=function(_0x2e14fb){function _0x19b641(_0x256c65,_0x3030d0,_0x24ceb7,_0x2af33e,_0x3ab546){return _0x283a(_0x3030d0- -0x389,_0x2af33e);}function _0x4bcdf4(_0x2904f5,_0x8dc344,_0x23a6ce,_0x9d913a,_0x512c66){return _0x376c(_0x23a6ce- -0x32e,_0x9d913a);}function _0x51f60e(_0x27ddcb,_0x2b4dfb,_0x1d92b5,_0x2dfe4e,_0x56579b){return _0x283a(_0x2dfe4e- -0xf1,_0x27ddcb);}const _0x59844c={'lKAlv':_0x19b641(-0x303,-0x2b9,-0x37d,-0x245,-0x2fa)};if(_0x51f60e(0x22c,0x97,0xc0,0x14e,0xc2)===_0x1a8476["\u0043\u004d\u0069\u0066\u0071"]){return _0x4bcdf4(-0x18b,-0xaf,-0x1e4,'RCjC',-0x1e6);}else{indexUtil['removeClass'](document['body'],_0x1a8476['xvHfX']);_0xb40f3e['onmousemove']=null;_0xb40f3e['onmouseup']=null;if(_0x5c514c['btnDisabled']){setTimeout(()=>{function _0x48b9cd(_0x597b9b,_0x14de94,_0x507911,_0x1a7ce7,_0x3a4ac2){return _0x376c(_0x14de94-0x15f,_0x507911);}if(_0x48b9cd(0x300,0x1d8,'97AE',0x21c,0x27f)!==_0x59844c["\u006c\u004b\u0041\u006c\u0076"]){_0x5c514c['btnDisabled']=![];}else{this['topChatBoxButtom']();this["\u0024\u0072\u0065\u0066\u0073"]['contentRef']['focus']();}},0x6a1f6^0x6a13e);}}};},'getUserItemClass'(_0x4a5ba5){function _0x1c086c(_0x1246b7,_0x5b8a13,_0x1df03f,_0x416f25,_0x1a05b6){return _0x376c(_0x1246b7-0x1e4,_0x5b8a13);}function _0x13d7ae(_0x3dda88,_0x11b516,_0x568f90,_0x541558,_0x3cd617){return _0x283a(_0x11b516-0x1f7,_0x568f90);}const _0x48fea5={'SmSQe':_0x5c2b37(-0x119,-0x2a,"\u0072\u007a\u0038\u0050",-0x56,-0x4b),'duXxK':function(_0x28041e,_0x1ee871){return _0x28041e!==_0x1ee871;},'HuXbL':_0x1c086c(0x27c,"\u0039\u0037\u0041\u0045",0x1aa,0x391,0x322),'NIGPR':function(_0x3350e8,_0x2ef42b){return _0x3350e8+_0x2ef42b;}};let _0x4e9653=[];if(_0x4a5ba5['toUser']==this['talkUserId']){if(_0x48fea5['SmSQe']===_0x13d7ae(0x14f,0x20d,0x1d8,0x2c7,0x1dd)){_0x4e9653['push']('on');}else{_0x3bf14d['push']({'time':_0x5caf36,'datas':_0x54fa04[_0x31ddd4]});}}function _0x5af390(_0x5bd80e,_0x1b1cbb,_0x5d1a7e,_0x1f64a5,_0x11a58c){return _0x283a(_0x11a58c- -0x352,_0x5d1a7e);}function _0x42f2a3(_0x16dafd,_0xf1294c,_0x3a822b,_0x2749bf,_0x3df3d1){return _0x283a(_0x3df3d1- -0x14e,_0x3a822b);}if(_0x4a5ba5["\u0072\u0065\u0061\u0064\u0065\u0064"]==(0x27509^0x27508)){if(_0x48fea5['duXxK'](_0x5c2b37(0x3b,-0x1d8,'KMx0',-0x4b,-0xa7),_0x48fea5['HuXbL'])){const _0x3f8529={'PDDux':_0x13d7ae(0x271,0x227,0x262,0x1f8,0x208),'ZCuTM':function(_0x5beeab,_0x5a09bf){return _0x5beeab^_0x5a09bf;}};this['saveFileTalk']([_0x41cf7b['fileInfo']],()=>{function _0x3d118b(_0x21507a,_0x4e2e7d,_0x3afb96,_0x69d4c3,_0x4537b7){return _0x376c(_0x4537b7-0x20a,_0x69d4c3);}this['$set'](_0xf5fdab,_0x3f8529['PDDux'],_0x3f8529['ZCuTM'](0x71b64,0x71b00));_0x50e5de['status']=_0x3d118b(0x364,0x43e,0x3e0,"KEF5".split("").reverse().join(""),0x4bb);});}else{_0x4e9653['push'](_0x42f2a3(0x56,0x70,-0x33,-0x149,-0x26));}}function _0x1e0584(_0x1c8239,_0x8ca609,_0x5d561a,_0x3737d7,_0x2bbff2){return _0x376c(_0x2bbff2- -0x9e,_0x1c8239);}_0x4e9653["\u0070\u0075\u0073\u0068"](_0x48fea5["\u004e\u0049\u0047\u0050\u0052"](_0x13d7ae(0x3ee,0x33c,0x299,0x344,0x38d),_0x4a5ba5['toUser']));function _0x5222ef(_0x5e2a07,_0x585be2,_0x4c9d4a,_0x383d6c,_0x1cc477){return _0x283a(_0x383d6c- -0x1d7,_0x585be2);}function _0x5c2b37(_0x28df20,_0xf767d3,_0x36b7e0,_0x1b28f3,_0xcc242c){return _0x376c(_0xcc242c- -0x1b0,_0x36b7e0);}return _0x4e9653['join']('\x20');},'handleScroll1'(_0x55a9c7){const _0x7aad50={"\u0070\u0069\u0051\u0050\u005a":function(_0x356857,_0x1bc12d){return _0x356857+_0x1bc12d;},'lkbCQ':function(_0xf47dc9,_0x531fa2){return _0xf47dc9>=_0x531fa2;}};let _0x4cf86e=_0x55a9c7['target']["\u0073\u0063\u0072\u006f\u006c\u006c\u0054\u006f\u0070"];let _0x1120c7=_0x55a9c7['target']['scrollHeight'];let _0x106fbb=_0x55a9c7['target']["\u0063\u006c\u0069\u0065\u006e\u0074\u0048\u0065\u0069\u0067\u0068\u0074"];var _0x10fdb7=0x0+0x1;let _0x5e8c65=_0x4cf86e<=0x0;function _0x5c2496(_0x290e25,_0x4d1366,_0x14ab47,_0x27a98e,_0x4931f9){return _0x283a(_0x14ab47- -0x323,_0x4d1366);}_0x10fdb7=_0x7aad50["\u0070\u0069\u0051\u0050\u005a"](0x0,0x1);let _0x2e0a44=_0x7aad50['lkbCQ'](_0x7aad50['piQPZ'](_0x4cf86e,_0x106fbb),_0x1120c7);if(_0x5e8c65){let _0x328005=_0x55a9c7["\u0074\u0061\u0072\u0067\u0065\u0074"]['querySelector'](_0x5c2496(-0x35e,-0x305,-0x211,-0x338,-0x146));this["\u0067\u0065\u0074\u004c\u0069\u0073\u0074"](0x1,()=>{_0x328005&&_0x328005['scrollIntoView']();});}},'addFile'(){const _0x426000={'fYGJP':function(_0x423d89,_0x400717){return _0x423d89*_0x400717;}};if(!this['talkUserId'])return;function _0x10c9ad(_0x3e52e7,_0x2c7c71,_0x12edde,_0x484944,_0x327bef){return _0x283a(_0x484944- -0x2d0,_0x3e52e7);}this['$baseUpload']['open']({'limit':0xc8,'accept':_0x10c9ad(-0x152,-0x8e,-0x50,-0x38,0x103),'size':_0x426000['fYGJP']((0xb6c78^0xb6c7d)*(0x8a2ee^0x8a6ee),0x400)*0x400,'pickPrivateProfile':!![],'callback':_0x115ed9=>{this['saveFileTalk'](_0x115ed9);}});},'confirmInserUser'(_0x327482){if(_0x327482['length']){let _0x34c27e=_0x327482[0x6697c^0x6697c];this["\u0073\u0061\u0076\u0065\u0054\u0061\u006c\u006b\u0055\u0073\u0065\u0072"](_0x34c27e);}},'deleteTalkUser'(_0x182730,_0x27671a){const _0xbae747={'KkeSV':function(_0x3ff3b9,_0x38cbe4){return _0x3ff3b9+_0x38cbe4;}};function _0x230f2b(_0x513e80,_0x1fe1e6,_0x160ec9,_0x216258,_0x3ee326){return _0x283a(_0x160ec9-0xf,_0x3ee326);}function _0x16a3ec(_0x140931,_0x232033,_0x1dc71c,_0x45dce4,_0x10d975){return _0x376c(_0x45dce4- -0x2c4,_0x10d975);}this['$http']({'url':_0xbae747["\u004b\u006b\u0065\u0053\u0056"](USER_PREFIX,_0x230f2b(0xe4,0x1cd,0x8f,0x14d,0x7f)),'method':_0x16a3ec(-0x15f,-0x102,-0x1bb,-0x138,'PN&t'),'data':{'id':_0x182730['toUser']},'isLoading':!![],'loadingTarget':document['body'],"\u0073\u0075\u0063\u0063\u0065\u0073\u0073":_0x1d741b=>{if(_0x182730['toUser']==this['talkUser']['toUser']){this['talkUserId']=null;}this['talkUsers']['splice'](_0x27671a,0x1);}});},"\u006f\u0070\u0065\u006e\u0044\u0069\u0061\u006c\u006f\u0067"(){const _0xf064fc={'MeWRt':_0x1c514c(0x516,0x567,0x55c,0x502,0x457),'DnKEH':function(_0x33694a,_0x272a68,_0x35f9eb){return _0x33694a(_0x272a68,_0x35f9eb);}};if(this['btnDisabled'])return;this['dialogTableVisible']=!![];function _0x1c514c(_0x12483c,_0x23af8b,_0x54fd1b,_0x146d70,_0x45ce67){return _0x283a(_0x45ce67-0x3b2,_0x12483c);}_0xf064fc['DnKEH'](setTimeout,()=>{treeScolly({'target':this['$refs']['talkDialog'],"\u0074\u0079\u0070\u0065":_0xf064fc['MeWRt'],'rate':!![],'nextMin':0xfa});},0xc8);this["\u0074\u0061\u006c\u006b\u0048\u0061\u006e\u0064\u006c\u0065"]();},"\u0068\u0061\u006e\u0064\u006c\u0065\u0043\u006c\u006f\u0073\u0065"(){this['isFullscreen']=![];},'getUserInfo'(){const _0x94d34c={'ZbMBx':_0x545e4b(0x2a4,0x38d,0x35f,0x430,0x2ec),'bokCS':_0x545e4b(0x4e3,0x585,0x5ff,0x57e,0x4dc)};function _0x545e4b(_0x4da407,_0x358af3,_0x5b8b40,_0x22b2dc,_0x11d1e6){return _0x283a(_0x358af3-0x2cf,_0x4da407);}function _0x51b118(_0x3d1dc5,_0x303e4d,_0x156619,_0x601d8a,_0x55a043){return _0x283a(_0x303e4d- -0x8e,_0x55a043);}this['$http']({'url':USER_PREFIX+_0x94d34c['ZbMBx'],'method':_0x94d34c['bokCS'],'success':_0x26ae57=>{var _0x269506=0x3+0x3;let _0x1a901c=_0x26ae57['objx'];_0x269506=0x3+0x8;this['userInfo']=_0x1a901c;}});},"\u0073\u0061\u0076\u0065\u0046\u0069\u006c\u0065\u0054\u0061\u006c\u006b"(_0x20bbb2,_0xbd986d){const _0x30a525={'GgOos':function(_0x410419,_0x5e164a){return _0x410419+_0x5e164a;},'fMxzz':_0x4de1ee(-0x178,0xea,-0x32,"rNv^".split("").reverse().join(""),-0x17e),'NNnFc':_0x4b596c(0x9c,0x9,0x8a,0xcc,0x43),'ibdtm':_0x4de1ee(-0x76,0xe1,0x3f,'IT9@',-0x64),"\u0049\u004f\u0069\u0046\u0055":function(_0x3c1293,_0x3b276){return _0x3c1293==_0x3b276;},'pzwiI':function(_0x42929c,_0x383511){return _0x42929c+_0x383511;}};let _0x5eb774=this["\u0074\u0061\u006c\u006b\u0055\u0073\u0065\u0072"];function _0x419275(_0x56c110,_0x1c57d8,_0x81f50,_0x5bb761,_0x25f81){return _0x376c(_0x25f81- -0x38a,_0x56c110);}if(!this['talkUserId']||_0x30a525['IOiFU'](_0x20bbb2['length'],0x0))return;var _0x45a79b=0x4+0x8;let _0x48d348=this['userInfo'];_0x45a79b=0x9;var _0xb415d2=0x0+0x5;let _0x5b8145=_0x20bbb2["\u006c\u0065\u006e\u0067\u0074\u0068"];_0xb415d2=0x8+0x3;var _0x26dae2=_0x30a525['pzwiI'](0x1,0x8);function _0x4b596c(_0x34fd58,_0x3c0f99,_0x4c6eed,_0x4f3d16,_0x2806cc){return _0x283a(_0x34fd58- -0x168,_0x4f3d16);}function _0x451e25(_0x11ad97,_0x54fc2c,_0x3fed94,_0x5f4e05,_0x36898a){return _0x376c(_0x36898a-0xdc,_0x11ad97);}let _0x5c2acc=0x0;_0x26dae2=_0x451e25('7tB&',0x3c3,0x12b,0x14e,0x282);function _0x4de1ee(_0x2f1a89,_0x5587af,_0x3a36c7,_0x45e161,_0xe7bcef){return _0x376c(_0x3a36c7- -0x1e0,_0x45e161);}_0x20bbb2['forEach'](_0x259f2a=>{function _0x436b1d(_0x302ea3,_0x583a52,_0x10a92b,_0x1d802e,_0x50b417){return _0x283a(_0x50b417- -0x107,_0x302ea3);}function _0x44eaec(_0x22afbc,_0xcbc9c7,_0x34b02e,_0x19788d,_0x1ef401){return _0x283a(_0x22afbc- -0x252,_0x1ef401);}const _0x3c0d2a={'dnhey':function(_0x242150,_0x4ccbc9){return _0x30a525["\u0047\u0067\u004f\u006f\u0073"](_0x242150,_0x4ccbc9);}};function _0x3eec15(_0x28bc7f,_0x119f8d,_0x3f8ca1,_0x2b903f,_0x65fc0){return _0x376c(_0x28bc7f-0x13f,_0x119f8d);}function _0x5f5804(_0x4341fb,_0x1eaf7d,_0x590a5c,_0x2b30fc,_0x4d1ec1){return _0x283a(_0x4341fb-0x99,_0x590a5c);}if(_0x30a525["\u0066\u004d\u0078\u007a\u007a"]===_0x30a525['NNnFc']){this['$http']({'url':_0x1b3cb1+_0x3eec15(0x19b,"mmFv".split("").reverse().join(""),0x23c,0x148,0x113),'method':_0x436b1d(0x24f,0x231,0x95,0x2b3,0x1af),"\u0073\u0075\u0063\u0063\u0065\u0073\u0073":_0x5d60cd=>{var _0x22d92d=_0x3c0d2a['dnhey'](0x3,0x3);let _0x1eb69e=_0x5d60cd['objx'];_0x22d92d=0x3+0x8;this["\u0075\u0073\u0065\u0072\u0049\u006e\u0066\u006f"]=_0x1eb69e;}});}else{let _0xb50bb9=_0x30a525['ibdtm']+JSON['stringify'](_0x259f2a);this['$http']({'url':USER_PREFIX+_0x436b1d(0x176,0x1ec,0xce,0x104,0xd5),'method':_0x44eaec(0x64,0x11f,-0x29,0xa2,-0x55),'data':{'toUser':_0x5eb774['toUser'],'content':_0xb50bb9},"\u0069\u0073\u004c\u006f\u0061\u0064\u0069\u006e\u0067":!![],'loadingTarget':document['body'],'callback':_0x3519f6=>{_0x5c2acc++;if(_0x5c2acc>=_0x5b8145){this['getList'](0x0,()=>{this['$nextTick'](()=>{function _0x310038(_0x53c89e,_0x1a7db3,_0x228107,_0x11680c,_0x51e681){return _0x376c(_0x53c89e- -0x37,_0x51e681);}function _0x2355fd(_0x26c843,_0x2542e5,_0x21298a,_0x38a06e,_0x5cb1f5){return _0x283a(_0x21298a- -0x280,_0x2542e5);}if(_0x2355fd(-0x84,-0x153,-0x91,-0x159,0x6)!==_0x310038(0x54,-0xde,-0xa3,0xe9,'tT9^')){_0x4ce604=_0x71638d['parse'](_0x207fea);if(!_0x4b8615["\u0064\u006f\u006d\u0061\u0069\u006e"]||!_0x4c7139["\u0075\u0072\u006c"]){_0x2bb629=null;}}else{this['topChatBoxButtom']();this["\u0024\u0072\u0065\u0066\u0073"]['contentRef']['focus']();}});});_0xbd986d&&_0xbd986d();}}});}});},'saveTalk'(){function _0x1809b8(_0x314708,_0x2bc5cc,_0x101d96,_0x3df516,_0x36a2d8){return _0x376c(_0x2bc5cc-0x19c,_0x36a2d8);}const _0x1a0abc={'faMow':function(_0x59754e,_0x66409d){return _0x59754e+_0x66409d;},'zqnBH':_0x35003b(0x395,"\u005a\u0065\u004f\u0054",0x35c,0x3b3,0x430)};function _0x49122a(_0x4b3244,_0x258cbd,_0x3cd3dc,_0x468c84,_0x525a99){return _0x376c(_0x3cd3dc- -0xeb,_0x468c84);}function _0x35003b(_0x437e86,_0x533cfe,_0x2cd2a2,_0x4f3cc9,_0x3652ee){return _0x376c(_0x4f3cc9-0x2b1,_0x533cfe);}let _0x298117=this["\u0074\u0061\u006c\u006b\u0055\u0073\u0065\u0072"];if(!this['talkUserId']||!_0x298117['content'])return;let _0xcba502=this['userInfo'];this['$http']({'url':USER_PREFIX+_0x35003b(0x4cb,"\u0066\u0056\u0034\u0045",0x63b,0x513,0x532),'method':_0x35003b(0x3dc,'K&5e',0x228,0x374,0x28d),'data':{'toUser':_0x298117['toUser'],'content':_0x298117['content']},'isLoading':!![],'loadingTarget':document["\u0062\u006f\u0064\u0079"],'success':_0x133922=>{function _0x423858(_0x28ccf4,_0x470965,_0xc50dce,_0x109248,_0x3fb4b2){return _0x376c(_0x3fb4b2- -0x18f,_0x109248);}const _0x5d5f75={'WPHow':_0x1dac8b(-0x335,-0x24c,-0x23e,-0x27d,-0xea),'mszLU':function(_0x32de9e,_0x1bbc04){return _0x1a0abc['faMow'](_0x32de9e,_0x1bbc04);},'CPPPX':function(_0x5b1a1c,_0x3bec60){return _0x5b1a1c+_0x3bec60;}};function _0x27415c(_0x1180bf,_0x5984c5,_0x292fda,_0x2665e9,_0x2ea539){return _0x283a(_0x5984c5-0x81,_0x1180bf);}function _0x4fb8ef(_0x58f558,_0x1d4442,_0x44514e,_0x2e3b63,_0xcc6088){return _0x376c(_0x44514e- -0x1ea,_0xcc6088);}function _0x1dac8b(_0x5345a0,_0x2f52d4,_0x564295,_0x26de0d,_0x331ee3){return _0x283a(_0x564295- -0x26c,_0x26de0d);}if(_0x423858(0x34,-0x7e,-0x6,'6@QX',0x3c)===_0x423858(0xa0,0x1e,-0x79,"sk6%".split("").reverse().join(""),-0x9d)){var _0x350f9a=0x1+0x4;let _0xd2ce55=_0x133922['objx']||{};_0x350f9a=_0x1a0abc['zqnBH'];_0x298117['content']=null;this['getList'](0x0,()=>{function _0x3d9523(_0x5f1f82,_0x977607,_0x4be69a,_0x1471b7,_0x2e7530){return _0x376c(_0x2e7530-0xb4,_0x1471b7);}if(_0x3d9523(0x20e,0x28,0x72,"29Wh".split("").reverse().join(""),0x175)!==_0x5d5f75['WPHow']){this['$nextTick'](()=>{this['topChatBoxButtom']();this['$refs']['contentRef']['focus']();});}else{return{};}});}else{let _0x5b2f0e=_0x2e3687["\u0074\u0061\u0072\u0067\u0065\u0074"]['scrollTop'];let _0x54bef2=_0x23ab5e['target']['scrollHeight'];let _0x290206=_0x1d6116['target']['clientHeight'];var _0x1f2a5e=0x0+0x1;let _0x278265=_0x5b2f0e<=0x0;_0x1f2a5e=_0x5d5f75['mszLU'](0x0,0x1);let _0x43dea7=_0x5d5f75['CPPPX'](_0x5b2f0e,_0x290206)>=_0x54bef2;if(_0x278265){let _0x4d130c=_0x170a59['target']['querySelector'](_0x1dac8b(-0x1bb,-0x67,-0x15a,-0xe5,-0x53));this['getList'](0x1,()=>{_0x4d130c&&_0x4d130c['scrollIntoView']();});}}}});},'getUserPage'(_0x695c5){function _0x1df43d(_0x5494f5,_0x32fef0,_0x2ab4e3,_0x10f0ae,_0x1a8e31){return _0x376c(_0x5494f5- -0x3,_0x32fef0);}function _0x4d2575(_0x353656,_0x1aa823,_0x45d34,_0x2b7071,_0x243782){return _0x283a(_0x243782- -0x22d,_0x45d34);}const _0x5f0812={'lmuqx':function(_0x4c953f,_0x1a4398,_0x2af384){return _0x4c953f(_0x1a4398,_0x2af384);},'tdQis':function(_0x547c0c,_0x2f9402){return _0x547c0c^_0x2f9402;},"\u005a\u0076\u0053\u006b\u0057":_0x42e65f(0x3b3,0x29f,0x21c,0x30d,0x2b0),'gQoLT':function(_0x4b9317,_0x162645){return _0x4b9317+_0x162645;},"\u006e\u0044\u0054\u006e\u004b":function(_0x4bfbf3,_0x1e74ce){return _0x4bfbf3===_0x1e74ce;},'oLVDR':_0x19003d(-0x99,-0x1d6,"t&NP".split("").reverse().join(""),-0x9,-0x117)};if(!this['dialogTableVisible'])return;function _0x108d99(_0x1cfea7,_0x3f1a8f,_0x1c44f6,_0xe78bb1,_0x319ca9){return _0x283a(_0x1cfea7- -0x36e,_0x1c44f6);}function _0x383732(_0x119113,_0x43c8fe,_0x40fcd7,_0x348f5c,_0x12644a){return _0x283a(_0x348f5c-0x197,_0x119113);}function _0x19003d(_0xa8b3be,_0x21de9f,_0x6bf6be,_0x5d2b2d,_0x167350){return _0x376c(_0x167350- -0x1eb,_0x6bf6be);}if(!this['inited']){if(_0x5f0812['nDTnK'](_0x1df43d(0xaf,"\u0050\u004e\u0026\u0074",0x14d,-0x56,0x1ea),_0x42e65f(-0x2c,0x67,0x132,0x14b,-0x17))){_0x695c5=null;this['inited']=!![];}else{_0x5c7ff5['removeClass'](_0x40c764['body'],_0x4d2575(-0x263,-0x264,-0xf3,-0x30a,-0x1fe));_0x3a5a93['onmousemove']=null;_0x405f60['onmouseup']=null;if(_0x2c2647['btnDisabled']){_0x5f0812['lmuqx'](_0x290cc6,()=>{_0x138a62['btnDisabled']=![];},_0x5f0812['tdQis'](0x6a1f6,0x6a13e));}}}var _0x202a66=0x8+0x3;let _0x16a721=_0x695c5===0x1?moment()['format'](_0x5f0812['oLVDR']):null;function _0x4c17bf(_0x13a74d,_0x2e4898,_0x47d550,_0x5d6622,_0x3051da){return _0x283a(_0x3051da-0xfb,_0x2e4898);}_0x202a66=0x6;function _0x42e65f(_0x237c85,_0xa4ada7,_0x268593,_0x463505,_0x539c7d){return _0x283a(_0xa4ada7-0x21,_0x268593);}this['$http']({'url':USER_PREFIX+_0x42e65f(0xc6,0x39,-0x11a,0xc1,0xab),'method':_0x4d2575(0x93,0x58,0x6e,0x96,0x89),'data':{"\u006f\u0070\u0065\u0072\u0061\u0074\u0065\u0054\u0069\u006d\u0065":_0x16a721},'modal':![],'success':_0x35e671=>{function _0x3e3371(_0x3f2043,_0x191309,_0x4b8555,_0x137957,_0x2c9ead){return _0x283a(_0x2c9ead-0x217,_0x137957);}function _0x2bb228(_0x41843b,_0x5859ce,_0x45d722,_0x2d70e4,_0x17b43b){return _0x283a(_0x2d70e4-0x204,_0x5859ce);}if(_0x2bb228(0x48d,0x502,0x3fe,0x406,0x2e8)!==_0x2bb228(0x4a7,0x3b4,0x4ca,0x406,0x40f)){this['editFileName']=_0x5d51f7['fileName']?.['toString']();this['editFileSuffix']=_0x2ff0c7["\u0066\u0069\u006c\u0065\u0053\u0075\u0066\u0066\u0069\u0078"]?.["gnirtSot".split("").reverse().join("")]();this['editFileIndex']=_0xf16d4;this['showFileNameDialog']=!![];}else{let _0x575e9b=_0x35e671['objx']||[];_0x575e9b['forEach'](_0x13c9be=>{function _0x9d209b(_0x44fcae,_0x2e1858,_0x2a6b3c,_0x104c9f,_0x455190){return _0x376c(_0x455190- -0xdd,_0x2a6b3c);}function _0x43a081(_0x497214,_0x58806d,_0x13bbb9,_0x26f68f,_0xcd2bf0){return _0x376c(_0x13bbb9- -0x383,_0x26f68f);}function _0x42e2ea(_0x345bc2,_0x2517d4,_0x1ea744,_0x4a707e,_0x12a208){return _0x376c(_0x1ea744-0x1fa,_0x2517d4);}function _0x44475d(_0x3f038f,_0x25db50,_0x5c5dd6,_0x428ba6,_0x254d1f){return _0x376c(_0x428ba6-0x137,_0x5c5dd6);}if(_0x9d209b(0x184,0xea,'7tB&',0x304,0x1ba)!==_0x44475d(0xd5,0x275,'Xgp!',0x15a,0x1e7)){Object['assign'](_0x13c9be,{'talkRecords':[],'content':null});}else{this['$http']({'url':_0xc8ecba+_0x9d209b(-0x7b,-0xc,'AT#Y',0x8b,0x74),"\u006d\u0065\u0074\u0068\u006f\u0064":_0x9d209b(0x187,0x122,"\u0074\u0054\u0039\u005e",0x289,0x1d6),"\u0064\u0061\u0074\u0061":{'id':_0x12c527['toUser']},'isLoading':!![],'loadingTarget':_0x217b71['body'],'success':_0x52d4a5=>{if(_0xc00324['toUser']==this['talkUser']['toUser']){this['talkUserId']=null;}this['talkUsers']['splice'](_0x2aacf4,0x1);}});}});var _0x1f9a6f=_0x5f0812['gQoLT'](0x4,0x5);let _0xa523cc=_0x575e9b['map'](_0x10055d=>_0x10055d['id']);_0x1f9a6f=0x9+0x5;if(_0x695c5==(0xddba4^0xddba5)){let _0x5f4f34=[];this['talkUsers']['forEach'](_0x2f5be0=>{function _0x13c4df(_0x44bee2,_0x515d22,_0x5e00a9,_0x45ef48,_0x4a56ae){return _0x376c(_0x44bee2-0x2db,_0x515d22);}let _0x50f03c=_0x575e9b['find'](_0x11d458=>_0x11d458['toUser']==_0x2f5be0["\u0074\u006f\u0055\u0073\u0065\u0072"]);if(_0x50f03c){if(_0x13c4df(0x3c9,'Z4G3',0x47d,0x4b8,0x335)===_0x5f0812['ZvSkW']){_0x139a9e['name']=(_0x533471['fileName']+'.'+_0x5ada40['fileSuffix'])['toString']();}else{_0x2f5be0["\u0072\u0065\u0061\u0064\u0065\u0064"]=_0x50f03c['readed'];Object['assign'](_0x50f03c,_0x2f5be0);}}else{_0x5f4f34['push'](_0x2f5be0);}});_0x575e9b['push'](..._0x5f4f34);}this['talkUsers']=_0x575e9b;}}});},'saveTalkUser'(_0x564a3b){function _0x2f5d91(_0x58d5dd,_0x4a3e15,_0x4ea730,_0x2c2f21,_0x334083){return _0x376c(_0x2c2f21- -0x281,_0x4a3e15);}function _0xbd0ada(_0x5f54b3,_0x59fefa,_0x7bb730,_0x1b5873,_0x94206a){return _0x283a(_0x5f54b3- -0x398,_0x94206a);}function _0x210fc2(_0x1d0d85,_0x508581,_0x1f9adb,_0x4f3619,_0x161ac6){return _0x283a(_0x508581-0x78,_0x4f3619);}function _0x43b424(_0x3b54f8,_0x56a9df,_0x40ee80,_0x5da762,_0x20fd72){return _0x283a(_0x20fd72- -0x1b0,_0x40ee80);}function _0x16c8a8(_0x10b2e1,_0x546a1a,_0x52a3af,_0x2022a6,_0xb3a4ea){return _0x283a(_0x10b2e1-0x3e,_0x2022a6);}function _0x1c4cc3(_0x3a89fc,_0x236551,_0x45b9d2,_0x3afec3,_0x21e30d){return _0x376c(_0x236551- -0x44,_0x3a89fc);}const _0x43860f={'OYMzr':_0x1c4cc3("\u0068\u0057\u0039\u0032",-0x3a,0x8b,0x47,0x7a),'WcvDu':_0xbd0ada(-0x339,-0x3ce,-0x2c7,-0x2e0,-0x42f)};let _0x1bc22f=this['talkUsers']['find'](_0x5c237f=>_0x5c237f['toUser']==_0x564a3b['id']);if(!_0x1bc22f){if(_0x43860f['WcvDu']===_0xbd0ada(-0x282,-0x16a,-0x359,-0x1d3,-0x320)){let _0x20d838=this['$refs']["\u0075\u0073\u0065\u0072\u0042\u006f\u0078"]['querySelector'](_0x43860f['OYMzr']+_0x3fe5fd['id']);_0x20d838&&_0x20d838['scrollIntoView']();this['checkUser'](this['talkUsers'][0x2a87d^0x2a87d]);}else{this['$http']({'url':USER_PREFIX+_0x1c4cc3('KMx0',0x126,0x130,0xee,0x198),'method':_0x210fc2(0x380,0x32e,0x1ed,0x268,0x1d7),'data':{'id':_0x564a3b['id']},'isLoading':!![],'loadingTarget':document['body'],'success':_0x1acd93=>{this['talkUsers']['splice'](0x0,0x54a3c^0x54a3c,{'id':_0x1acd93['objx'],"\u0074\u006f\u0055\u0073\u0065\u0072":_0x564a3b['id'],'nickName':_0x564a3b['nickName'],'mobile':_0x564a3b['mobile'],'readed':![],'talkRecords':[],'content':null});this['$nextTick'](()=>{let _0x497a87=this['$refs']['userBox']['querySelector'](_0x3529c9(-0x254,-0x26b,-0x227,'8]T9',-0x14f)+_0x564a3b['id']);function _0x3529c9(_0x56523b,_0x2b3dd4,_0x5ba6db,_0x2d027a,_0x4639a8){return _0x376c(_0x4639a8- -0x2d6,_0x2d027a);}_0x497a87&&_0x497a87['scrollIntoView']();this['checkUser'](this['talkUsers'][0x2a87d^0x2a87d]);});}});}}else{let _0x147edd=this['$refs']['userBox']['querySelector'](_0x43b424(0x18f,0xb1,0x145,0x184,0xe1)+_0x1bc22f['toUser']);_0x147edd&&_0x147edd['scrollIntoView']();this['checkUser'](_0x1bc22f);}},'checkUser'(_0x485f67){this['talkUserId']=_0x485f67['toUser'];this['setReadState'](_0x485f67);this['getList'](0x0,()=>{const _0x3ec996={'fvWdU':function(_0x3de249,_0x471eea){return _0x3de249+_0x471eea;}};this['$nextTick'](()=>{function _0x116019(_0x4fc6ac,_0x351627,_0x58674e,_0x9a7b85,_0x428c67){return _0x283a(_0x351627- -0x2be,_0x4fc6ac);}function _0x5b5c33(_0x259d07,_0xca4f46,_0xd3ee16,_0x442f7d,_0x140f11){return _0x283a(_0xd3ee16- -0xda,_0xca4f46);}function _0xddd66(_0x1aca91,_0x12389a,_0x297a27,_0xd647a8,_0x196392){return _0x376c(_0x196392-0x82,_0x1aca91);}function _0x3f4800(_0x1a1880,_0x1bbab5,_0x17c72d,_0x2b8e45,_0x4d8ef3){return _0x376c(_0x1bbab5- -0x3e,_0x17c72d);}if(_0x116019(-0x326,-0x1f9,-0xfb,-0x2f5,-0xa6)!==_0xddd66(']ubh',0x384,0x3a7,0x358,0x267)){this['topChatBoxButtom']();this['$refs']['contentRef']['focus']();}else{let _0x363439=this['talkUser'];if(!this['talkUserId']||!_0x363439['content'])return;let _0xa9ac0d=this['userInfo'];this['$http']({'url':_0x3ec996['fvWdU'](_0x3b51dd,_0x3f4800(0x336,0x220,'IT9@',0x245,0x2be)),'method':_0x116019(0x13,-0x8,0xa7,0xdc,0x9a),'data':{'toUser':_0x363439['toUser'],'content':_0x363439['content']},'isLoading':!![],'loadingTarget':_0x46d3e4['body'],'success':_0x1715b3=>{var _0x104935=0x1+0x4;let _0x2e3272=_0x1715b3['objx']||{};_0x104935=_0x47a397(-0x1b8,-0xe1,-0x154,-0x61,-0x1c);function _0x47a397(_0x5e2580,_0x24265d,_0x3da88c,_0x3f40ad,_0x57f28f){return _0x283a(_0x3da88c- -0x2bd,_0x24265d);}_0x363439['content']=null;this['getList'](0x0,()=>{this['$nextTick'](()=>{this['topChatBoxButtom']();this['$refs']['contentRef']['focus']();});});}});}});});},'getLastRecordId'(_0x213ffe){function _0x777489(_0x4c10f6,_0x200757,_0x45626c,_0xdbbdf7,_0x43d905){return _0x283a(_0x43d905-0x2c9,_0x200757);}function _0x310144(_0x5479e8,_0x13f897,_0x53d7ed,_0x2954b7,_0x9308ac){return _0x283a(_0x9308ac-0x1df,_0x53d7ed);}const _0x153908={'jAYhi':function(_0x2c280a,_0x44c658){return _0x2c280a^_0x44c658;},'ciVUT':function(_0x28f08,_0x435900){return _0x28f08||_0x435900;},'DvLew':function(_0x31f172,_0x1b920f){return _0x31f172!==_0x1b920f;},'mKeYY':function(_0xf4c93d,_0x2d4e90){return _0xf4c93d-_0x2d4e90;}};_0x213ffe=_0x153908['ciVUT'](_0x213ffe,0x0);let _0x574a9e=null;function _0x348b3a(_0xc0e8ee,_0x47dc2d,_0x334ccf,_0x1333b8,_0x329df9){return _0x283a(_0x1333b8- -0x3c2,_0xc0e8ee);}let _0x2bebd8=this['talkUser'];if(_0x2bebd8['talkRecords']['length']){if(_0x213ffe==(0x2b4ea^0x2b4ea)){if(_0x153908['DvLew'](_0x310144(0x3f1,0x2d1,0x2aa,0x416,0x317),_0x310144(0x49a,0x2b8,0x3c7,0x267,0x380))){_0x574a9e=_0x2bebd8['talkRecords'][_0x153908['mKeYY'](_0x2bebd8['talkRecords']['length'],0x1)]['id'];}else{this['$set'](_0x12ee4e,_0x348b3a(-0x27a,-0x41f,-0x35a,-0x392,-0x3c8),_0x153908['jAYhi'](0x66034,0x66050));_0x32a2c8['status']=_0x777489(0x51b,0x423,0x3f3,0x51e,0x48c);}}else{_0x574a9e=_0x2bebd8['talkRecords'][0x0]['id'];}}function _0x17a646(_0x33c7ce,_0x436e10,_0x3a3d59,_0x2ba0b4,_0x429fa2){return _0x283a(_0x2ba0b4- -0x83,_0x3a3d59);}return _0x574a9e;},'getList'(_0x466e3a,_0x4cdf20){const _0x51f0d4={'MqDaK':_0x6b7d91(-0xe9,-0x213,-0x224,-0x202,-0x31),'HbNXg':_0x6b7d91(-0x2c9,-0x382,-0x1fb,-0x325,-0x214),'CCuub':_0x6b7d91(-0x284,-0x3b3,-0x21f,-0x2ee,-0x271)};function _0x7ad2c(_0x2037a8,_0x166cf8,_0x27208b,_0x3862d6,_0x4338d3){return _0x376c(_0x3862d6-0x327,_0x166cf8);}if(!this['dialogTableVisible'])return;function _0x6b7d91(_0x357907,_0x1e93df,_0x42f608,_0x4f9007,_0x11e2ee){return _0x283a(_0x357907- -0x2e4,_0x4f9007);}function _0x588ad3(_0x14a46a,_0x14f5ac,_0x37b8ad,_0x51a8b6,_0x2d21ce){return _0x376c(_0x14a46a-0x148,_0x51a8b6);}function _0x151f2b(_0xe88f77,_0x4d2040,_0x564ff4,_0x2e4038,_0x57db9a){return _0x283a(_0x57db9a-0x269,_0x2e4038);}if(!this['talkUserId'])return;let _0x253264=this['talkUser'];if(_0x466e3a==(0x6f418^0x6f419)&&_0x253264['topEnd']){return;}let _0x30775a=this['getLastRecordId'](_0x466e3a);_0x466e3a=_0x466e3a||0x0;function _0xe97c90(_0x4b537c,_0x455ab8,_0x222333,_0x5e92d7,_0x2a79be){return _0x283a(_0x2a79be-0x20,_0x4b537c);}this['$http']({'url':USER_PREFIX+_0x7ad2c(0x3a6,"@9TI".split("").reverse().join(""),0x432,0x48a,0x53e),'method':_0x7ad2c(0x387,'C*N7',0x367,0x432,0x315),'data':{'toUser':this['talkUserId'],'lastId':_0x30775a,'direction':_0x466e3a},'modal':![],'success':_0x59093e=>{function _0x4799fd(_0x41bdf1,_0x4ba483,_0x5e28ed,_0x39cd49,_0x5e6909){return _0x283a(_0x5e6909- -0x2b8,_0x4ba483);}function _0x326b41(_0x1ce653,_0x1fa842,_0x4b8d9d,_0x5d03ec,_0x257c02){return _0x283a(_0x5d03ec-0x39c,_0x257c02);}function _0x59b3e6(_0xb6e7b2,_0x2e96bc,_0x2a404a,_0x3e170c,_0x325513){return _0x283a(_0xb6e7b2-0xed,_0x2e96bc);}const _0xad9ded={'ehzzi':_0x4799fd(-0xbf,0x9e,-0x6f,0x107,-0x32),'RVevu':_0x505787("]U$K".split("").reverse().join(""),0x487,0x44f,0x553,0x4b1),'RBRvi':function(_0x52eb16,_0x12e1ac){return _0x52eb16^_0x12e1ac;}};function _0x11182e(_0x5ee7ee,_0x4f1423,_0x165fd1,_0x36428c,_0x58252c){return _0x283a(_0x36428c- -0x2f9,_0x165fd1);}function _0x60a4d5(_0x2fd796,_0x40c819,_0x1868e5,_0x4a6b7b,_0x53c55f){return _0x283a(_0x40c819-0x3d9,_0x2fd796);}function _0x505787(_0x53d92e,_0x1304cf,_0x237701,_0x2254b4,_0x27394b){return _0x376c(_0x1304cf-0x245,_0x53d92e);}function _0x101874(_0x1ff4cd,_0x395bf8,_0x2b292c,_0x434f47,_0x2ea9a1){return _0x376c(_0x434f47- -0x1f4,_0x1ff4cd);}if(_0x505787("7N*C".split("").reverse().join(""),0x3a0,0x291,0x461,0x31e)===_0x51f0d4['MqDaK']){let _0xd0a24b=_0x59093e['objx']||[];_0xd0a24b['forEach'](_0x2edc1f=>{if(_0xad9ded['ehzzi']===_0xad9ded['ehzzi']){this['handleContent'](_0x2edc1f);}else{_0x48ba44&&_0x1c2f98['scrollIntoView']();}});if(_0x466e3a==(0x1eb84^0x1eb84)){if(_0x51f0d4['HbNXg']!==_0x4799fd(-0x24c,-0x2b7,-0x2b5,-0x1d8,-0x29d)){this['saveFileTalk'](_0x52ad14);}else{_0x253264['talkRecords']['push'](..._0xd0a24b);}}else{if(_0x4799fd(-0x168,-0x118,-0x26f,0x8,-0x132)!==_0x4799fd(-0x12c,-0x2d,-0x125,-0x19c,-0x132)){_0x558725['name']=_0x5e5a65['fileName']['toString']();}else{_0x253264['talkRecords']['splice'](0x0,0x0,..._0xd0a24b);}}if(_0x466e3a==0x1&&_0xd0a24b['length']==0x0){if(_0x326b41(0x5e5,0x622,0x472,0x52f,0x686)!==_0x51f0d4['CCuub']){_0x253264['topEnd']=!![];}else{this['talkUsers']['splice'](0x0,0x54a3c^0x54a3c,{'id':_0x218e1f['objx'],'toUser':_0x599444['id'],'nickName':_0x87ede8['nickName'],'mobile':_0x330b2e['mobile'],'readed':![],'talkRecords':[],'content':null});this["\u0024\u006e\u0065\u0078\u0074\u0054\u0069\u0063\u006b"](()=>{let _0xfc8be7=this['$refs']['userBox']['querySelector'](_0xad9ded['RVevu']+_0x559bcf['id']);_0xfc8be7&&_0xfc8be7['scrollIntoView']();this['checkUser'](this['talkUsers'][_0xad9ded['RBRvi'](0x2a87d,0x2a87d)]);});}}_0x4cdf20&&_0x4cdf20();}else{var _0x1eea95;let _0x5bc834=this['talkUser']['nickName'];_0x1eea95=0x5+0x8;return _0x11182e(-0xfd,0x71,-0x16,-0x6a,0xf1)+_0x5bc834+')';}}});},'handleContent'(_0x1c85eb){function _0x1d14e5(_0x515983,_0x4729d1,_0x385883,_0x2c7933,_0x5e4895){return _0x283a(_0x2c7933- -0x11b,_0x4729d1);}const _0x3e4837={'PKakV':function(_0x4a0a30,_0x80bf1f){return _0x4a0a30+_0x80bf1f;},'HbSWo':function(_0x1209ac,_0x2f5372){return _0x1209ac^_0x2f5372;},'doesr':function(_0x14095f,_0x31aebc){return _0x14095f-_0x31aebc;},'BhmLw':function(_0xdd3ac,_0x12a758){return _0xdd3ac+_0x12a758;},'uTWEn':function(_0x278a4e,_0xcb0b06){return _0x278a4e^_0xcb0b06;},'qRrhM':_0x4d180e(-0x157,-0x1b0,-0xc2,-0x8e,-0x118),'RewwB':_0x4d180e(-0x49,0x36,-0x1b8,-0xdd,0xe),'uFdiP':_0x2b3809(-0x5f,-0xd0,-0x56,0x26,-0x5b),'ICygW':_0x2b340c(-0x1a9,-0x162,-0x2f0,-0x245,'gnRT'),'IxIHB':_0x2b340c(-0x2e5,-0x3cd,-0x22e,-0x28f,"KBu1".split("").reverse().join("")),'aVNYF':function(_0x22b260,_0x350fc3){return _0x22b260^_0x350fc3;}};function _0x2b3809(_0x121dd7,_0x1110ed,_0x563de2,_0x11979d,_0x497b47){return _0x283a(_0x497b47- -0x115,_0x1110ed);}function _0x964491(_0x3cbac5,_0x5f2277,_0x7ed0e3,_0x3c3431,_0xfe5659){return _0x376c(_0x7ed0e3- -0x351,_0xfe5659);}_0x1c85eb['_time']=_0x1c85eb['createDate']['substring'](0x0,_0x3e4837['uTWEn'](0xc72a3,0xc72b3));var _0x99774a;function _0x5081e7(_0x5535e5,_0x53fdc4,_0x3a36e4,_0x2f0c4f,_0x14ae5e){return _0x376c(_0x3a36e4- -0x250,_0x2f0c4f);}let _0x171b97=null;function _0x4d180e(_0x4067fa,_0x43f1e9,_0x2e5052,_0x137daf,_0x2be2d1){return _0x283a(_0x137daf- -0x29d,_0x43f1e9);}function _0x3fb7ba(_0x2c07e9,_0x4ac5a1,_0x163fde,_0xbc79a,_0x1bc55e){return _0x376c(_0x2c07e9-0x1b4,_0x1bc55e);}_0x99774a=0x4+0x6;let _0x3bb334=_0x1c85eb['content'];function _0x2b340c(_0x557e0b,_0x7cb007,_0x3d317f,_0x37e50f,_0x177bc7){return _0x376c(_0x37e50f- -0x393,_0x177bc7);}function _0x4ce906(_0x46c2ec,_0x4d9eec,_0x349f1d,_0x2e6d9e,_0x2bb3e6){return _0x283a(_0x46c2ec- -0x163,_0x349f1d);}let _0x4065d5=_0x3e4837['qRrhM'];if(_0x3bb334['indexOf'](_0x4065d5)==(0xab86b^0xab86b)){let _0x404778=_0x3bb334['slice'](_0x4065d5['length']);if(_0x404778){if(_0x3e4837['RewwB']!==_0x2b340c(-0x268,-0x1d5,-0x38f,-0x2ae,"aITR".split("").reverse().join(""))){var _0x4d551e=0x1+0x4;let _0x332bb5=_0x22ca02['objx']||{};_0x4d551e=_0x2b3809(-0xfd,-0x60,0x8f,0x177,0x54);_0xd7a062['content']=null;this['getList'](0x0,()=>{this['$nextTick'](()=>{this['topChatBoxButtom']();this['$refs']['contentRef']['focus']();});});}else{try{if(_0x3fb7ba(0x3ca,0x444,0x423,0x277,"9T]8".split("").reverse().join(""))!==_0x3e4837['uFdiP']){_0x171b97=JSON['parse'](_0x404778);if(!_0x171b97['domain']||!_0x171b97['url']){if(_0x4ce906(-0xb8,-0xd3,-0xf4,-0x186,0x84)===_0x3e4837['ICygW']){var _0x56a4ed=_0x3e4837['PKakV'](0x7,0x4);let _0x1b9ca5=this['talkUserId'];_0x56a4ed=0x1;if(_0x1b9ca5){return this['talkUsers']['find'](_0x1849da=>_0x1849da['toUser']===_0x1b9ca5)||{};}else{return{};}}else{_0x171b97=null;}}}else{return{'isFullscreen':![],'dialogTableVisible':![],'userInfo':null,'content':null,'userContentMap':{},'showUserDialog':![],'talkUserId':null,'inited':![],'timer0':null,'timer':null,'talkUsers':[],'keyword':null,"\u0075\u006e\u0072\u0065\u0061\u0064":![],'isExitsRead':![],'btnDisabled':![],'isCanUserTalk':![],'roleCodes':[],'files':[],'tempIndex':0x1,'showPrivateUploadBtn':![],'showPrivateProfileDialog':![],'editFileIndex':-_0x3e4837['HbSWo'](0x3017f,0x3017e),'showFileNameDialog':![],'editFileName':null,'editFileSuffix':null};}}catch(_0x32db88){}}}}function _0x937d64(_0x1073a6,_0x126064,_0x54d7c5,_0x560281,_0x265864){return _0x376c(_0x560281-0x2a7,_0x126064);}function _0x20914c(_0x5cb029,_0xfa7d18,_0xd09a82,_0x254acd,_0x50418d){return _0x283a(_0xfa7d18- -0x10,_0xd09a82);}if(_0x171b97){if(_0x5081e7(-0x30,-0xb3,-0x183,'C]JF',-0x119)===_0x2b340c(-0x405,-0x384,-0x445,-0x31c,"1ZS!".split("").reverse().join(""))){_0x1c85eb['file']=_0x171b97;_0x1c85eb['contentType']=0x1;}else{_0xfcc251['preventDefault']();let _0x588d47=_0x524545+(_0x30e932['clientY']-_0x3a46ab);let _0x450fc6=_0x54e21e+_0x3e4837['doesr'](_0x90f2ca['clientX'],_0x4d4b70);var _0x4b722b=0x7+0x2;let _0x3870f9=_0x395760['abs'](_0x3e4837['doesr'](_0x42b9e6['clientY'],_0x5da4a9))+_0x1f9582['abs'](_0x404e93['clientX']-_0x39e3c7);_0x4b722b=0x4+0x8;_0x2a95a1['btnDisabled']=_0x3870f9>(0xf3e26^0xf3e24);_0x12c68f['style']['top']=_0xf6a313['min'](_0x475e21['max'](_0x588d47,0xe9d95^0xe9d95),_0x829cd9)+'px';_0x593b6f['style']['left']=_0x3e4837['BhmLw'](_0x3e2b46['min'](_0x1e5c11['max'](_0x450fc6,0x9efb4^0x9efb4),_0x4694eb),'px');}}else{if(_0x3e4837['IxIHB']!==_0x2b340c(-0x3cf,-0x366,-0x344,-0x306,"rNv^".split("").reverse().join(""))){this['$http']({'url':_0x3b9065+_0x964491(-0x2a6,-0x1db,-0x2df,-0x291,'TDM['),'method':_0x2b3809(0x1a2,0x256,0x2f3,0xef,0x1a1),'data':{'id':_0x51db68['toUser']},'success':_0x603aa1=>{_0x2a303c['readed']=0x9beae^0x9beae;}});}else{_0x1c85eb['contentType']=_0x3e4837['aVNYF'](0xc6aa1,0xc6aa1);_0x1c85eb['file']=null;}}},'createTimerHandle'(){this['clearTimerHandle']();this['handleExitsRead']();this['talkHandle']();this['timer']=setInterval(()=>{this['handleExitsRead']();this['talkHandle']();},0x2710);},'talkHandle'(){this['getUserPage'](0x42186^0x42187);this['getList'](0x21f4c^0x21f4c);},'clearTimerHandle'(){const _0x2e4e98={'SiWGV':_0x56b4f1(0x35d,0x308,'%6ks',0x32d,0x26e),'FDicG':function(_0xb6d0a1,_0x7704eb){return _0xb6d0a1+_0x7704eb;},'idoUp':_0x50a20d("3G4Z".split("").reverse().join(""),-0x75,0x67,-0xef,0xa5),'hAUHw':function(_0x213f80,_0x465b2a){return _0x213f80(_0x465b2a);}};function _0x3b58ec(_0x2e8f08,_0x3b9c39,_0x77285a,_0x1ebb09,_0x11b7f2){return _0x376c(_0x2e8f08- -0x64,_0x1ebb09);}function _0x50a20d(_0xb6abae,_0x4eeb25,_0x2601b5,_0x5ccf4c,_0x4a6cee){return _0x376c(_0x4eeb25- -0x211,_0xb6abae);}function _0x56b4f1(_0x42b937,_0x4f06d6,_0x205ba9,_0x143d5a,_0x3ee845){return _0x376c(_0x143d5a-0xb1,_0x205ba9);}if(this['timer']){if(_0x56b4f1(0x253,0x22b,'hW92',0x34a,0x2ad)===_0x2e4e98['idoUp']){_0x2e4e98['hAUHw'](clearInterval,this['timer']);this['timer']=null;}else{var _0x363641;let _0x517f14=_0x107a18?_0x28507a:_0x2e4e98['SiWGV'];_0x363641=0x0+0x2;var _0x5a380a;let _0x4f0cb6=_0x2e4e98['FDicG'](_0x988e40['domain'],_0x1ae555[_0x517f14]?_0x1b7d72[_0x517f14]:_0x19c0bf['url']);_0x5a380a=0x4+0x3;_0x46b9c1=this['$commonFileUtil']['getShowUrl'](_0x4f0cb6);}}},'setReadState'(_0x560801){function _0x19e59a(_0x17c099,_0x5ca4e2,_0x3d7a6f,_0x4cd7f,_0x347c60){return _0x283a(_0x5ca4e2- -0x114,_0x3d7a6f);}function _0xc9e99f(_0xf07507,_0x13e901,_0x459973,_0x3d3d32,_0x3752c3){return _0x376c(_0x459973- -0x3cc,_0xf07507);}const _0x3225d9={'tXncn':function(_0x5cb050,_0x526f2d){return _0x5cb050+_0x526f2d;},'RVAXx':function(_0x29d55f,_0x52274b){return _0x29d55f+_0x52274b;}};this['$http']({'url':_0x3225d9['RVAXx'](USER_PREFIX,_0xc9e99f('7tB&',-0x21e,-0x315,-0x41f,-0x1c3)),'method':_0x19e59a(0x159,0x1a2,0x2cd,0xd3,0x81),'data':{'id':_0x560801['toUser']},'success':_0x5e9af4=>{function _0x3def2f(_0x440f7a,_0x366534,_0x521660,_0xff3563,_0x56051d){return _0x376c(_0x440f7a- -0x2d8,_0x521660);}function _0x44a123(_0x55202c,_0x3965a8,_0x3b4b7e,_0x214544,_0x3b9c00){return _0x283a(_0x3b9c00-0xa,_0x55202c);}if(_0x44a123(0x3ce,0x232,0x2f7,0x19b,0x28e)!==_0x3def2f(-0x159,-0x1,'hW92',-0x192,-0x86)){_0x560801['readed']=0x9beae^0x9beae;}else{const _0x8e4741={'jCPIw':function(_0x1fe5f6,_0x16ae46){return _0x3225d9['tXncn'](_0x1fe5f6,_0x16ae46);}};if(_0x5cb19c){let _0x53ae0c=_0x287837['map'](_0x4f8395=>{function _0x2e6687(_0x1802ca,_0x2ec86c,_0x3160db,_0x28d115,_0x2f4536){return _0x283a(_0x28d115-0xfb,_0x2ec86c);}var _0x2af170=_0x8e4741['jCPIw'](0x6,0x2);let _0x5104b4=this['createFileObj'](_0x4f8395,_0x18052c);_0x2af170=_0x2e6687(0x445,0x408,0x2c9,0x341,0x46e);return _0x5104b4;});this['files']['push'](..._0x53ae0c);}}}});},'handleExitsRead'(){function _0x3bf01e(_0x1fd340,_0x26670c,_0x36b16e,_0x3e7126,_0x25524f){return _0x376c(_0x26670c-0x378,_0x1fd340);}function _0x2db2dd(_0x19529c,_0x47cb8b,_0x84d68f,_0x2d33a,_0x635c8f){return _0x376c(_0x47cb8b- -0xdc,_0x84d68f);}const _0x4fd45f={'ZbQbY':_0x3bf01e('5FEK',0x3b5,0x4f0,0x447,0x46d),'IxlFY':_0x4a0110(0x3ac,0x2a3,0x333,0x3ab,0x41e)};function _0x4a0110(_0x194808,_0x39b05a,_0x1585f2,_0x415c24,_0x500adb){return _0x283a(_0x194808-0x1fa,_0x415c24);}function _0x5259e0(_0x29b612,_0x200a4c,_0x4e5a34,_0x59ac32,_0x3c1493){return _0x376c(_0x29b612-0x314,_0x59ac32);}this['$http']({'url':USER_PREFIX+_0x3bf01e('GTxe',0x396,0x35e,0x2f6,0x254),'method':_0x3bf01e('v#Xb',0x52f,0x5d2,0x562,0x5ef),'data':{},'modal':![],'success':_0x4bd35f=>{if(_0x4fd45f['ZbQbY']===_0x4fd45f['IxlFY']){this['$nextTick'](()=>{this['topChatBoxButtom']();this['$refs']['contentRef']['focus']();});}else{this['isExitsRead']=_0x4bd35f['objx']===0x1;}}});},'topChatBoxButtom'(){let _0x276569=this['$refs']['chatBox'];let _0x19eb0f=_0x276569['scrollTop'];let _0x94eedd=_0x276569['scrollHeight'];let _0x219f2e=_0x276569['clientHeight'];_0x276569['scrollTop']=_0x94eedd-_0x219f2e;},'initCanUserTalk'(){const _0x2a15c3={'tJSOx':function(_0x47919f,_0x20c796){return _0x47919f===_0x20c796;}};function _0x594e80(_0x4cbfa3,_0x4b8683,_0x33c0fd,_0x1f986c,_0x2eff40){return _0x376c(_0x4cbfa3-0x316,_0x33c0fd);}function _0x1eb12b(_0x449f00,_0x1716af,_0x455da7,_0x20ef10,_0x25ed9b){return _0x283a(_0x449f00-0x234,_0x1716af);}this['$http']({'url':USER_PREFIX+_0x594e80(0x53b,0x418,'%6ks',0x49a,0x45d),'method':_0x1eb12b(0x4ea,0x3f8,0x62c,0x445,0x5c3),'data':{},'failMsg':![],'errorMsg':![],'success':_0x34e940=>{this['isCanUserTalk']=_0x2a15c3['tJSOx'](_0x34e940['objx'],!![]);if(this['isCanUserTalk']){this['initPrivateUploadBt']();this['createTimerHandle']();this['getUserInfo']();}}});},'openUserDialog'(){function _0x35153c(_0x30b2b5,_0x833ad1,_0x3e1f36,_0x380d33,_0x21894d){return _0x376c(_0x380d33-0x6b,_0x3e1f36);}function _0x439498(_0x8bc0be,_0x362acc,_0x29e5e5,_0x85f3d4,_0x353fd8){return _0x376c(_0x85f3d4- -0x364,_0x353fd8);}const _0x1874be={'lDrNl':function(_0x57c882,_0x42a6a9){return _0x57c882+_0x42a6a9;}};this['$http']({'url':_0x1874be['lDrNl'](USER_PREFIX,_0x35153c(0x2d3,0x11d,'1DPt',0x201,0x320)),'method':_0x35153c(0x195,0x339,")Seh".split("").reverse().join(""),0x284,0x1db),'data':{},'isLoading':!![],'loadingTarget':document['body'],'success':_0x3bdc36=>{var _0x437524=0x8+0x6;let _0x566c5d=_0x3bdc36['objx']||[];_0x437524=0x4;this['roleCodes']=_0x566c5d;this['showUserDialog']=!![];}});},'formatFileSize'(_0x29f983){const _0x23ad49={"\u006b\u0054\u006e\u0079\u005a":function(_0x1cf69f,_0xea8933){return _0x1cf69f-_0xea8933;},'batpc':function(_0x19028a,_0x2eb98e){return _0x19028a*_0x2eb98e;},'tRsaE':_0x224697("9T]8".split("").reverse().join(""),0x470,0x4f4,0x3af,0x48c),'JbKrG':function(_0x35057b,_0x3983ef){return _0x35057b<_0x3983ef;},'cKTAD':function(_0x2a97fb,_0xddc22a){return _0x2a97fb*_0xddc22a;},'QoENu':function(_0xe78a9c,_0x1fe26f){return _0xe78a9c+_0x1fe26f;},'ICVjM':function(_0x540ed8,_0x493b0c){return _0x540ed8*_0x493b0c;},'KmsTa':function(_0x4d657e,_0x51fa99){return _0x4d657e^_0x51fa99;}};function _0x2ce272(_0x5d8d9b,_0x52f604,_0x124797,_0x287450,_0x3c36f6){return _0x283a(_0x124797- -0xef,_0x5d8d9b);}function _0x5b71bb(_0xcbd5df,_0x5017ed,_0x57f85d,_0x4c920a,_0x34b29d){return _0x283a(_0x4c920a- -0x3ca,_0x57f85d);}_0x29f983=_0x29f983||0x0;function _0x47677c(_0x4c45aa,_0x4c1e97,_0x29df3a,_0x3db233,_0x119555){return _0x283a(_0x3db233-0x1da,_0x29df3a);}function _0x33d188(_0x2f7aae,_0x3debee,_0x1ecb27,_0x22fe8d,_0x4e413c){return _0x283a(_0x22fe8d-0x224,_0x1ecb27);}function _0x3394f4(_0x3f6f17,_0x1c3e0f,_0x4aa56c,_0x524dc8,_0x1fda9f){return _0x376c(_0x3f6f17- -0x36d,_0x524dc8);}function _0x224697(_0x1ce99f,_0x10e6af,_0x363ea5,_0x194e09,_0x35830e){return _0x376c(_0x10e6af-0x27f,_0x1ce99f);}function _0x3165fa(_0x290752,_0xbc4be4,_0x7204ab,_0x14ec37,_0x3cee59){return _0x283a(_0x14ec37- -0x39d,_0x3cee59);}if(_0x29f983<0x400){if(_0x2ce272(0x128,0x67,-0x1e,0xbd,-0x10e)!==_0x5b71bb(-0x41d,-0x38f,-0x356,-0x2f9,-0x3e2)){this['$nextTick'](()=>{this['topChatBoxButtom']();this['$refs']['contentRef']['focus']();});}else{return _0x29f983+'B';}}else if(_0x29f983<_0x23ad49['batpc'](0x400,0x64c59^0x64859)){if(_0x5b71bb(-0x225,-0x456,-0x2e8,-0x2fe,-0x2c0)!==_0x23ad49['tRsaE']){_0xdf6629=_0x19e454['talkRecords'][_0x23ad49['kTnyZ'](_0x49c216['talkRecords']['length'],0x1)]['id'];}else{var _0x33215=_0x29f983/0x400;_0x33215=_0x33215['toFixed'](0x2);return _0x33215+'KB';}}else if(_0x23ad49['JbKrG'](_0x29f983,_0x23ad49['cKTAD'](0xe799f^0xe7d9f,0xbd1ad^0xbd5ad)*0x400)){const _0x56a645=_0x33d188(0x375,0x3df,0x434,0x30a,0x367)['split']('|');let _0xe24547=0x0;while(!![]){switch(_0x56a645[_0xe24547++]){case'0':var _0x2618b6=0x2+0x7;continue;case'1':_0x33215=_0x33215['toFixed'](0x2);continue;case'2':return _0x33215+'MB';case'3':var _0x33215=_0x29f983/(0x400*0x400);continue;case'4':_0x2618b6=_0x23ad49['QoENu'](0x4,0x2);continue;}break;}}else{if(_0x47677c(0x1df,0x306,0x33d,0x2af,0x193)===_0x224697("0e5b".split("").reverse().join(""),0x458,0x390,0x3b2,0x491)){let _0x594469=_0x1b5922?_0xa29dec['nickName']['includes'](_0x2a98bf):!![];let _0x31331e=_0x494afb?_0x3d633f['readed']==(0x2648f^0x2648e):!![];return _0x594469&&_0x31331e;}else{var _0x33215=_0x29f983/_0x23ad49['ICVjM'](0x400*(0xaedbc^0xae9bc),_0x23ad49['KmsTa'](0x8daea,0x8deea));_0x33215=_0x33215['toFixed'](0x2);return _0x33215+"BG".split("").reverse().join("");}}},'getShowImage'(_0x46f3a0,_0x86824d){function _0x170fe8(_0x257be0,_0x2bf275,_0x7952cb,_0xa81aa,_0x4b48c1){return _0x283a(_0x257be0- -0x260,_0x7952cb);}const _0x2d1ea4={'pRsED':function(_0x29826d,_0x91a816){return _0x29826d===_0x91a816;}};_0x86824d=_0x86824d||_0x46f3a0['name'];function _0x35c8f0(_0x41c3f4,_0x2f8b3b,_0x5c1eca,_0xf7189b,_0x15b68c){return _0x376c(_0x2f8b3b-0x21c,_0x41c3f4);}if(this['$commonFileUtil']['isPictureFile'](_0x86824d)){if(_0x2d1ea4['pRsED'](_0x35c8f0('ZeOT',0x4c1,0x55c,0x4d8,0x464),_0x170fe8(-0x25b,-0x1b9,-0x126,-0x1d3,-0x3b5))){return _0x46f3a0['showUrl']||_0x46f3a0['url'];}else{this['isCanUserTalk']=_0x2b5fcd['objx']===!![];if(this['isCanUserTalk']){this['initPrivateUploadBt']();this['createTimerHandle']();this['getUserInfo']();}}}else{return this['$commonFileUtil']['getFileIconRequire'](_0x86824d);}},'pasteMessage'(_0x5aab43){const _0x51bf7a={'bEEmC':_0x18ec58(0x12c,0x138,0x17b,0x28e,0x219)};function _0x39c146(_0x2567c1,_0x4656c7,_0x1f08c3,_0x489587,_0x202880){return _0x376c(_0x4656c7- -0x181,_0x2567c1);}function _0x538450(_0x43c704,_0x4fba0f,_0x523f3e,_0x18f82a,_0x4356cb){return _0x283a(_0x523f3e-0x2ea,_0x4356cb);}function _0x26286c(_0x5fd20c,_0xef1d2a,_0x652f2c,_0xb6131c,_0x1cd8f4){return _0x283a(_0x5fd20c- -0x2e4,_0x652f2c);}const _0x5cdc75=_0x5aab43['clipboardData']||window['clipboardData'];function _0x18ec58(_0x12e5e1,_0x43eea3,_0x277f05,_0xca20bf,_0x384fe2){return _0x283a(_0x43eea3- -0x152,_0x277f05);}const _0x5be04e=Array['from'](_0x5cdc75['files']);if(_0x5be04e['length']){if(_0x26286c(-0x21b,-0x33c,-0x1e1,-0x17e,-0x280)!==_0x51bf7a['bEEmC']){_0x5aab43['preventDefault']();this['addFiles'](_0x5be04e);}else{this['$http']({'url':_0x2d3a02+_0x18ec58(0x139,0x11a,0x180,0xbb,0x10c),'method':_0x39c146("5ZKN".split("").reverse().join(""),0xd5,0xb4,0xa9,0x25),'data':{},'isLoading':!![],'loadingTarget':_0x1c753e['body'],'success':_0x4a92fd=>{var _0x34141a=0x8+0x6;let _0x387b1b=_0x4a92fd['objx']||[];_0x34141a=0x4;this['roleCodes']=_0x387b1b;this['showUserDialog']=!![];}});}}},'createFileObj'(_0x4674cf,_0x36a699){const _0x332ec6={'JoKdu':function(_0x4fb005,_0x24b0bb){return _0x4fb005+_0x24b0bb;},'TFcye':function(_0x370b54,_0x4371c6){return _0x370b54(_0x4371c6);},'qMZdz':function(_0x172ab8,_0xfe47bd){return _0x172ab8>=_0xfe47bd;},'IJPUa':function(_0x42abc0,_0x2f1098){return _0x42abc0===_0x2f1098;}};var _0x585cda=_0x332ec6['JoKdu'](0x7,0x6);let _0x2d678c=_0x332ec6['JoKdu'](Date['now'](),this['tempIndex']++);_0x585cda=0x3;function _0x315099(_0x37600d,_0x1276ea,_0x48b5d3,_0x50c58e,_0xe8dcca){return _0x283a(_0x50c58e- -0x32e,_0x48b5d3);}function _0x5130ec(_0x891cd1,_0x4319ea,_0x5c0bf1,_0x5752f6,_0x3ed6de){return _0x283a(_0x4319ea- -0xe8,_0x891cd1);}let _0x497f55=_0x36a699?_0x4674cf['fileName']:_0x4674cf['name'];let _0x14bf2b=_0x497f55['lastIndexOf']('.');var _0x94e31a=0x3+0x1;function _0x40eb6d(_0x518505,_0x3ee170,_0x262348,_0x36d371,_0x55a699){return _0x283a(_0x262348- -0x238,_0x518505);}function _0x4570b9(_0x20553b,_0x35cf1f,_0x5e89e2,_0x2ea678,_0x475a48){return _0x376c(_0x5e89e2- -0x274,_0x475a48);}let _0x27b177=this['$commonFileUtil']['getFileSuffix'];_0x94e31a=0x0+0x4;let _0x3ea987=_0x36a699?_0x4674cf['extension']:_0x332ec6['TFcye'](_0x27b177,_0x497f55);let _0x52bb06=_0x332ec6['qMZdz'](_0x14bf2b,0x0)?_0x497f55['substring'](0x0,_0x14bf2b)['toString']():_0x497f55['toString']();let _0x555276=null;if(!_0x36a699){if(_0x332ec6['IJPUa'](_0x40eb6d(0x31,-0xed,0x5c,0x8a,0x1b6),_0x5130ec(0x1d5,0x1ac,0x1c5,0x1b8,0xc9))){_0x555276={'status':_0x5130ec(-0x178,-0x94,-0x13b,-0x1d2,0x35),'name':_0x4674cf['name'],'size':_0x4674cf['size'],'percentage':0x0,"\u0075\u0069\u0064":_0x2d678c,'raw':_0x4674cf,'url':URL['createObjectURL'](_0x4674cf),'fileName':_0x52bb06,'fileSuffix':_0x3ea987};}else{_0x426bc5=_0xf7c8d8['talkRecords'][0x0]['id'];}}else{let _0x464a9c={'name':_0x4674cf['fileName'],'thumbnail':_0x4674cf['thumbnail'],'extension':_0x4674cf['extension'],'large':_0x4674cf['large'],'fileSize':_0x4674cf['fileSize'],'domain':_0x4674cf['domain'],'widthHeight':_0x4674cf['widthHeight'],'source':_0x4674cf['source'],'medium':_0x4674cf['medium'],'url':_0x4674cf['url']};_0x555276={'status':_0x4570b9(0x65,-0xca,-0x57,-0x92,'rX!k'),'name':_0x4674cf['fileName'],'size':_0x4674cf['fileSize'],'percentage':0x0,'uid':_0x2d678c,'fileInfo':_0x464a9c,'url':this['getShowUrl'](_0x4674cf),'fileName':_0x52bb06,'fileSuffix':_0x3ea987};}return _0x555276;},'changeFile'(_0x1e47aa){var _0x4f60eb=0x0+0x7;function _0x359980(_0x19cc95,_0x1d9253,_0x3e29b3,_0x128ea2,_0x593e88){return _0x376c(_0x593e88-0x359,_0x3e29b3);}let _0x5db2f2=Array['from'](_0x1e47aa['target']['files']);_0x4f60eb=_0x359980(0x49f,0x601,'v#Xb',0x459,0x4c8);this['addFiles'](_0x5db2f2);},'changeFileName'(_0x5fc956){function _0x29871d(_0xc0b028,_0x47900a,_0x5d7527,_0x2302b2,_0x1fccc3){return _0x283a(_0xc0b028- -0x23c,_0x47900a);}function _0x3377f7(_0x159f7a,_0x4f3851,_0x111680,_0x1e2f0a,_0x5c9be9){return _0x283a(_0x4f3851-0x247,_0x111680);}function _0x36dd90(_0x51e36a,_0x146671,_0x3ad961,_0x4cb879,_0x53a18f){return _0x376c(_0x146671-0x260,_0x51e36a);}const _0x2f62d4={'wcuSt':_0x36dd90('rz8P',0x34f,0x3b4,0x379,0x403)};if(_0x5fc956['fileSuffix']){_0x5fc956['name']=(_0x5fc956['fileName']+"\u002e"+_0x5fc956['fileSuffix'])['toString']();}else{if(_0x29871d(-0x7e,0x89,0x5a,-0x16a,0x66)===_0x3377f7(0x524,0x472,0x4f1,0x556,0x59b)){if(!this['talkUserId'])return;this['$baseUpload']['open']({'limit':0xc8,'accept':_0x2f62d4['wcuSt'],'size':(0xb6c78^0xb6c7d)*(0x8a2ee^0x8a6ee)*0x400*0x400,'pickPrivateProfile':!![],'callback':_0x580f11=>{this['saveFileTalk'](_0x580f11);}});}else{_0x5fc956['name']=_0x5fc956['fileName']['toString']();}}},'addFiles'(_0x3df9b8,_0x469038){const _0x38406f={'BZUTw':function(_0x2c76df,_0x759e8a){return _0x2c76df+_0x759e8a;},'efNwE':_0x4848f8(0x432,0x4d4,0x3b8,0x4bf,'GTxe')};function _0x51a3c2(_0xecfe6e,_0x490a5b,_0x2888a1,_0x9cf0bf,_0x5ca571){return _0x376c(_0x490a5b-0x256,_0x2888a1);}function _0x4848f8(_0x1be9ac,_0x2c8888,_0x147ed5,_0x50161a,_0x3ccb1e){return _0x376c(_0x50161a-0x34f,_0x3ccb1e);}if(_0x3df9b8){if(_0x4848f8(0x5aa,0x43f,0x371,0x48f,"1^w@".split("").reverse().join(""))!==_0x38406f['efNwE']){this['handleContent'](_0x526e4c);}else{let _0x2cbe1d=_0x3df9b8['map'](_0x239914=>{var _0x41a8a1=_0x38406f['BZUTw'](0x6,0x2);let _0x2d96de=this['createFileObj'](_0x239914,_0x469038);_0x41a8a1=_0x1a224e(0x1a,-0x69,']ubh',0xb1,0x1db);function _0x1a224e(_0x516b95,_0x5342f1,_0x50d56f,_0x14c162,_0x42c796){return _0x376c(_0x14c162-0xa,_0x50d56f);}return _0x2d96de;});this['files']['push'](..._0x2cbe1d);}}},'sendMsg'(){this['saveTalk']();this['uploadFile']();},'uploadFile'(){function _0x48a5ba(_0x3d6a77,_0xed8dba,_0x831869,_0xc2765e,_0x86b9fc){return _0x376c(_0x86b9fc-0x1e3,_0xc2765e);}function _0x272781(_0x316798,_0x264048,_0x51be4d,_0x5ef602,_0x206e93){return _0x376c(_0x206e93-0x247,_0x316798);}function _0x3d875d(_0x174744,_0x57201d,_0x4e8157,_0x1c3ba3,_0x2878f0){return _0x283a(_0x57201d- -0x2eb,_0x1c3ba3);}const _0x1642ae={'qgwUf':function(_0x56d903,_0x1982ae){return _0x56d903^_0x1982ae;},'DYQfX':_0x3d875d(-0x27d,-0x128,-0x226,-0x9d,-0xf1),'zDfGg':_0x48a5ba(0xa8,0xb3,0x210,"&Bt7".split("").reverse().join(""),0x1f7)};let _0x5763f2=this['files']["\u0066\u0069\u006c\u0074\u0065\u0072"](_0x47209d=>_0x47209d['status']==_0x272781("t&NP".split("").reverse().join(""),0x2f0,0x2fd,0x2fc,0x35a));if(!_0x5763f2['length'])return;_0x5763f2['forEach'](_0x5b7177=>{function _0x556e16(_0x438378,_0x2b08cb,_0x17e76e,_0xdf254d,_0x3082f8){return _0x283a(_0x3082f8- -0x14f,_0x2b08cb);}const _0x558cb8={'kKzVn':_0xfefba7('PN&t',0x142,0xad,0x17d,0x60),'bRYUb':function(_0x2ffbe2,_0x59a5b6){return _0x1642ae['qgwUf'](_0x2ffbe2,_0x59a5b6);},'jAzug':_0x1642ae['DYQfX']};_0x5b7177['status']=_0x1642ae['zDfGg'];function _0x30a25e(_0x100dfe,_0x2e6cd6,_0x1ab880,_0x3bdddf,_0x16d029){return _0x376c(_0x1ab880- -0xe1,_0x16d029);}function _0xfefba7(_0x171a55,_0xe43b2a,_0x12fdd4,_0x2c62e7,_0x4bc644){return _0x376c(_0x4bc644- -0x13f,_0x171a55);}function _0x51a9aa(_0x351d30,_0x5c947f,_0x5de0ed,_0x26b568,_0xeafda8){return _0x376c(_0x26b568-0x15e,_0xeafda8);}function _0x12a74b(_0x237562,_0x4632bb,_0x42b7d9,_0x238e3f,_0x5e4fc7){return _0x283a(_0x238e3f- -0x257,_0x237562);}if(_0x5b7177['raw']){this['$baseUpload']['upload']({'file':_0x5b7177['raw'],'isLoading':!![],'onProgress':(_0xcaed35,_0x446925)=>{function _0x1b1048(_0x3affb6,_0x65dd8b,_0x5e4e01,_0x498986,_0x3e771f){return _0x376c(_0x3e771f- -0x248,_0x3affb6);}let _0x5bb17a=Math['min'](_0xcaed35['percent'],0x63);this['$set'](_0x5b7177,_0x1b1048('tT9^',-0x180,-0xda,-0x25f,-0x115),_0x5bb17a);},'callback':_0x1d4c0a=>{function _0x1fecad(_0x51d3f7,_0x3029ce,_0x250bf7,_0x1fb91d,_0x40f9d7){return _0x376c(_0x250bf7-0xfd,_0x1fb91d);}function _0x34dc6f(_0x557162,_0x4aeef5,_0x23e394,_0x3198ff,_0x4d9d9b){return _0x283a(_0x23e394- -0x326,_0x3198ff);}function _0x3fb364(_0x1ceead,_0x1afdb5,_0x261352,_0x4b9e6e,_0x5a7c20){return _0x283a(_0x1ceead-0x165,_0x4b9e6e);}function _0x4ce9ef(_0x59d342,_0x420a40,_0x1782b2,_0x43175f,_0x26c575){return _0x376c(_0x420a40-0x215,_0x26c575);}function _0x19cf20(_0xca39,_0x1cfd46,_0x5577e7,_0x5bc4e9,_0x5aad78){return _0x283a(_0x5577e7- -0x230,_0x5aad78);}function _0x24f7c8(_0x2ba4c6,_0x3b39fd,_0x100281,_0x1a369d,_0x3d2f4a){return _0x283a(_0x3b39fd- -0xf0,_0x100281);}function _0x1e3f0b(_0x5c4a5b,_0x4a3038,_0x32d662,_0x55c86c,_0x566d05){return _0x376c(_0x55c86c-0xd4,_0x32d662);}if(_0x1fecad(0x84,0x19,0x15a,")Seh".split("").reverse().join(""),0x19e)===_0x34dc6f(-0xa0,-0x15e,-0x11a,-0x8,-0xa3)){this['addFiles'](_0x41fff1,!![]);}else{if(_0x1d4c0a['type']==_0x24f7c8(0x1e,0xd3,0xe0,0x18b,0x16d)){if(_0x4ce9ef(0x16b,0x284,0x1d2,0x137,'Uiq0')!==_0x19cf20(-0x114,0x78,-0x3d,-0x8c,-0xe6)){let _0x2a7a91=_0x1d4c0a['objx'];_0x2a7a91['name']=_0x5b7177['name'];this['saveFileTalk']([_0x2a7a91],()=>{this['$set'](_0x5b7177,_0x558cb8['kKzVn'],0x66034^0x66050);function _0xaec9cd(_0x35a545,_0x3cc50e,_0x22ebb3,_0x261f5a,_0x5bb19a){return _0x376c(_0x261f5a- -0x1e1,_0x5bb19a);}_0x5b7177['status']=_0xaec9cd(-0xb,0x44,-0xc5,0x6d,"\u0068\u0065\u0053\u0029");});}else{this['showPrivateUploadBtn']=![];}}else{_0x5b7177['status']=_0x34dc6f(-0x371,-0x2cb,-0x306,-0x3a0,-0x38c);_0x5b7177['failMsg']=_0x1d4c0a['content'];this['$set'](_0x5b7177,_0x1e3f0b(0x2ac,0x3cd,'8#UZ',0x349,0x299),0x0);}}}});}else{if(_0x556e16(0x74,0x118,0x36,0xcb,0x105)!==_0x556e16(-0x84,-0x174,-0x44,-0x82,-0xec)){this['saveFileTalk']([_0x5b7177['fileInfo']],()=>{function _0x1e1a69(_0x26341f,_0xe9314,_0x34ccd3,_0x348166,_0x381b16){return _0x376c(_0x26341f-0xd4,_0x34ccd3);}this['$set'](_0x5b7177,_0x1e1a69(0x27f,0x3b1,'IT9@',0x34b,0x276),_0x558cb8['bRYUb'](0x71b64,0x71b00));_0x5b7177['status']=_0x558cb8['jAzug'];});}else{this['$http']({'url':_0x1fda33+_0xfefba7('fV4E',-0xc4,-0x213,-0x18e,-0x11e),'method':_0x30a25e(0x66,0x166,0xce,0x18c,'Uiq0'),'data':{},'failMsg':![],'errorMsg':![],'success':_0x356f17=>{this['isCanUserTalk']=_0x356f17['objx']===!![];if(this['isCanUserTalk']){this['initPrivateUploadBt']();this['createTimerHandle']();this['getUserInfo']();}}});}}});},'deleteFile'(_0x53599c){const _0x53dff6={'jhYGD':function(_0x521cfb,_0x2b7c4a){return _0x521cfb^_0x2b7c4a;}};this['files']['splice'](_0x53599c,_0x53dff6['jhYGD'](0x989de,0x989df));},'confirmPrivateProfileDialog'(_0xdfb7a2){this['addFiles'](_0xdfb7a2,!![]);},'getShowUrl'(_0x414c0f,_0x20254b){const _0x66cd72={'ZEEnS':function(_0x2b4baa,_0x525297){return _0x2b4baa===_0x525297;}};function _0x51bf97(_0x26799c,_0x426a04,_0x5469a7,_0xfd7fe3,_0x4e05e2){return _0x283a(_0x5469a7-0x3bf,_0xfd7fe3);}let _0x399ded=null;let _0x87141d=Object['prototype']['toString']['call'](_0x414c0f);function _0x281595(_0x266b02,_0x4bd7c3,_0x2d8711,_0x41a864,_0x22b64e){return _0x376c(_0x2d8711-0x241,_0x22b64e);}function _0x3cf360(_0x356b0d,_0x5c4682,_0xb01fac,_0x8af015,_0x4d992a){return _0x376c(_0x5c4682- -0x235,_0xb01fac);}if(_0x87141d==_0x1e7eaa("DbMP".split("").reverse().join(""),0x36,0xae,0x114,0x1bb)){var _0x2ce847;let _0x41f8a6=_0x20254b?_0x20254b:_0x1e7eaa('1DPt',-0x43,-0xdb,0x68,-0xd);_0x2ce847=0x0+0x2;var _0xe98aaf;let _0x34777b=_0x414c0f['domain']+(_0x414c0f[_0x41f8a6]?_0x414c0f[_0x41f8a6]:_0x414c0f['url']);_0xe98aaf=0x4+0x3;_0x399ded=this['$commonFileUtil']['getShowUrl'](_0x34777b);}else{if(_0x66cd72['ZEEnS'](_0x51bf97(0x3cb,0x53d,0x497,0x584,0x549),_0x1e7eaa("0qiU".split("").reverse().join(""),0x17c,-0x3,0x88,0x12f))){_0x399ded=this['$commonFileUtil']['getShowUrl'](_0x414c0f);}else{try{_0x5a2c35=_0x598b73['parse'](_0x36501b);if(!_0x4d7a86['domain']||!_0x54b489['url']){_0x1ad5de=null;}}catch(_0x52d669){}}}function _0x1e7eaa(_0x35fd0d,_0x2df7cc,_0x315005,_0xdb99ad,_0x225e87){return _0x376c(_0xdb99ad-0x5b,_0x35fd0d);}return _0x399ded;},'initPrivateUploadBt'(){function _0x5e4d83(_0x2a68ab,_0x2ed8c3,_0xd98bff,_0x537584,_0x1137be){return _0x376c(_0x537584-0xac,_0x1137be);}function _0x2375e2(_0x155e09,_0x1118d9,_0x249be5,_0x5472bb,_0x4fbce9){return _0x376c(_0x4fbce9- -0x88,_0x5472bb);}const _0x5c1078={'EZWGm':function(_0x5cc2b1,_0x1bf568){return _0x5cc2b1!==_0x1bf568;},'Dwusf':_0x2375e2(-0x58,-0x13,-0xf6,'5%e5',-0x20),'rCBTc':_0x2375e2(0x26,0xb5,0xfb,'7tB&',0x157),'rJgbS':_0x227067(0x575,0x48a,0x40e,'iH#8',0x3c6)};function _0x227067(_0x46ed0f,_0x68baef,_0x4bafd8,_0x24fdd6,_0x35e3bc){return _0x376c(_0x68baef-0x38e,_0x24fdd6);}function _0x10e0f9(_0x365014,_0xac1b7,_0x1409e8,_0x5493ac,_0x35cf59){return _0x283a(_0x35cf59- -0x1b,_0x365014);}if(settingConfig['privateProfileCode']){if(_0x5c1078['EZWGm'](_0x5c1078['Dwusf'],_0x10e0f9(0x2aa,0x1e1,0x22d,0x217,0x1b5))){var _0x52fbfe=0x3+0x3;let _0x2f1383=_0x1bbf22['objx'];_0x52fbfe=0x3+0x8;this['userInfo']=_0x2f1383;}else{this['$http']({'url':USER_PREFIX+_0x5c1078['rCBTc'],'method':_0x5c1078['rJgbS'],'data':{'stringOne':settingConfig['privateProfileCode']},'failMsg':![],'errorMsg':![],'success':_0x2a9091=>{this['showPrivateUploadBtn']=_0x2a9091['objx']?!![]:![];}});}}else{this["\u0073\u0068\u006f\u0077\u0050\u0072\u0069\u0076\u0061\u0074\u0065\u0055\u0070\u006c\u006f\u0061\u0064\u0042\u0074\u006e"]=![];}},'handleEnterWithCtrl'(_0x5c09c0){_0x5c09c0['stopPropagation']();_0x5c09c0["\u0070\u0072\u0065\u0076\u0065\u006e\u0074\u0044\u0065\u0066\u0061\u0075\u006c\u0074"]();this['sendMsg']();},'openFileNameDialog'(_0x431010,_0x40661d){this['editFileName']=_0x431010['fileName']?.['toString']();this['editFileSuffix']=_0x431010['fileSuffix']?.["gnirtSot".split("").reverse().join("")]();this['editFileIndex']=_0x40661d;this['showFileNameDialog']=!![];},'confirmFileNameDialog'(){function _0x1e7020(_0x492e3e,_0x57ed34,_0xda54b4,_0x356704,_0x2c843f){return _0x283a(_0x2c843f-0x3c6,_0x356704);}const _0x486e3b={'gUocn':function(_0x54cbc4,_0x280c26){return _0x54cbc4^_0x280c26;},'IwCnO':function(_0xd988f1,_0x2858ae){return _0xd988f1+_0x2858ae;}};function _0x50723d(_0x1df34e,_0x3b5a01,_0x3b2e8f,_0x46fb26,_0x5d0f03){return _0x283a(_0x3b2e8f-0x3b8,_0x5d0f03);}function _0x1e10dd(_0xe2b3d4,_0x21a0c5,_0x42b725,_0x8755d4,_0x32607a){return _0x376c(_0x8755d4-0x44,_0xe2b3d4);}if(!this['editFileName']){if(_0x1e10dd('KMx0',0x2f0,0x1c4,0x279,0x1d7)===_0x356595('C]JF',0x52f,0x41c,0x3a6,0x3f0)){this['$message']({'message':_0x144630(-0x7c,-0x2ee,-0x240,-0x1b3,-0x2b6),'type':_0x144630(-0x136,-0x1a7,-0x1f0,-0x21b,-0x206),'showClose':!![],'duration':0xbb8});return;}else{this['$http']({'url':_0x3713a2+_0x144630(-0x37b,-0x27e,-0x114,-0x261,-0x320),'method':_0x2bfaf4(0x4a4,0x416,0x33a,0x371,0x3d4),'data':{'id':_0xe4d1c3['id']},'isLoading':!![],'loadingTarget':_0x391565['body'],'success':_0x5d768b=>{this['talkUsers']['splice'](0x0,_0x486e3b['gUocn'](0x54a3c,0x54a3c),{'id':_0x5d768b['objx'],'toUser':_0x56091a['id'],'nickName':_0x16cc67['nickName'],'mobile':_0x1341e7['mobile'],'readed':![],'talkRecords':[],'content':null});this['$nextTick'](()=>{let _0x1116c5=this['$refs']['userBox']['querySelector'](_0xbc5ee('PN&t',0x32,-0x11d,-0xe1,-0x139)+_0x24725c['id']);function _0xbc5ee(_0x2833cf,_0x14bdaf,_0x21db21,_0x46f335,_0x184381){return _0x376c(_0x21db21- -0x33d,_0x2833cf);}_0x1116c5&&_0x1116c5['scrollIntoView']();this['checkUser'](this['talkUsers'][0x2a87d^0x2a87d]);});}});}}let _0x6f2c31=this['editFileIndex'];function _0x356595(_0x492969,_0x39bc03,_0x563fd6,_0x372c1f,_0x59f3bb){return _0x376c(_0x563fd6-0x2ba,_0x492969);}let _0x511ad6=this['files'][_0x6f2c31];function _0x2bfaf4(_0x14e867,_0xd6b54f,_0x35d073,_0x3934f5,_0x38995c){return _0x283a(_0x3934f5-0xbb,_0x14e867);}_0x511ad6['fileName']=this['editFileName']['toString']();_0x511ad6['name']=_0x486e3b['IwCnO'](_0x511ad6['fileName']+'.',_0x511ad6['fileSuffix'])['toString']();function _0x144630(_0x109f75,_0x1e86a9,_0x409661,_0x12f003,_0x5d8866){return _0x283a(_0x12f003- -0x3df,_0x5d8866);}this['showFileNameDialog']=![];}}};function _0x283a(_0x17b0a2,_0x5b1392){const _0x283a07=_0x5b13();_0x283a=function(_0x29dcee,_0xa06a4b){_0x29dcee=_0x29dcee-0x0;let _0x31cf62=_0x283a07[_0x29dcee];if(_0x283a['BBffAz']===undefined){var _0x396504=function(_0x4733d4){const _0xfa5e62="=/+9876543210ZYXWVUTSRQPONMLKJIHGFEDCBAzyxwvutsrqponmlkjihgfedcba".split("").reverse().join("");let _0x5bf0c0="".split("").reverse().join("");let _0x277a0c='';for(let _0x9ebc73=0x0,_0x144f90,_0x3f2320,_0x1cc0fa=0x0;_0x3f2320=_0x4733d4['charAt'](_0x1cc0fa++);~_0x3f2320&&(_0x144f90=_0x9ebc73%0x4?_0x144f90*0x40+_0x3f2320:_0x3f2320,_0x9ebc73++%0x4)?_0x5bf0c0+=String['fromCharCode'](0xff&_0x144f90>>(-0x2*_0x9ebc73&0x6)):0x0){_0x3f2320=_0xfa5e62['indexOf'](_0x3f2320);}for(let _0x133b6a=0x0,_0x2f8c91=_0x5bf0c0['length'];_0x133b6a<_0x2f8c91;_0x133b6a++){_0x277a0c+='%'+('00'+_0x5bf0c0['charCodeAt'](_0x133b6a)['toString'](0x10))['slice'](-0x2);}return decodeURIComponent(_0x277a0c);};_0x283a['mscewC']=_0x396504;_0x17b0a2=arguments;_0x283a['BBffAz']=!![];}const _0xa6c607=_0x283a07[0x0];const _0x19c875=_0x29dcee+_0xa6c607;const _0x376c0f=_0x17b0a2[_0x19c875];if(!_0x376c0f){_0x31cf62=_0x283a['mscewC'](_0x31cf62);_0x17b0a2[_0x19c875]=_0x31cf62;}else{_0x31cf62=_0x376c0f;}return _0x31cf62;};return _0x283a(_0x17b0a2,_0x5b1392);}function _0x5b13(){const _0x5e868a=['W6/cNmolkmktfuBdR1xcObK','W5JcGftdHSknWQy','AgfUzgXLrxHPDhnszwfK',"qzSrMBHH0ASfgD".split("").reverse().join(""),'W4f8W5jK','WPdcL1/dH8kk','W6hcUJOj','W7RcVSo8W6y',"U9wAZ5wz0Hxz".split("").reverse().join(""),'d8k4WRaHCa','WQOlWPPr','AMHzr0q','tmoBWRBdHSo2','W7FcPmog',"aAZvhC".split("").reverse().join(""),'AxnfEgL0C1jLywq',"CuFJLJRdh7W".split("").reverse().join(""),'W6VcIComimka','sa3cSmkmjCosq8ki',"okSvno8h".split("").reverse().join(""),"qkmUcVat".split("").reverse().join(""),'DgrrAxm','zM9YBwf0','bsJcN8kAxW','DmoNBJtdOq','w8orWO7dTmo8WQq',"0wz0LMl".split("").reverse().join(""),'sSoIW6JdPSoP','rvPxr20','gmk2WPjWdanPW7TLnW','wgvOy0q','WOLoqfuLW7BdIbPbh8ofrG','ArSNW6FcPa','mJz1tNDKrey',"WQcNrClkmOdx7W405W".split("").reverse().join(""),'WOXIW6NdI8ksyrxcIdLgWP7cNq','WOCOWQHxo8kd',"u6WGk8HctRWmHRW".split("").reverse().join(""),"qjIkmNdVMMch5Wbj4WVS4WC0NAzk8he9QWJiOW".split("").reverse().join(""),"8omegvxf0omAfv5W2z5W".split("").reverse().join(""),'W6/cKSoxbSkVfa',"aBSfuzJfgBWvMC".split("").reverse().join(""),"WnbnRWGCOW".split("").reverse().join(""),'DgH1BwjUywLS','zMLSzxm',"4fwB".split("").reverse().join(""),'WRBdOL0','WRLxWRNcLSkwW7NcUv1K',"Kfwzs9MB".split("").reverse().join(""),'WQRdOmkUWQCTW5ilWPBdK3jCWOi','DxnLCKjVEa','Aw5JBhvKzxm','W5dcRZ4bpq','WO5SW7m','x3rPBwu','c8oqWR7dV8oTWOieWRlcUW','WOmkW5a0W5W','nxPIW5JcPa','z2v0rMLSzvn1zMzPEa',"WEQbLIdRvB0PYVdl7W".split("").reverse().join(""),'W41bACoWWQCpneOpnIddJW','W40AnZuC','ywrKrMLSzxm',"aEQj2B".split("").reverse().join(""),'rgD4vMG',"qPWlomPcVPW".split("").reverse().join(""),'A1rUEvO','W7JcJ8ociSk1fxhdQuRcOrJdUCk/WO7cRYddPW',"mbQW+kCyra4WeometT2q8eakcq5W".split("").reverse().join(""),'WOr5nIdcLG','Axndyw5vC2vYvgfSAW','jgH0Dha','CKJdTJOO','D3rJDrddOCoVDSkAogO','WQKtWOf+WOS',"WQW9o8tNomSdNen4K5WiomhskSx".split("").reverse().join(""),'W5hcTSodWOu','DxnLCL8','gSoqsq','w8oRW6ddP8o+kqu','W7hdSJDGxuBdKG',"qxdoSa".split("").reverse().join(""),'5z6N57MK5Roi6yg2','W6ZcLSkpW5LqWOmR','W4ZcU8ohWOnr','sSkMWQKMACofW6jHW5v3AX8','qSoEW6hdTZm','DxjS','W4ZcTmoCWO9yrK3cRL18vCkBmcm',"GUcFRWIk8Ict0oAn5WWoSfeo8IcdRWPavD".split("").reverse().join(""),"\u0057\u0037\u0037\u0063\u0047\u006d\u006b\u0045\u0057\u0036\u0044\u005a\u0057\u0050\u0038\u004e\u0041\u0057\u004f\u0054\u0078\u0038\u006f\u0039\u0071\u0038\u006f\u0067\u0057\u0050\u0079","aVc/6WFHgh".split("").reverse().join(""),'sM9lzhu','W4dcIM/dKSkCWRW',"44WZrWgW9QW2k8d".split("").reverse().join(""),'W6pcKbyalG','zg9TywLU',"aGcJ4WazhScV4W5WQW206W".split("").reverse().join(""),'jdG4DbFdUmouDSkv','kSo2xmksWPe','B0Xwrfi','sxHjsei','W7KuWOf5yfNcN2ddLvRdMH7cPW','BCk1WRVdR8oe','BMfTzq','w8kTWPuHsSoE','WQTiW5hdICk6','W6rmWRtcN8k+WRNcSvfKWR4','napcOG',"AH5W0omPcl7W".split("").reverse().join(""),"aDLnhj".split("").reverse().join(""),"qwyVXgCvv2CHjgj".split("").reverse().join(""),'eeT/W6FcIW',"WyHTMB".split("").reverse().join(""),'WRtcICogl8kQjvBdPvxdQXNdKmkOWOu','aMiRjKpdImkaW6FcVs1MWPldSmoZfW','WRX6hCksjq',"\u0041\u0032\u0076\u0035\u0044\u0032\u0039\u0059\u007a\u0061",'WRDIW5dcGCknWRRdLWZcPCor',"qlJ0Nb".split("").reverse().join(""),'W77cVSoVWRxdUa',"GAI9uzSLMrLrxyLj3y".split("").reverse().join(""),'WO/cNmoiW7vAumo2W6G','WOHkw18vW7RdPXn0dCoA',"WzZ1ezUv2C".split("").reverse().join(""),'W5qmncKbuxPJ','W6VcSmoUW7PaWOmaWPK','qMHTthC','ndi1nJHTtgLRC1y','z2v0vxnLCLbHz2u','W55hqKqt','Dg9W','W7ueWO5G',"KME6Hwz".split("").reverse().join(""),"uMDHn3lYv2CvTgBHr3l".split("").reverse().join(""),'W4nMySoXrW','W6NcUCojWQNdQ2i',"qhANLwziHgDKL2D".split("").reverse().join(""),'WOiJWQjvn8kKzq','W6ZdUZvY','W7BdUZr8xuFdM0neEG','efzgW5hcOG','wMLJsuG','WRFcKmkzW45GWRm','jhjLzNm','C2f2zuzPBgvuywXR','wKn1ve0','mLpdHsy+','smoOW7RdTG','jgnVBw1VBKzPBgvvDgLS','WPhdRgBcGWK','DfjZyuu','zwrPDezPBgvtDwzMAxG',"GRcp3GcJ6WxT1Tcd7W3KQW7O7W".split("").reverse().join(""),'W7VcVCoXW692WO0nWOddR3PWWR9j','t2rSENu','A8k3xCotrIJdOSkdlgbxhmop',"42yVv1z".split("").reverse().join(""),'fmoGFWddPsjUoJNcOYlcVKRdHCkkWR3dR1tdPmkpWPNdNW','ywjZ','b38TmKq','z3jVDxbcEq','y2XPCgjVyxjKrgf0yq','zNjVBq','W4FcJfJdSSku','w8oOW6FdTSo1mYK',"CRWrkSDuoCn".split("").reverse().join(""),'smoIW7VdOCo1mYKSWQ/cVW','qLPvvhC','uwPiDhi','WP5KW6tdVG',"ukCsPmKjfoSD".split("").reverse().join(""),'sgjtv28','y29UDgvUDfjLzG','FWC0W6G','ne0RWRFcRSoWcmoW','C2nYB2XSsw50B1zPzxC','DgfYz2v0',"KgAzfKA".split("").reverse().join(""),'WRTDWQFcKmkWW7JcQvLWWQ8','AKnqsxC','z2v0tgLZDa','WRWuk8kEW7i','x8kTWRmM','yM9KEq','W6JcICoEl8kK','q2D4q1G','s21Zvge','hCk2WR8/vL0ngGG','WOvPW5VdTCokW6q','CMvTB3zLq2XHC3m','ex89mW','cSk7WROXBvOW','zmkRFCohwW','zhvyEeS','W6VcTdiFkG','hCk4WOyNzLW','WPz3ot7cSdpcICkn','DLDgENm','W6RcRmoAWQ7dUW','DNPTBhy','WPKypmkW','j3r6W4tcTIS','C3vJy2vZCW','zxjYB3i','W5lcJfBdHmkQWRSFz8kzWQW','w8orWQS','x8k3WPL8htL0W4PR','ChP3AuK',"m5WC8PW".split("").reverse().join(""),"agPcZ6WS4GB".split("").reverse().join(""),'twVdOXlcLq',"Lk8mMidJc7KQdxRW".split("").reverse().join(""),'ENfUqKG',"WqWD4WDitdeCurGORWZkmd".split("").reverse().join(""),'BgfZDeLUzgv4t2y','r1DID3q','WOS4W7e4W6O','Dg9Wq2HHDejVEej1DhrVBq','W7BdUZr8xuFdM0n+','WP3cNmojW7vH','W6tcVI4F','WOGEiSkS','C3rHDhvZ','mZe5rwPvv0Dr','W4K2WQTrBG','WOuHWPqMi8o8k1vdbCof','B8ktWQJdS8o8WQ8','l3rHBgSVC2f2zq','W6O/WQ8LW5JcQN9xW4/cHxBcV3dcPCkUWQGUWPq','DSofjKmPsCkv','nqK3W6FcPeVdIX/dKmkAW7myemogrCkhpg3dUSoFW4hdGSkAAmoOnq','WOXJaSkdimk8p8o/','zg9LC3i','WOhdOxZcHsu','yLjzvwi','z8olWOpdPCov',"nnRWao8Scl5W".split("").reverse().join(""),'su9PrLu','wCoGCcJdPWnGndddQti',"ufzxzNz".split("").reverse().join(""),'WP4tmCk9W5zvleeqgJRdSa','W78EWPb9EK/cSgBdLW','WO4epCk7W5LsjKS','WQVcQtikkW','g8odsCkrWRvYyuZdM8ok','peSRWQNcKW',"Oxq4T2t".split("").reverse().join(""),"GNch5Wqn4W4O5Wo4vBkkmde9QWJiOW".split("").reverse().join(""),'W57cPmkcW5T8','tCkLWRyYCa','r2jzBfy','W7BcH8kaW5m','ixrdW5lcKdBdUX/cPW',"WPdhZVchZCk5RWWkCm1WYLcl0TdJQW".split("").reverse().join(""),'FqNcJ8k4eW','wGVcRa','DhLWzq','imkQWOddSHVcHSoecmo4W4a','rvr5Ahe',"WdYoSEvn5W8D5W".split("").reverse().join(""),'WQVdSuJcKrKPkSkeWRPlCZdcUIO','W4fYDmoxsaddSmkph1G','W7FcS8oYW6C','jg5LEhruAwnR','WReve8k7W5C','vufuq1C',"Yv2Cv9gD".split("").reverse().join(""),'rxPhC0m','uereDxG','xCkNWQe2sSoi',"WXs28PWhb4WgkmHc36W".split("").reverse().join(""),"+k8b1a2h/kmTdRJtLo8qK94W".split("").reverse().join(""),'BgfYz2u','W6JcJColkSkIfq',"ewvqPus".split("").reverse().join(""),'y1zyreW','imo/owWhdvJdUZNcKSolACot','dxuGiepdHq','i2zPBgu6','WP1JW6ddOCoBW74','W5PEgbZcJIhcPq','WQJdLCotWPKRW5vJtG0hrSoCyW','z0PQuYO',"5zwAN5wAYr3C".split("").reverse().join(""),'txfeyuS',"ln4WYkSOcx7W".split("").reverse().join(""),'W7WpWOH9wL3cTgW','smoIW7VdOCo1mYK','WPSIWRve','W4TMW7tdMSkm','sCkRWQW3','W5ZcUmoaWPrrrhdcKKX1',"\u006f\u0053\u006f\u0037\u006e\u004d\u0057\u0073",'xmk2WQeMwSoF','W6HEWRZcN8kWWQW','fSoYW7RdP8oIaG','C2HVD1bYAxzHDgvvCgXVywrcDg4','vezJEwu','C2v0uMvHzfn0yxrL','W7hdRZT0BuFdJq',"+eMRddNaiyPWgo8ojPQWIoCrpomUc7OWIo8QdJQWtk8m".split("").reverse().join(""),'zMLSzu5HBwu','y2XLyxjuAw1LCKHHBMrSzq','xmkHWRi9q8oaW5PRW6S','W7WXWO4LW5S','dSkXWRJcU8kNBIKJWPNcL38R','B3DkDvi','5PAh5lU25zcn5lIn6io95lI656M6','xgazWQZdLSkaWPJcGrLo','t8oMW4ldNZhdT8kCzmo+','zf7dGt4Vp3BcUaul','Cr8WW6i','WRTrWOtcO8kp','xmoFfNyU','W7JcRmoCWQ3dVq','mtq5mJjtufbTwMm','W5/cU8o2jmkh','ofaMWPJcICoIbmo3W40qoW','Bw9IAwXL','hmkPWQldGsK','W5KCcdxdT8kQWQpcPG','Dg9Wrw5K','zvRdHZCinx/cNd0gW7T1','WP8SWQPBgSkyzNKo','AefvshC','W6JcImofmmk1aKZdRKa',"GMC45Ku".split("").reverse().join(""),'mZy0nJu5nLfTrKnXCa','W6RcKmkiW5HMWP46vWG',"kkmiskSi5z5W".split("").reverse().join(""),'W67cRmoeWRBdI2lcP8oGW6e','kuS9WQ7cG8o0','z2v0vxnLCKLUzM8','yMLPAG','DgfSA1jLy29Yzhm','WOtcLmou','WRuvWP5aWQD2W6VdN8kRxCo4WPZdKG','yNhdOH02',"OQWoLXHcFPWsk8TdpOWBuNs".split("").reverse().join(""),'B2Hlrgu','WPz5eZZcNsxcIa','WPG4WQvtkSkyCa','cmkZWRCxB08BgW','W5X+nmkriq','W4rHW40','W4bAEmo+wG','xqFcRSkggSoxCmkdmSkUWPGZd18','y3v3q3e','EmoipW','W5ackZy','y29UDgvUDa','u2Lxr1y','ewu9lW','W6ZcVSoOW5X8WOmyWRddPeztWR5CdSkRvW','sCkRWQW3xa',"u7WYkSMc7QWpCPWhoCScxfgskmmVCcTcV7W".split("").reverse().join(""),"1oSF0b4W2n4W".split("").reverse().join(""),"8QWHLLRcNRW+k8NctRWmr6W".split("").reverse().join(""),'EqaWW7/cPhRdJdNdMSko',"qlukmTd7qFzoSCLkSD".split("").reverse().join(""),"Nk8i/kCtvo8eDkSScVqt".split("").reverse().join(""),'W41IndNcJM/cN8kEWR/cHG','W47cMSo0WOro',"0gDKjwA".split("").reverse().join(""),'uSogW7pdT8o3','WQTUorpcVa','ueTHA1y','WPVcV8oAWPre',"aGcJKE91OWkK7W".split("").reverse().join(""),'c8owWQ/dS8oP','BgvUz3rO','l3rHBgTsB2XLl3rHBgTsB2XLtgLZDa',"uqhJjPW8k8f".split("").reverse().join(""),'DgfSA1vZzxjZ','ASorW4JdMSoO','WPXgwLuTW77dIrO','WP5aw1ekW7e','dCk4WR41AKa','BwLU','WOVcMSoaW6K','zCompuuIu8k5WPDhjq','DgvTCeLUzgv4','zM9YrwfJAa','zMLUza','pCoTmNOIbN3dUW','FqOQW4FcQgFdJa',"4IGcZJjLnOW".split("").reverse().join(""),'CCkcWQ3dRSo8WRe','twvxuNq','y3Ldr3u','hmo1W6ZdPmoJ','AH03W73cOgddNtVdJCkhW7aUhCory8kjD28','k1TNWRNdS0FdQdVdKSkYW7u','zMLSzuLUzM8','r1pdQX3cPq','BK9KENC','WP1kqMmlW7ddKYPNeG','DxDrs1q','W4TCzCoDEq','pmo/o2m5dxJdUYxcGSoD','tK5UrMm','A0LLy1m','FayYW64','mtG1rw5QwMjJ','WQHkquCH','WORcMConW7v9sSoj','5zYO57Q/5RkF6ycA77Yi','EM/dHWpcSNC','lNvZzxjF','WO0/WQLD','W4dcHeJdHSkCWRO','vxDhy1i','W6VcImoukW','rhD1C2y','vdOMW4dcLW',"qzSLMz".split("").reverse().join(""),'W5v+ySoxtq','C2HVD1vZzxjeAwfSB2C','DgfSA1vZzxi','h8oqtmkmWOf1yw7dOmobx8ohWOtcJSoBjLDf','m8kUWPJdJd3cKmotm8oFW4ldOW',"avAKzuD".split("").reverse().join(""),'otC0nZG3m3LpwwrLBa','ChjVDg90ExbL','W7BdTsHuyfxdINnIzGf0W64dsx8','dmons8koWOvVCa','uw9ftNu','WO0KWQPvhmkEzw0uW4C','WOasWOHwWQC','W7O4WQ4MW7VcRwC',"W54WsutdeCurGORWZkmd".split("").reverse().join(""),'mte3zgzgzw9o','A0T6vM4','DxnLCKLUzM8','W4VcTSocWOTMt2FcR1T3Ca','ACkxWQxdQmoOWRJcKCoktmkO','C2nYB2XSsgvPz2H0','C2nYB2XSvg9W','w8o1W6ZdO8oKobKSWRZcVW','raVcTCkh',"UkSRdN4WcW5WBKPW".split("").reverse().join(""),'WOb5msW',"JTsTdl7W".split("").reverse().join(""),'v1biB3C','Aw5PDfbYAxzHDgvvCgXVywrcDa','Cg9ZDa','W6NcTSoVW4PY','d8k4WPbVoWH+W4zYnCk0','yxnZAwDU','yKvfBum','WPTJp8kdn8k7jq','rhjZzhK','W5HGW6DLD8o9ff9Ae8o2WOe','DgfSA1vZzxjjza',"i0amk8loomNc37W".split("").reverse().join(""),'x8kRWPLIgG','WOHIC8oHuJa','dgKbWRpdRG','WRZcV8o9W6DGWRyfWPhdOa','vSoXEGxdUX0','DSkLBmovtqK','zXpcN8khoq','C3r5Bgu','WOKgW54vW67dSSkL','W74YWRqEW7FcSgC','W67cRmoeWRBdI2lcP8oG','BX8YW6tcOhddKqxdMa','CgfYC2u','ANvSr04','W4SAmspdGCkX',"q3CPX2lYv2CvTgBHr3l".split("").reverse().join(""),'y0Tuquq','WOKbW5evW4NdS8kPWQP2y0m',"00Buj0u".split("").reverse().join(""),"\u0075\u0049\u007a\u0036\u0043\u0071\u006c\u0063\u004c\u006d\u006f\u0035\u0057\u0035\u0074\u0063\u0055\u0047\u0035\u0067\u0057\u0050\u0046\u0064\u004c\u0071",'xCoOW43dGrC','WRxcUCojWRhdTutcSCo3W6aXW58QauFcKCkyW77dQ8ofWO7cQq',"\u006a\u0067\u0031\u004c\u0043\u0033\u006e\u0048\u007a\u0032\u0075","aBPfMz".split("").reverse().join(""),"4omjgigLchqp5TPWMueJdZQWtk8GclHJcNdnI14W".split("").reverse().join(""),'j8kOWP7dTIlcMCo1fCob','x2yNWOZdKq','d8k2WQL3db8','WP9NW6pdOW','W7NcOSogWQNdU3/cTG','WQyuWPv2WRDwW6/dKCkIw8oO','W705WQG3W6C','yNrUrgLZywjSzwq','w8kJWQW5ESoFW6T2W5jY','j8k7WOddSc3cKa','W7hdQJr+A1e','AmkSWO4dra','vvjYEK0','CMvZAxPLlwLUzW','CgvYy2vUDgfNzq','z2v0rMLSzuLJB25szxf1AxjL',"GuiWa6WXz6W8o8Ic3NSdlRWAoSRcN6W".split("").reverse().join(""),'vmoIW6FdPCoKnq','W47cOSolWPjnEwhcReXWD8kDjW','WPOBW4Wj','W6DGW5pcH8kKWRZdMcBcO8oAW7xcHmozs1u','y3jLyxrLvgLTzxjiyw5KBgu','r2DpB3m','W54/WRFdISkAuZJcGH4',"aScBOWQkmQdFJKcdYFmfPWLkSmUOdKcl0QdJQW".split("").reverse().join(""),"WveP9hleo8NdxQW9WNUcRqIdNgl".split("").reverse().join(""),'Aw5PDgvK',"G6WGq7W8iOW".split("").reverse().join(""),'WPLABhvSfsXOmmoLW6ybEq','WPLdx1unW6VdVa','smktWQ8EEW',"N9gBHLgrL1wyovgBPz0DVH2C".split("").reverse().join(""),'cSk2WR/cUSkPBtOPWPdcLKu4','CG4WW6/cRxhdVrpdLSkCW6uvfmovra','DxbSB2fK','zvpdNIuBl3BcIY0oW7zYo8kg','rgPRDMW','w3ezWQ7dQG','BgTIq1e','DMzmv1O',"\u0079\u0032\u0039\u0055\u0044\u0067\u0076\u0055\u0044\u0066\u0072\u0035\u0043\u0067\u0075",'WOWhW5meW6ldVmkWWPS','CKncvgm','BMLJA05HBwu','WPvPnCkEj8k4','g8onCmkjWOvZ','W5r3W4HKxCo4c1LMf8o+WOO','zgndtK8','zMLSzvn1zMzPEa','qSkRWQ4','CMvHzhK','eMqVm0ldNG','5zYO57Q/5RkF6ycA','lgldKHpcPW','W4SAnYtdLSkQWRFcPa','s2TLu1y','WOvNW6ldRCo6W6uQW5K','WQ7dRv/cGH0J','BGtcVCkzDvddIvb0hmoxW7xdVhRcUfOf','WRi7WOnCiW','WQDDWRpcHW','Bfz1Bvi','v01RuNm',"SKBurKB".split("").reverse().join(""),'WPDIpmkyj8kMnmo1WRZcRSkp','sgnIBuO','WOXTi8kqn8kH',"qhANLwzijxzU5wA".split("").reverse().join(""),'AgfUzgXLq29UDgvUDa','z2v0u2HVD1vYBa','lSkaWReJDW','W7hcNSoPWRbM',"WvxzZv3BT52B".split("").reverse().join(""),'CxvLCNLtzwXLy3rVCG','y2fSBa','WPSwcZ3dICkSWRFcHCk9W5PvW7/dSCoasq','wMjnqNG','s8k3WOCuyG','WPvbw18wW6ZdGqPL',"aDMvgB".split("").reverse().join(""),"aUctwSdl5WeDRWck8LcxRWn86WhKYMdl6WJo8A4X7WfoCGcB4W".split("").reverse().join(""),'AxnqAwn0DxjLrMLSzq','WPVcTCopWPnrF3tcRezYzW','WOLNW6ZdI8kp','y8kMBq','aSkrWPRdSa8','mZvbzvD1AMO','veXxxWS','zgLHBg9NvgfIBgvwAxnPyMXL','WQijWPDxWQ0','W5nNW49uCSoIbL5ee8o3','Dg9gAxHLza','WOGLWQntjmk+Cg4p','W6dcUt0u','l3rHBgTvC2vYl2rLBgv0zq','BM93','CMf3','Dvrxrw4','ESkiWRVdGSoOWR/cVW','CfjZruq','oeHnswTHsq','y2Lwvvq','W43cNCoqW6rJ','W6DTW5NcKSk9WOFdNWpcOq','W4v4BSoWrqhdS8kicfi','W43dSsbwCG','C3bSAwnL','WPGsnCkiW78','y2XPzw50wq','D2n1u3q','CgLrufO','xCoJW6ddTSowndeOWPVcR24xqNq','D8o/WRddQ8oA','WOLNW67dIG','zwrPDezPBgvjBMrLEa','WOvPW77dHCohW7C7W6KeWQHBW6xdKctdI8kp','ChjLDMvUDerLzMf1Bhq','kwHeW6FcPG','zxrMuJG','WQbRW5NcICkIWOBdHqxcUa','wSonWR7dTCoqWRGlWR4','uLzLDNu','wKvfBLm','WO9Cu0iQW7hdGHa','WQGfWPvvWQPn','WPKIWQPvdmkez24o','W5XKjCkdiG','oSo7nMWoda','WQ/dRhJcLbK1','WRv1iXhcKa','WOiJWQHvpCk8AM8jW5C','zgvMyxvSDa','BmkvWQZdSCoSWRlcO8oNrCkRWQHDoCoN',"\u0057\u0035\u0033\u0063\u0056\u0053\u006f\u0068\u0057\u004f\u004f",'W6NcPmo9W61TWRejWP7dRL1LWQrA','y2HLy2TvC2vY','tmkUWQuZxCo4W6DPW75KtHTasCkxWOG','rw5pEe8','smkNWRqErSoFW7O','B2/dKIVcVMaN','l1CTWQ7cOSo+hq','zM9JDxm','EhzizLG','WPHaxxmW','FmoTW6ldTmo8','f8kiWPNdRcW','W5aBct/dKCkWWRZcRSk7W4bv','B3bLBG','WPjQW6FdO8obW6ix','nrS/W6FcQKhdIW7dJCohW6uIbCoMrCkhD1NdQ8okW7FdNG','zMLSDgvY',"\u0077\u0043\u006b\u0052\u0046\u006d\u006f\u0079\u0074\u0072\u0037\u0064\u0050\u0043\u006f\u0067\u0065\u0076\u007a\u0043\u0066\u0043\u006f\u0068\u0057\u0034\u0034\u0053",'yu1XC2K',"mOWcomw6omOdV1Du5OWBkSzroSb".split("").reverse().join(""),'B25TB3vZzw1VDMu','W7hcV8oXW6TeWPafWOtdQKP0WP5yfSkRw1NdT8ow','l3vZzxiVy3vYCMvUDfvZzxi','CCkNBmoDrbhdMCkdn1nEba','W5j4u8oWuGBdQCk9','W4j+ySo2yq','s8oHBqq','W48AfYq','WOKsk8kGW6PzBu0Wha','tu1QDve','B8oTkweG','quNdSa3cMG','W4j7W45NtSoIaK5Sh8oYWOpdUJ4','vxjOqM4','rg5lruG','W67cRmoeWRBdJhtcOCo9W6b6W4u','r0fOCg4','WRLuW7BdH8k9','uKjsDMK','zMHIrINdOmoNySkxkwTQmW/cTCofWOzRFqi','u3fqB1q','rwroyKq','CMvHzgvK','WR3dQKhcGI8YomkMWRzv','yCoEW5ddM8k9ebbGWOZcNIG5yZBdMSoEW6vVWQO','B2jqswq','W7hdUY5YtL3dKLrzFY9Q','zLLhsLa','r25ouwS','vCoMW4pdKq','W6O/WQ8LW47cSxPeW6dcKh7cJ0tcOmkGWQuLWRhdVCop','C2f2zvrHBgTvC2vY','EL7dNZu6na','WOGdiCkLW7u','DSkRtCogwHtdV8kb','C2LHvdFdS8oJCq','DfHUy24','Dg9tDhjPBMC','WQ/dQKdcGG4','A2BdJWlcUwCBWOBdN8opiv4','v8odW5ZdUGG','jwfcW5VcPq','mhWZFdr8mxWY','wmoOW4ddGahdQSkn','W6WKWQuGW5FcRxvD','WRBdQKm','WPvnxeG','WP4pW5mkW77dUmk+WPf9D1u','W6/cNmolkmkua0ddSG','DgLTzxi','W4FcGuldU8kA','W77cUmo0W7O','W4j4BCoLsqe','WQmfWO9+WRDwW7O','wCkgWOZdSSol','WPdcJu7dLCkj','q3nXquy','t8oOW73dGbBdRCkxCq','rKrPy0C','W6KUisud'];_0x5b13=function(){return _0x5e868a;};return _0x5b13();}
|
|
8
|
+
tmixins = {
|
|
9
|
+
data() {
|
|
10
|
+
return {
|
|
11
|
+
isFullscreen: false,
|
|
12
|
+
dialogTableVisible: false,
|
|
13
|
+
userInfo: null,
|
|
14
|
+
content: null,
|
|
15
|
+
userContentMap: {},
|
|
16
|
+
showUserDialog: false,
|
|
17
|
+
talkUserId: null,
|
|
18
|
+
inited: false,
|
|
19
|
+
timer0: null,
|
|
20
|
+
timer: null,
|
|
21
|
+
talkUsers: [],
|
|
22
|
+
keyword: null,
|
|
23
|
+
unread: false,
|
|
24
|
+
isExitsRead: false,
|
|
25
|
+
btnDisabled: false,
|
|
26
|
+
isCanUserTalk: false,
|
|
27
|
+
roleCodes: [],
|
|
28
|
+
|
|
29
|
+
files: [],
|
|
30
|
+
tempIndex: 1,
|
|
31
|
+
showPrivateUploadBtn: false,
|
|
32
|
+
showPrivateProfileDialog: false,
|
|
33
|
+
editFileIndex: -1,
|
|
34
|
+
showFileNameDialog: false,
|
|
35
|
+
editFileName: null,
|
|
36
|
+
editFileSuffix: null,
|
|
37
|
+
|
|
38
|
+
showHistoryDialog: false,
|
|
39
|
+
historyType: null,
|
|
40
|
+
topHistoryEnd: false,
|
|
41
|
+
talkHRecords: [],
|
|
42
|
+
historyKeyword: null,
|
|
43
|
+
fileTab: 'list'
|
|
44
|
+
};
|
|
45
|
+
},
|
|
46
|
+
mounted() {
|
|
47
|
+
this.initCanUserTalk();
|
|
48
|
+
},
|
|
49
|
+
computed: {
|
|
50
|
+
title() {
|
|
51
|
+
if (this.talkUserId) {
|
|
52
|
+
let nickName = this.talkUser.nickName;
|
|
53
|
+
return `在线沟通(${nickName})`
|
|
54
|
+
} else {
|
|
55
|
+
return `在线沟通`
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
talkUserDatas() {
|
|
59
|
+
let keyword = this.keyword;
|
|
60
|
+
let unread = this.unread;
|
|
61
|
+
return this.talkUsers.filter(talkUser => {
|
|
62
|
+
let flag1 = keyword ? talkUser.nickName.includes(keyword) : true;
|
|
63
|
+
let flag2 = unread ? talkUser.readed == 1 : true;
|
|
64
|
+
return flag1 && flag2;
|
|
65
|
+
})
|
|
66
|
+
},
|
|
67
|
+
talkUser() {
|
|
68
|
+
let talkUserId = this.talkUserId;
|
|
69
|
+
if (talkUserId) {
|
|
70
|
+
return this.talkUsers.find(user => user.toUser === talkUserId) || {}
|
|
71
|
+
} else {
|
|
72
|
+
return {};
|
|
73
|
+
}
|
|
74
|
+
},
|
|
75
|
+
records() {
|
|
76
|
+
let talkUser = this.talkUser;
|
|
77
|
+
let talkRecords = talkUser && talkUser.toUser && talkUser.talkRecords ? talkUser.talkRecords : [];
|
|
78
|
+
let dataMap = xeUtils.groupBy(talkRecords, '_time');
|
|
79
|
+
let datas = [];
|
|
80
|
+
Object.keys(dataMap).forEach(key => {
|
|
81
|
+
datas.push({
|
|
82
|
+
time: key,
|
|
83
|
+
datas: dataMap[key]
|
|
84
|
+
})
|
|
85
|
+
})
|
|
86
|
+
return datas;
|
|
87
|
+
},
|
|
88
|
+
hasFile() {
|
|
89
|
+
let files = this.files.filter(file => file.status !== "success");
|
|
90
|
+
return files.length > 0;
|
|
91
|
+
}
|
|
92
|
+
},
|
|
93
|
+
beforeDestroy() {
|
|
94
|
+
this.clearTimerHandle();
|
|
95
|
+
},
|
|
96
|
+
methods: {
|
|
97
|
+
bindMove(e) {
|
|
98
|
+
let that = this;
|
|
99
|
+
that.btnDisabled = false;
|
|
100
|
+
let x = e.target;
|
|
101
|
+
let H = document;
|
|
102
|
+
let sh = window.innerHeight - 100;
|
|
103
|
+
let sw = window.innerWidth - 100;
|
|
104
|
+
let styleObj = getComputedStyle(x)
|
|
105
|
+
let left0 = Number(styleObj.left.replaceAll('px', ''));
|
|
106
|
+
let top0 = Number(styleObj.top.replaceAll('px', ''));
|
|
107
|
+
let y0 = e.clientY;
|
|
108
|
+
let x0 = e.clientX;
|
|
109
|
+
indexUtil.addClass(document.body, "resize-ing");
|
|
110
|
+
H.onmousemove = function (u) {
|
|
111
|
+
u.preventDefault();
|
|
112
|
+
let a = top0 + (u.clientY - y0);
|
|
113
|
+
let b = left0 + (u.clientX - x0);
|
|
114
|
+
|
|
115
|
+
let diff = Math.abs(u.clientY - y0) + Math.abs(u.clientX - x0);//移动偏差
|
|
116
|
+
that.btnDisabled = diff > 2;//移动偏差大于2,禁用按钮点开事件
|
|
117
|
+
|
|
118
|
+
x.style.top = Math.min(Math.max((a), 0), sh) + 'px'
|
|
119
|
+
x.style.left = Math.min(Math.max((b), 0), sw) + 'px'
|
|
120
|
+
};
|
|
121
|
+
|
|
122
|
+
H.onmouseup = function (u) {
|
|
123
|
+
indexUtil.removeClass(document.body, "resize-ing");
|
|
124
|
+
H.onmousemove = null;
|
|
125
|
+
H.onmouseup = null;
|
|
126
|
+
if (that.btnDisabled) {
|
|
127
|
+
setTimeout(() => {
|
|
128
|
+
that.btnDisabled = false;
|
|
129
|
+
}, 200)
|
|
130
|
+
}
|
|
131
|
+
};
|
|
132
|
+
|
|
133
|
+
},
|
|
134
|
+
getUserItemClass(row) {
|
|
135
|
+
let arr = [];
|
|
136
|
+
if (row.toUser == this.talkUserId) {
|
|
137
|
+
arr.push('on');
|
|
138
|
+
}
|
|
139
|
+
if (row.readed == 1) {
|
|
140
|
+
arr.push('noRead');
|
|
141
|
+
}
|
|
142
|
+
arr.push('user_' + row.toUser);
|
|
143
|
+
return arr.join(" ");
|
|
144
|
+
},
|
|
145
|
+
handleScroll1(event) {
|
|
146
|
+
let scrollTop = event.target.scrollTop;
|
|
147
|
+
let scrollHeight = event.target.scrollHeight;
|
|
148
|
+
let clientHeight = event.target.clientHeight;
|
|
149
|
+
let isTop = scrollTop <= 0;
|
|
150
|
+
let isButtom = scrollTop + clientHeight >= scrollHeight;
|
|
151
|
+
if (isTop) {
|
|
152
|
+
//上拉,查上一页的记录
|
|
153
|
+
let firstDom = event.target.querySelector('.item');
|
|
154
|
+
this.getList(1, () => {
|
|
155
|
+
firstDom && firstDom.scrollIntoView();
|
|
156
|
+
});
|
|
157
|
+
}
|
|
158
|
+
},
|
|
159
|
+
addFile() {
|
|
160
|
+
if (!this.talkUserId) return
|
|
161
|
+
this.$baseUpload.open({
|
|
162
|
+
limit: 200,
|
|
163
|
+
accept: "file",
|
|
164
|
+
size: 5 * 1024 * 1024 * 1024,
|
|
165
|
+
pickPrivateProfile: true,
|
|
166
|
+
callback: (rows) => {
|
|
167
|
+
this.saveFileTalk(rows);
|
|
168
|
+
},
|
|
169
|
+
});
|
|
170
|
+
},
|
|
171
|
+
confirmInserUser(rows) {
|
|
172
|
+
if (rows.length) {
|
|
173
|
+
let row = rows[0];
|
|
174
|
+
this.saveTalkUser(row);
|
|
175
|
+
}
|
|
176
|
+
},
|
|
177
|
+
deleteTalkUser(row, index) {
|
|
178
|
+
this.$http({
|
|
179
|
+
url: USER_PREFIX + `/talkUser/delete`,
|
|
180
|
+
method: `post`,
|
|
181
|
+
data: {id: row.toUser},
|
|
182
|
+
isLoading: true,
|
|
183
|
+
loadingTarget: document.body,
|
|
184
|
+
success: res => {
|
|
185
|
+
if (row.toUser == this.talkUser.toUser) {
|
|
186
|
+
this.talkUserId = null
|
|
187
|
+
}
|
|
188
|
+
this.talkUsers.splice(index, 1)
|
|
189
|
+
}
|
|
190
|
+
});
|
|
191
|
+
},
|
|
192
|
+
openDialog() {
|
|
193
|
+
if (this.btnDisabled) return;
|
|
194
|
+
this.dialogTableVisible = true;
|
|
195
|
+
setTimeout(() => {
|
|
196
|
+
treeScolly({target: this.$refs.talkDialog, type: 'default', rate: true, nextMin: 250});
|
|
197
|
+
}, 200)
|
|
198
|
+
this.talkHandle()
|
|
199
|
+
},
|
|
200
|
+
handleClose() {
|
|
201
|
+
this.isFullscreen = false;
|
|
202
|
+
},
|
|
203
|
+
getUserInfo() {
|
|
204
|
+
this.$http({
|
|
205
|
+
url: USER_PREFIX + '/user/currentUser',
|
|
206
|
+
method: 'post',
|
|
207
|
+
success: res => {
|
|
208
|
+
let userInfo = res.objx;
|
|
209
|
+
this.userInfo = userInfo;
|
|
210
|
+
}
|
|
211
|
+
});
|
|
212
|
+
},
|
|
213
|
+
saveFileTalk(rows, callback) {
|
|
214
|
+
let talkUser = this.talkUser;
|
|
215
|
+
if (!this.talkUserId || rows.length == 0) return
|
|
216
|
+
let userInfo = this.userInfo;
|
|
217
|
+
let size = rows.length;
|
|
218
|
+
let num = 0;
|
|
219
|
+
rows.forEach(row => {
|
|
220
|
+
let content = "#file:" + JSON.stringify(row);
|
|
221
|
+
this.$http({
|
|
222
|
+
url: USER_PREFIX + `/talk/save`,
|
|
223
|
+
method: `post`,
|
|
224
|
+
data: {
|
|
225
|
+
toUser: talkUser.toUser,
|
|
226
|
+
content: content
|
|
227
|
+
},
|
|
228
|
+
isLoading: true,
|
|
229
|
+
loadingTarget: document.body,
|
|
230
|
+
callback: res => {
|
|
231
|
+
num++;
|
|
232
|
+
if (num >= size) {
|
|
233
|
+
this.getList(0, () => {
|
|
234
|
+
this.$nextTick(() => {
|
|
235
|
+
this.topChatBoxButtom();
|
|
236
|
+
this.$refs.contentRef.focus();
|
|
237
|
+
})
|
|
238
|
+
});
|
|
239
|
+
callback && callback();
|
|
240
|
+
}
|
|
241
|
+
}
|
|
242
|
+
});
|
|
243
|
+
})
|
|
244
|
+
|
|
245
|
+
|
|
246
|
+
},
|
|
247
|
+
saveTalk(formData) {
|
|
248
|
+
let talkUser = this.talkUser;
|
|
249
|
+
|
|
250
|
+
let userInfo = this.userInfo;
|
|
251
|
+
let reqDaqta = {
|
|
252
|
+
toUser: talkUser.toUser,
|
|
253
|
+
content: talkUser.content,
|
|
254
|
+
...formData
|
|
255
|
+
}
|
|
256
|
+
if (!this.talkUserId || !reqDaqta.content) return
|
|
257
|
+
this.$http({
|
|
258
|
+
url: USER_PREFIX + `/talk/save`,
|
|
259
|
+
method: `post`,
|
|
260
|
+
data: reqDaqta,
|
|
261
|
+
isLoading: true,
|
|
262
|
+
loadingTarget: document.body,
|
|
263
|
+
success: res => {
|
|
264
|
+
let row = res.objx || {};
|
|
265
|
+
talkUser.content = null;
|
|
266
|
+
this.getList(0, () => {
|
|
267
|
+
this.$nextTick(() => {
|
|
268
|
+
this.topChatBoxButtom();
|
|
269
|
+
this.$refs.contentRef.focus();
|
|
270
|
+
})
|
|
271
|
+
})
|
|
272
|
+
}
|
|
273
|
+
});
|
|
274
|
+
},
|
|
275
|
+
getUserPage(flag) {
|
|
276
|
+
if (!this.dialogTableVisible) return
|
|
277
|
+
if (!this.inited) {
|
|
278
|
+
flag = null;
|
|
279
|
+
this.inited = true;
|
|
280
|
+
}
|
|
281
|
+
let time = flag === 1 ? moment().format('YYYY-MM-DD HH:mm:ss') : null;
|
|
282
|
+
this.$http({
|
|
283
|
+
url: USER_PREFIX + `/talkUser/list`,
|
|
284
|
+
method: `post`,
|
|
285
|
+
data: {operateTime: time},
|
|
286
|
+
modal: false,
|
|
287
|
+
success: res => {
|
|
288
|
+
let records = res.objx || [];
|
|
289
|
+
records.forEach(record => {
|
|
290
|
+
Object.assign(record, {
|
|
291
|
+
talkRecords: [],
|
|
292
|
+
content: null
|
|
293
|
+
})
|
|
294
|
+
});
|
|
295
|
+
let ids = records.map(record => record.id);
|
|
296
|
+
if (flag == 1) {
|
|
297
|
+
let users = [];
|
|
298
|
+
this.talkUsers.forEach(talkUser => {
|
|
299
|
+
let item = records.find(record => record.toUser == talkUser.toUser)
|
|
300
|
+
if (item) {
|
|
301
|
+
talkUser.readed = item.readed;
|
|
302
|
+
Object.assign(item, talkUser)
|
|
303
|
+
} else {
|
|
304
|
+
users.push(talkUser);
|
|
305
|
+
}
|
|
306
|
+
});
|
|
307
|
+
records.push(...users);
|
|
308
|
+
}
|
|
309
|
+
this.talkUsers = records;
|
|
310
|
+
}
|
|
311
|
+
});
|
|
312
|
+
},
|
|
313
|
+
saveTalkUser(row) {
|
|
314
|
+
let item = this.talkUsers.find(talkUser => talkUser.toUser == row.id);
|
|
315
|
+
if (!item) {
|
|
316
|
+
this.$http({
|
|
317
|
+
url: USER_PREFIX + `/talkUser/save`,
|
|
318
|
+
method: `post`,
|
|
319
|
+
data: {id: row.id},
|
|
320
|
+
isLoading: true,
|
|
321
|
+
loadingTarget: document.body,
|
|
322
|
+
success: res => {
|
|
323
|
+
this.talkUsers.splice(0, 0, {
|
|
324
|
+
id: res.objx,
|
|
325
|
+
toUser: row.id,
|
|
326
|
+
nickName: row.nickName,
|
|
327
|
+
mobile: row.mobile,
|
|
328
|
+
readed: false,
|
|
329
|
+
talkRecords: [],
|
|
330
|
+
content: null
|
|
331
|
+
});
|
|
332
|
+
this.$nextTick(() => {
|
|
333
|
+
let dom = this.$refs.userBox.querySelector('.user_' + row.id);
|
|
334
|
+
dom && dom.scrollIntoView();
|
|
335
|
+
this.checkUser(this.talkUsers[0]);
|
|
336
|
+
})
|
|
337
|
+
}
|
|
338
|
+
});
|
|
339
|
+
} else {
|
|
340
|
+
let dom = this.$refs.userBox.querySelector('.user_' + item.toUser);
|
|
341
|
+
dom && dom.scrollIntoView();
|
|
342
|
+
this.checkUser(item);
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
},
|
|
346
|
+
checkUser(row) {
|
|
347
|
+
this.talkUserId = row.toUser;
|
|
348
|
+
this.setReadState(row);
|
|
349
|
+
this.getList(0, () => {
|
|
350
|
+
this.$nextTick(() => {
|
|
351
|
+
this.topChatBoxButtom();
|
|
352
|
+
this.$refs.contentRef.focus();
|
|
353
|
+
})
|
|
354
|
+
});
|
|
355
|
+
},
|
|
356
|
+
getLastRecordId(direction) {
|
|
357
|
+
direction = direction || 0;
|
|
358
|
+
let lastTalkRecordId = null;
|
|
359
|
+
let talkUser = this.talkUser;
|
|
360
|
+
if (talkUser.talkRecords.length) {
|
|
361
|
+
if (direction == 0) {
|
|
362
|
+
//下拉,获取最后一条记录的ID
|
|
363
|
+
lastTalkRecordId = talkUser.talkRecords [talkUser.talkRecords.length - 1].id;
|
|
364
|
+
} else {
|
|
365
|
+
//上拉,获取第一条记录的ID
|
|
366
|
+
lastTalkRecordId = talkUser.talkRecords [0].id;
|
|
367
|
+
}
|
|
368
|
+
}
|
|
369
|
+
return lastTalkRecordId;
|
|
370
|
+
},
|
|
371
|
+
getList(direction, callback) {
|
|
372
|
+
if (!this.dialogTableVisible) return
|
|
373
|
+
if (!this.talkUserId) return
|
|
374
|
+
let talkUser = this.talkUser;
|
|
375
|
+
if (direction == 1 && talkUser.topEnd) {
|
|
376
|
+
////上拉,且没有记录
|
|
377
|
+
return;
|
|
378
|
+
}
|
|
379
|
+
let lastId = this.getLastRecordId(direction);
|
|
380
|
+
direction = direction || 0;
|
|
381
|
+
this.$http({
|
|
382
|
+
url: USER_PREFIX + `/talk/list`,
|
|
383
|
+
method: `post`,
|
|
384
|
+
data: {
|
|
385
|
+
toUser: this.talkUserId,
|
|
386
|
+
lastId: lastId,
|
|
387
|
+
direction: direction
|
|
388
|
+
},
|
|
389
|
+
modal: false,
|
|
390
|
+
success: res => {
|
|
391
|
+
let rows = res.objx || [];
|
|
392
|
+
if (rows.length) {
|
|
393
|
+
rows.forEach(row => {
|
|
394
|
+
this.handleContent(row);
|
|
395
|
+
})
|
|
396
|
+
let items = rows;
|
|
397
|
+
if (talkUser.talkRecords.length) {
|
|
398
|
+
let ids = talkUser.talkRecords.map(item => item.id);
|
|
399
|
+
items = rows.filter(item => !ids.includes(item.id));
|
|
400
|
+
}
|
|
401
|
+
if (direction == 0) {
|
|
402
|
+
talkUser.talkRecords.push(...items);
|
|
403
|
+
} else {
|
|
404
|
+
talkUser.talkRecords.splice(0, 0, ...items);
|
|
405
|
+
}
|
|
406
|
+
}
|
|
407
|
+
if (direction == 1 && rows.length == 0) {
|
|
408
|
+
//上拉,且没有记录
|
|
409
|
+
talkUser.topEnd = true;
|
|
410
|
+
}
|
|
411
|
+
callback && callback();
|
|
412
|
+
}
|
|
413
|
+
});
|
|
414
|
+
},
|
|
415
|
+
handleContent(row) {
|
|
416
|
+
//处理消息的发送时间(精确到分钟),用于分组
|
|
417
|
+
row._time = row.createDate.substring(0, 16)
|
|
418
|
+
//处理文本是否文件
|
|
419
|
+
let contentType = 0;
|
|
420
|
+
let file = null;
|
|
421
|
+
let answers = [];
|
|
422
|
+
let cotnent = row.content;
|
|
423
|
+
let str = "#file:";
|
|
424
|
+
let str2 = "#answer:";
|
|
425
|
+
if (cotnent) {
|
|
426
|
+
if (cotnent.indexOf(str) == 0) {
|
|
427
|
+
let jsonStr = cotnent.slice(str.length)
|
|
428
|
+
if (jsonStr) {
|
|
429
|
+
try {
|
|
430
|
+
file = JSON.parse(jsonStr);
|
|
431
|
+
if (!file.domain || !file.url) {
|
|
432
|
+
file = null;
|
|
433
|
+
}
|
|
434
|
+
} catch (e) {
|
|
435
|
+
console.error(e);
|
|
436
|
+
}
|
|
437
|
+
}
|
|
438
|
+
contentType = 1;
|
|
439
|
+
} else if (cotnent.startsWith(str2)) {
|
|
440
|
+
let jsonStr = cotnent.slice(str2.length)
|
|
441
|
+
if (jsonStr) {
|
|
442
|
+
try {
|
|
443
|
+
answers = JSON.parse(jsonStr) || [];
|
|
444
|
+
} catch (e) {
|
|
445
|
+
console.error(e);
|
|
446
|
+
}
|
|
447
|
+
}
|
|
448
|
+
contentType = 2;
|
|
449
|
+
}
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
row.contentType = contentType;
|
|
453
|
+
row.file = file;
|
|
454
|
+
row.answers = answers;
|
|
455
|
+
},
|
|
456
|
+
createTimerHandle() {
|
|
457
|
+
this.clearTimerHandle();
|
|
458
|
+
this.handleExitsRead();
|
|
459
|
+
this.talkHandle();
|
|
460
|
+
this.timer = setInterval(() => {
|
|
461
|
+
this.handleExitsRead();
|
|
462
|
+
this.talkHandle();
|
|
463
|
+
}, 10000)
|
|
464
|
+
},
|
|
465
|
+
talkHandle() {
|
|
466
|
+
this.getUserPage(1);
|
|
467
|
+
this.getList(0);
|
|
468
|
+
},
|
|
469
|
+
clearTimerHandle() {
|
|
470
|
+
if (this.timer) {
|
|
471
|
+
clearInterval(this.timer)
|
|
472
|
+
this.timer = null;
|
|
473
|
+
}
|
|
474
|
+
},
|
|
475
|
+
setReadState(row) {
|
|
476
|
+
this.$http({
|
|
477
|
+
url: USER_PREFIX + `/talkUser/setReadState`,
|
|
478
|
+
method: `post`,
|
|
479
|
+
data: {id: row.toUser},
|
|
480
|
+
success: res => {
|
|
481
|
+
row.readed = 0;
|
|
482
|
+
}
|
|
483
|
+
});
|
|
484
|
+
},
|
|
485
|
+
handleExitsRead() {
|
|
486
|
+
this.$http({
|
|
487
|
+
url: USER_PREFIX + `/talkUser/isExitsRead`,
|
|
488
|
+
method: `post`,
|
|
489
|
+
data: {},
|
|
490
|
+
modal: false,
|
|
491
|
+
success: res => {
|
|
492
|
+
this.isExitsRead = res.objx === 1;
|
|
493
|
+
}
|
|
494
|
+
});
|
|
495
|
+
},
|
|
496
|
+
topChatBoxButtom() {
|
|
497
|
+
let dom = this.$refs.chatBox
|
|
498
|
+
let scrollTop = dom.scrollTop;
|
|
499
|
+
let scrollHeight = dom.scrollHeight;
|
|
500
|
+
let clientHeight = dom.clientHeight;
|
|
501
|
+
dom.scrollTop = scrollHeight - clientHeight
|
|
502
|
+
},
|
|
503
|
+
initCanUserTalk() {
|
|
504
|
+
this.$http({
|
|
505
|
+
url: USER_PREFIX + `/talkRole/canUserTalk`,
|
|
506
|
+
method: `post`,
|
|
507
|
+
data: {},
|
|
508
|
+
failMsg: false,
|
|
509
|
+
errorMsg: false,
|
|
510
|
+
success: res => {
|
|
511
|
+
this.isCanUserTalk = res.objx === true;
|
|
512
|
+
if (this.isCanUserTalk) {
|
|
513
|
+
this.initPrivateUploadBt();
|
|
514
|
+
this.createTimerHandle();
|
|
515
|
+
this.getUserInfo();
|
|
516
|
+
}
|
|
517
|
+
}
|
|
518
|
+
});
|
|
519
|
+
},
|
|
520
|
+
openUserDialog() {
|
|
521
|
+
this.$http({
|
|
522
|
+
url: USER_PREFIX + `/talkRole/talkRoleList`,
|
|
523
|
+
method: `post`,
|
|
524
|
+
data: {},
|
|
525
|
+
isLoading: true,
|
|
526
|
+
loadingTarget: document.body,
|
|
527
|
+
success: res => {
|
|
528
|
+
let roleCodes = res.objx || [];
|
|
529
|
+
this.roleCodes = roleCodes;
|
|
530
|
+
this.showUserDialog = true;
|
|
531
|
+
}
|
|
532
|
+
});
|
|
533
|
+
},
|
|
534
|
+
//file begin
|
|
535
|
+
formatFileSize(fileSize) {
|
|
536
|
+
fileSize = fileSize || 0;
|
|
537
|
+
if (fileSize < 1024) {
|
|
538
|
+
return fileSize + 'B';
|
|
539
|
+
} else if (fileSize < (1024 * 1024)) {
|
|
540
|
+
var temp = fileSize / 1024;
|
|
541
|
+
temp = temp.toFixed(2);
|
|
542
|
+
return temp + 'KB';
|
|
543
|
+
} else if (fileSize < (1024 * 1024 * 1024)) {
|
|
544
|
+
var temp = fileSize / (1024 * 1024);
|
|
545
|
+
temp = temp.toFixed(2);
|
|
546
|
+
return temp + 'MB';
|
|
547
|
+
} else {
|
|
548
|
+
var temp = fileSize / (1024 * 1024 * 1024);
|
|
549
|
+
temp = temp.toFixed(2);
|
|
550
|
+
return temp + 'GB';
|
|
551
|
+
}
|
|
552
|
+
},
|
|
553
|
+
getShowImage(file, fileName) {
|
|
554
|
+
fileName = fileName || file.name;
|
|
555
|
+
if (this.$commonFileUtil.isPictureFile(fileName)) {
|
|
556
|
+
return file.showUrl || file.url;
|
|
557
|
+
} else {
|
|
558
|
+
return this.$commonFileUtil.getFileIconRequire(fileName);
|
|
559
|
+
}
|
|
560
|
+
},
|
|
561
|
+
pasteMessage(event) {
|
|
562
|
+
const clipboardData = event.clipboardData || window.clipboardData;
|
|
563
|
+
const rawFiles = Array.from(clipboardData.files);
|
|
564
|
+
if (rawFiles.length) {
|
|
565
|
+
event.preventDefault();
|
|
566
|
+
this.addFiles(rawFiles);
|
|
567
|
+
}
|
|
568
|
+
},
|
|
569
|
+
createFileObj(rawFile, isPrimitive) {
|
|
570
|
+
let uid = Date.now() + this.tempIndex++;
|
|
571
|
+
let name = isPrimitive ? rawFile.fileName : rawFile.name;
|
|
572
|
+
let index = name.lastIndexOf(".");
|
|
573
|
+
let getFileSuffix = this.$commonFileUtil.getFileSuffix;
|
|
574
|
+
let fileSuffix = isPrimitive ? rawFile.extension : getFileSuffix(name);
|
|
575
|
+
let fileName = index >= 0 ? name.substring(0, index).toString() : name.toString();
|
|
576
|
+
let file = null;
|
|
577
|
+
if (!isPrimitive) {
|
|
578
|
+
file = {
|
|
579
|
+
status: 'ready',
|
|
580
|
+
name: rawFile.name,
|
|
581
|
+
size: rawFile.size,
|
|
582
|
+
percentage: 0,
|
|
583
|
+
uid: uid,
|
|
584
|
+
raw: rawFile,
|
|
585
|
+
url: URL.createObjectURL(rawFile),
|
|
586
|
+
fileName: fileName,
|
|
587
|
+
fileSuffix: fileSuffix
|
|
588
|
+
};
|
|
589
|
+
} else {
|
|
590
|
+
let fileInfo = {
|
|
591
|
+
name: rawFile.fileName,
|
|
592
|
+
thumbnail: rawFile.thumbnail,
|
|
593
|
+
extension: rawFile.extension,
|
|
594
|
+
large: rawFile.large,
|
|
595
|
+
fileSize: rawFile.fileSize,
|
|
596
|
+
domain: rawFile.domain,
|
|
597
|
+
widthHeight: rawFile.widthHeight,
|
|
598
|
+
source: rawFile.source,
|
|
599
|
+
medium: rawFile.medium,
|
|
600
|
+
url: rawFile.url
|
|
601
|
+
};
|
|
602
|
+
file = {
|
|
603
|
+
status: 'ready',
|
|
604
|
+
name: rawFile.fileName,
|
|
605
|
+
size: rawFile.fileSize,
|
|
606
|
+
percentage: 0,
|
|
607
|
+
uid: uid,
|
|
608
|
+
// raw: rawFile,
|
|
609
|
+
fileInfo: fileInfo,
|
|
610
|
+
url: this.getShowUrl(rawFile),
|
|
611
|
+
fileName: fileName,
|
|
612
|
+
fileSuffix: fileSuffix
|
|
613
|
+
};
|
|
614
|
+
}
|
|
615
|
+
return file;
|
|
616
|
+
},
|
|
617
|
+
changeFile(e) {
|
|
618
|
+
let rawFiles = Array.from(e.target.files);
|
|
619
|
+
this.addFiles(rawFiles);
|
|
620
|
+
},
|
|
621
|
+
changeFileName(file) {
|
|
622
|
+
if (file.fileSuffix) {
|
|
623
|
+
file.name = (file.fileName + "." + file.fileSuffix).toString();
|
|
624
|
+
} else {
|
|
625
|
+
file.name = file.fileName.toString();
|
|
626
|
+
}
|
|
627
|
+
},
|
|
628
|
+
addFiles(rawFiles, isPrimitive) {
|
|
629
|
+
if (rawFiles) {
|
|
630
|
+
let files = rawFiles.map(rawFile => {
|
|
631
|
+
let file = this.createFileObj(rawFile, isPrimitive);
|
|
632
|
+
return file;
|
|
633
|
+
});
|
|
634
|
+
this.files.push(...files);
|
|
635
|
+
}
|
|
636
|
+
},
|
|
637
|
+
sendMsg() {
|
|
638
|
+
this.saveTalk();
|
|
639
|
+
this.uploadFile();
|
|
640
|
+
},
|
|
641
|
+
uploadFile() {
|
|
642
|
+
let files = this.files.filter(file => file.status == "ready");
|
|
643
|
+
if (!files.length) return
|
|
644
|
+
files.forEach(file => {
|
|
645
|
+
file.status = "uploading";
|
|
646
|
+
if (file.raw) {
|
|
647
|
+
this.$baseUpload.upload({
|
|
648
|
+
file: file.raw,
|
|
649
|
+
isLoading: true,
|
|
650
|
+
onProgress: (progressEvent, fileObj) => {
|
|
651
|
+
let percent = Math.min(progressEvent.percent, 99);
|
|
652
|
+
this.$set(file, "percentage", percent);
|
|
653
|
+
},
|
|
654
|
+
callback: (res) => {
|
|
655
|
+
if (res.type == "success") {
|
|
656
|
+
let fileData = res.objx;
|
|
657
|
+
fileData.name = file.name;
|
|
658
|
+
this.saveFileTalk([fileData], () => {
|
|
659
|
+
this.$set(file, "percentage", 100);
|
|
660
|
+
file.status = "success";
|
|
661
|
+
});
|
|
662
|
+
} else {
|
|
663
|
+
file.status = "fail"
|
|
664
|
+
file.failMsg = res.content;
|
|
665
|
+
this.$set(file, "percentage", 0);
|
|
666
|
+
}
|
|
667
|
+
},
|
|
668
|
+
});
|
|
669
|
+
} else {
|
|
670
|
+
this.saveFileTalk([file.fileInfo], () => {
|
|
671
|
+
this.$set(file, "percentage", 100);
|
|
672
|
+
file.status = "success";
|
|
673
|
+
});
|
|
674
|
+
}
|
|
675
|
+
})
|
|
676
|
+
},
|
|
677
|
+
deleteFile(index) {
|
|
678
|
+
this.files.splice(index, 1);
|
|
679
|
+
},
|
|
680
|
+
confirmPrivateProfileDialog(rows) {
|
|
681
|
+
this.addFiles(rows, true)
|
|
682
|
+
},
|
|
683
|
+
getShowUrl(attachment, field) {
|
|
684
|
+
let showUrl = null;
|
|
685
|
+
let typeStr = Object.prototype.toString.call(attachment);
|
|
686
|
+
if (typeStr == '[object Object]') {
|
|
687
|
+
let showField = field ? field : 'medium';
|
|
688
|
+
let fullUrl = attachment.domain + (attachment[showField] ? attachment[showField] : attachment.url);
|
|
689
|
+
showUrl = this.$commonFileUtil.getShowUrl(fullUrl)
|
|
690
|
+
} else {
|
|
691
|
+
showUrl = this.$commonFileUtil.getShowUrl(attachment)
|
|
692
|
+
}
|
|
693
|
+
return showUrl;
|
|
694
|
+
},
|
|
695
|
+
initPrivateUploadBt() {
|
|
696
|
+
if (settingConfig.privateProfileCode) {
|
|
697
|
+
this.$http({
|
|
698
|
+
url: USER_PREFIX + '/file_store_area/getByCode',
|
|
699
|
+
method: 'post',
|
|
700
|
+
data: {"stringOne": settingConfig.privateProfileCode},
|
|
701
|
+
failMsg: false,
|
|
702
|
+
errorMsg: false,
|
|
703
|
+
success: res => {
|
|
704
|
+
this.showPrivateUploadBtn = res.objx ? true : false;
|
|
705
|
+
}
|
|
706
|
+
});
|
|
707
|
+
} else {
|
|
708
|
+
this.showPrivateUploadBtn = false;
|
|
709
|
+
}
|
|
710
|
+
},
|
|
711
|
+
handleEnterWithCtrl(event) {
|
|
712
|
+
event.stopPropagation();
|
|
713
|
+
event.preventDefault();
|
|
714
|
+
this.sendMsg();
|
|
715
|
+
},
|
|
716
|
+
openFileNameDialog(row, index) {
|
|
717
|
+
this.editFileName = row.fileName?.toString();
|
|
718
|
+
this.editFileSuffix = row.fileSuffix?.toString();
|
|
719
|
+
this.editFileIndex = index
|
|
720
|
+
this.showFileNameDialog = true;
|
|
721
|
+
},
|
|
722
|
+
confirmFileNameDialog() {
|
|
723
|
+
if (!this.editFileName) {
|
|
724
|
+
this.$message({
|
|
725
|
+
message: "文件名不能为空",
|
|
726
|
+
type: "error",
|
|
727
|
+
showClose: true,
|
|
728
|
+
duration: 3000,
|
|
729
|
+
});
|
|
730
|
+
return
|
|
731
|
+
}
|
|
732
|
+
let editFileIndex = this.editFileIndex;
|
|
733
|
+
let file = this.files[editFileIndex];
|
|
734
|
+
file.fileName = this.editFileName.toString();
|
|
735
|
+
file.name = (file.fileName + "." + file.fileSuffix).toString();
|
|
736
|
+
this.showFileNameDialog = false;
|
|
737
|
+
},
|
|
738
|
+
answerCheckHandle(item) {
|
|
739
|
+
this.saveTalk({
|
|
740
|
+
content: item.question,
|
|
741
|
+
knowledgeId: item.id
|
|
742
|
+
})
|
|
743
|
+
},
|
|
744
|
+
openHistoryDialog() {
|
|
745
|
+
this.historyKeyword = null;
|
|
746
|
+
this.historyType = null;
|
|
747
|
+
this.topHistoryEnd = false;
|
|
748
|
+
this.talkHRecords = [];
|
|
749
|
+
this.showHistoryDialog = true;
|
|
750
|
+
this.getHList(0, () => {
|
|
751
|
+
if (this.talkHRecords.length) {
|
|
752
|
+
this.$nextTick(() => {
|
|
753
|
+
document.querySelector('.talk_h' + this.talkHRecords[this.talkHRecords.length - 1].id).scrollIntoView();
|
|
754
|
+
})
|
|
755
|
+
}
|
|
756
|
+
});
|
|
757
|
+
},
|
|
758
|
+
checkHistoryType(historyType) {
|
|
759
|
+
this.historyType = historyType;
|
|
760
|
+
this.topHistoryEnd = false;
|
|
761
|
+
this.talkHRecords = [];
|
|
762
|
+
this.getHList(0, () => {
|
|
763
|
+
if (this.talkHRecords.length) {
|
|
764
|
+
this.$nextTick(() => {
|
|
765
|
+
document.querySelector('.talk_h' + this.talkHRecords[this.talkHRecords.length - 1].id).scrollIntoView();
|
|
766
|
+
})
|
|
767
|
+
}
|
|
768
|
+
});
|
|
769
|
+
},
|
|
770
|
+
changeHistoryKeyword() {
|
|
771
|
+
this.topHistoryEnd = false;
|
|
772
|
+
this.talkHRecords = [];
|
|
773
|
+
this.getHList(0, () => {
|
|
774
|
+
if (this.talkHRecords.length) {
|
|
775
|
+
this.$nextTick(() => {
|
|
776
|
+
document.querySelector('.talk_h' + this.talkHRecords[this.talkHRecords.length - 1].id).scrollIntoView();
|
|
777
|
+
})
|
|
778
|
+
}
|
|
779
|
+
});
|
|
780
|
+
},
|
|
781
|
+
handleScrollH(event) {
|
|
782
|
+
let scrollTop = event.target.scrollTop;
|
|
783
|
+
let scrollHeight = event.target.scrollHeight;
|
|
784
|
+
let clientHeight = event.target.clientHeight;
|
|
785
|
+
let isTop = scrollTop <= 0;
|
|
786
|
+
let isButtom = scrollTop + clientHeight >= scrollHeight;
|
|
787
|
+
if (isTop) {
|
|
788
|
+
//上拉,查上一页的记录
|
|
789
|
+
let firstDom = event.target.querySelector('.item');
|
|
790
|
+
this.getHList(1, () => {
|
|
791
|
+
firstDom && firstDom.scrollIntoView();
|
|
792
|
+
});
|
|
793
|
+
}
|
|
794
|
+
},
|
|
795
|
+
getHList(direction, callback) {
|
|
796
|
+
if (!this.showHistoryDialog) return
|
|
797
|
+
if (!this.talkUserId) return
|
|
798
|
+
let talkUser = this.talkUser;
|
|
799
|
+
if (direction == 1 && this.topHistoryEnd) {
|
|
800
|
+
////上拉,且没有记录
|
|
801
|
+
return;
|
|
802
|
+
}
|
|
803
|
+
let lastId = this.getLastHRecordId(direction);
|
|
804
|
+
direction = direction || 0;
|
|
805
|
+
this.$http({
|
|
806
|
+
url: USER_PREFIX + `/talk/list`,
|
|
807
|
+
method: `post`,
|
|
808
|
+
data: {
|
|
809
|
+
toUser: this.talkUserId,
|
|
810
|
+
lastId: lastId,
|
|
811
|
+
direction: direction,
|
|
812
|
+
type: this.historyType,
|
|
813
|
+
keyWord: this.historyKeyword
|
|
814
|
+
},
|
|
815
|
+
modal: false,
|
|
816
|
+
success: res => {
|
|
817
|
+
let rows = res.objx || [];
|
|
818
|
+
let talkHRecords = this.talkHRecords;
|
|
819
|
+
if (rows.length) {
|
|
820
|
+
rows.forEach(row => {
|
|
821
|
+
this.handleContent(row);
|
|
822
|
+
})
|
|
823
|
+
let items = rows;
|
|
824
|
+
if (talkHRecords.length) {
|
|
825
|
+
let ids = talkHRecords.map(item => item.id);
|
|
826
|
+
items = rows.filter(item => !ids.includes(item.id));
|
|
827
|
+
}
|
|
828
|
+
if (direction == 0) {
|
|
829
|
+
talkHRecords.push(...items);
|
|
830
|
+
} else {
|
|
831
|
+
talkHRecords.splice(0, 0, ...items);
|
|
832
|
+
}
|
|
833
|
+
}
|
|
834
|
+
|
|
835
|
+
if (direction == 1 && rows.length == 0) {
|
|
836
|
+
//上拉,且没有记录
|
|
837
|
+
this.topHistoryEnd = true;
|
|
838
|
+
}
|
|
839
|
+
callback && callback();
|
|
840
|
+
}
|
|
841
|
+
});
|
|
842
|
+
},
|
|
843
|
+
getLastHRecordId(direction) {
|
|
844
|
+
direction = direction || 0;
|
|
845
|
+
let lastTalkRecordId = null;
|
|
846
|
+
if (this.talkHRecords.length) {
|
|
847
|
+
if (direction == 0) {
|
|
848
|
+
//下拉,获取最后一条记录的ID
|
|
849
|
+
lastTalkRecordId = this.talkHRecords[this.talkHRecords.length - 1].id;
|
|
850
|
+
} else {
|
|
851
|
+
//上拉,获取第一条记录的ID
|
|
852
|
+
lastTalkRecordId = this.talkHRecords[0].id;
|
|
853
|
+
}
|
|
854
|
+
}
|
|
855
|
+
return lastTalkRecordId;
|
|
856
|
+
},
|
|
857
|
+
//file end
|
|
858
|
+
}
|
|
859
|
+
};
|
|
9
860
|
export const mixins = tmixins
|