| | |
| | | /** |
| | | * 鏌ヨ宸蹭笅鍙戠殑绾跨储娓呭崟 |
| | | */ |
| | | |
| | | getClues(time) { |
| | | return $clue.get(`feedback/queryYxfList?updateTime=${time}`); |
| | | }, |
| | | |
| | | getClue({ sTime, eTime, pageNum = 1, pageSize = 30 }) { |
| | | return $clue.get( |
| | | `clue/fetch?sTime=${sTime}&eTime=${eTime}&pageNum=${pageNum}&pageSize=${pageSize}` |
| | | ); |
| | | }, |
| | | |
| | | fetchRemoteClue(updateTime) { |
| | | return $clue.get(`clue/fetch/remote?updateTime=${updateTime}`); |
| | | } |
| | | }; |
对比新文件 |
| | |
| | | import { $clue } from './index'; |
| | | |
| | | export default { |
| | | /** |
| | | * |
| | | */ |
| | | getConclusion(clueId) { |
| | | return $clue.get(`clue/conclusion/fetch?clueId=${clueId}`); |
| | | }, |
| | | |
| | | uploadConclusion(conclusion) { |
| | | return $clue.post(`clue/conclusion/upload`, conclusion); |
| | | }, |
| | | |
| | | pushConclusion(conclusionIdList) { |
| | | return $clue.post(`clue/conclusion/push`, conclusionIdList); |
| | | } |
| | | }; |
对比新文件 |
| | |
| | | import { $clue } from './index'; |
| | | |
| | | export default { |
| | | /** |
| | | * |
| | | */ |
| | | getQuestion(clueId) { |
| | | return $clue.get(`clue/question/fetch?clueId=${clueId}`); |
| | | }, |
| | | |
| | | uploadQuestion(question, files) { |
| | | const formData = {}; |
| | | return $clue.post(`clue/question/upload`, formData); |
| | | }, |
| | | |
| | | pushQuestion(questionIdList) { |
| | | return $clue.post(`clue/question/push`, questionIdList); |
| | | } |
| | | }; |
| | |
| | | import md5 from 'md5'; |
| | | import { ElMessage } from 'element-plus'; |
| | | |
| | | const ip = 'http://101.230.224.80:8082/'; |
| | | // const ip = 'http://101.230.224.80:8082/'; |
| | | const ip = 'http://192.168.0.138:8080/'; |
| | | |
| | | //椋炵窘鐩戠 |
| | | const $clue = axios.create({ |
| | |
| | | * @returns {Boolean} |
| | | */ |
| | | function _checkGridExist() { |
| | | return selectedGrid.value != undefined; |
| | | return selectedGrid.value.gId != undefined; |
| | | } |
| | | |
| | | /**鏁版嵁澧炲垹**************************************************************/ |
| | |
| | | * 鏌ヨ宸蹭笅鍙戠殑绾跨储娓呭崟 |
| | | */ |
| | | const getClues = function () { |
| | | const time = moment(updateTime.value).format('YYYY-MM-DD HH:mm:ss'); |
| | | const now = moment(updateTime.value); |
| | | const sTime = now.format('YYYY-MM-DD HH:mm:ss'); |
| | | const eTime = now.add(1, 'month'); |
| | | onMapMounted(() => { |
| | | clueApi.getClues(time).then((res) => { |
| | | clueApi.getClue({ sTime, eTime }).then((res) => { |
| | | clueList.value = res; |
| | | }); |
| | | }); |
| | |
| | | /** |
| | | * 閫夋嫨绾跨储浜嬩欢 |
| | | */ |
| | | const selectClue = function (clue) {}; |
| | | const selectClue = function (clue) { |
| | | |
| | | }; |
| | | </script> |
| | | |
| | | <style scoped> |
| | |
| | | } |
| | | |
| | | .bg-content-1 { |
| | | |
| | | } |
| | | |
| | | .search-wrap { |