|
@ -1,7 +1,8 @@ |
|
|
<template> |
|
|
<template> |
|
|
<view> |
|
|
|
|
|
|
|
|
<view class="page"> |
|
|
<navbar title="客服" leftClick @leftClick="$utils.navigateBack" /> |
|
|
<navbar title="客服" leftClick @leftClick="$utils.navigateBack" /> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<image class="bg" :src="imgurl" mode="scaleToFill" :show-menu-by-longpress="true"></image> |
|
|
</view> |
|
|
</view> |
|
|
</template> |
|
|
</template> |
|
|
|
|
|
|
|
@ -9,10 +10,28 @@ |
|
|
export default { |
|
|
export default { |
|
|
data() { |
|
|
data() { |
|
|
return { |
|
|
return { |
|
|
|
|
|
imgurl: null, |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
}, |
|
|
|
|
|
onLoad() { |
|
|
|
|
|
// todo: fetch imgurl |
|
|
|
|
|
this.imgurl = '../../static/image/center/temp-service.png' |
|
|
|
|
|
}, |
|
|
} |
|
|
} |
|
|
</script> |
|
|
</script> |
|
|
|
|
|
|
|
|
<style scoped lang="scss"> |
|
|
<style scoped lang="scss"> |
|
|
|
|
|
.page { |
|
|
|
|
|
width: 100vw; |
|
|
|
|
|
height: 100vh; |
|
|
|
|
|
|
|
|
|
|
|
position: relative; |
|
|
|
|
|
|
|
|
|
|
|
overflow: hidden; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.bg { |
|
|
|
|
|
width: 100vw; |
|
|
|
|
|
height: calc(100vh - #{$navbar-height} - var(--status-bar-height) - 20rpx); |
|
|
|
|
|
} |
|
|
</style> |
|
|
</style> |