|
|
@ -1,5 +1,5 @@ |
|
|
|
<template> |
|
|
|
<view class="page" :style="`background-image: url(${configList.codeImg}); background-size: contain;`"> |
|
|
|
<view class="page" :style="bgStyle"> |
|
|
|
<navbar title="客服" leftClick @leftClick="$utils.navigateBack" /> |
|
|
|
|
|
|
|
<!-- todo --> |
|
|
@ -17,7 +17,10 @@ |
|
|
|
} |
|
|
|
}, |
|
|
|
computed: { |
|
|
|
...mapState(['configList']) |
|
|
|
...mapState(['configList']), |
|
|
|
bgStyle() { |
|
|
|
return `background-image: url(${ this.configList.codeImg}); background-size: contain;` |
|
|
|
} |
|
|
|
}, |
|
|
|
onLoad() { |
|
|
|
}, |
|
|
|