|
@ -2,12 +2,22 @@ |
|
|
.container{ |
|
|
.container{ |
|
|
&>view{ |
|
|
&>view{ |
|
|
margin:30rpx; |
|
|
margin:30rpx; |
|
|
padding-bottom:20rpx; |
|
|
|
|
|
border-bottom:1rpx solid rgba(216, 216, 216, 0.2); |
|
|
|
|
|
color:#777; |
|
|
color:#777; |
|
|
|
|
|
&+view{ |
|
|
|
|
|
border-top:1rpx solid rgba(216, 216, 216, 0.2); |
|
|
|
|
|
padding-top:20rpx; |
|
|
|
|
|
} |
|
|
&>view:first-child{ |
|
|
&>view:first-child{ |
|
|
margin-bottom:5rpx; |
|
|
margin-bottom:5rpx; |
|
|
} |
|
|
} |
|
|
|
|
|
&>.qrcode{ |
|
|
|
|
|
margin:20rpx auto 0 auto; |
|
|
|
|
|
padding:20rpx; |
|
|
|
|
|
height:200rpx; |
|
|
|
|
|
width:200rpx; |
|
|
|
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='102' height='102' viewBox='0 0 102 102'%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:none;stroke:%2310c176;stroke-width:2px;%7D%3C/style%3E%3C/defs%3E%3Cg transform='translate(-115.917 -307)'%3E%3Cpath class='a' d='M90.917,0H100V10' transform='translate(116.917 308)'/%3E%3Cpath class='a' d='M90.917,10H100V0' transform='translate(116.917 398)'/%3E%3Cpath class='a' d='M100,0H90.917V10' transform='translate(26 308)'/%3E%3Cpath class='a' d='M100,10H90.917V0' transform='translate(26 398)'/%3E%3C/g%3E%3C/svg%3E"); |
|
|
|
|
|
background-size:100% 100%; |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
</style> |
|
|
</style> |
|
@ -21,13 +31,20 @@ |
|
|
<view>PC(管理)端访问地址</view> |
|
|
<view>PC(管理)端访问地址</view> |
|
|
<view style="color:#10C176;">{{detail.pcUrl}}</view> |
|
|
<view style="color:#10C176;">{{detail.pcUrl}}</view> |
|
|
</view> |
|
|
</view> |
|
|
|
|
|
<view> |
|
|
|
|
|
<view>PC(管理)端访问地址</view> |
|
|
|
|
|
<view class="qrcode"> |
|
|
|
|
|
<u-image width="160rpx" height="160rpx" mode="aspectFit" :src="`${host}/${detail.appQrCode}`"/> |
|
|
|
|
|
</view> |
|
|
|
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
</template> |
|
|
</template> |
|
|
<script> |
|
|
<script> |
|
|
import request from '@/common/request' |
|
|
import request,{host} from '@/common/request' |
|
|
export default { |
|
|
export default { |
|
|
data(){ |
|
|
data(){ |
|
|
return{ |
|
|
return{ |
|
|
|
|
|
host:host('imgUrl'), |
|
|
detail:{} |
|
|
detail:{} |
|
|
} |
|
|
} |
|
|
}, |
|
|
}, |
|
|