|
@ -5,38 +5,41 @@ |
|
|
<uni-card :is-shadow="false"> |
|
|
<uni-card :is-shadow="false"> |
|
|
<view class="weixin-top"> |
|
|
<view class="weixin-top"> |
|
|
<view class="title">微信号:</view> |
|
|
<view class="title">微信号:</view> |
|
|
<view @click="copy(wx.keyCentent)" class="copy icon"> |
|
|
|
|
|
|
|
|
<view @click="copy(configList.wx.keyCentent)" class="copy icon"> |
|
|
<image src="@/static/weddingCelebration/copy.png" mode="widthFix"></image> |
|
|
<image src="@/static/weddingCelebration/copy.png" mode="widthFix"></image> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
<view class="number">{{ wx.keyCentent }}</view> |
|
|
|
|
|
|
|
|
<view class="number">{{ configList.wx.keyCentent }}</view> |
|
|
</uni-card> |
|
|
</uni-card> |
|
|
|
|
|
|
|
|
<uni-card :is-shadow="false"> |
|
|
<uni-card :is-shadow="false"> |
|
|
<view class="weixin-top"> |
|
|
<view class="weixin-top"> |
|
|
<view class="title">手机号:</view> |
|
|
<view class="title">手机号:</view> |
|
|
<view @click="clickService(phone.keyCentent)" class="copy icon"> |
|
|
|
|
|
|
|
|
<view @click="clickService(configList.phone.keyCentent)" class="copy icon"> |
|
|
<image src="@/static/weddingCelebration/phone.png" mode="widthFix"></image> |
|
|
<image src="@/static/weddingCelebration/phone.png" mode="widthFix"></image> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
<view class="number">{{ phone.keyCentent }}</view> |
|
|
|
|
|
|
|
|
<view class="number">{{ configList.phone.keyCentent }}</view> |
|
|
</uni-card> |
|
|
</uni-card> |
|
|
</uni-section> |
|
|
</uni-section> |
|
|
</view> |
|
|
</view> |
|
|
</template> |
|
|
</template> |
|
|
|
|
|
|
|
|
<script> |
|
|
<script> |
|
|
|
|
|
import { mapState } from 'vuex' |
|
|
export default { |
|
|
export default { |
|
|
name : 'weddingCelebration', |
|
|
name : 'weddingCelebration', |
|
|
data(){ |
|
|
data(){ |
|
|
return { |
|
|
return { |
|
|
wx : {}, |
|
|
wx : {}, |
|
|
phone : {}, |
|
|
phone : {}, |
|
|
classifyKey : [ 'wx' , 'phone' ] |
|
|
|
|
|
} |
|
|
} |
|
|
}, |
|
|
}, |
|
|
|
|
|
computed : { |
|
|
|
|
|
...mapState(['configList']), |
|
|
|
|
|
}, |
|
|
onShow(){ |
|
|
onShow(){ |
|
|
this.getData() |
|
|
|
|
|
|
|
|
// this.getData() |
|
|
}, |
|
|
}, |
|
|
methods : { |
|
|
methods : { |
|
|
back(){ |
|
|
back(){ |
|
|