lw-cdp-ui 1.0.23 → 1.0.24

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -113,6 +113,10 @@
113
113
  <!-- number -->
114
114
  <template v-else-if="item.component=='number'">
115
115
  <el-input-number v-model="form[item.name]"
116
+ v-bind="{
117
+ min: item?.options?.min !== undefined ? item.options.min : null,
118
+ max: item?.options?.max !== undefined ? item.options.max : null
119
+ }"
116
120
  controls-position="right"></el-input-number>
117
121
  </template>
118
122
  <!-- radio -->
@@ -182,8 +182,6 @@ export default {
182
182
  let bu = JSON.parse(curret_bu)
183
183
  let bu_list = JSON.parse(curret_list)
184
184
 
185
- console.log(parts, user, bu, bu_list)
186
-
187
185
  this.$tool.data.set('userAuthInfo', user.v.userAuthInfo)
188
186
  this.$tool.data.set('MenuPath', user.v.userAuthInfo.grantedApplications)
189
187
  this.$tool.data.set('buCode', bu.v.code)