{"remainingRequest":"D:\\jenkins\\workspace\\damDance-fvue\\node_modules\\vue-loader\\lib\\index.js??vue-loader-options!D:\\jenkins\\workspace\\damDance-fvue\\src\\views\\FeedbackArchiving\\BlacklistManage.vue?vue&type=script&lang=js&","dependencies":[{"path":"D:\\jenkins\\workspace\\damDance-fvue\\src\\views\\FeedbackArchiving\\BlacklistManage.vue","mtime":1704791096033},{"path":"D:\\jenkins\\workspace\\damDance-fvue\\node_modules\\babel-loader\\lib\\index.js","mtime":315532800000},{"path":"D:\\jenkins\\workspace\\damDance-fvue\\node_modules\\cache-loader\\dist\\cjs.js","mtime":499162500000},{"path":"D:\\jenkins\\workspace\\damDance-fvue\\node_modules\\vue-loader\\lib\\index.js","mtime":499162500000}],"contextDependencies":[],"result":["//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n\r\nimport pagination from '@/components/pagination'\r\nimport {TableMixin} from '@/mixins/tableMixin'\r\nimport BlacklistManage from '@/api/FeedbackArchiving/BlacklistManage'\r\nimport dictUtils from '@/components/dict/DictSelectUtils.js'\r\nimport utils from '@/utils.js'\r\nexport default {\r\n name: 'BlacklistManage',\r\n components: {\r\n pagination,\r\n },\r\n mixins: [TableMixin],\r\n data() {\r\n return {\r\n markLoading: false,\r\n tableMaxHeight: 400,\r\n tableData: [],\r\n pageResult: {\r\n page: 1,\r\n pageSize: 20,\r\n total: 0,\r\n },\r\n querys: [\r\n {\r\n group: 'main',\r\n operation: 'LIKE',\r\n parentGroup: '',\r\n property: 'disposedObjectName',\r\n relation: 'AND',\r\n value: '',\r\n },\r\n {\r\n group: 'main',\r\n operation: 'EQUAL',\r\n parentGroup: '',\r\n property: 'type',\r\n relation: 'AND',\r\n value: '',\r\n },\r\n ],\r\n reqData: {\r\n querys: [],\r\n pageBean: {\r\n page: 1,\r\n pageSize: 20,\r\n showTotal: true,\r\n },\r\n },\r\n tableLoading: false,\r\n parameter: {\r\n size: 20,\r\n page: 1,\r\n },\r\n dxlxList: [], // 对象类型\r\n }\r\n },\r\n created() {\r\n this.dxlxList = dictUtils.getDictItemsFromCache('dxlx')\r\n this.getData()\r\n },\r\n methods: {\r\n //获取数据\r\n getData(page) {\r\n if (page) {\r\n this.reqData.pageBean.page = page\r\n }\r\n this.reqData.querys = []\r\n if (this.querys[0].value) {\r\n this.reqData.querys.push(this.querys[0])\r\n }\r\n if (this.querys[1].value) {\r\n this.reqData.querys.push(this.querys[1])\r\n }\r\n this.tableLoading = true\r\n BlacklistManage.blackListQuery(this.reqData, (res) => {\r\n this.pageResult.total = res.total\r\n this.tableLoading = false\r\n this.tableData = res.rows\r\n })\r\n },\r\n handleSizeChange(val) {\r\n this.reqData.pageBean.pageSize = val\r\n this.getData()\r\n },\r\n handleCurrentChange(val) {\r\n this.reqData.pageBean.page = val\r\n this.getData()\r\n },\r\n getDictName(code, value) {\r\n return utils.getDictName(code, value)\r\n },\r\n },\r\n}\r\n",null]}