进件修改
This commit is contained in:
@@ -27,6 +27,7 @@
|
||||
|
||||
<up-loadmore :status="isEnd?'nomore':'loading'"></up-loadmore>
|
||||
</scroll-view>
|
||||
<!-- <view :style="{height:slotHeight+'px'}"></view> -->
|
||||
<view class="u-flex gap-20 u-m-t-30">
|
||||
<view class="u-flex-1">
|
||||
<my-button type="default" @click="close">取消</my-button>
|
||||
@@ -60,9 +61,9 @@
|
||||
|
||||
const bankInstId = defineModel('bankInstId');
|
||||
|
||||
|
||||
const bankAliasCode=defineModel('bankAliasCode')
|
||||
|
||||
|
||||
const bankAliasCode = defineModel('bankAliasCode')
|
||||
|
||||
|
||||
|
||||
const selid = ref('')
|
||||
@@ -88,12 +89,13 @@
|
||||
function submit() {
|
||||
modelValue.value = selItem.value.bankAlias
|
||||
bankInstId.value = selItem.value.bankCode
|
||||
bankAliasCode.value=selItem.value.bankAliasCode;
|
||||
bankAliasCode.value = selItem.value.bankAliasCode;
|
||||
console.log('modelValue', modelValue.value);
|
||||
console.log('bankInstId', bankInstId.value);
|
||||
show.value = false;
|
||||
|
||||
}
|
||||
|
||||
function search() {
|
||||
isEnd.value = false
|
||||
query.page = 1
|
||||
@@ -183,6 +185,11 @@
|
||||
|
||||
}
|
||||
}
|
||||
const slotHeight = ref(0)
|
||||
uni.onKeyboardHeightChange(res => {
|
||||
console.log('onKeyboardHeightChange', res.height)
|
||||
slotHeight.value = res.height
|
||||
})
|
||||
onMounted(init);
|
||||
</script>
|
||||
<style lang="scss">
|
||||
|
||||
Reference in New Issue
Block a user