From 543a9d43cb0f6e2d8d2554633ccce1cb03b68096 Mon Sep 17 00:00:00 2001 From: pp3avk64l <1328510073@qq.com> Date: Thu, 24 Nov 2022 22:07:59 +0800 Subject: [PATCH] =?UTF-8?q?Delete=20'scr/=E6=A8=A1=E7=B3=8A=E4=B8=93?= =?UTF-8?q?=E5=AE=B6=E7=B3=BB=E7=BB=9F/frontend/src/translateTag.js'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../frontend/src/translateTag.js | 43 ------------------- 1 file changed, 43 deletions(-) delete mode 100644 scr/模糊专家系统/frontend/src/translateTag.js diff --git a/scr/模糊专家系统/frontend/src/translateTag.js b/scr/模糊专家系统/frontend/src/translateTag.js deleted file mode 100644 index aca4c8a..0000000 --- a/scr/模糊专家系统/frontend/src/translateTag.js +++ /dev/null @@ -1,43 +0,0 @@ -export default function translateTag(tag, inCons = false) { - let prosDict = { - '!lowPrice': '专业级别一步到位', - 'lowPrice': '价格较低', - '!lightBuild': '手感扎实', - 'lightBuild': '相机轻', - 'scenery': '拍摄风景效果好', - 'travel': '合适旅行时使用', - 'event': '合适记录活动', - 'sports': '拍摄体育比赛效果好', - 'portrait': '拍摄人像效果好', - 'astronomy': '天文摄影效果好', - 'flash': '有闪光灯', - 'video': '可摄像', - 'bluetooth': '可蓝牙传输照片', - 'touchScreen': '有触摸屏', - 'gps': '内置GPS', - 'waterproof': '防水', - 'newModel': '型号新', - 'durableBuild': '机身质量好', - }; - let consDict = { - '!lowPrice': '总体价格低于预算', - 'lowPrice': '价格较高', - '!lightBuild': '相机重量偏轻', - 'lightBuild': '相机较重', - 'scenery': '不适合拍摄风景', - 'travel': '不适合旅行时使用', - 'event': '不适合记录活动', - 'sports': '不适合拍摄体育比赛', - 'portrait': '不适合拍摄人像', - 'astronomy': '不适合天文摄影', - 'flash': '没闪光灯', - 'video': '不能摄像', - 'bluetooth': '没有蓝牙', - 'touchScreen': '没有触摸屏', - 'gps': '没有GPS', - 'waterproof': '不防水', - 'newModel': '型号比较旧', - 'durableBuild': '机身质量一般', - }; - return inCons ? consDict[tag] : prosDict[tag]; -} \ No newline at end of file