jiaqingjiayi-xiaochengxu/甲情_甲意/miniprogram/pages/shangmenyuyue/shangmenyuyue.axml
2025-01-13 21:07:00 +08:00

41 lines
1.8 KiB
XML

<view class="box1">
<!-- 搜索框 -->
<view class="box">
<view class="search-line">
<view style="display:flex;align-items:center">
<image style="width:20px;height:20px" mode="scaleToFill" src="../image/sousuo.png" />
<input onInput="onChange" onConfirm="onConfirm" style="margin-left:10rpx;width:230px" placeholder="请输入内容" />
</view>
<view class="cancel">取消</view>
</view>
</view>
</view>
<!-- 定位 -->
<view class="dingweikuang">
<image mode="scaleToFill" class="dingweiimage" src="../image/dingwei.png" />
<text style="margin-left:8rpx">{{selectedCity}}</text>
</view>
<!-- 店铺界面 -->
<view style="width:100%">
<view class="box2" >
<view class="kuang" a:for="{{ xuanran }}" a:key="{{index}}" data-num="{{item}}" a:if="{{ item.state==1 }}" onTap="dianpu">
<image class="image" mode="scaleToFill" src="{{item.businessAvatar}}" />
<view class="wenzi">
<text class="text">{{item.businessName}}</text>
<view style="width:120px;position:relative;top:40rpx;right:10rpx">
<text class="statues">{{item.businessImages}}</text>
<text class="dingwei" style="color: #4095e5;border:1px solid #4095e5;font-size: 12px;">{{item.startBusiness}}营业</text>
</view>
<view style="width:150px">
<text class="dingwei" style="width:150rpx;top:50rpx;width:200rpx;height:100rpx;font-size:12px;color: #9b9b9b;">{{item.address}}</text>
</view>
</view>
<view class="box4">
<text style="font-size:13px;color:#4095e5" a:if="{{ item.storeStatus===1 }}">可上门</text>
<text style="font-size:13px;color:#4095e5" a:if="{{ item.storeStatus===0 }}">已休息</text>
</view>
</view>
</view>
</view>