wui-components-v2 1.1.90 → 1.1.91
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.
|
@@ -845,11 +845,14 @@ console.log('clearValueMap', clearValueMap)
|
|
|
845
845
|
:title="item.title"
|
|
846
846
|
>
|
|
847
847
|
<view style="text-align: left">
|
|
848
|
-
<wd-input
|
|
848
|
+
<wd-input
|
|
849
849
|
v-model="model[item.sourceId]"
|
|
850
850
|
:disabled="item.disabled || item.rowEditType === 'readonly'"
|
|
851
851
|
:min="Number(item.min || 0)"
|
|
852
852
|
:max="Number(item.max || Infinity)"
|
|
853
|
+
type="number"
|
|
854
|
+
:placeholder="`请输入${item.title}`"
|
|
855
|
+
clearable
|
|
853
856
|
/>
|
|
854
857
|
</view>
|
|
855
858
|
</wd-form-item>
|
|
@@ -980,10 +980,13 @@ console.log(pageConfig, 'props111')
|
|
|
980
980
|
:disabled="isActionDisabled(subitem)"
|
|
981
981
|
plain
|
|
982
982
|
@click="executeAction(subitem)"
|
|
983
|
+
:custom-style="{ width: '100%' } as unknown as any"
|
|
983
984
|
>
|
|
984
985
|
{{ subitem.title }}
|
|
985
986
|
</wd-button>
|
|
986
|
-
<wd-button class="flex-1" :loading="subLoading" @click="save"
|
|
987
|
+
<wd-button class="flex-1" :loading="subLoading" @click="save" :custom-style="{ width: '100%' } as any">
|
|
988
|
+
保存
|
|
989
|
+
</wd-button>
|
|
987
990
|
</view>
|
|
988
991
|
<ActionPopup
|
|
989
992
|
v-model:show="actionItemShow"
|