diff --git a/.env.development b/.env.development index 6fd3f94..415d738 100644 --- a/.env.development +++ b/.env.development @@ -5,4 +5,4 @@ VITE_APP_TITLE = 数字营销实训系统 VITE_APP_ENV = 'development' # 若依管理系统/开发环境 -VITE_APP_BASE_API = '/dev-api' +VITE_APP_BASE_API = 'http://192.168.2.6:9868' diff --git a/src/api/AI.js b/src/api/AI.js new file mode 100644 index 0000000..7623e90 --- /dev/null +++ b/src/api/AI.js @@ -0,0 +1,12 @@ +import request from '@/utils/request' + +//访问AI +export function accessAI(data) { + return request({ + url: '/api/bigModule/createArticleByAi', + method: 'post', + data:data, + timeout: 100000, + responseType: 'blob', + }) + } \ No newline at end of file diff --git a/src/api/commonality.js b/src/api/commonality.js new file mode 100644 index 0000000..aeb52f9 --- /dev/null +++ b/src/api/commonality.js @@ -0,0 +1,224 @@ +import request from '@/utils/request' + +// 5g终端设备选择 +export function getTerminalList(data) { + return request({ + url: '/api/stu/experimental/fiveTrainingSelect', + method: 'post', + params: data + }) +} +// 5g应用场景选择 +export function getSceneList(query) { + return request({ + url: '/api/stu/experimental/fiveTrainingSceneSelect', + method: 'post', + params:query + }) +} +// 5g回显 +export function getEcho(query) { + return request({ + url: '/api/stu/sub/whatFive', + method: 'post', + params:query + }) +} +// 图像识别题目展示 +export function getImgList(query) { + return request({ + url: '/api/stu/digital/artificialIntelligence/topicDisplay', + method:'POST', + params:query + }) +} +// 图像识别回显 +export function getImgEcho(query) { + return request({ + url: '/api/stu/digital/artificialIntelligence/viewOperationRecord', + method: 'post', + params:query + }) +} +// 图片鸢尾花上传 +export function uploadImg(data) { + + + return request({ + url: '/api/stu/digital/artificialIntelligence/imageUpload', + method: 'post', + params:data + }) +} +// 答题提交 +export function submitAnswer(data) { + return request({ + url: '/api/stu/digital/artificialIntelligence/submitTo', + method: 'post', + data:data + }) +} +// 文字识别题目展示 +export function getTextList(query) { + return request({ + url: '/api/stu/experimental/ocrTitle', + method: 'get', + params:query + }) +} +// 步骤一提交 +export function submitStepOne(query) { + return request({ + url: '/api/stu/experimental/ocrTitleOneSub', + method: 'GET', + params:query + }) +} +// 步骤二提交 +export function submitStepTwo(query) { + return request({ + url: '/api/stu/experimental/ocrTitleTwoSub', + method: 'GET', + params:query + }) +} +// 文字识别 +export function submitStepThree(query) { + return request({ + url: '/api/stu/experimental/ocr', + method: 'post', + data:query + }) +} +//#region 人工智能机器人 +// 人工智能机器人题目展示 +export function getRobotList(query) { + return request({ + url: '/api/stu/experimental/robotTitle', + method: 'GET', + params:query + }) +} +// 人工智能机器人提交题目 +export function robotTitleSub(data) { + return request({ + url: '/api/stu/experimental/robotTitleSub', + method: 'POST', + data:data + }) +} +// 人工智能 +//#endregion------------------------------------------------------------------ +// 人工智能自然语言处理---------------------------------------- +// 自然语言处理自动保存 +export function saveNlp(data) { + return request({ + url: '/api/stu/sub/naturalLanguageSavaAuto', + method: 'post', + data:data + }) +} +// 自然语言处理回显 +export function getNlpEcho(query) { + return request({ + url: '/api/stu/sub/naturalLanguageByRead', + method: 'get', + params:query + }) +} +// 生成摘要 +export function getSummary(query) { + return request({ + url: '/api/stu/experimental/creatAbstract', + method: 'POST', + params:query + }) +} +// 生成词云 +export function creatWordCloud(query) { + return request({ + url: '/api/stu/experimental/creatImg', + method: 'get', +// 修改响应类型 + responseType: 'blob', + params:query + }) +} +//#region +// 实训任务提交 +export function submitTask(data) { + return request({ + url: '/api/stu/digital/industrialization/practicalTrainingSubmission', + method: 'post', + params:data + }) +} +//#region +// 语音技术题目展示 +export function getVoiceList(query) { + return request({ + url: '/api/stu/digital/industrialization/topicDisplay', + method: 'post', + params:query + }) +} +// 提交语音技术题目 +export function submitVoice(query) { + return request({ + url: '/api/stu/digital/industrialization/questionSelection', + method: 'post', + params:query + }) +} + // 语音技术实操提交 +export function submitVoiceTask(data) { + return request({ + url: '/api/stu/digital/industrialization/trainingOperations', + method: 'post', + params:data + }) +} +// 语音技术回显 +export function getVoiceEcho(query) { + return request({ + url: '/api/stu/digital/industrialization/voiceViewOperationRecord', + method: 'post', + params:query + }) +} +//#region 人脸识别 +// 人脸识别选择图片 +export function getFaceList(query) { + return request({ + url: '/api/stu/digital/industrialization/selectPicture', + method: 'post', + params:query + }) +} +// 人脸识别回显 +export function getFaceEcho(query) { + return request({ + url: '/api/stu/digital/industrialization/viewOperationRecord', + method: 'post', + params:query + }) +} +//#endregion + +//#region -------------------机器人学习 +// 机器人学习自动保存 +export function RobotSave(data) { + return request({ + url: '/api/stu/sub/machineLearningSavaAuto', + method: 'post', + data:data + }) +} +export function RobotECho(query) { + return request({ + url: '/api/stu/sub/machineLearningByRead', + method: 'get', + params:query + }) +} +//#endregion \ No newline at end of file diff --git a/src/api/economy/bigData.js b/src/api/economy/bigData.js new file mode 100644 index 0000000..51abd6b --- /dev/null +++ b/src/api/economy/bigData.js @@ -0,0 +1,18 @@ +import request from '@/utils/request' + +//查看区块链构成 +export const LookBlockchainComposition=(data)=> { + return request({ + url: '/api/stu/experimental/bigDataTopic', + method: 'get', + params:data + }) + } +//提交判断结果 +export const submitJudgmentResults=(data)=> { + return request({ + url: '/api/stu/experimental/bigDataTopicScore', + method: 'post', + data:data + }) + } \ No newline at end of file diff --git a/src/api/hash/Experiment.js b/src/api/hash/Experiment.js new file mode 100644 index 0000000..f5e771c --- /dev/null +++ b/src/api/hash/Experiment.js @@ -0,0 +1,177 @@ +import request from '@/utils/request' + + +// 查询缓存详细 +export function getCache() { + return request({ + url: '/monitor/cache', + method: 'get' + }) + } + +// 上传文件返回hash +// 查询缓存详细 +export const getFileHash=(data)=> { + return request({ + url: '/api/stu/concept/hash/training/hashSignatureGenerateSummary', + method: 'post', + params:data + }) +} + +//任务一步骤一 +export const sendTopOne=(StuHashTrainingEncryptionScoreScoreDto)=> { + return request({ + url: '/api/stu/concept/hash/training/HashTrainingEncryptionTopOne', + method: 'post', + data:StuHashTrainingEncryptionScoreScoreDto, + headers:{ + 'Content-Type': 'application/json' + } + }) +} + +//任务一步骤二 +export const sendTopTow=(StuHashTrainingEncryptionScoreScoreDto)=> { + return request({ + url: '/api/stu/concept/hash/training/HashTrainingEncryptionTopTwo', + method: 'post', + data:StuHashTrainingEncryptionScoreScoreDto, + headers:{ + 'Content-Type': 'application/json' + } + }) +} + +//提交哈希函数实验实训任务 +export const submittingTasks=(StuHashTraining)=> { + return request({ + url: '/api/stu/concept/hash/training/HashTrainingHashTaskSubmission', + method: 'post', + data:StuHashTraining + }) +} + +//计算String/Hex的哈希值 +export const computing=(StuHashOnlineCalculationDTO)=> { + return request({ + url: '/api/stu/concept/hash/training/HashTrainingOnlineCalculation', + method: 'post', + data:StuHashOnlineCalculationDTO + }) +} + +//根据id生产私钥 +export const generatePrivateKeys=(StuHashSecretKeyDto)=> { + return request({ + url: '/api/stu/concept/hash/training/hashSecretkeyPrivateTask', + method: 'post', + data:StuHashSecretKeyDto + }) +} + +//根据id生成公钥 +export const generatePublicKeys=(StuHashSecretKeyDto)=> { + return request({ + url: '/api/stu/concept/hash/training/hashSecretkeyPublicTask', + method: 'post', + data:StuHashSecretKeyDto + }) +} + +//任务5加密 +export const encryptionString=(StuHashSecretKeyDto)=> { + return request({ + url: '/api/stu/concept/hash/training/hashSecretSendDataTask', + method: 'post', + data:StuHashSecretKeyDto + }) +} + +//接收加密密文 +export const receivingString=(StuHashSecretKeyDto)=> { + return request({ + url: '/api/stu/concept/hash/training/hashSecretAcceptDataTask', + method: 'post', + data:StuHashSecretKeyDto + }) +} + +//解密密文 +export const decryptionString=(StuHashSecretKeyDto)=> { + return request({ + url: '/api/stu/concept/hash/training/hashSecretDecryptDataTask', + method: 'post', + data:StuHashSecretKeyDto + }) +} + +//提交任务 +export const submitTask=(StuHashTraining)=> { + return request({ + url: '/api/stu/concept/hash/training/HashTrainingHashTaskSubmission', + method: 'post', + data:StuHashTraining + }) +} + +//获取文件摘要 +export const getFileDigest=(StuHashTraining)=> { + return request({ + url: '/api/stu/concept/hash/training/hashSignatureGenerateSummary', + method: 'post', + params:StuHashTraining + }) +} +export const generateSecretKey=(data)=> { + return request({ + url: '/api/stu/concept/hash/training/hashSignatureGenerateSecretKey', + method: 'post', + data:data + }) +} + +//步骤二加密摘要 +export const encryptedDigest=(data)=> { + return request({ + url: '/api/stu/concept/hash/training/hashSignatureCryptographicDigest', + method: 'post', + data:data + }) +} + +//步骤三打包发送 +export const packageAndSend=(data)=> { + return request({ + url: '/api/stu/concept/hash/training/hashSignaturePackagingSending', + method: 'post', + data:data + }) +} + +//步骤四生成摘要 +export const encryptedDigest2=(data)=> { + return request({ + url: '/api/stu/concept/hash/training/hashSignatureRecipientFiles', + method: 'post', + data:data + }) +} + +//步骤五解密摘要 +export const decryptionDigestRequest=(data)=> { + return request({ + url: '/api/stu/concept/hash/training/hashSignatureDecryptingSummary', + method: 'post', + data:data + }) +} + +//重新开始 +export const restartTheRequest=(data)=> { + return request({ + url: '/api/stu/concept/hash/training/hashSignatureRestart', + method: 'post', + params:data + }) +} \ No newline at end of file diff --git a/src/api/hash/block.js b/src/api/hash/block.js new file mode 100644 index 0000000..f0c561c --- /dev/null +++ b/src/api/hash/block.js @@ -0,0 +1,118 @@ +import request from '@/utils/request' + +//查看区块链构成 +export const LookBlockchainComposition=(data)=> { + return request({ + url: '/api/stu/concept/blockchain/training/CompositionOfBlockchain', + method: 'post', + data:data + }) + } + +//区块链组成挖矿 +export const blockchainsConsistMining=(data)=> { + return request({ + url: '/api/stu/concept/blockchain/training/compositionOfBlockchainMining', + method: 'post', + data:data + }) + } + +//提交任务 +export const numberCommitErrors=(data)=> { + return request({ + url: '/api/stu/concept/blockchain/training/blockchainExperimentalTrainingTasksSubmission', + method: 'post', + data:data + }) + } + +//区块链查看 +export const blockchainView=(data)=> { + return request({ + url: '/api/stu/concept/blockchain/training/getBlockchain', + method: 'post', + data:data + }) + } + +//区块链挖矿 +export const blockchainMining=(data)=> { + return request({ + url: '/api/stu/concept/blockchain/training/blockchainMining', + method: 'post', + data:data + }) + } + +//执行A公链文件返回节点ID +export const returnsNodeID=(data)=> { + return request({ + url: '/api/stu/concept/block/training/threePublicChain_A', + method: 'post', + data:data + }) + } + +//执行B公链文件返回节点ID +export const returnsNodeIDB=(data)=> { + return request({ + url: '/api/stu/concept/block/training/threePublicChain_B', + method: 'post', + data:data + }) + } + +//随机数发生器 +export const randomNumberGenerator=(data)=> { + return request({ + url: '/api/stu/concept/block/training/fourPrivateKey_A', + method: 'post', + params:data + }) + } + +//非对称加密技术 +export const publicRandomNumberGenerator=(data)=> { + return request({ + url: '/api/stu/concept/block/training/fourPublicKey_A', + method: 'post', + params:data + }) + } + +//哈希加密算法 +export const HashRandomNumberGenerator=(data)=> { + return request({ + url: '/api/stu/concept/block/training/fourBlockAddress_A', + method: 'post', + params:data + }) + } + +//随机数发生器 +export const randomNumberGeneratorB=(data)=> { + return request({ + url: '/api/stu/concept/block/training/fourPrivateKey_B', + method: 'post', + params:data + }) + } + +//非对称加密技术 +export const publicRandomNumberGeneratorB=(data)=> { + return request({ + url: '/api/stu/concept/block/training/fourPublicKey_B', + method: 'post', + params:data + }) + } + +//哈希加密算法 +export const HashRandomNumberGeneratorB=(data)=> { + return request({ + url: '/api/stu/concept/block/training/fourBlockAddress_B', + method: 'post', + params:data + }) + } \ No newline at end of file diff --git a/src/api/hash/conse.js b/src/api/hash/conse.js new file mode 100644 index 0000000..fa5153d --- /dev/null +++ b/src/api/hash/conse.js @@ -0,0 +1,10 @@ +import request from '@/utils/request' + +//merkler任务一 +export const taskOne=(data)=> { + return request({ + url: '/api/stu/technology/blockchain/consensus/getIndividualUsers', + method: 'post', + params:data + }) + } \ No newline at end of file diff --git a/src/api/hash/consensus.js b/src/api/hash/consensus.js new file mode 100644 index 0000000..9c02851 --- /dev/null +++ b/src/api/hash/consensus.js @@ -0,0 +1,26 @@ +import request from '@/utils/request' + +//获取一百个随机hash值 +export const getHundredHash=()=> { + return request({ + url: '/api/stu/technology/blockchain/consensus/getRandomNumber', + method: 'post', + }) + } + +//动态折线图 +export const getDynamicLineChart=()=> { + return request({ + url: '/api/stu/technology/blockchain/consensus/getDynamicLineChart', + method: 'post', + }) + } + +//提交任务 +export const submitTrainingTask=(data)=> { + return request({ + url: '/api/stu/technology/blockchain/consensus/technologyTrainingConsensusTaskSubmission', + method: 'post', + data:data + }) + } \ No newline at end of file diff --git a/src/api/hash/data.js b/src/api/hash/data.js new file mode 100644 index 0000000..930b848 --- /dev/null +++ b/src/api/hash/data.js @@ -0,0 +1,61 @@ +import request from '@/utils/request' + + +//merkler任务一 +export const taskOne=(data)=> { + return request({ + url: '/api/stu/technology/blockchain/data/training/calculateFile1Hash', + method: 'post', + data:data + }) + } + + export const taskOne2=(data)=> { + return request({ + url: '/api/stu/technology/blockchain/data/training/calculateFile2Hash', + method: 'post', + data:data + }) + } + + export const taskOne3=(data)=> { + return request({ + url: '/api/stu/technology/blockchain/data/training/calculateFile3Hash', + method: 'post', + data:data + }) + } + + export const taskOne4=(data)=> { + return request({ + url: '/api/stu/technology/blockchain/data/training/calculateFile4Hash', + method: 'post', + data:data + }) + } + + export const taskOne5=(data)=> { + return request({ + url: '/api/stu/technology/blockchain/data/training/calculateFile5Hash', + method: 'post', + data:data + }) + } + + //任务一合并计算 + export const mergeCalculation=(data)=> { + return request({ + url: '/api/stu/technology/blockchain/data/training/getMergeHashCount', + method: 'post', + params:data + }) + } + +//提交 +export const submitTask=(data)=> { + return request({ + url: '/api/stu/technology/blockchain/data/training/technologyTrainingDataTaskSubmission', + method: 'post', + data:data + }) +} \ No newline at end of file diff --git a/src/api/hash/digitalEconomy.js b/src/api/hash/digitalEconomy.js new file mode 100644 index 0000000..20c96cb --- /dev/null +++ b/src/api/hash/digitalEconomy.js @@ -0,0 +1,167 @@ +import request from '@/utils/request' + +//数字服务贸易:步骤一注册 +export const Registration=(data)=> { + return request({ + url: '/api/stu/experimental/reg', + method: 'post', + data:data + }) + } +//数字服务贸易:上传营业执照 +export const uploadBusinessLicense=(data)=> { + return request({ + url: '/api/stu/experimental/upload', + method: 'post', + data:data + }) +} + +//数字服务贸易:上传商业登记证 +export const uploadBusinessRegistrationCertificate=(data)=> { + return request({ + url: '/api/stu/experimental/uploadB', + method: 'post', + data:data + }) +} +//实训任务提交 +export const submitTrainingTask=(data)=> { + return request({ + url: '/api/stu/digital/industrialization/practicalTrainingSubmission', + method: 'post', + params:data + }) +} +//图片上传 +export const imageUpload=(data)=> { + return request({ + url: '/api/stu/digital/industrialization/imageUpload', + method: 'post', + data:data + }) +} +//什么是大数据-获取题目 +export const getTopic=(data)=> { + return request({ + url: '/api/stu/experimental/bigDataTopic', + method: 'get', + params:data + }) +} +//什么是大数据-提交判断结果 +export const submitJudgmentResults=(data)=> { + return request({ + url: '/api/stu/experimental/bigDataTopicScore', + method: 'post', + data:data + }) +} + +//大数据技术框架--题目展示 +export const topicPresentation=(data)=> { + return request({ + url: '/api/bigData/topicDisplay', + method: 'post', + params:data + }) +} +//大数据技术框架--题目选择 +export const topicSelection=(data)=> { + return request({ + url: '/api/bigData/questionSelection', + method: 'post', + data:data + }) +} + +//Hadoop实验实训 +export const hadoopExperimentTraining=(data)=> { + return request({ + url: '/api/bigData/hadoop', + method: 'post', + params:data + }) +} + +//Hadoop清空数据 +export const hadoopCleansData=(data)=> { + return request({ + url: '/api/bigData/delHadoop', + method: 'get', + params:data + }) +} +//Hadoop回显 +export const hadoopEcho=(data)=> { + return request({ + url: '/api/bigData/selHadoop', + method: 'get', + params:data + }) +} + +//数字营销数据进度 +export const digitalMarketingDataProgress=(data)=> { + return request({ + url: '/api/stu/sub/readNumberSaleSave', + method: 'get', + params:data + }) +} +//数字营销自动保存 +export const digitalMarketingSavesAutomatically=(data)=> { + return request({ + url: '/api/stu/sub/numberSaleSave', + method: 'post', + data:data + }) +} +//软件安装部署阶段--服务器资源列表查看 +export const viewServerResourceList=(data)=> { + return request({ + url: '/api/stu/digital/cloudComputing/training/serverResourcesView', + method: 'post', + params:data + }) +} +//软件安装部署阶段--用户选择-前三个 +export const userSelection_FirstThree=(data)=> { + return request({ + url: '/api/stu/digital/cloudComputing/training/userSelectThree', + method: 'post', + data:data + }) +} +//数字营销读取做题记录 +export const marketingReadQuestionRecords=(data)=> { + return request({ + url: '/api/stu/sub/digitalMarketByRead', + method: 'get', + params:data + }) +} +//数字营销自动保存 +export const digitalSavesAutomatically=(data)=> { + return request({ + url: '/api/stu/sub/digitalMarketSavaAuto', + method: 'post', + data:data + }) +} +//Hadoop HDFS--实训操作记录 +export const trainingOperationRecords=(data)=> { + return request({ + url: '/api/bigData/trainingOperationRecord', + method: 'post', + data:data + }) +} +//Hadoop HDFS--操作记录查看 +export const HDFSViewOperationRecords=(data)=> { + return request({ + url: '/api/bigData/viewOperationRecord', + method: 'post', + params:data + }) +} \ No newline at end of file diff --git a/src/api/hash/hash.js b/src/api/hash/hash.js new file mode 100644 index 0000000..bc97748 --- /dev/null +++ b/src/api/hash/hash.js @@ -0,0 +1,18 @@ +import request from '@/utils/request' + +//查看区块链构成 +export const topicPresentation=(data)=> { + return request({ + url: '/api/stu/digital/finance/topicDisplay', + method: 'post', + params:data + }) + } +//题目选择 +export const topicSelection=(data)=> { + return request({ + url: '/api/stu/digital/finance/questionSelection', + method: 'post', + data:data + }) + } \ No newline at end of file diff --git a/src/api/hash/network.js b/src/api/hash/network.js new file mode 100644 index 0000000..bbfba09 --- /dev/null +++ b/src/api/hash/network.js @@ -0,0 +1,70 @@ +import request from '@/utils/request' + +//p2p步骤二 +export const submittingTasks1=(data)=> { + return request({ + url: '/api/stu/technology/blockchain/network/P2PTaskSubmission', + method: 'post', + data:data + }) + } + + export const submittingTasks=(data)=> { + return request({ + url: '/api/stu/technology/blockchain/network/technologyTrainingNetworkTaskSubmission', + method: 'post', + data:data + }) + } + + //数据传输机制资源列表 + export const listResources=(data)=> { + return request({ + url: '/api/stu/technology/network/training/networkResource', + method: 'post', + data:data + }) + } + + //步骤一付款 + export const paymentInterface=(data)=> { + return request({ + url: '/api/stu/technology/network/training/payment', + method: 'post', + params:data + }) + } + //步骤二 + export const encryptInformation=(data)=> { + return request({ + url: '/api/stu/technology/network/training/payMessage', + method: 'post', + params:data + }) + } + + //数据传输机制步骤四 + export const miningInterface=(data)=> { + return request({ + url: '/api/stu/technology/network/training/randomNonce', + method: 'post', + params:data + }) + } + +//数据传输机制步骤五 +export const identifyMiners=(data)=> { + return request({ + url: '/api/stu/technology/network/training/miners', + method: 'post', + params:data + }) + } +//数据传输机制步骤六 +export const updateBlocks=(data)=> { + return request({ + url: '/api/stu/technology/network/training/updates', + method: 'post', + params:data + }) + } diff --git a/src/assets/images/1.png b/src/assets/images/1.png new file mode 100644 index 0000000..38cd460 Binary files /dev/null and b/src/assets/images/1.png differ diff --git a/src/assets/images/2.png b/src/assets/images/2.png new file mode 100644 index 0000000..acc78ce Binary files /dev/null and b/src/assets/images/2.png differ diff --git a/src/assets/images/3.png b/src/assets/images/3.png new file mode 100644 index 0000000..3260181 Binary files /dev/null and b/src/assets/images/3.png differ diff --git a/src/assets/images/4.png b/src/assets/images/4.png new file mode 100644 index 0000000..7097447 Binary files /dev/null and b/src/assets/images/4.png differ diff --git a/src/assets/images/5.png b/src/assets/images/5.png new file mode 100644 index 0000000..62f1fed Binary files /dev/null and b/src/assets/images/5.png differ diff --git a/src/assets/images/6.png b/src/assets/images/6.png new file mode 100644 index 0000000..06541cf Binary files /dev/null and b/src/assets/images/6.png differ diff --git a/src/assets/images/ai.png b/src/assets/images/ai.png new file mode 100644 index 0000000..eb5dd23 Binary files /dev/null and b/src/assets/images/ai.png differ diff --git a/src/assets/images/aigc.png b/src/assets/images/aigc.png new file mode 100644 index 0000000..92e87ac Binary files /dev/null and b/src/assets/images/aigc.png differ diff --git a/src/assets/images/szjj/001.png b/src/assets/images/szjj/001.png new file mode 100644 index 0000000..12dbf7d Binary files /dev/null and b/src/assets/images/szjj/001.png differ diff --git a/src/assets/images/szjj/002.png b/src/assets/images/szjj/002.png new file mode 100644 index 0000000..fce3652 Binary files /dev/null and b/src/assets/images/szjj/002.png differ diff --git a/src/assets/images/szjj/003.png b/src/assets/images/szjj/003.png new file mode 100644 index 0000000..4c637c6 Binary files /dev/null and b/src/assets/images/szjj/003.png differ diff --git a/src/assets/images/szjj/004.png b/src/assets/images/szjj/004.png new file mode 100644 index 0000000..d20eef5 Binary files /dev/null and b/src/assets/images/szjj/004.png differ diff --git a/src/assets/images/szjj/005.png b/src/assets/images/szjj/005.png new file mode 100644 index 0000000..e7463db Binary files /dev/null and b/src/assets/images/szjj/005.png differ diff --git a/src/assets/images/szjj/006.png b/src/assets/images/szjj/006.png new file mode 100644 index 0000000..732bd34 Binary files /dev/null and b/src/assets/images/szjj/006.png differ diff --git a/src/assets/images/szjj/1-2.jpg b/src/assets/images/szjj/1-2.jpg new file mode 100644 index 0000000..bdf472e Binary files /dev/null and b/src/assets/images/szjj/1-2.jpg differ diff --git a/src/assets/images/szjj/1-3.png b/src/assets/images/szjj/1-3.png new file mode 100644 index 0000000..cc050af Binary files /dev/null and b/src/assets/images/szjj/1-3.png differ diff --git a/src/assets/images/szjj/1.png b/src/assets/images/szjj/1.png new file mode 100644 index 0000000..c5924cc Binary files /dev/null and b/src/assets/images/szjj/1.png differ diff --git a/src/assets/images/szjj/11111.gif b/src/assets/images/szjj/11111.gif new file mode 100644 index 0000000..d506cd5 Binary files /dev/null and b/src/assets/images/szjj/11111.gif differ diff --git a/src/assets/images/szjj/11112_png.png b/src/assets/images/szjj/11112_png.png new file mode 100644 index 0000000..d17ce7f Binary files /dev/null and b/src/assets/images/szjj/11112_png.png differ diff --git a/src/assets/images/szjj/2-2.jpg b/src/assets/images/szjj/2-2.jpg new file mode 100644 index 0000000..d63839e Binary files /dev/null and b/src/assets/images/szjj/2-2.jpg differ diff --git a/src/assets/images/szjj/2-3.png b/src/assets/images/szjj/2-3.png new file mode 100644 index 0000000..9308fd3 Binary files /dev/null and b/src/assets/images/szjj/2-3.png differ diff --git a/src/assets/images/szjj/2.png b/src/assets/images/szjj/2.png new file mode 100644 index 0000000..468915a Binary files /dev/null and b/src/assets/images/szjj/2.png differ diff --git a/src/assets/images/szjj/3-1.jpg b/src/assets/images/szjj/3-1.jpg new file mode 100644 index 0000000..326c10a Binary files /dev/null and b/src/assets/images/szjj/3-1.jpg differ diff --git a/src/assets/images/szjj/3-2.jpg b/src/assets/images/szjj/3-2.jpg new file mode 100644 index 0000000..ada32bc Binary files /dev/null and b/src/assets/images/szjj/3-2.jpg differ diff --git a/src/assets/images/szjj/3-3.png b/src/assets/images/szjj/3-3.png new file mode 100644 index 0000000..eeef09f Binary files /dev/null and b/src/assets/images/szjj/3-3.png differ diff --git a/src/assets/images/szjj/3.png b/src/assets/images/szjj/3.png new file mode 100644 index 0000000..d1e2b6a Binary files /dev/null and b/src/assets/images/szjj/3.png differ diff --git a/src/assets/images/szjj/Example1.png b/src/assets/images/szjj/Example1.png new file mode 100644 index 0000000..3e012e8 Binary files /dev/null and b/src/assets/images/szjj/Example1.png differ diff --git a/src/assets/images/szjj/Example2.png b/src/assets/images/szjj/Example2.png new file mode 100644 index 0000000..2eea76c Binary files /dev/null and b/src/assets/images/szjj/Example2.png differ diff --git a/src/assets/images/szjj/LOGO.png b/src/assets/images/szjj/LOGO.png new file mode 100644 index 0000000..5987114 Binary files /dev/null and b/src/assets/images/szjj/LOGO.png differ diff --git a/src/assets/images/szjj/TOP.png b/src/assets/images/szjj/TOP.png new file mode 100644 index 0000000..72b063d Binary files /dev/null and b/src/assets/images/szjj/TOP.png differ diff --git a/src/assets/images/szjj/artificial-intelligence.png b/src/assets/images/szjj/artificial-intelligence.png new file mode 100644 index 0000000..a7064ba Binary files /dev/null and b/src/assets/images/szjj/artificial-intelligence.png differ diff --git a/src/assets/images/szjj/bigdata.png b/src/assets/images/szjj/bigdata.png new file mode 100644 index 0000000..586239d Binary files /dev/null and b/src/assets/images/szjj/bigdata.png differ diff --git a/src/assets/images/szjj/icon-上传鸢尾花图片.png b/src/assets/images/szjj/icon-上传鸢尾花图片.png new file mode 100644 index 0000000..4a1fd43 Binary files /dev/null and b/src/assets/images/szjj/icon-上传鸢尾花图片.png differ diff --git a/src/assets/images/szjj/icon-分类器训练.png b/src/assets/images/szjj/icon-分类器训练.png new file mode 100644 index 0000000..3e558c2 Binary files /dev/null and b/src/assets/images/szjj/icon-分类器训练.png differ diff --git a/src/assets/images/szjj/qc001.gif b/src/assets/images/szjj/qc001.gif new file mode 100644 index 0000000..1048a21 Binary files /dev/null and b/src/assets/images/szjj/qc001.gif differ diff --git a/src/assets/images/szjj/qc002.gif b/src/assets/images/szjj/qc002.gif new file mode 100644 index 0000000..413bc0b Binary files /dev/null and b/src/assets/images/szjj/qc002.gif differ diff --git a/src/assets/images/szjj/qc003.gif b/src/assets/images/szjj/qc003.gif new file mode 100644 index 0000000..01a439b Binary files /dev/null and b/src/assets/images/szjj/qc003.gif differ diff --git a/src/assets/images/szjj/qc004.gif b/src/assets/images/szjj/qc004.gif new file mode 100644 index 0000000..be501fd Binary files /dev/null and b/src/assets/images/szjj/qc004.gif differ diff --git a/src/assets/images/szjj/qc005.gif b/src/assets/images/szjj/qc005.gif new file mode 100644 index 0000000..5e19363 Binary files /dev/null and b/src/assets/images/szjj/qc005.gif differ diff --git a/src/assets/images/szjj/qc006.gif b/src/assets/images/szjj/qc006.gif new file mode 100644 index 0000000..1ab5197 Binary files /dev/null and b/src/assets/images/szjj/qc006.gif differ diff --git a/src/assets/images/szjj/qc007.gif b/src/assets/images/szjj/qc007.gif new file mode 100644 index 0000000..5785d36 Binary files /dev/null and b/src/assets/images/szjj/qc007.gif differ diff --git a/src/assets/images/szjj/result.png b/src/assets/images/szjj/result.png new file mode 100644 index 0000000..83ae0eb Binary files /dev/null and b/src/assets/images/szjj/result.png differ diff --git a/src/assets/images/szjj/setpt1.png b/src/assets/images/szjj/setpt1.png new file mode 100644 index 0000000..dee3010 Binary files /dev/null and b/src/assets/images/szjj/setpt1.png differ diff --git a/src/assets/images/szjj/setpt2.png b/src/assets/images/szjj/setpt2.png new file mode 100644 index 0000000..234c5c1 Binary files /dev/null and b/src/assets/images/szjj/setpt2.png differ diff --git a/src/assets/images/szjj/setpt3.png b/src/assets/images/szjj/setpt3.png new file mode 100644 index 0000000..2361a24 Binary files /dev/null and b/src/assets/images/szjj/setpt3.png differ diff --git a/src/assets/images/szjj/t1.png b/src/assets/images/szjj/t1.png new file mode 100644 index 0000000..c91997b Binary files /dev/null and b/src/assets/images/szjj/t1.png differ diff --git a/src/assets/images/szjj/t10.png b/src/assets/images/szjj/t10.png new file mode 100644 index 0000000..d9950f8 Binary files /dev/null and b/src/assets/images/szjj/t10.png differ diff --git a/src/assets/images/szjj/t11.png b/src/assets/images/szjj/t11.png new file mode 100644 index 0000000..27a9204 Binary files /dev/null and b/src/assets/images/szjj/t11.png differ diff --git a/src/assets/images/szjj/t12.png b/src/assets/images/szjj/t12.png new file mode 100644 index 0000000..cf53c93 Binary files /dev/null and b/src/assets/images/szjj/t12.png differ diff --git a/src/assets/images/szjj/t13.png b/src/assets/images/szjj/t13.png new file mode 100644 index 0000000..beb6964 Binary files /dev/null and b/src/assets/images/szjj/t13.png differ diff --git a/src/assets/images/szjj/t14.png b/src/assets/images/szjj/t14.png new file mode 100644 index 0000000..657b0d2 Binary files /dev/null and b/src/assets/images/szjj/t14.png differ diff --git a/src/assets/images/szjj/t15.png b/src/assets/images/szjj/t15.png new file mode 100644 index 0000000..0859b33 Binary files /dev/null and b/src/assets/images/szjj/t15.png differ diff --git a/src/assets/images/szjj/t2.png b/src/assets/images/szjj/t2.png new file mode 100644 index 0000000..f69cd5f Binary files /dev/null and b/src/assets/images/szjj/t2.png differ diff --git a/src/assets/images/szjj/t3.png b/src/assets/images/szjj/t3.png new file mode 100644 index 0000000..3aad05f Binary files /dev/null and b/src/assets/images/szjj/t3.png differ diff --git a/src/assets/images/szjj/t4.png b/src/assets/images/szjj/t4.png new file mode 100644 index 0000000..c27674f Binary files /dev/null and b/src/assets/images/szjj/t4.png differ diff --git a/src/assets/images/szjj/t6.png b/src/assets/images/szjj/t6.png new file mode 100644 index 0000000..c866bb5 Binary files /dev/null and b/src/assets/images/szjj/t6.png differ diff --git a/src/assets/images/szjj/t7.png b/src/assets/images/szjj/t7.png new file mode 100644 index 0000000..d5507dd Binary files /dev/null and b/src/assets/images/szjj/t7.png differ diff --git a/src/assets/images/szjj/t8.png b/src/assets/images/szjj/t8.png new file mode 100644 index 0000000..1d3125b Binary files /dev/null and b/src/assets/images/szjj/t8.png differ diff --git a/src/assets/images/szjj/t9.png b/src/assets/images/szjj/t9.png new file mode 100644 index 0000000..87bd0cb Binary files /dev/null and b/src/assets/images/szjj/t9.png differ diff --git a/src/assets/images/szjj/tu.jpg b/src/assets/images/szjj/tu.jpg new file mode 100644 index 0000000..cd5464a Binary files /dev/null and b/src/assets/images/szjj/tu.jpg differ diff --git a/src/assets/images/szjj/tu.png b/src/assets/images/szjj/tu.png new file mode 100644 index 0000000..91040f8 Binary files /dev/null and b/src/assets/images/szjj/tu.png differ diff --git a/src/assets/images/szjj/u0001.png b/src/assets/images/szjj/u0001.png new file mode 100644 index 0000000..a0bac44 Binary files /dev/null and b/src/assets/images/szjj/u0001.png differ diff --git a/src/assets/images/szjj/u0002.png b/src/assets/images/szjj/u0002.png new file mode 100644 index 0000000..1aa5b82 Binary files /dev/null and b/src/assets/images/szjj/u0002.png differ diff --git a/src/assets/images/szjj/u0003.png b/src/assets/images/szjj/u0003.png new file mode 100644 index 0000000..f63748e Binary files /dev/null and b/src/assets/images/szjj/u0003.png differ diff --git a/src/assets/images/szjj/u0004.png b/src/assets/images/szjj/u0004.png new file mode 100644 index 0000000..a667dd2 Binary files /dev/null and b/src/assets/images/szjj/u0004.png differ diff --git a/src/assets/images/szjj/u0005.png b/src/assets/images/szjj/u0005.png new file mode 100644 index 0000000..8aeef8c Binary files /dev/null and b/src/assets/images/szjj/u0005.png differ diff --git a/src/assets/images/szjj/u1075.png b/src/assets/images/szjj/u1075.png new file mode 100644 index 0000000..ed0a423 Binary files /dev/null and b/src/assets/images/szjj/u1075.png differ diff --git a/src/assets/images/szjj/u1085.png b/src/assets/images/szjj/u1085.png new file mode 100644 index 0000000..d5bf166 Binary files /dev/null and b/src/assets/images/szjj/u1085.png differ diff --git a/src/assets/images/szjj/u1189.png b/src/assets/images/szjj/u1189.png new file mode 100644 index 0000000..12930a4 Binary files /dev/null and b/src/assets/images/szjj/u1189.png differ diff --git a/src/assets/images/szjj/u1190 (1).png b/src/assets/images/szjj/u1190 (1).png new file mode 100644 index 0000000..8319daa Binary files /dev/null and b/src/assets/images/szjj/u1190 (1).png differ diff --git a/src/assets/images/szjj/u1190.png b/src/assets/images/szjj/u1190.png new file mode 100644 index 0000000..8319daa Binary files /dev/null and b/src/assets/images/szjj/u1190.png differ diff --git a/src/assets/images/szjj/u1592.png b/src/assets/images/szjj/u1592.png new file mode 100644 index 0000000..a5cb8ad Binary files /dev/null and b/src/assets/images/szjj/u1592.png differ diff --git a/src/assets/images/szjj/u1594.png b/src/assets/images/szjj/u1594.png new file mode 100644 index 0000000..f261f69 Binary files /dev/null and b/src/assets/images/szjj/u1594.png differ diff --git a/src/assets/images/szjj/u1597.png b/src/assets/images/szjj/u1597.png new file mode 100644 index 0000000..063bbf5 Binary files /dev/null and b/src/assets/images/szjj/u1597.png differ diff --git a/src/assets/images/szjj/u1685.png b/src/assets/images/szjj/u1685.png new file mode 100644 index 0000000..8e4edc2 Binary files /dev/null and b/src/assets/images/szjj/u1685.png differ diff --git a/src/assets/images/szjj/u1706.png b/src/assets/images/szjj/u1706.png new file mode 100644 index 0000000..219e821 Binary files /dev/null and b/src/assets/images/szjj/u1706.png differ diff --git a/src/assets/images/szjj/u191.png b/src/assets/images/szjj/u191.png new file mode 100644 index 0000000..8facf0f Binary files /dev/null and b/src/assets/images/szjj/u191.png differ diff --git a/src/assets/images/szjj/u1914.png b/src/assets/images/szjj/u1914.png new file mode 100644 index 0000000..36983b4 Binary files /dev/null and b/src/assets/images/szjj/u1914.png differ diff --git a/src/assets/images/szjj/u1916.png b/src/assets/images/szjj/u1916.png new file mode 100644 index 0000000..00f8b32 Binary files /dev/null and b/src/assets/images/szjj/u1916.png differ diff --git a/src/assets/images/szjj/u1921.png b/src/assets/images/szjj/u1921.png new file mode 100644 index 0000000..218dff8 Binary files /dev/null and b/src/assets/images/szjj/u1921.png differ diff --git a/src/assets/images/szjj/u1924.png b/src/assets/images/szjj/u1924.png new file mode 100644 index 0000000..50f79d0 Binary files /dev/null and b/src/assets/images/szjj/u1924.png differ diff --git a/src/assets/images/szjj/u1930.png b/src/assets/images/szjj/u1930.png new file mode 100644 index 0000000..00e391a Binary files /dev/null and b/src/assets/images/szjj/u1930.png differ diff --git a/src/assets/images/szjj/u1931.png b/src/assets/images/szjj/u1931.png new file mode 100644 index 0000000..ff62c68 Binary files /dev/null and b/src/assets/images/szjj/u1931.png differ diff --git a/src/assets/images/szjj/u1936.png b/src/assets/images/szjj/u1936.png new file mode 100644 index 0000000..cd9f4e8 Binary files /dev/null and b/src/assets/images/szjj/u1936.png differ diff --git a/src/assets/images/szjj/u1942.png b/src/assets/images/szjj/u1942.png new file mode 100644 index 0000000..4844fec Binary files /dev/null and b/src/assets/images/szjj/u1942.png differ diff --git a/src/assets/images/szjj/u1945.jpg b/src/assets/images/szjj/u1945.jpg new file mode 100644 index 0000000..fa3c050 Binary files /dev/null and b/src/assets/images/szjj/u1945.jpg differ diff --git a/src/assets/images/szjj/u1953.png b/src/assets/images/szjj/u1953.png new file mode 100644 index 0000000..7038c08 Binary files /dev/null and b/src/assets/images/szjj/u1953.png differ diff --git a/src/assets/images/szjj/u1957.png b/src/assets/images/szjj/u1957.png new file mode 100644 index 0000000..654b286 Binary files /dev/null and b/src/assets/images/szjj/u1957.png differ diff --git a/src/assets/images/szjj/u1959.png b/src/assets/images/szjj/u1959.png new file mode 100644 index 0000000..8146d99 Binary files /dev/null and b/src/assets/images/szjj/u1959.png differ diff --git a/src/assets/images/szjj/u2016.png b/src/assets/images/szjj/u2016.png new file mode 100644 index 0000000..343165f Binary files /dev/null and b/src/assets/images/szjj/u2016.png differ diff --git a/src/assets/images/szjj/u2022.png b/src/assets/images/szjj/u2022.png new file mode 100644 index 0000000..9d9c8c5 Binary files /dev/null and b/src/assets/images/szjj/u2022.png differ diff --git a/src/assets/images/szjj/u2031.png b/src/assets/images/szjj/u2031.png new file mode 100644 index 0000000..b4e9457 Binary files /dev/null and b/src/assets/images/szjj/u2031.png differ diff --git a/src/assets/images/szjj/u2345.png b/src/assets/images/szjj/u2345.png new file mode 100644 index 0000000..20a1182 Binary files /dev/null and b/src/assets/images/szjj/u2345.png differ diff --git a/src/assets/images/szjj/u2349.png b/src/assets/images/szjj/u2349.png new file mode 100644 index 0000000..5579638 Binary files /dev/null and b/src/assets/images/szjj/u2349.png differ diff --git a/src/assets/images/szjj/u2353.png b/src/assets/images/szjj/u2353.png new file mode 100644 index 0000000..da8dbb9 Binary files /dev/null and b/src/assets/images/szjj/u2353.png differ diff --git a/src/assets/images/szjj/u2357.png b/src/assets/images/szjj/u2357.png new file mode 100644 index 0000000..20d4c00 Binary files /dev/null and b/src/assets/images/szjj/u2357.png differ diff --git a/src/assets/images/szjj/u2360.png b/src/assets/images/szjj/u2360.png new file mode 100644 index 0000000..493e41b Binary files /dev/null and b/src/assets/images/szjj/u2360.png differ diff --git a/src/assets/images/szjj/u2362.png b/src/assets/images/szjj/u2362.png new file mode 100644 index 0000000..ccb6aba Binary files /dev/null and b/src/assets/images/szjj/u2362.png differ diff --git a/src/assets/images/szjj/u2470.png b/src/assets/images/szjj/u2470.png new file mode 100644 index 0000000..c074ac7 Binary files /dev/null and b/src/assets/images/szjj/u2470.png differ diff --git a/src/assets/images/szjj/u2679.png b/src/assets/images/szjj/u2679.png new file mode 100644 index 0000000..6e3a21b Binary files /dev/null and b/src/assets/images/szjj/u2679.png differ diff --git a/src/assets/images/szjj/u2681.png b/src/assets/images/szjj/u2681.png new file mode 100644 index 0000000..3bfb080 Binary files /dev/null and b/src/assets/images/szjj/u2681.png differ diff --git a/src/assets/images/szjj/u2683.png b/src/assets/images/szjj/u2683.png new file mode 100644 index 0000000..db32592 Binary files /dev/null and b/src/assets/images/szjj/u2683.png differ diff --git a/src/assets/images/szjj/u2685.png b/src/assets/images/szjj/u2685.png new file mode 100644 index 0000000..cc48c55 Binary files /dev/null and b/src/assets/images/szjj/u2685.png differ diff --git a/src/assets/images/szjj/u2687.png b/src/assets/images/szjj/u2687.png new file mode 100644 index 0000000..acad3b7 Binary files /dev/null and b/src/assets/images/szjj/u2687.png differ diff --git a/src/assets/images/szjj/u2847.png b/src/assets/images/szjj/u2847.png new file mode 100644 index 0000000..362065b Binary files /dev/null and b/src/assets/images/szjj/u2847.png differ diff --git a/src/assets/images/szjj/u2850.png b/src/assets/images/szjj/u2850.png new file mode 100644 index 0000000..71ba703 Binary files /dev/null and b/src/assets/images/szjj/u2850.png differ diff --git a/src/assets/images/szjj/u2959.png b/src/assets/images/szjj/u2959.png new file mode 100644 index 0000000..e0a4c4b Binary files /dev/null and b/src/assets/images/szjj/u2959.png differ diff --git a/src/assets/images/szjj/u2962.png b/src/assets/images/szjj/u2962.png new file mode 100644 index 0000000..996507f Binary files /dev/null and b/src/assets/images/szjj/u2962.png differ diff --git a/src/assets/images/szjj/u2964.png b/src/assets/images/szjj/u2964.png new file mode 100644 index 0000000..2f1fab0 Binary files /dev/null and b/src/assets/images/szjj/u2964.png differ diff --git a/src/assets/images/szjj/u2968.png b/src/assets/images/szjj/u2968.png new file mode 100644 index 0000000..cf1cfeb Binary files /dev/null and b/src/assets/images/szjj/u2968.png differ diff --git a/src/assets/images/szjj/u2972.png b/src/assets/images/szjj/u2972.png new file mode 100644 index 0000000..54fed8c Binary files /dev/null and b/src/assets/images/szjj/u2972.png differ diff --git a/src/assets/images/szjj/u2979.png b/src/assets/images/szjj/u2979.png new file mode 100644 index 0000000..58fd37f Binary files /dev/null and b/src/assets/images/szjj/u2979.png differ diff --git a/src/assets/images/szjj/u2980.png b/src/assets/images/szjj/u2980.png new file mode 100644 index 0000000..ea1c8ea Binary files /dev/null and b/src/assets/images/szjj/u2980.png differ diff --git a/src/assets/images/szjj/u2984.png b/src/assets/images/szjj/u2984.png new file mode 100644 index 0000000..2ebbc0c Binary files /dev/null and b/src/assets/images/szjj/u2984.png differ diff --git a/src/assets/images/szjj/u312.png b/src/assets/images/szjj/u312.png new file mode 100644 index 0000000..120e5ab Binary files /dev/null and b/src/assets/images/szjj/u312.png differ diff --git a/src/assets/images/szjj/u316.png b/src/assets/images/szjj/u316.png new file mode 100644 index 0000000..4539c73 Binary files /dev/null and b/src/assets/images/szjj/u316.png differ diff --git a/src/assets/images/szjj/u317.png b/src/assets/images/szjj/u317.png new file mode 100644 index 0000000..401fe85 Binary files /dev/null and b/src/assets/images/szjj/u317.png differ diff --git a/src/assets/images/szjj/u319.png b/src/assets/images/szjj/u319.png new file mode 100644 index 0000000..94e2297 Binary files /dev/null and b/src/assets/images/szjj/u319.png differ diff --git a/src/assets/images/szjj/u320.png b/src/assets/images/szjj/u320.png new file mode 100644 index 0000000..2a84a19 Binary files /dev/null and b/src/assets/images/szjj/u320.png differ diff --git a/src/assets/images/szjj/u3327.png b/src/assets/images/szjj/u3327.png new file mode 100644 index 0000000..09f5cf4 Binary files /dev/null and b/src/assets/images/szjj/u3327.png differ diff --git a/src/assets/images/szjj/u3329.png b/src/assets/images/szjj/u3329.png new file mode 100644 index 0000000..7eae663 Binary files /dev/null and b/src/assets/images/szjj/u3329.png differ diff --git a/src/assets/images/szjj/u3329png b/src/assets/images/szjj/u3329png new file mode 100644 index 0000000..7eae663 Binary files /dev/null and b/src/assets/images/szjj/u3329png differ diff --git a/src/assets/images/szjj/u3331.png b/src/assets/images/szjj/u3331.png new file mode 100644 index 0000000..08033ed Binary files /dev/null and b/src/assets/images/szjj/u3331.png differ diff --git a/src/assets/images/szjj/u3333.png b/src/assets/images/szjj/u3333.png new file mode 100644 index 0000000..5cf4622 Binary files /dev/null and b/src/assets/images/szjj/u3333.png differ diff --git a/src/assets/images/szjj/u3337.png b/src/assets/images/szjj/u3337.png new file mode 100644 index 0000000..58e73b3 Binary files /dev/null and b/src/assets/images/szjj/u3337.png differ diff --git a/src/assets/images/szjj/u3660.png b/src/assets/images/szjj/u3660.png new file mode 100644 index 0000000..fdfc582 Binary files /dev/null and b/src/assets/images/szjj/u3660.png differ diff --git a/src/assets/images/szjj/u3939.png b/src/assets/images/szjj/u3939.png new file mode 100644 index 0000000..77f24ff Binary files /dev/null and b/src/assets/images/szjj/u3939.png differ diff --git a/src/assets/images/szjj/u3943.png b/src/assets/images/szjj/u3943.png new file mode 100644 index 0000000..b1123be Binary files /dev/null and b/src/assets/images/szjj/u3943.png differ diff --git a/src/assets/images/szjj/u3947.png b/src/assets/images/szjj/u3947.png new file mode 100644 index 0000000..6bc0218 Binary files /dev/null and b/src/assets/images/szjj/u3947.png differ diff --git a/src/assets/images/szjj/u4045.png b/src/assets/images/szjj/u4045.png new file mode 100644 index 0000000..6999873 Binary files /dev/null and b/src/assets/images/szjj/u4045.png differ diff --git a/src/assets/images/szjj/u4053.png b/src/assets/images/szjj/u4053.png new file mode 100644 index 0000000..5f306f6 Binary files /dev/null and b/src/assets/images/szjj/u4053.png differ diff --git a/src/assets/images/szjj/u4054.png b/src/assets/images/szjj/u4054.png new file mode 100644 index 0000000..ad395e6 Binary files /dev/null and b/src/assets/images/szjj/u4054.png differ diff --git a/src/assets/images/szjj/u4055.png b/src/assets/images/szjj/u4055.png new file mode 100644 index 0000000..35e6693 Binary files /dev/null and b/src/assets/images/szjj/u4055.png differ diff --git a/src/assets/images/szjj/u4056.png b/src/assets/images/szjj/u4056.png new file mode 100644 index 0000000..ce1afe0 Binary files /dev/null and b/src/assets/images/szjj/u4056.png differ diff --git a/src/assets/images/szjj/u4057.png b/src/assets/images/szjj/u4057.png new file mode 100644 index 0000000..7dc6fa2 Binary files /dev/null and b/src/assets/images/szjj/u4057.png differ diff --git a/src/assets/images/szjj/u4058.png b/src/assets/images/szjj/u4058.png new file mode 100644 index 0000000..5137ec4 Binary files /dev/null and b/src/assets/images/szjj/u4058.png differ diff --git a/src/assets/images/szjj/u4059.png b/src/assets/images/szjj/u4059.png new file mode 100644 index 0000000..60a23bc Binary files /dev/null and b/src/assets/images/szjj/u4059.png differ diff --git a/src/assets/images/szjj/u436.png b/src/assets/images/szjj/u436.png new file mode 100644 index 0000000..dc80967 Binary files /dev/null and b/src/assets/images/szjj/u436.png differ diff --git a/src/assets/images/szjj/u440.png b/src/assets/images/szjj/u440.png new file mode 100644 index 0000000..f739dde Binary files /dev/null and b/src/assets/images/szjj/u440.png differ diff --git a/src/assets/images/szjj/u443.png b/src/assets/images/szjj/u443.png new file mode 100644 index 0000000..70f5efb Binary files /dev/null and b/src/assets/images/szjj/u443.png differ diff --git a/src/assets/images/szjj/u446 (1).png b/src/assets/images/szjj/u446 (1).png new file mode 100644 index 0000000..1cdcab4 Binary files /dev/null and b/src/assets/images/szjj/u446 (1).png differ diff --git a/src/assets/images/szjj/u446.png b/src/assets/images/szjj/u446.png new file mode 100644 index 0000000..1cdcab4 Binary files /dev/null and b/src/assets/images/szjj/u446.png differ diff --git a/src/assets/images/szjj/u455.png b/src/assets/images/szjj/u455.png new file mode 100644 index 0000000..8b6a4f6 Binary files /dev/null and b/src/assets/images/szjj/u455.png differ diff --git a/src/assets/images/szjj/u458.png b/src/assets/images/szjj/u458.png new file mode 100644 index 0000000..31b8a8f Binary files /dev/null and b/src/assets/images/szjj/u458.png differ diff --git a/src/assets/images/szjj/u478.png b/src/assets/images/szjj/u478.png new file mode 100644 index 0000000..d3c5ca6 Binary files /dev/null and b/src/assets/images/szjj/u478.png differ diff --git a/src/assets/images/szjj/u479.png b/src/assets/images/szjj/u479.png new file mode 100644 index 0000000..6f2f671 Binary files /dev/null and b/src/assets/images/szjj/u479.png differ diff --git a/src/assets/images/szjj/u480.png b/src/assets/images/szjj/u480.png new file mode 100644 index 0000000..f4c5c1c Binary files /dev/null and b/src/assets/images/szjj/u480.png differ diff --git a/src/assets/images/szjj/u481.png b/src/assets/images/szjj/u481.png new file mode 100644 index 0000000..228669d Binary files /dev/null and b/src/assets/images/szjj/u481.png differ diff --git a/src/assets/images/szjj/u527.png b/src/assets/images/szjj/u527.png new file mode 100644 index 0000000..f8f2b41 Binary files /dev/null and b/src/assets/images/szjj/u527.png differ diff --git a/src/assets/images/szjj/u573.png b/src/assets/images/szjj/u573.png new file mode 100644 index 0000000..54d05d3 Binary files /dev/null and b/src/assets/images/szjj/u573.png differ diff --git a/src/assets/images/szjj/u579.png b/src/assets/images/szjj/u579.png new file mode 100644 index 0000000..c72ec81 Binary files /dev/null and b/src/assets/images/szjj/u579.png differ diff --git a/src/assets/images/szjj/u582.png b/src/assets/images/szjj/u582.png new file mode 100644 index 0000000..8a67c71 Binary files /dev/null and b/src/assets/images/szjj/u582.png differ diff --git a/src/assets/images/szjj/u744.jpg b/src/assets/images/szjj/u744.jpg new file mode 100644 index 0000000..50d7cc1 Binary files /dev/null and b/src/assets/images/szjj/u744.jpg differ diff --git a/src/assets/images/szjj/u745.png b/src/assets/images/szjj/u745.png new file mode 100644 index 0000000..e40a34a Binary files /dev/null and b/src/assets/images/szjj/u745.png differ diff --git a/src/assets/images/szjj/u783.png b/src/assets/images/szjj/u783.png new file mode 100644 index 0000000..053bf58 Binary files /dev/null and b/src/assets/images/szjj/u783.png differ diff --git a/src/assets/images/szjj/u785.png b/src/assets/images/szjj/u785.png new file mode 100644 index 0000000..b0e9d47 Binary files /dev/null and b/src/assets/images/szjj/u785.png differ diff --git a/src/assets/images/szjj/u788.png b/src/assets/images/szjj/u788.png new file mode 100644 index 0000000..932dd33 Binary files /dev/null and b/src/assets/images/szjj/u788.png differ diff --git a/src/assets/images/szjj/u790.png b/src/assets/images/szjj/u790.png new file mode 100644 index 0000000..a8b4e40 Binary files /dev/null and b/src/assets/images/szjj/u790.png differ diff --git a/src/assets/images/szjj/u792.png b/src/assets/images/szjj/u792.png new file mode 100644 index 0000000..07b0cd2 Binary files /dev/null and b/src/assets/images/szjj/u792.png differ diff --git a/src/assets/images/szjj/u794.png b/src/assets/images/szjj/u794.png new file mode 100644 index 0000000..dc19241 Binary files /dev/null and b/src/assets/images/szjj/u794.png differ diff --git a/src/assets/images/szjj/u815.png b/src/assets/images/szjj/u815.png new file mode 100644 index 0000000..146022a Binary files /dev/null and b/src/assets/images/szjj/u815.png differ diff --git a/src/assets/images/szjj/u816.png b/src/assets/images/szjj/u816.png new file mode 100644 index 0000000..808e456 Binary files /dev/null and b/src/assets/images/szjj/u816.png differ diff --git a/src/assets/images/szjj/u817.png b/src/assets/images/szjj/u817.png new file mode 100644 index 0000000..1967135 Binary files /dev/null and b/src/assets/images/szjj/u817.png differ diff --git a/src/assets/images/szjj/u818.png b/src/assets/images/szjj/u818.png new file mode 100644 index 0000000..c88f26c Binary files /dev/null and b/src/assets/images/szjj/u818.png differ diff --git a/src/assets/images/szjj/u852.png b/src/assets/images/szjj/u852.png new file mode 100644 index 0000000..c569fa8 Binary files /dev/null and b/src/assets/images/szjj/u852.png differ diff --git a/src/assets/images/szjj/u853.png b/src/assets/images/szjj/u853.png new file mode 100644 index 0000000..24ddc85 Binary files /dev/null and b/src/assets/images/szjj/u853.png differ diff --git a/src/assets/images/szjj/u856.png b/src/assets/images/szjj/u856.png new file mode 100644 index 0000000..6f7eb8a Binary files /dev/null and b/src/assets/images/szjj/u856.png differ diff --git a/src/assets/images/szjj/u859.png b/src/assets/images/szjj/u859.png new file mode 100644 index 0000000..487541d Binary files /dev/null and b/src/assets/images/szjj/u859.png differ diff --git a/src/assets/images/szjj/u866.png b/src/assets/images/szjj/u866.png new file mode 100644 index 0000000..d6600e0 Binary files /dev/null and b/src/assets/images/szjj/u866.png differ diff --git a/src/assets/images/szjj/u868.png b/src/assets/images/szjj/u868.png new file mode 100644 index 0000000..3df964e Binary files /dev/null and b/src/assets/images/szjj/u868.png differ diff --git a/src/assets/images/szjj/u869.png b/src/assets/images/szjj/u869.png new file mode 100644 index 0000000..e199c3a Binary files /dev/null and b/src/assets/images/szjj/u869.png differ diff --git a/src/assets/images/szjj/u894.png b/src/assets/images/szjj/u894.png new file mode 100644 index 0000000..8ae6b92 Binary files /dev/null and b/src/assets/images/szjj/u894.png differ diff --git a/src/assets/images/szjj/u895.png b/src/assets/images/szjj/u895.png new file mode 100644 index 0000000..3d6a132 Binary files /dev/null and b/src/assets/images/szjj/u895.png differ diff --git a/src/assets/images/szjj/u910.jpg b/src/assets/images/szjj/u910.jpg new file mode 100644 index 0000000..9633913 Binary files /dev/null and b/src/assets/images/szjj/u910.jpg differ diff --git a/src/assets/images/szjj/u911.jpg b/src/assets/images/szjj/u911.jpg new file mode 100644 index 0000000..dc727cc Binary files /dev/null and b/src/assets/images/szjj/u911.jpg differ diff --git a/src/assets/images/szjj/u916.jpg b/src/assets/images/szjj/u916.jpg new file mode 100644 index 0000000..935e9e7 Binary files /dev/null and b/src/assets/images/szjj/u916.jpg differ diff --git a/src/assets/images/szjj/vr全景.png b/src/assets/images/szjj/vr全景.png new file mode 100644 index 0000000..fabe87d Binary files /dev/null and b/src/assets/images/szjj/vr全景.png differ diff --git a/src/assets/images/szjj/上传图片.png b/src/assets/images/szjj/上传图片.png new file mode 100644 index 0000000..afba24a Binary files /dev/null and b/src/assets/images/szjj/上传图片.png differ diff --git a/src/assets/images/szjj/下载.png b/src/assets/images/szjj/下载.png new file mode 100644 index 0000000..e700d53 Binary files /dev/null and b/src/assets/images/szjj/下载.png differ diff --git a/src/assets/images/szjj/为该文档登记上链.png b/src/assets/images/szjj/为该文档登记上链.png new file mode 100644 index 0000000..b1b74aa Binary files /dev/null and b/src/assets/images/szjj/为该文档登记上链.png differ diff --git a/src/assets/images/szjj/主服务器Server.png b/src/assets/images/szjj/主服务器Server.png new file mode 100644 index 0000000..ed6521a Binary files /dev/null and b/src/assets/images/szjj/主服务器Server.png differ diff --git a/src/assets/images/szjj/主服务器Server_none.png b/src/assets/images/szjj/主服务器Server_none.png new file mode 100644 index 0000000..7869e19 Binary files /dev/null and b/src/assets/images/szjj/主服务器Server_none.png differ diff --git a/src/assets/images/szjj/云部署.png b/src/assets/images/szjj/云部署.png new file mode 100644 index 0000000..db30d7e Binary files /dev/null and b/src/assets/images/szjj/云部署.png differ diff --git a/src/assets/images/szjj/人工识别.png b/src/assets/images/szjj/人工识别.png new file mode 100644 index 0000000..58d5217 Binary files /dev/null and b/src/assets/images/szjj/人工识别.png differ diff --git a/src/assets/images/szjj/人脸图像预处理.png b/src/assets/images/szjj/人脸图像预处理.png new file mode 100644 index 0000000..32615e2 Binary files /dev/null and b/src/assets/images/szjj/人脸图像预处理.png differ diff --git a/src/assets/images/szjj/任务背景.png b/src/assets/images/szjj/任务背景.png new file mode 100644 index 0000000..91b1966 Binary files /dev/null and b/src/assets/images/szjj/任务背景.png differ diff --git a/src/assets/images/szjj/企业认证.png b/src/assets/images/szjj/企业认证.png new file mode 100644 index 0000000..13e2c6d Binary files /dev/null and b/src/assets/images/szjj/企业认证.png differ diff --git a/src/assets/images/szjj/侧边栏.png b/src/assets/images/szjj/侧边栏.png new file mode 100644 index 0000000..717adf2 Binary files /dev/null and b/src/assets/images/szjj/侧边栏.png differ diff --git a/src/assets/images/szjj/侧边栏3.png b/src/assets/images/szjj/侧边栏3.png new file mode 100644 index 0000000..9759b31 Binary files /dev/null and b/src/assets/images/szjj/侧边栏3.png differ diff --git a/src/assets/images/szjj/侧边栏4.png b/src/assets/images/szjj/侧边栏4.png new file mode 100644 index 0000000..6dba424 Binary files /dev/null and b/src/assets/images/szjj/侧边栏4.png differ diff --git a/src/assets/images/szjj/侧边栏_szjr.png b/src/assets/images/szjj/侧边栏_szjr.png new file mode 100644 index 0000000..2098896 Binary files /dev/null and b/src/assets/images/szjj/侧边栏_szjr.png differ diff --git a/src/assets/images/szjj/侧边栏_szmy.png b/src/assets/images/szjj/侧边栏_szmy.png new file mode 100644 index 0000000..31094ef Binary files /dev/null and b/src/assets/images/szjj/侧边栏_szmy.png differ diff --git a/src/assets/images/szjj/关闭.png b/src/assets/images/szjj/关闭.png new file mode 100644 index 0000000..51b81ed Binary files /dev/null and b/src/assets/images/szjj/关闭.png differ diff --git a/src/assets/images/szjj/关闭2.png b/src/assets/images/szjj/关闭2.png new file mode 100644 index 0000000..cf4f032 Binary files /dev/null and b/src/assets/images/szjj/关闭2.png differ diff --git a/src/assets/images/szjj/关闭框.png b/src/assets/images/szjj/关闭框.png new file mode 100644 index 0000000..6accc95 Binary files /dev/null and b/src/assets/images/szjj/关闭框.png differ diff --git a/src/assets/images/szjj/减少.png b/src/assets/images/szjj/减少.png new file mode 100644 index 0000000..f9a790e Binary files /dev/null and b/src/assets/images/szjj/减少.png differ diff --git a/src/assets/images/szjj/分割线.png b/src/assets/images/szjj/分割线.png new file mode 100644 index 0000000..e41ec03 Binary files /dev/null and b/src/assets/images/szjj/分割线.png differ diff --git a/src/assets/images/szjj/发售.png b/src/assets/images/szjj/发售.png new file mode 100644 index 0000000..e0fd17b Binary files /dev/null and b/src/assets/images/szjj/发售.png differ diff --git a/src/assets/images/szjj/发起询价.png b/src/assets/images/szjj/发起询价.png new file mode 100644 index 0000000..5abaf0c Binary files /dev/null and b/src/assets/images/szjj/发起询价.png differ diff --git a/src/assets/images/szjj/右侧边栏.png b/src/assets/images/szjj/右侧边栏.png new file mode 100644 index 0000000..5d1435e Binary files /dev/null and b/src/assets/images/szjj/右侧边栏.png differ diff --git a/src/assets/images/szjj/右侧边栏2.png b/src/assets/images/szjj/右侧边栏2.png new file mode 100644 index 0000000..4166d97 Binary files /dev/null and b/src/assets/images/szjj/右侧边栏2.png differ diff --git a/src/assets/images/szjj/右侧边栏3.png b/src/assets/images/szjj/右侧边栏3.png new file mode 100644 index 0000000..9749a24 Binary files /dev/null and b/src/assets/images/szjj/右侧边栏3.png differ diff --git a/src/assets/images/szjj/名字节点.png b/src/assets/images/szjj/名字节点.png new file mode 100644 index 0000000..e552aa5 Binary files /dev/null and b/src/assets/images/szjj/名字节点.png differ diff --git a/src/assets/images/szjj/图层 11.png b/src/assets/images/szjj/图层 11.png new file mode 100644 index 0000000..7779b82 Binary files /dev/null and b/src/assets/images/szjj/图层 11.png differ diff --git a/src/assets/images/szjj/图层 9.png b/src/assets/images/szjj/图层 9.png new file mode 100644 index 0000000..d320a70 Binary files /dev/null and b/src/assets/images/szjj/图层 9.png differ diff --git a/src/assets/images/szjj/图层_znzz.png b/src/assets/images/szjj/图层_znzz.png new file mode 100644 index 0000000..8bbc9e0 Binary files /dev/null and b/src/assets/images/szjj/图层_znzz.png differ diff --git a/src/assets/images/szjj/圆角矩形 10 拷贝 3.png b/src/assets/images/szjj/圆角矩形 10 拷贝 3.png new file mode 100644 index 0000000..9bca158 Binary files /dev/null and b/src/assets/images/szjj/圆角矩形 10 拷贝 3.png differ diff --git a/src/assets/images/szjj/圆角矩形 10.png b/src/assets/images/szjj/圆角矩形 10.png new file mode 100644 index 0000000..3394397 Binary files /dev/null and b/src/assets/images/szjj/圆角矩形 10.png differ diff --git a/src/assets/images/szjj/圆角矩形10.png b/src/assets/images/szjj/圆角矩形10.png new file mode 100644 index 0000000..90c8a96 Binary files /dev/null and b/src/assets/images/szjj/圆角矩形10.png differ diff --git a/src/assets/images/szjj/头像1(1).png b/src/assets/images/szjj/头像1(1).png new file mode 100644 index 0000000..e201720 Binary files /dev/null and b/src/assets/images/szjj/头像1(1).png differ diff --git a/src/assets/images/szjj/头像1.png b/src/assets/images/szjj/头像1.png new file mode 100644 index 0000000..c83e56b Binary files /dev/null and b/src/assets/images/szjj/头像1.png differ diff --git a/src/assets/images/szjj/头像3.png b/src/assets/images/szjj/头像3.png new file mode 100644 index 0000000..f2c52a6 Binary files /dev/null and b/src/assets/images/szjj/头像3.png differ diff --git a/src/assets/images/szjj/头像4.png b/src/assets/images/szjj/头像4.png new file mode 100644 index 0000000..d919822 Binary files /dev/null and b/src/assets/images/szjj/头像4.png differ diff --git a/src/assets/images/szjj/头像5.png b/src/assets/images/szjj/头像5.png new file mode 100644 index 0000000..ee2bdb9 Binary files /dev/null and b/src/assets/images/szjj/头像5.png differ diff --git a/src/assets/images/szjj/头像6.png b/src/assets/images/szjj/头像6.png new file mode 100644 index 0000000..42b2b65 Binary files /dev/null and b/src/assets/images/szjj/头像6.png differ diff --git a/src/assets/images/szjj/头像7.png b/src/assets/images/szjj/头像7.png new file mode 100644 index 0000000..a0a4200 Binary files /dev/null and b/src/assets/images/szjj/头像7.png differ diff --git a/src/assets/images/szjj/头像8.png b/src/assets/images/szjj/头像8.png new file mode 100644 index 0000000..e73a970 Binary files /dev/null and b/src/assets/images/szjj/头像8.png differ diff --git a/src/assets/images/szjj/头像9.png b/src/assets/images/szjj/头像9.png new file mode 100644 index 0000000..de72466 Binary files /dev/null and b/src/assets/images/szjj/头像9.png differ diff --git a/src/assets/images/szjj/客户端.png b/src/assets/images/szjj/客户端.png new file mode 100644 index 0000000..7983c9a Binary files /dev/null and b/src/assets/images/szjj/客户端.png differ diff --git a/src/assets/images/szjj/客户端_top.png b/src/assets/images/szjj/客户端_top.png new file mode 100644 index 0000000..0602ee1 Binary files /dev/null and b/src/assets/images/szjj/客户端_top.png differ diff --git a/src/assets/images/szjj/导入数据.png b/src/assets/images/szjj/导入数据.png new file mode 100644 index 0000000..056ee07 Binary files /dev/null and b/src/assets/images/szjj/导入数据.png differ diff --git a/src/assets/images/szjj/导出数据.png b/src/assets/images/szjj/导出数据.png new file mode 100644 index 0000000..dccac1b Binary files /dev/null and b/src/assets/images/szjj/导出数据.png differ diff --git a/src/assets/images/szjj/年龄.png b/src/assets/images/szjj/年龄.png new file mode 100644 index 0000000..ed85665 Binary files /dev/null and b/src/assets/images/szjj/年龄.png differ diff --git a/src/assets/images/szjj/年龄1.png b/src/assets/images/szjj/年龄1.png new file mode 100644 index 0000000..d7e404e Binary files /dev/null and b/src/assets/images/szjj/年龄1.png differ diff --git a/src/assets/images/szjj/序号1.png b/src/assets/images/szjj/序号1.png new file mode 100644 index 0000000..12881be Binary files /dev/null and b/src/assets/images/szjj/序号1.png differ diff --git a/src/assets/images/szjj/序号10.png b/src/assets/images/szjj/序号10.png new file mode 100644 index 0000000..e8148f4 Binary files /dev/null and b/src/assets/images/szjj/序号10.png differ diff --git a/src/assets/images/szjj/序号2.png b/src/assets/images/szjj/序号2.png new file mode 100644 index 0000000..d860afd Binary files /dev/null and b/src/assets/images/szjj/序号2.png differ diff --git a/src/assets/images/szjj/序号3.png b/src/assets/images/szjj/序号3.png new file mode 100644 index 0000000..7efbd26 Binary files /dev/null and b/src/assets/images/szjj/序号3.png differ diff --git a/src/assets/images/szjj/序号4.png b/src/assets/images/szjj/序号4.png new file mode 100644 index 0000000..8e72c27 Binary files /dev/null and b/src/assets/images/szjj/序号4.png differ diff --git a/src/assets/images/szjj/序号5.png b/src/assets/images/szjj/序号5.png new file mode 100644 index 0000000..652bf6a Binary files /dev/null and b/src/assets/images/szjj/序号5.png differ diff --git a/src/assets/images/szjj/序号6.png b/src/assets/images/szjj/序号6.png new file mode 100644 index 0000000..fc2f035 Binary files /dev/null and b/src/assets/images/szjj/序号6.png differ diff --git a/src/assets/images/szjj/序号7.png b/src/assets/images/szjj/序号7.png new file mode 100644 index 0000000..c21d9f3 Binary files /dev/null and b/src/assets/images/szjj/序号7.png differ diff --git a/src/assets/images/szjj/序号8.png b/src/assets/images/szjj/序号8.png new file mode 100644 index 0000000..7ae2e59 Binary files /dev/null and b/src/assets/images/szjj/序号8.png differ diff --git a/src/assets/images/szjj/序号9.png b/src/assets/images/szjj/序号9.png new file mode 100644 index 0000000..4567279 Binary files /dev/null and b/src/assets/images/szjj/序号9.png differ diff --git a/src/assets/images/szjj/开始上链.png b/src/assets/images/szjj/开始上链.png new file mode 100644 index 0000000..10b07fd Binary files /dev/null and b/src/assets/images/szjj/开始上链.png differ diff --git a/src/assets/images/szjj/弹窗标题.png b/src/assets/images/szjj/弹窗标题.png new file mode 100644 index 0000000..5f6ab2f Binary files /dev/null and b/src/assets/images/szjj/弹窗标题.png differ diff --git a/src/assets/images/szjj/性别(1).png b/src/assets/images/szjj/性别(1).png new file mode 100644 index 0000000..392283d Binary files /dev/null and b/src/assets/images/szjj/性别(1).png differ diff --git a/src/assets/images/szjj/性别(2).png b/src/assets/images/szjj/性别(2).png new file mode 100644 index 0000000..b559b15 Binary files /dev/null and b/src/assets/images/szjj/性别(2).png differ diff --git a/src/assets/images/szjj/性别.png b/src/assets/images/szjj/性别.png new file mode 100644 index 0000000..00e1018 Binary files /dev/null and b/src/assets/images/szjj/性别.png differ diff --git a/src/assets/images/szjj/成功.png b/src/assets/images/szjj/成功.png new file mode 100644 index 0000000..e6d7e81 Binary files /dev/null and b/src/assets/images/szjj/成功.png differ diff --git a/src/assets/images/szjj/截图.png b/src/assets/images/szjj/截图.png new file mode 100644 index 0000000..620f191 Binary files /dev/null and b/src/assets/images/szjj/截图.png differ diff --git a/src/assets/images/szjj/截屏.png b/src/assets/images/szjj/截屏.png new file mode 100644 index 0000000..382f921 Binary files /dev/null and b/src/assets/images/szjj/截屏.png differ diff --git a/src/assets/images/szjj/按钮 常态.png b/src/assets/images/szjj/按钮 常态.png new file mode 100644 index 0000000..d6bb961 Binary files /dev/null and b/src/assets/images/szjj/按钮 常态.png differ diff --git a/src/assets/images/szjj/按钮 点击.png b/src/assets/images/szjj/按钮 点击.png new file mode 100644 index 0000000..06cf232 Binary files /dev/null and b/src/assets/images/szjj/按钮 点击.png differ diff --git a/src/assets/images/szjj/按钮.png b/src/assets/images/szjj/按钮.png new file mode 100644 index 0000000..7a7bd4d Binary files /dev/null and b/src/assets/images/szjj/按钮.png differ diff --git a/src/assets/images/szjj/按钮1.png b/src/assets/images/szjj/按钮1.png new file mode 100644 index 0000000..a1b89a4 Binary files /dev/null and b/src/assets/images/szjj/按钮1.png differ diff --git a/src/assets/images/szjj/按钮_pick.png b/src/assets/images/szjj/按钮_pick.png new file mode 100644 index 0000000..6e512fb Binary files /dev/null and b/src/assets/images/szjj/按钮_pick.png differ diff --git a/src/assets/images/szjj/提交.png b/src/assets/images/szjj/提交.png new file mode 100644 index 0000000..f9cb33e Binary files /dev/null and b/src/assets/images/szjj/提交.png differ diff --git a/src/assets/images/szjj/提交任务.png b/src/assets/images/szjj/提交任务.png new file mode 100644 index 0000000..5ff878e Binary files /dev/null and b/src/assets/images/szjj/提交任务.png differ diff --git a/src/assets/images/szjj/收入.png b/src/assets/images/szjj/收入.png new file mode 100644 index 0000000..2b77f8b Binary files /dev/null and b/src/assets/images/szjj/收入.png differ diff --git a/src/assets/images/szjj/数字产业化-数字征信2.png b/src/assets/images/szjj/数字产业化-数字征信2.png new file mode 100644 index 0000000..27fbc11 Binary files /dev/null and b/src/assets/images/szjj/数字产业化-数字征信2.png differ diff --git a/src/assets/images/szjj/数据确权.png b/src/assets/images/szjj/数据确权.png new file mode 100644 index 0000000..b47f0cf Binary files /dev/null and b/src/assets/images/szjj/数据确权.png differ diff --git a/src/assets/images/szjj/数据采集.png b/src/assets/images/szjj/数据采集.png new file mode 100644 index 0000000..4d6d93a Binary files /dev/null and b/src/assets/images/szjj/数据采集.png differ diff --git a/src/assets/images/szjj/文件.png b/src/assets/images/szjj/文件.png new file mode 100644 index 0000000..9253b0f Binary files /dev/null and b/src/assets/images/szjj/文件.png differ diff --git a/src/assets/images/szjj/文件夹1.png b/src/assets/images/szjj/文件夹1.png new file mode 100644 index 0000000..d891058 Binary files /dev/null and b/src/assets/images/szjj/文件夹1.png differ diff --git a/src/assets/images/szjj/文档1.png b/src/assets/images/szjj/文档1.png new file mode 100644 index 0000000..e409859 Binary files /dev/null and b/src/assets/images/szjj/文档1.png differ diff --git a/src/assets/images/szjj/文档2.png b/src/assets/images/szjj/文档2.png new file mode 100644 index 0000000..5e0ec22 Binary files /dev/null and b/src/assets/images/szjj/文档2.png differ diff --git a/src/assets/images/szjj/文档3.png b/src/assets/images/szjj/文档3.png new file mode 100644 index 0000000..8b8bfa1 Binary files /dev/null and b/src/assets/images/szjj/文档3.png differ diff --git a/src/assets/images/szjj/文档4.png b/src/assets/images/szjj/文档4.png new file mode 100644 index 0000000..0b42dc7 Binary files /dev/null and b/src/assets/images/szjj/文档4.png differ diff --git a/src/assets/images/szjj/时间.png b/src/assets/images/szjj/时间.png new file mode 100644 index 0000000..ce0f8af Binary files /dev/null and b/src/assets/images/szjj/时间.png differ diff --git a/src/assets/images/szjj/服务上架.png b/src/assets/images/szjj/服务上架.png new file mode 100644 index 0000000..d4ba25b Binary files /dev/null and b/src/assets/images/szjj/服务上架.png differ diff --git a/src/assets/images/szjj/未选择.png b/src/assets/images/szjj/未选择.png new file mode 100644 index 0000000..ee60e1f Binary files /dev/null and b/src/assets/images/szjj/未选择.png differ diff --git a/src/assets/images/szjj/本地部署.png b/src/assets/images/szjj/本地部署.png new file mode 100644 index 0000000..42dd3ca Binary files /dev/null and b/src/assets/images/szjj/本地部署.png differ diff --git a/src/assets/images/szjj/机箱.png b/src/assets/images/szjj/机箱.png new file mode 100644 index 0000000..43ca31b Binary files /dev/null and b/src/assets/images/szjj/机箱.png differ diff --git a/src/assets/images/szjj/查看.png b/src/assets/images/szjj/查看.png new file mode 100644 index 0000000..2e1fff2 Binary files /dev/null and b/src/assets/images/szjj/查看.png differ diff --git a/src/assets/images/szjj/框内图标.png b/src/assets/images/szjj/框内图标.png new file mode 100644 index 0000000..0819548 Binary files /dev/null and b/src/assets/images/szjj/框内图标.png differ diff --git a/src/assets/images/szjj/案例任务.png b/src/assets/images/szjj/案例任务.png new file mode 100644 index 0000000..ca468aa Binary files /dev/null and b/src/assets/images/szjj/案例任务.png differ diff --git a/src/assets/images/szjj/检测.png b/src/assets/images/szjj/检测.png new file mode 100644 index 0000000..769ce4f Binary files /dev/null and b/src/assets/images/szjj/检测.png differ diff --git a/src/assets/images/szjj/点在上.png b/src/assets/images/szjj/点在上.png new file mode 100644 index 0000000..0aaeb08 Binary files /dev/null and b/src/assets/images/szjj/点在上.png differ diff --git a/src/assets/images/szjj/点在下.png b/src/assets/images/szjj/点在下.png new file mode 100644 index 0000000..f948f67 Binary files /dev/null and b/src/assets/images/szjj/点在下.png differ diff --git a/src/assets/images/szjj/特征提取.png b/src/assets/images/szjj/特征提取.png new file mode 100644 index 0000000..e5c9edd Binary files /dev/null and b/src/assets/images/szjj/特征提取.png differ diff --git a/src/assets/images/szjj/生成数字资产ID.png b/src/assets/images/szjj/生成数字资产ID.png new file mode 100644 index 0000000..14b13e4 Binary files /dev/null and b/src/assets/images/szjj/生成数字资产ID.png differ diff --git a/src/assets/images/szjj/直线 1.png b/src/assets/images/szjj/直线 1.png new file mode 100644 index 0000000..927185f Binary files /dev/null and b/src/assets/images/szjj/直线 1.png differ diff --git a/src/assets/images/szjj/确定按钮.png b/src/assets/images/szjj/确定按钮.png new file mode 100644 index 0000000..8ccd73f Binary files /dev/null and b/src/assets/images/szjj/确定按钮.png differ diff --git a/src/assets/images/szjj/签名.png b/src/assets/images/szjj/签名.png new file mode 100644 index 0000000..86f00df Binary files /dev/null and b/src/assets/images/szjj/签名.png differ diff --git a/src/assets/images/szjj/箭.png b/src/assets/images/szjj/箭.png new file mode 100644 index 0000000..20037d2 Binary files /dev/null and b/src/assets/images/szjj/箭.png differ diff --git a/src/assets/images/szjj/箭头 拷贝.png b/src/assets/images/szjj/箭头 拷贝.png new file mode 100644 index 0000000..55bca94 Binary files /dev/null and b/src/assets/images/szjj/箭头 拷贝.png differ diff --git a/src/assets/images/szjj/箭头(1).png b/src/assets/images/szjj/箭头(1).png new file mode 100644 index 0000000..0c63671 Binary files /dev/null and b/src/assets/images/szjj/箭头(1).png differ diff --git a/src/assets/images/szjj/箭头(2).png b/src/assets/images/szjj/箭头(2).png new file mode 100644 index 0000000..204deb1 Binary files /dev/null and b/src/assets/images/szjj/箭头(2).png differ diff --git a/src/assets/images/szjj/箭头.png b/src/assets/images/szjj/箭头.png new file mode 100644 index 0000000..acba2f5 Binary files /dev/null and b/src/assets/images/szjj/箭头.png differ diff --git a/src/assets/images/szjj/箭头2.png b/src/assets/images/szjj/箭头2.png new file mode 100644 index 0000000..87927b1 Binary files /dev/null and b/src/assets/images/szjj/箭头2.png differ diff --git a/src/assets/images/szjj/箭头2_long.png b/src/assets/images/szjj/箭头2_long.png new file mode 100644 index 0000000..ccb27ca Binary files /dev/null and b/src/assets/images/szjj/箭头2_long.png differ diff --git a/src/assets/images/szjj/箭头3_long.png b/src/assets/images/szjj/箭头3_long.png new file mode 100644 index 0000000..fced074 Binary files /dev/null and b/src/assets/images/szjj/箭头3_long.png differ diff --git a/src/assets/images/szjj/箭头4_long.png b/src/assets/images/szjj/箭头4_long.png new file mode 100644 index 0000000..ccb27ca Binary files /dev/null and b/src/assets/images/szjj/箭头4_long.png differ diff --git a/src/assets/images/szjj/箭头5_long.png b/src/assets/images/szjj/箭头5_long.png new file mode 100644 index 0000000..7edb7fe Binary files /dev/null and b/src/assets/images/szjj/箭头5_long.png differ diff --git a/src/assets/images/szjj/箭头@2x(2).png b/src/assets/images/szjj/箭头@2x(2).png new file mode 100644 index 0000000..23f7563 Binary files /dev/null and b/src/assets/images/szjj/箭头@2x(2).png differ diff --git a/src/assets/images/szjj/箭头_c.png b/src/assets/images/szjj/箭头_c.png new file mode 100644 index 0000000..f6c0be3 Binary files /dev/null and b/src/assets/images/szjj/箭头_c.png differ diff --git a/src/assets/images/szjj/箭头_left.png b/src/assets/images/szjj/箭头_left.png new file mode 100644 index 0000000..b88060b Binary files /dev/null and b/src/assets/images/szjj/箭头_left.png differ diff --git a/src/assets/images/szjj/箭头_right.png b/src/assets/images/szjj/箭头_right.png new file mode 100644 index 0000000..e585989 Binary files /dev/null and b/src/assets/images/szjj/箭头_right.png differ diff --git a/src/assets/images/szjj/纹理.png b/src/assets/images/szjj/纹理.png new file mode 100644 index 0000000..5e3e1a7 Binary files /dev/null and b/src/assets/images/szjj/纹理.png differ diff --git a/src/assets/images/szjj/纹理2.png b/src/assets/images/szjj/纹理2.png new file mode 100644 index 0000000..7df4aef Binary files /dev/null and b/src/assets/images/szjj/纹理2.png differ diff --git a/src/assets/images/szjj/线.png b/src/assets/images/szjj/线.png new file mode 100644 index 0000000..65c9f04 Binary files /dev/null and b/src/assets/images/szjj/线.png differ diff --git a/src/assets/images/szjj/线条.png b/src/assets/images/szjj/线条.png new file mode 100644 index 0000000..cf68ff4 Binary files /dev/null and b/src/assets/images/szjj/线条.png differ diff --git a/src/assets/images/szjj/绿色虚线.png b/src/assets/images/szjj/绿色虚线.png new file mode 100644 index 0000000..6dfc8ee Binary files /dev/null and b/src/assets/images/szjj/绿色虚线.png differ diff --git a/src/assets/images/szjj/耗费时间.png b/src/assets/images/szjj/耗费时间.png new file mode 100644 index 0000000..4dd307d Binary files /dev/null and b/src/assets/images/szjj/耗费时间.png differ diff --git a/src/assets/images/szjj/自动识别.png b/src/assets/images/szjj/自动识别.png new file mode 100644 index 0000000..80e255f Binary files /dev/null and b/src/assets/images/szjj/自动识别.png differ diff --git a/src/assets/images/szjj/蓝色虚线.png b/src/assets/images/szjj/蓝色虚线.png new file mode 100644 index 0000000..526e4b7 Binary files /dev/null and b/src/assets/images/szjj/蓝色虚线.png differ diff --git a/src/assets/images/szjj/语音合成.png b/src/assets/images/szjj/语音合成.png new file mode 100644 index 0000000..fc1649d Binary files /dev/null and b/src/assets/images/szjj/语音合成.png differ diff --git a/src/assets/images/szjj/账号注册.png b/src/assets/images/szjj/账号注册.png new file mode 100644 index 0000000..a97e260 Binary files /dev/null and b/src/assets/images/szjj/账号注册.png differ diff --git a/src/assets/images/szjj/购买(1).png b/src/assets/images/szjj/购买(1).png new file mode 100644 index 0000000..24eb61b Binary files /dev/null and b/src/assets/images/szjj/购买(1).png differ diff --git a/src/assets/images/szjj/购买.png b/src/assets/images/szjj/购买.png new file mode 100644 index 0000000..672a2bc Binary files /dev/null and b/src/assets/images/szjj/购买.png differ diff --git a/src/assets/images/szjj/购买1.png b/src/assets/images/szjj/购买1.png new file mode 100644 index 0000000..0024b32 Binary files /dev/null and b/src/assets/images/szjj/购买1.png differ diff --git a/src/assets/images/szjj/购买2.png b/src/assets/images/szjj/购买2.png new file mode 100644 index 0000000..1e6a434 Binary files /dev/null and b/src/assets/images/szjj/购买2.png differ diff --git a/src/assets/images/szjj/选择.png b/src/assets/images/szjj/选择.png new file mode 100644 index 0000000..857d831 Binary files /dev/null and b/src/assets/images/szjj/选择.png differ diff --git a/src/assets/images/szjj/选择1.png b/src/assets/images/szjj/选择1.png new file mode 100644 index 0000000..a338ae2 Binary files /dev/null and b/src/assets/images/szjj/选择1.png differ diff --git a/src/assets/images/szjj/选择2.png b/src/assets/images/szjj/选择2.png new file mode 100644 index 0000000..280c2eb Binary files /dev/null and b/src/assets/images/szjj/选择2.png differ diff --git a/src/assets/images/szjj/选择3.png b/src/assets/images/szjj/选择3.png new file mode 100644 index 0000000..832260d Binary files /dev/null and b/src/assets/images/szjj/选择3.png differ diff --git a/src/assets/images/szjj/选择图片.png b/src/assets/images/szjj/选择图片.png new file mode 100644 index 0000000..86710e6 Binary files /dev/null and b/src/assets/images/szjj/选择图片.png differ diff --git a/src/assets/images/szjj/选择文档.png b/src/assets/images/szjj/选择文档.png new file mode 100644 index 0000000..c34c846 Binary files /dev/null and b/src/assets/images/szjj/选择文档.png differ diff --git a/src/assets/images/szjj/选择框.png b/src/assets/images/szjj/选择框.png new file mode 100644 index 0000000..63262ed Binary files /dev/null and b/src/assets/images/szjj/选择框.png differ diff --git a/src/assets/images/szjj/部署图片.png b/src/assets/images/szjj/部署图片.png new file mode 100644 index 0000000..84eca22 Binary files /dev/null and b/src/assets/images/szjj/部署图片.png differ diff --git a/src/assets/images/szjj/重新开始.png b/src/assets/images/szjj/重新开始.png new file mode 100644 index 0000000..02a5612 Binary files /dev/null and b/src/assets/images/szjj/重新开始.png differ diff --git a/src/assets/images/szjj/阿里云 (1).png b/src/assets/images/szjj/阿里云 (1).png new file mode 100644 index 0000000..5ff7d71 Binary files /dev/null and b/src/assets/images/szjj/阿里云 (1).png differ diff --git a/src/assets/images/szjj/阿里云.png b/src/assets/images/szjj/阿里云.png new file mode 100644 index 0000000..5ff7d71 Binary files /dev/null and b/src/assets/images/szjj/阿里云.png differ diff --git a/src/assets/images/szjj/预览.png b/src/assets/images/szjj/预览.png new file mode 100644 index 0000000..92e5993 Binary files /dev/null and b/src/assets/images/szjj/预览.png differ diff --git a/src/assets/images/szjj/领取私钥.png b/src/assets/images/szjj/领取私钥.png new file mode 100644 index 0000000..bdfa6c2 Binary files /dev/null and b/src/assets/images/szjj/领取私钥.png differ diff --git a/src/assets/images/亮(钮).png b/src/assets/images/亮(钮).png new file mode 100644 index 0000000..395e357 Binary files /dev/null and b/src/assets/images/亮(钮).png differ diff --git a/src/assets/images/人工智能.png b/src/assets/images/人工智能.png new file mode 100644 index 0000000..ade1d62 Binary files /dev/null and b/src/assets/images/人工智能.png differ diff --git a/src/assets/images/发送.png b/src/assets/images/发送.png new file mode 100644 index 0000000..d432239 Binary files /dev/null and b/src/assets/images/发送.png differ diff --git a/src/assets/images/大数据.png b/src/assets/images/大数据.png new file mode 100644 index 0000000..7dfe96a Binary files /dev/null and b/src/assets/images/大数据.png differ diff --git a/src/assets/images/常(钮).png b/src/assets/images/常(钮).png new file mode 100644 index 0000000..7b4c6ab Binary files /dev/null and b/src/assets/images/常(钮).png differ diff --git a/src/assets/styles/dialog.scss b/src/assets/styles/dialog.scss new file mode 100644 index 0000000..57b0ef4 --- /dev/null +++ b/src/assets/styles/dialog.scss @@ -0,0 +1,106 @@ +.gdialog{ + p{ + color:black !important; + } + // box-shadow: none !important; + // border: 1px solid #e5e5e5; + border-radius: 5px; + &:not(.is-fullscreen) { + // margin-top: 36vh !important; + // margin-left: 26vh; + } + .el-dialog__header { + background: linear-gradient(-90deg, #2c04c9 0%, #5197ff 100%); + border-radius: 5px 5px 0px 0px; + margin-right: 0px; + .el-dialog__title { + font-size: 18px; + font-family: Source Han Sans CN; + font-weight: 500; + color: #ffffff !important; + } + } + .el-dialog__body { + .Terminal { + display: flex; + align-items: center; + gap: 78px; + padding-bottom: 40px; + border-bottom: 2px dashed #e5e5e5; + font-size: 12px; + font-family: Source Han Sans CN; + font-weight: 400; + color: #333333; + .Terminal-item { + position: relative; + display: flex; + align-items: center; + flex-direction: column; + width: 110px; + height: 110px; + border: 1px solid #cdcdcd; + border-radius: 10px; + // 鼠标小手 + cursor: pointer; + img { + width: 100%; + height: 100%; + margin-bottom: 11px; + } + } + } + span:nth-child(3) { + display: block; + margin-: 20px; + } + .lication { + margin-top: 27px; + display: flex; + align-items: center; + flex-wrap: wrap; + gap: 78px; + .lication-item { + display: flex; + align-items: center; + flex-direction: column; + width: 110px; + height: 110px; + border: 1px solid #cdcdcd; + border-radius: 10px; + font-size: 12px; + font-family: Source Han Sans CN; + font-weight: 400; + color: #333333; + cursor: pointer; + img { + width: 100%; + height: 100%; + margin-bottom: 11px; + } + } + } + + } + .el-dialog__footer { + text-align: center; + .el-button:nth-child(1) { + background: url("@/assets/images/szjj/提交任务.png") no-repeat; + background-size: 100% 100%; + } + .el-button:nth-child(2) { + background: url("@/assets/images/szjj/重新开始.png") no-repeat; + background-size: 100% 100%; + } + .el-button--large.is-round { + padding: 12px 20px 12px 40px !important; + } + .el-button{ + width: 136px; + height: 40px; + padding: 12px 20px 12px 40px !important; + font-size: 15px; + border: none; + color: #ffffff; + } + } +} \ No newline at end of file diff --git a/src/assets/styles/index.scss b/src/assets/styles/index.scss index a93cff2..331e95f 100644 --- a/src/assets/styles/index.scss +++ b/src/assets/styles/index.scss @@ -5,6 +5,7 @@ @import './sidebar.scss'; @import './btn.scss'; @import './ruoyi.scss'; +@import './dialog.scss'; body { height: 100%; @@ -182,3 +183,39 @@ aside { margin-bottom: 10px; } } +.app-container{ + margin: 10px; + box-shadow: 0px 0px 13px 0px #0452C6; + border-radius: 10px; + padding: 25px; +} + +.dialog-footer { + text-align: center; + .el-button:nth-child(1) { + background: url("../../assets/images/szjj/提交任务.png") no-repeat; + background-size: 100% 100%; + } + .el-button:nth-child(2) { + background: url("../../assets/images/szjj/重新开始.png") no-repeat; + background-size: 100% 100%; + } + .el-button--large.is-round { + padding: 12px 20px 12px 40px !important; + } + .el-button{ + width: 136px; + height: 40px; + padding: 12px 20px 12px 40px !important; + font-size: 15px; + border: none; + color: #ffffff; + } +} +.app-container2 { + position: relative; + padding: 20px; + background: #FFFFFF; + box-shadow: 0px 0px 13px 0px #D6E0FE; + border-radius: 10px; +} \ No newline at end of file diff --git a/src/layout/index.vue b/src/layout/index.vue index 3bc0f47..b257c46 100644 --- a/src/layout/index.vue +++ b/src/layout/index.vue @@ -95,7 +95,7 @@ function setLayout() { background: url("@/assets/images/top.png"); height: 58px; width: 100%; - z-index: 10000; + z-index: 1; position: fixed; top: 0; background-size: 100% 100%; diff --git a/src/utils/index.js b/src/utils/index.js index 9679e75..9d33c9d 100644 --- a/src/utils/index.js +++ b/src/utils/index.js @@ -1,5 +1,7 @@ import { parseTime } from './ruoyi' - +export function getAssetsFile(url){ + return new URL(`../assets/images/${url}`, import.meta.url).href; +} /** * 表格时间格式化 */ diff --git a/src/views/digitalMarketTech/AIGCLargeModel/components/AIVenisonDiagram.vue b/src/views/digitalMarketTech/AIGCLargeModel/components/AIVenisonDiagram.vue new file mode 100644 index 0000000..b223e43 --- /dev/null +++ b/src/views/digitalMarketTech/AIGCLargeModel/components/AIVenisonDiagram.vue @@ -0,0 +1,186 @@ + + + + + + \ No newline at end of file diff --git a/src/views/digitalMarketTech/AIGCLargeModel/components/thirdPartyAIGC.vue b/src/views/digitalMarketTech/AIGCLargeModel/components/thirdPartyAIGC.vue new file mode 100644 index 0000000..290c9c7 --- /dev/null +++ b/src/views/digitalMarketTech/AIGCLargeModel/components/thirdPartyAIGC.vue @@ -0,0 +1,23 @@ + + + + + \ No newline at end of file diff --git a/src/views/digitalMarketTech/AIGCLargeModel/index.vue b/src/views/digitalMarketTech/AIGCLargeModel/index.vue new file mode 100644 index 0000000..793b040 --- /dev/null +++ b/src/views/digitalMarketTech/AIGCLargeModel/index.vue @@ -0,0 +1,75 @@ + + + + + + diff --git a/src/views/digitalMarketTech/artificialIntelligence/components/article-identification.vue b/src/views/digitalMarketTech/artificialIntelligence/components/article-identification.vue new file mode 100644 index 0000000..39209ff --- /dev/null +++ b/src/views/digitalMarketTech/artificialIntelligence/components/article-identification.vue @@ -0,0 +1,390 @@ + + + diff --git a/src/views/digitalMarketTech/artificialIntelligence/components/face-recognition.vue b/src/views/digitalMarketTech/artificialIntelligence/components/face-recognition.vue new file mode 100644 index 0000000..95ce6c5 --- /dev/null +++ b/src/views/digitalMarketTech/artificialIntelligence/components/face-recognition.vue @@ -0,0 +1,645 @@ + + + + \ No newline at end of file diff --git a/src/views/digitalMarketTech/artificialIntelligence/index.vue b/src/views/digitalMarketTech/artificialIntelligence/index.vue new file mode 100644 index 0000000..2283923 --- /dev/null +++ b/src/views/digitalMarketTech/artificialIntelligence/index.vue @@ -0,0 +1,72 @@ + + + + + + diff --git a/src/views/digitalMarketTech/bigData/components/HadoopHDFS.vue b/src/views/digitalMarketTech/bigData/components/HadoopHDFS.vue new file mode 100644 index 0000000..7fbde35 --- /dev/null +++ b/src/views/digitalMarketTech/bigData/components/HadoopHDFS.vue @@ -0,0 +1,2196 @@ + + + + \ No newline at end of file diff --git a/src/views/digitalMarketTech/bigData/components/digitalMarketing.vue b/src/views/digitalMarketTech/bigData/components/digitalMarketing.vue new file mode 100644 index 0000000..466ad3c --- /dev/null +++ b/src/views/digitalMarketTech/bigData/components/digitalMarketing.vue @@ -0,0 +1,1526 @@ + + + + + + \ No newline at end of file diff --git a/src/views/digitalMarketTech/bigData/components/hadoop.vue b/src/views/digitalMarketTech/bigData/components/hadoop.vue new file mode 100644 index 0000000..c2710ff --- /dev/null +++ b/src/views/digitalMarketTech/bigData/components/hadoop.vue @@ -0,0 +1,960 @@ + + + diff --git a/src/views/digitalMarketTech/bigData/components/technologyFramework.vue b/src/views/digitalMarketTech/bigData/components/technologyFramework.vue new file mode 100644 index 0000000..edc54ed --- /dev/null +++ b/src/views/digitalMarketTech/bigData/components/technologyFramework.vue @@ -0,0 +1,351 @@ + + + \ No newline at end of file diff --git a/src/views/digitalMarketTech/bigData/components/whatBigData.vue b/src/views/digitalMarketTech/bigData/components/whatBigData.vue new file mode 100644 index 0000000..8745c0b --- /dev/null +++ b/src/views/digitalMarketTech/bigData/components/whatBigData.vue @@ -0,0 +1,570 @@ + + + + \ No newline at end of file diff --git a/src/views/digitalMarketTech/bigData/index.vue b/src/views/digitalMarketTech/bigData/index.vue new file mode 100644 index 0000000..53ff358 --- /dev/null +++ b/src/views/digitalMarketTech/bigData/index.vue @@ -0,0 +1,76 @@ + + + + + + diff --git a/src/views/digitalMarketTech/index.vue b/src/views/digitalMarketTech/index.vue index d16525d..6ffdea2 100644 --- a/src/views/digitalMarketTech/index.vue +++ b/src/views/digitalMarketTech/index.vue @@ -1,12 +1,49 @@ - +