order.vue 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336
  1. <template>
  2. <view>
  3. <!-- <view > -->
  4. <!-- <swiper class="screen-swiper round-dot" :indicator-dots="true" :circular="true" :autoplay="true" interval="5000"
  5. duration="500"> -->
  6. <!-- <swiper-item v-for="(item,index) in 4" :key="index"> -->
  7. <image src="./top.png" mode="aspectFit" style="height: 20vh; width: 100%;margin-top: 2vh;"></image>
  8. <!-- </swiper-item> -->
  9. <!-- </swiper> -->
  10. <!-- </view> -->
  11. <view class="aside-main" >
  12. <scroll-view scroll-y class="scroll-Y1" style="max-height: 71vh;" scroll-with-animation>
  13. <view :class="num==index?'active':'active2'" v-for="(item,index) in asideList" :key="index"
  14. @click="asid(index)">{{item.title}}
  15. </view>
  16. </scroll-view>
  17. <!-- 右侧滑动区 -->
  18. <scroll-view scroll-y class="scroll-Y2" style="max-height: 71vh;background-color: whitesmoke;" :scroll-into-view="rightview"
  19. scroll-with-animation @scroll="scrollright" @scrolltoupper="scrolltop" @scrolltolower="scrollbuttom">
  20. <!-- 功能区节点 -->
  21. <view v-for="(item,index) in asideList" :key="index" class="min" :id="'rightIndex'+index" :style="{marginTop:index!=0?'10px':0}">
  22. <span class="title">{{item.title}}</span>
  23. <view v-for="(i,j) in item.list" :key="j" class="minmi" >
  24. <image class="imgPic" :src="i.url" mode=""></image>
  25. <view class="rightContainer">
  26. <view class="foodName">
  27. {{item.title}}
  28. </view>
  29. <view class="foodPrice">
  30. <view class="priceflex">
  31. <text class="zero">¥</text>
  32. {{i.price}}
  33. </view>
  34. <view class="shopCar iconfont-themeColor-write" v-if="i.num == 0">
  35. <text class="lg text-white cuIcon-add" @tap="addcart(i)" ></text>
  36. </view>
  37. <view class="shopCar iconfont-themeColor-write" v-if="i.num > 0">
  38. <!-- <text class="lg text-white cuIcon-minus" @tap="addcart(i)" ></text> -->
  39. </view>
  40. </view>
  41. </view>
  42. </view>
  43. </view>
  44. </scroll-view>
  45. </view>
  46. <view class="cu-bar bg-white tabbar border shop" style="padding-bottom: 0;max-height: 5vh;">
  47. <view class="bg-orange submit">
  48. <view class="cuIcon-cartfill" style="font-size: 30px;">
  49. <!-- <view class="cu-tag badge">{{nowCart.length}}</view> -->
  50. </view>
  51. <view style="margin-left: 20px;">
  52. <view class="">合计: ¥{{nowCartPrice}}</view>
  53. <view class="">菜品: {{nowCartList.length}}道</view>
  54. </view>
  55. </view>
  56. <view class="bg-red submit">立即下单</view>
  57. </view>
  58. </view>
  59. </template>
  60. <script setup>
  61. import goodsApi from '@/sheep/api/restaurant/goods'
  62. import { onShow } from '@dcloudio/uni-app';
  63. import {
  64. ref,
  65. onMounted,
  66. getCurrentInstance
  67. } from 'vue'
  68. const nowCartList = ref([])
  69. const nowCartPrice = ref(0)
  70. const mainH = ref('350')
  71. const num = ref(0)
  72. const leftview = ref('')
  73. const rightview = ref('')
  74. const nodes = ref([])
  75. const shopchecked = ref('自取')
  76. const checkedmode = (e) => {
  77. shopchecked.value = e
  78. }
  79. const asideList = ref([])
  80. const getAideList = ref([])
  81. // 分类数据
  82. const categorizeItems = (items) => {
  83. asideList.value = {};
  84. items.forEach(item => {
  85. if (!asideList.value[item.goodsTypeid]) {
  86. asideList.value[item.goodsTypeid] ={
  87. title: item.goodsTypeName,
  88. list: []
  89. };
  90. }
  91. asideList.value[item.goodsTypeid].list.push(
  92. { url:item.goodsIcon,
  93. name: item.goodsName,
  94. price: item.goodsPrice,
  95. // id: item.goodsId
  96. num : 0
  97. });
  98. });
  99. console.log('asideList', asideList.value,'items',items);
  100. };
  101. onShow(async () => {
  102. // [{
  103. // title: "双人套餐",
  104. // list: new Array(10).fill({
  105. // url: "https://q9.itc.cn/q_70/images01/20240419/ab185a39af90465cbe8cda9e81ec7e71.jpeg",
  106. // name: '双人套餐',
  107. // price: 32
  108. // })
  109. // }, ]
  110. getAideList.value =(await goodsApi.getAll()).data;
  111. categorizeItems(getAideList.value)
  112. });
  113. onMounted(() => {
  114. uni.getSystemInfo({
  115. success: (res) => {
  116. mainH.value = res.windowHeight - uni.upx2px(88) + 'px'
  117. }
  118. })
  119. coordinate()
  120. })
  121. const addcart = (item)=>{
  122. console.log('item',item)
  123. item.num++
  124. }
  125. const asid = (index) => {
  126. num.value = index
  127. rightview.value = 'rightIndex' + index
  128. }
  129. const scrolltop = () => {
  130. num.value = 0
  131. }
  132. const scrollbuttom = () => {
  133. num.value = nodes.value.length - 1
  134. }
  135. const scrollright = (e) => {
  136. console.log( nodes.value);
  137. for (let i = 0; i < nodes.value.length - 1; i++) { // 从0开始循环,并且减去1以避免越界
  138. if (e.detail.scrollTop + nodes.value[0] >= nodes.value[i] && e.detail.scrollTop + nodes.value[0] < nodes
  139. .value[i + 1]) {
  140. num.value = i;
  141. break; // 找到对应的索引后,退出循环
  142. }
  143. }
  144. // 处理边界情况
  145. if (e.detail.scrollTop + nodes.value[0] <= nodes.value[0]) {
  146. num.value = 0;
  147. } else if (e.detail.scrollTop + nodes.value[0] >= nodes.value[nodes.value.length - 1]) {
  148. num.value = nodes.value.length - 1;
  149. }
  150. console.log(num.value);
  151. }
  152. const coordinate = () => {
  153. const instance = getCurrentInstance(); // 获取组件实例
  154. const query = uni.createSelectorQuery().in(instance)
  155. console.log('query',query);
  156. query.selectAll(".min").boundingClientRect((data) => {
  157. console.log('data',data);
  158. for (let i = 0; i < data.length; i++) {
  159. nodes.value.push(data[i].top)
  160. }
  161. }).exec()
  162. }
  163. </script>
  164. <style lang="scss">
  165. .title{
  166. width: 99%;
  167. text-align: left;
  168. padding-left: 10px;
  169. border-left: 5px solid red;
  170. font-size: 18px;
  171. margin-left: 20px;
  172. margin-top: 10px;
  173. font-weight: 800;
  174. }
  175. .active {
  176. font-size: 30upx;
  177. color: #F9BE3E;
  178. }
  179. .active2 {
  180. font-size: 30upx;
  181. }
  182. .min {
  183. display: flex;
  184. flex-direction: row;
  185. justify-content: space-around;
  186. flex-wrap: wrap;
  187. // margin: 20px 0;
  188. background-color: white;
  189. padding-bottom: 20px;
  190. }
  191. .minmi {
  192. display: flex;
  193. width: 592upx;
  194. margin-left: 25upx;
  195. padding-top: 51upx;
  196. .imgPic {
  197. width: 208upx;
  198. height: 167upx;
  199. border-radius: 10upx;
  200. margin-left: 20upx;
  201. }
  202. .rightContainer {
  203. display: flex;
  204. flex-direction: column;
  205. height: 167upx;
  206. box-sizing: border-box;
  207. justify-content: space-between;
  208. align-items: flex-start;
  209. padding-left: 18upx;
  210. padding-right: 18upx;
  211. padding-top: 18upx;
  212. // padding-bottom: 18upx;
  213. flex: 1;
  214. .foodName {
  215. font-weight: 700;
  216. font-size: 25upx;
  217. }
  218. .foodPrice {
  219. display: flex;
  220. justify-content: space-between;
  221. width: 375upx;
  222. color: #F9BE3E;
  223. .priceflex {
  224. display: flex;
  225. align-items: center;
  226. .zero {
  227. font-size: 15upx;
  228. }
  229. }
  230. .shopCar {
  231. background-color: #F9BE3E;
  232. border-radius: 45upx;
  233. width: 112upx;
  234. height: 45upx;
  235. font-size: 25upx;
  236. text-align: center;
  237. line-height: 46upx;
  238. }
  239. }
  240. }
  241. }
  242. .aside-main {
  243. width: 100%;
  244. display: flex;
  245. flex-direction: row;
  246. justify-content: space-between;
  247. box-sizing: border-box;
  248. }
  249. .scroll-Y1 {
  250. flex: 1;
  251. box-sizing: border-box;
  252. }
  253. .scroll-Y1 view {
  254. text-align: center;
  255. padding-top: 33upx;
  256. // padding-bottom: 33upx;
  257. }
  258. .scroll-Y2 {
  259. flex: 3;
  260. box-sizing: border-box;
  261. // padding-bottom: 170upx;
  262. }
  263. .scroll-Y2 view {
  264. text-align: center;
  265. /* margin:20upx; */
  266. }
  267. .icon {
  268. width: 50upx;
  269. height: 50upx;
  270. margin-top: 10upx;
  271. }
  272. .icon1 {
  273. width: 30upx;
  274. height: 30upx;
  275. position: absolute;
  276. top: 15upx;
  277. left: 10upx;
  278. }
  279. .btn {
  280. width: 140upx;
  281. height: 60upx;
  282. line-height: 60upx;
  283. margin: 0;
  284. padding: 0;
  285. font-size: 30upx;
  286. }
  287. .serch {
  288. height: 60upx;
  289. flex: 2;
  290. margin-left: 20upx;
  291. margin-right: 20upx;
  292. box-sizing: border-box;
  293. border: solid 1upx #ccc;
  294. border-radius: 10upx;
  295. position: relative;
  296. }
  297. .serch input {
  298. height: 60upx;
  299. margin-left: 60upx;
  300. }
  301. </style>