Browse Source

feat:“爆米花增加芝士口味”

soobin 1 năm trước cách đây
mục cha
commit
7993c7f812

+ 1 - 0
src/assets/language/en.json

@@ -1474,6 +1474,7 @@
     "D418": "Furnace operating temperature",
     "D419": "Sugar temperature error allowed in the cabinet",
     "D435": "Sugar humidity error is allowed in the cabinet",
+    "D442": "Burner enters low power consumption",
     "D444": "Base coefficient",
     "D445": "Base humidity",
     "D460": "Low temperature setting (stove temperature rise)",

+ 1 - 0
src/assets/language/ja.json

@@ -1490,6 +1490,7 @@
         "D418": "炉頭の作業温度",
         "D419": "キャビネット内の許容糖作り温度誤差",
         "D435": "キャビネット内の許容糖作り湿度誤差",
+        "D442": "そしてN秒後に低消費電力に入ります",
         "D444": "基準係数",
         "D445": "基準湿度",
         "D460": "低温環境設定(炉頭の昇温)",

+ 1 - 0
src/assets/language/zh.json

@@ -1496,6 +1496,7 @@
     "D418": "炉头工作温度",
     "D419": "柜内允许做糖温度误差",
     "D435": "柜内允许做糖湿度误差",
+    "D442": "炉头N秒后进入低功耗",
     "D444": "基准系数",
     "D445": "基准湿度",
     "D460": "低温环境设定(炉头升柜温)",

BIN
src/assets/order/spunSugar/goods/B07.png


+ 4 - 3
src/views/device/deviceSet.vue

@@ -196,7 +196,7 @@
           </van-field>
         </template>
         <!-- 花型种类 -->
-        <template v-if="isAdmind && machineType === '0'">
+        <template v-if="isAdmind && (machineType === '0' || machineType === '1')">
           <!-- <van-field readonly :label="`${$t('device.flowerType')}`" placeholder="">
             <template #input>
               <div class="van-cell__value van-field__value radioBox">
@@ -211,7 +211,8 @@
               </div>
             </template>
           </van-field> -->
-          <van-field v-model="deviceDetal.flowers" is-link readonly :label="$t('device.flowerType')" placeholder="选择花型种类"
+          <van-field v-model="deviceDetal.flowers" is-link readonly :label="machineType === '1'? '口味种类' : $t('device.flowerType')" 
+            :placeholder="machineType === '1'? '选择口味种类' : '选择花型种类'"
             @click="showFlowerPicker = true" />
         </template>
         <!-- 版本号 -->
@@ -419,7 +420,7 @@ export default {
         } else if (data.data.machineType === '2') {
           machineType.value = '1';
         }
-        if (machineType.value == '0') {
+        if (machineType.value == '0' || machineType.value == '1') {
           selectedFlower.value = [deviceDetal.value.flowers];
           getFlowerNumber(machineType.value);
         }