重构xuchang-screen,从umi->cra, 计划引入redux
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

kiln.ts 490 B

il y a 10 mois
123456789101112131415161718
  1. import utils from '../utils';
  2. function genKilnInfo() {
  3. return {
  4. kilnPressure: utils.rand(0, 100) + 'Kpa',
  5. waterTemp: utils.rand(0, 100) + '℃',
  6. waterFlow: utils.rand(30, 90) + 'm³/h',
  7. waterPressure: utils.rand(10, 50) + 'Kpa',
  8. windPressure: utils.rand(10, 30) + 'Kpa',
  9. gasPressure: utils.rand(10, 30) + 'Kpa',
  10. // 碹顶加权温度
  11. topTemp: utils.rand(30, 60) + '℃',
  12. // 融化加权温度
  13. meltTemp: utils.rand(100, 200) + '℃',
  14. };
  15. }
  16. export default genKilnInfo;