Compare commits
No commits in common. "ebd2c2111c4dd280e01e24f9fceafcd745a649b6" and "e501d35d6b8f6d83f45bd0d73a32455043f89c33" have entirely different histories.
ebd2c2111c
...
e501d35d6b
|
|
@ -2,7 +2,7 @@
|
||||||
<view>
|
<view>
|
||||||
<NavBar :title="data.navBar.title" :bgColor="data.navBar.bgColor" />
|
<NavBar :title="data.navBar.title" :bgColor="data.navBar.bgColor" />
|
||||||
<view class="list-container">
|
<view class="list-container">
|
||||||
<view class="item" v-for="item in source" :key="item.id" @click="goPage(item.callUrl,item.name)"
|
<view class="item" v-for="item in source" :key="item.id" @click="goPage(item.callUrl)"
|
||||||
:style="{ background: ` #FFFFFF` }">
|
:style="{ background: ` #FFFFFF` }">
|
||||||
<view class="content flex flex-align-center">
|
<view class="content flex flex-align-center">
|
||||||
<image class="logo" :src="`/static/image/other/bank/${item.icon}.png`" mode=""></image>
|
<image class="logo" :src="`/static/image/other/bank/${item.icon}.png`" mode=""></image>
|
||||||
|
|
@ -98,14 +98,8 @@
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
function goPage(url,name) {
|
function goPage(url) {
|
||||||
if (url) {
|
if (url) {
|
||||||
proxy.$apiUserEvent('all', {
|
|
||||||
type: 'event',
|
|
||||||
key: 'bank',
|
|
||||||
prefix: '.uni.other.',
|
|
||||||
value:name+'银行'
|
|
||||||
})
|
|
||||||
util.goPage(url)
|
util.goPage(url)
|
||||||
} else {
|
} else {
|
||||||
uni.showToast({
|
uni.showToast({
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue