feat(JoinFamily): 增加角色图标大小并更新图标路径
更新家庭成员角色图标大小从20增加到25,同时将所有角色图标路径更改为新的create目录下的图标文件
Showing
1 changed file
with
11 additions
and
11 deletions
| ... | @@ -53,7 +53,7 @@ | ... | @@ -53,7 +53,7 @@ |
| 53 | : 'border-gray-200 text-gray-700' | 53 | : 'border-gray-200 text-gray-700' |
| 54 | ]" | 54 | ]" |
| 55 | > | 55 | > |
| 56 | - <IconFont :name="role.type" size="20" /> | 56 | + <IconFont :name="role.type" size="25" /> |
| 57 | <span class="text-sm">{{ role.label }}</span> | 57 | <span class="text-sm">{{ role.label }}</span> |
| 58 | </view> | 58 | </view> |
| 59 | </view> | 59 | </view> |
| ... | @@ -231,16 +231,16 @@ const handleBlur = (index) => { | ... | @@ -231,16 +231,16 @@ const handleBlur = (index) => { |
| 231 | }; | 231 | }; |
| 232 | 232 | ||
| 233 | const familyRoles = [ | 233 | const familyRoles = [ |
| 234 | - { id: '丈夫', label: '丈夫', type: 'https://cdn.ipadbiz.cn/lls_prog/icon/%E7%94%B7.png' }, | 234 | + { id: '丈夫', label: '丈夫', type: 'https://cdn.ipadbiz.cn/lls_prog/icon/create/%E7%88%B7%E7%88%B7.png' }, |
| 235 | - { id: '妻子', label: '妻子', type: 'https://cdn.ipadbiz.cn/lls_prog/icon/%E5%A5%B3.png' }, | 235 | + { id: '妻子', label: '妻子', type: 'https://cdn.ipadbiz.cn/lls_prog/icon/create/%E5%A5%B6%E5%A5%B6.png' }, |
| 236 | - { id: '儿子', label: '儿子', type: 'https://cdn.ipadbiz.cn/lls_prog/icon/%E7%94%B7.png' }, | 236 | + { id: '儿子', label: '儿子', type: 'https://cdn.ipadbiz.cn/lls_prog/icon/create/%E7%94%B7%E8%81%8C%E5%91%98.png' }, |
| 237 | - { id: '女儿', label: '女儿', type: 'https://cdn.ipadbiz.cn/lls_prog/icon/%E5%A5%B3.png' }, | 237 | + { id: '女儿', label: '女儿', type: 'https://cdn.ipadbiz.cn/lls_prog/icon/create/%E5%A5%B3%E8%81%8C%E5%91%98.png' }, |
| 238 | - { id: '女婿', label: '女婿', type: 'https://cdn.ipadbiz.cn/lls_prog/icon/%E7%94%B7.png' }, | 238 | + { id: '女婿', label: '女婿', type: 'https://cdn.ipadbiz.cn/lls_prog/icon/create/%E7%94%B7%E8%81%8C%E5%91%98.png' }, |
| 239 | - { id: '儿媳', label: '儿媳', type: 'https://cdn.ipadbiz.cn/lls_prog/icon/%E5%A5%B3.png' }, | 239 | + { id: '儿媳', label: '儿媳', type: 'https://cdn.ipadbiz.cn/lls_prog/icon/create/%E5%A5%B3%E8%81%8C%E5%91%98.png' }, |
| 240 | - { id: '孙子', label: '孙子', type: 'https://cdn.ipadbiz.cn/lls_prog/icon/%E7%94%B7%E5%AD%A9.png' }, | 240 | + { id: '孙子', label: '孙子', type: 'https://cdn.ipadbiz.cn/lls_prog/icon/create/%E7%94%B7%E5%AD%A9.png' }, |
| 241 | - { id: '外孙', label: '外孙', type: 'https://cdn.ipadbiz.cn/lls_prog/icon/%E7%94%B7%E5%AD%A9.png' }, | 241 | + { id: '外孙', label: '外孙', type: 'https://cdn.ipadbiz.cn/lls_prog/icon/create/%E7%94%B7%E5%AD%A9.png' }, |
| 242 | - { id: '孙女', label: '孙女', type: 'https://cdn.ipadbiz.cn/lls_prog/icon/%E5%A5%B3%E5%AD%A9.png' }, | 242 | + { id: '孙女', label: '孙女', type: 'https://cdn.ipadbiz.cn/lls_prog/icon/create/%E5%A5%B3%E5%AD%A9.png' }, |
| 243 | - { id: '外孙女', label: '外孙女', type: 'https://cdn.ipadbiz.cn/lls_prog/icon/%E5%A5%B3%E5%AD%A9.png' } | 243 | + { id: '外孙女', label: '外孙女', type: 'https://cdn.ipadbiz.cn/lls_prog/icon/create/%E5%A5%B3%E5%AD%A9.png' } |
| 244 | ]; | 244 | ]; |
| 245 | 245 | ||
| 246 | const isComplete = computed(() => { | 246 | const isComplete = computed(() => { | ... | ... |
-
Please register or login to post a comment