Sfoglia il codice sorgente

Merge branches 'dev' and 'dev' of http://39.101.143.165:8090/dong_k/tenant-Platform into dev

@dongkboy 2 mesi fa
parent
commit
9fa3c21510
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 2 2
      src/views/quoteConfig/project/modules/projectAdd.vue

+ 2 - 2
src/views/quoteConfig/project/modules/projectAdd.vue

@@ -98,13 +98,13 @@
                           <template #default="scope">
                             <div class="">
                               <el-input-number v-model="scope.row.minSeatCount" controls-position="right"
-                                style="width: 100px;" :min="2" :max="scope.row.maxSeatCount">
+                                style="width: 100px;" :min="2" :max="scope.row.maxSeatCount??Number.MAX_SAFE_INTEGER">
                                 <template #suffix>
                                   <span>座</span>
                                 </template>
                               </el-input-number> 至
                               <el-input-number v-model="scope.row.maxSeatCount" controls-position="right"
-                                style="width: 100px;" :min="scope.row.minSeatCount" :max="99">
+                                style="width: 100px;" :min="scope.row.minSeatCount??Number.MIN_SAFE_INTEGER" :max="99">
                                 <template #suffix>
                                   <span>座</span>
                                 </template>