123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- <template>
- <view class="kefu-page">
- <u-popup v-model="showlogin" mode="center" background="rgba(0,0,0,0)" @close="toback">
- <view class="tocall-box u-flex-col u-col-center">
- <image class="tocall-img" src="../../static/images/popup1-1.png" mode=""></image>
- <view class="u-flex-col u-col-center tocall-text">你目前处于未登录状态请前往登录</view>
- <view class="u-flex u-row-between tocall-btn">
- <text @click="showlogin = false">取消</text>
- <text @click="tologin">确定</text>
- </view>
- </view>
- </u-popup>
- <gf-chat ref="chatlist" @over="getuser" @close="toback" type="2"></gf-chat>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- showlogin: false,
- id:''
- }
- },
- onLoad(option) {
- this.id = option.id
- if (uni.getStorageSync("token")) {
- this.$nextTick(() => {
- this.$refs.chatlist.open(this.id)
- })
- } else {
- this.showlogin = true
- }
- },
- methods: {
- getuser() {
- this.$u.post('/api/Member/member_info').then(res => {
- this.worker_id = res.data.worker_id
- this.worker_phone = res.data.worker_phone
- this.worker_hx_username = res.data.worker_hx_username
- })
- },
- tologin() {
- this.showlogin = false
- uni.navigateTo({
- url: "/pages/mine/login"
- })
- },
- toback() {
- uni.navigateBack()
- }
- }
- }
- </script>
- <style lang="scss">
- .kefu-page {
- .tocall-box {
- position: relative;
- .tocall-img {
- width: 650rpx;
- height: 476rpx;
- }
- .tocall-btn {
- position: absolute;
- bottom: 70rpx;
- left: 0;
- width: 100%;
- padding: 0 48rpx;
- text:first-child {
- width: 254rpx;
- line-height: 80rpx;
- background: #FFA120;
- border-radius: 20rpx;
- text-align: center;
- font-size: 34rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #FFFFFF;
- }
- text:last-child {
- width: 254rpx;
- line-height: 80rpx;
- background: #1F7EFF;
- border-radius: 20rpx;
- text-align: center;
- font-size: 34rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #FFFFFF;
- text-decoration: none;
- }
- }
- .tocall-text {
- text-align: center;
- font-size: 24rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #999999;
- position: absolute;
- top: 244rpx;
- left: 0;
- z-index: 10;
- width: 100%;
- }
- }
- }
- </style>
|