Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Hooke
/
data-table
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Authored by
hookehuyr
2025-02-05 14:31:25 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
3d5ede46f148f4e3d043fae984190be7d103a565
3d5ede46
1 parent
a8b40a88
🐞 fix(地址组件): 开启了【只要省市县】的时候,把 undefined 删掉
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
src/components/AreaPickerField/MyComponent.vue
src/components/AreaPickerField/MyComponent.vue
View file @
3d5ede4
<!--
* @Date: 2023-03-29 15:27:02
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 202
4-11-21 11:42:22
* @LastEditTime: 202
5-02-05 14:27:37
* @FilePath: /data-table/src/components/AreaPickerField/MyComponent.vue
* @Description: 文件描述
-->
...
...
@@ -65,10 +65,10 @@ const onClick = () => {
const result_value = computed(() => {
return {
address: fieldValue.value +
' ' + address.value
,
address: fieldValue.value +
(show_address.value ? ' ' + address.value : '')
,
city_code: city_code.value,
picker_value: fieldValue.value,
input_value:
address.value
,
input_value:
show_address.value ? address.value : ''
,
}
})
...
...
Please
register
or
login
to post a comment