123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- <template>
- <view>
- <view >
- <!-- 基本信息start -->
- <view class="basic-info">
- <view class="info-tit margin-left-xs">
- <text class="cuIcon-titles margin-right-xs"></text>
- 详细信息
- </view>
- <view class="info-content">
- <view class="info-one-info ">
- <text>站点名称:</text>
- <text>火点侦测摄像机</text>
- </view>
-
- <view>
- <text>地址:</text>
- <text>上海市虹口区塘沽路伍继办公室</text>
- </view>
- <view>
- <text>定位:</text>
- <text>定位地址信息</text>
- </view>
- <view>
- <text>联系人:</text>
- <text>韩正义</text>
- </view>
- <view>
- <text>联系电话:</text>
- <text>13262908433</text>
- </view>
- </view>
- </view>
- <!-- 基本信息end -->
-
- </view>
-
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- radio: 'A',
- radio: 'B',
- modalName: null,
-
- }
- },
-
- methods: {
-
- submit() {
- uni.makePhoneCall({
- phoneNumber: '15122423833' //仅为示例
- });
- },
- mapLocation(){
- uni.openLocation({
- latitude: 31.469465,
- longitude: 121.327514,
- success: function() {
- console.log('success');
- }
- });
- },
-
- RadioChange(e) {
- this.radio = e.detail.value
- },
- textareaAInput(e) {
- this.textareaAValue = e.detail.value
- },
- }
- }
- </script>
- <style lang="scss">
- .timeBox {
- height: 88rpx;
- background: #EFF4FF;
- line-height: 88rpx;
- .time {
- color: #333
- }
- }
- .info-tit {
- color: #4074E7;
- line-height: 90rpx;
- height: 90rpx;
- }
- // 基本信息
- .info-content>view {
- margin-left: 24rpx;
- border-bottom: 1px solid #EDEDED;
- line-height: 92rpx;
- color: #666;
- }
- .info-content view text:first-child {
- width: 160rpx;
- display: inline-block
- }
- </style>
|