wui-components-v2 1.0.50 → 1.0.52

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.
@@ -22,7 +22,8 @@ const form = ref<any>(null)
22
22
  const model = ref<any>({})
23
23
  const fields = computed(() => {
24
24
  return props.fieldGroup?.fields.filter((item) => {
25
- return !item.title?.includes('y')
25
+ // return !item.title?.includes('y')
26
+ return item
26
27
  })
27
28
  })
28
29
  // 初始化表单数据
@@ -193,6 +194,7 @@ defineExpose({
193
194
  <wd-select-picker
194
195
  v-if="item.extControlType === 'select'"
195
196
  v-model="model[item.sourceId]"
197
+ :style="{ display: item.title?.includes('y') ? 'none' : null }"
196
198
  type="radio"
197
199
  :columns="(enumColumn && enumColumn[item.mstrucId])"
198
200
  :label="item.title"
Binary file
@@ -11,15 +11,20 @@ defineProps<{
11
11
  </script>
12
12
 
13
13
  <template>
14
- <view class="pa-3">
15
- <view class="flex flex-col items-center justify-center pa-3 pb-5">
14
+ <view class="h-[calc(100vh-44px)] flex flex-col bg-white">
15
+ <!-- <view class="flex flex-col items-center justify-center pa-3 pb-5">
16
16
  <wd-img :width="100" :height="100" round :src="loginlog" />
17
17
  <view class="text-center">
18
18
  <text class="text-2xl .dark:text-white">
19
19
  欢迎登录
20
20
  </text>
21
21
  </view>
22
+ </view> -->
23
+ <view class="flex items-center justify-center bg-#4E7FFF">
24
+ <image class="h-200px w-200px" src="./footerImg.png" />
25
+ </view>
26
+ <view class="flex-1 border-rd-2 p-y-2">
27
+ <LoginForm />
22
28
  </view>
23
- <LoginForm />
24
29
  </view>
25
30
  </template>
@@ -86,7 +86,7 @@ function handleSubmit() {
86
86
  </script>
87
87
 
88
88
  <template>
89
- <view class="border-rd-2 bg-white pa-3 dark:bg-[var(--wot-dark-background2)]">
89
+ <view class="bg-white pa-3 dark:bg-[var(--wot-dark-background2)]">
90
90
  <wd-form ref="form" :model="model">
91
91
  <wd-cell-group border>
92
92
  <wd-input
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wui-components-v2",
3
- "version": "1.0.50",
3
+ "version": "1.0.52",
4
4
  "description": "wui 组件库",
5
5
  "author": "wgxshh",
6
6
  "license": "MIT",