1/* 2 * Copyright (c) 2022 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16export const cardsMockData = [ 17 { 18 'title': 'Chinese Cabbage', 19 'stars': '***', 20 'detail': 'Rich in vitamins, dietary fiber and antioxidant substances, it can promote intestinal peristalsis and help digestion.' 21 }, 22 { 23 'title': 'Pakchoi', 24 'stars': '*****', 25 'detail': 'It is the most rich vegetable in minerals and vitamins. Compared with Chinese cabbage, Pakchoi contains twice as much calcium, about three times as much vitamin C and 74 times as much carotene.' 26 }, 27 { 28 'title': 'Broccoli', 29 'stars': '****', 30 'detail': 'It contains protein, carbohydrate, vitamin A, vitamin C and a considerable amount of vitamins B1 and B2, as well as inorganic substances such as phosphorus, iron and calcium.' 31 }, 32 { 33 'title': 'Purple cabbage', 34 'stars': '***', 35 'detail': 'It contains high-quality protein, cellulose, minerals, vitamins, etc. Phytochemicals contained in purple cabbage can be used as important antioxidants and the prevention of anti-inflammatory related chronic diseases, including cancer.' 36 }, 37 { 38 'title': 'Turnip', 39 'stars': '***', 40 'detail': 'It contains mustard oil, amylase and crude fiber, and it can promote digestion, enhance appetite, accelerate gastrointestinal peristalsis and relieve cough and phlegm' 41 }, 42 { 43 'title': 'Carrot', 44 'stars': '****', 45 'detail': 'It contains carotene, which is the main source of vitamin A and has the effect of preventing cancer. It also contains a kind of quercetin, which can promote the synthesis of epinephrine, reduce blood pressure and inflammation if taken regularly.' 46 }, 47 { 48 'title': 'Spinach', 49 'stars': '****', 50 'detail': 'Rich in carotenoids, vitamin C, vitamin K, minerals (calcium, iron, etc.), coenzyme Q10 and other nutrients.' 51 }, 52 { 53 'title': 'Coriander', 54 'stars': '****', 55 'detail': 'It contains vitamin C, carotene, vitamins B1 and B2, and is also rich in minerals, such as calcium, iron, phosphorus and magnesium, as well as volatile oil and potassium malate.' 56 }, 57 { 58 'title': 'Onion', 59 'stars': '***', 60 'detail': 'It is not only rich in potassium, vitamin C, folic acid, zinc, selenium, fiber and other nutrients, but also contains two special nutrients such as quercetin and prostaglandin A.' 61 } 62 , { 63 'title': 'Chinese chives', 64 'stars': '***', 65 'detail': 'It contains vitamin C, vitamin B1, vitamin B2, niacin, carotene, carbohydrates and minerals. It is also rich in cellulose, higher than green onions and celery.' 66 }, 67 { 68 'title': 'Cucumber', 69 'stars': '****', 70 'detail': 'It is rich in protein, sugar, vitamin B2, vitamin C, vitamin E, carotene, niacin, calcium, phosphorus, iron and other nutrients.' 71 }, 72 { 73 'title': 'Benincasa hispida', 74 'stars': '***', 75 'detail': 'It is rich in protein, carbohydrates, vitamins (vitamin B1 with high content of ascorbic acid, thiamine, riboflavin and niacin, which has the effect of preventing and treating cancer) and mineral elements (8 kinds of mineral elements including potassium, sodium, calcium, iron, zinc, copper, phosphorus and selenium)。and mineral elements (8 kinds of mineral elements including potassium, sodium, calcium, iron, zinc, copper, phosphorus and selenium)' 76 }, 77 { 78 'title': 'Tomato', 79 'stars': '***', 80 'detail': 'It is rich in vitamin A, vitamin C, vitamin B1, vitamin B2, carotene, calcium, phosphorus, potassium, magnesium, iron, zinc, copper and iodine, as well as protein, sugar, organic acid and cellulose.' 81 }, 82 { 83 'title': 'Eggplant', 84 'stars': '**', 85 'detail': 'It contains protein, fat, carbohydrate, vitamin P, vitamin B, vitamin C, calcium, phosphorus, iron and other nutrients.' 86 }, 87 { 88 'title': 'Sweet potato', 89 'stars': '**', 90 'detail': 'It contains protein, fat, polysaccharide, phosphorus, calcium, potassium, carotene, vitamin A, vitamin C, vitamin E, vitamin B1, vitamin B2 and 8 kinds of amino acids.' 91 }, 92 { 93 'title': 'Potato', 94 'stars': '**', 95 'detail': 'It contains protein, fat, polysaccharide, phosphorus, calcium, potassium, carotene, vitamin A, vitamin C, vitamin E, vitamin B1, vitamin B2 and 8 kinds of amino acids.' 96 }, 97 { 98 'title': 'Water oat', 99 'stars': '**', 100 'detail': 'It not only contains sugar, organic nitrogen, fat, protein, fiber and ash powder, but also contains 17 kinds of amino acids such as lysine, among which threonine, methionine, phenylalanine and lysine are essential amino acids for human body.' 101 }, 102 { 103 'title': 'Mushroom', 104 'stars': '****', 105 'detail': 'It contains high-quality protein, fat, carbohydrate, dietary fiber, calcium, phosphorus, iron, vitamin B, niacin, vitamin C, and contains non-specific plant lectin, parnase and other substances.' 106 }, 107 { 108 'title': 'Laver', 109 'stars': '****', 110 'detail': 'It is rich in protein, carbohydrate, unsaturated fatty acid, vitamins and minerals, and has high nutritional value.' 111 }, 112 { 113 'title': 'Kelp', 114 'stars': '***', 115 'detail': 'It contains Laminaria polysaccharide, protein, fat, carotene, VB, VB1, nicotinic acid, calcium, iron, phosphorus, as well as rich in alginic acid, cellulose, mannitol and a variety of trace elements.' 116 } 117]