order.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411
  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. {{i.name}}
  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-show="i.num == 0" @tap="addcart(i)">
  35. <text class="lg text-white cuIcon-add" ></text>
  36. </view>
  37. <view class="" v-if="i.num > 0" >
  38. <!-- <text class="lg text-white cuIcon-minus" @tap="addcart(i)" ></text> -->
  39. <uni-number-box :min="0" :max="100" :step="1" v-model="i.num" @tap="chengeCart(i)" />
  40. <!-- {{ i.num }} -->
  41. </view>
  42. </view>
  43. </view>
  44. </view>
  45. </view>
  46. </scroll-view>
  47. </view>
  48. <view class="cu-bar bg-white tabbar border shop" style="padding-bottom: 0;max-height: 5vh;">
  49. <view class="bg-orange submit" @click="toggle()">
  50. <view class="cuIcon-cartfill" style="font-size: 30px;">
  51. <!-- <view class="cu-tag badge">{{nowCart.length}}</view> -->
  52. </view>
  53. <view style="margin-left: 20px;">
  54. <view class="">合计: ¥{{nowCartPrice}}</view>
  55. <view class="">菜品: {{nowCartList.length}}道</view>
  56. </view>
  57. </view>
  58. <view class="bg-red submit" @click="toggle()">立即下单</view>
  59. </view>
  60. <uni-popup ref="popup" background-color="#fff" type="bottom" >
  61. <view style="height: 40vh;">
  62. <view class="cu-bar bg-white ">
  63. <view class="action">
  64. <text class="cuIcon-titles text-orange"></text> 购物车
  65. </view>
  66. </view>
  67. <view style="height: 30vh;overflow-y: auto;">
  68. <view v-for="(i,j) in nowCartList" :key="j" class="minmi" style="width: 100vw;" >
  69. <image class="imgPic" :src="i.url" mode=""></image>
  70. <view class="rightContainer">
  71. <view class="foodName">
  72. {{i.name}}
  73. </view>
  74. <view class="foodPrice">
  75. <view class="priceflex">
  76. <text class="zero">¥</text>
  77. {{i.price}}
  78. </view>
  79. <view class="shopCar iconfont-themeColor-write" v-show="i.num == 0" @tap="addcart(i)">
  80. <text class="lg text-white cuIcon-add" ></text>
  81. </view>
  82. <view class="" v-if="i.num > 0" >
  83. <!-- <text class="lg text-white cuIcon-minus" @tap="addcart(i)" ></text> -->
  84. <!-- <uni-number-box :min="0" :max="100" :step="1" v-model="i.num" @tap="chengeCart(i)" /> -->
  85. <text>{{ i.num }}</text>
  86. </view>
  87. </view>
  88. </view>
  89. </view>
  90. </view>
  91. <button class="bg-red submit" @click="handleOk()">立即下单</button>
  92. </view>
  93. </uni-popup>
  94. </view>
  95. </template>
  96. <script setup>
  97. import goodsApi from '@/sheep/api/restaurant/goods'
  98. import uniNumberBox from '@/uni_modules/uni-number-box/components/uni-number-box/uni-number-box.vue';
  99. import { onShow } from '@dcloudio/uni-app';
  100. import sheep from '@/sheep';
  101. import {
  102. ref,
  103. onMounted,
  104. getCurrentInstance
  105. } from 'vue'
  106. const cart = sheep.$store('cart');
  107. const popup = ref(null);
  108. const nowCartList = ref([])
  109. const nowCartPrice = ref(0)
  110. const mainH = ref('350')
  111. const num = ref(0)
  112. const leftview = ref('')
  113. const rightview = ref('')
  114. const nodes = ref([])
  115. const shopchecked = ref('自取')
  116. const checkedmode = (e) => {
  117. shopchecked.value = e
  118. }
  119. const asideList = ref([])
  120. const getAideList = ref([])
  121. const toggle = () =>{
  122. popup.value.open()
  123. }
  124. const handleOk = ()=>{
  125. if (nowCartList.value.length === 0) {
  126. sheep.$helper.toast('请选择商品');
  127. return;
  128. }
  129. cart.list = nowCartList.value
  130. // store.commit('setParam',nowCartList );
  131. uni.navigateTo({ url: '/pages/restaurant/confirmOrder' });
  132. }
  133. // 分类数据
  134. const categorizeItems = (items) => {
  135. asideList.value = {};
  136. items.forEach(item => {
  137. if (!asideList.value[item.goodsTypeid]) {
  138. asideList.value[item.goodsTypeid] ={
  139. title: item.goodsTypeName,
  140. list: []
  141. };
  142. }
  143. asideList.value[item.goodsTypeid].list.push(
  144. { url:item.goodsIcon,
  145. name: item.goodsName,
  146. price: item.goodsPrice,
  147. goodsId: item.id,
  148. num : 0
  149. });
  150. });
  151. console.log('asideList', asideList.value,'items',items);
  152. };
  153. onShow(async () => {
  154. // [{
  155. // title: "双人套餐",
  156. // list: new Array(10).fill({
  157. // url: "https://q9.itc.cn/q_70/images01/20240419/ab185a39af90465cbe8cda9e81ec7e71.jpeg",
  158. // name: '双人套餐',
  159. // price: 32
  160. // })
  161. // }, ]
  162. getAideList.value =(await goodsApi.getAll()).data;
  163. categorizeItems(getAideList.value)
  164. });
  165. onMounted(() => {
  166. uni.getSystemInfo({
  167. success: (res) => {
  168. mainH.value = res.windowHeight - uni.upx2px(88) + 'px'
  169. }
  170. })
  171. coordinate()
  172. })
  173. const addcart = (item)=>{
  174. console.log('item',item.id)
  175. item.num=1
  176. nowCartList.value.push(item)
  177. // nowCartPrice.value = nowCartPrice.value+item.price
  178. countprice()
  179. console.log('nowCartList',nowCartList.value);
  180. }
  181. const countprice = ()=>{
  182. let totalprice = 0
  183. nowCartList.value.forEach(element => {
  184. totalprice = totalprice +element.price*element.num
  185. });
  186. nowCartPrice.value = totalprice
  187. // console.log('nowCartList',nowCartList.value);
  188. }
  189. const chengeCart = (item)=>{
  190. if(item.num == 0){
  191. nowCartList.value = nowCartList.value.filter(element=>element.num!==0)
  192. }
  193. console.log('item',item)
  194. countprice()
  195. console.log('nowCartList',nowCartList.value);
  196. // item.num=1
  197. }
  198. const asid = (index) => {
  199. num.value = index
  200. rightview.value = 'rightIndex' + index
  201. }
  202. const scrolltop = () => {
  203. num.value = 0
  204. }
  205. const scrollbuttom = () => {
  206. num.value = nodes.value.length - 1
  207. }
  208. const scrollright = (e) => {
  209. console.log( nodes.value);
  210. for (let i = 0; i < nodes.value.length - 1; i++) { // 从0开始循环,并且减去1以避免越界
  211. if (e.detail.scrollTop + nodes.value[0] >= nodes.value[i] && e.detail.scrollTop + nodes.value[0] < nodes
  212. .value[i + 1]) {
  213. num.value = i;
  214. break; // 找到对应的索引后,退出循环
  215. }
  216. }
  217. // 处理边界情况
  218. if (e.detail.scrollTop + nodes.value[0] <= nodes.value[0]) {
  219. num.value = 0;
  220. } else if (e.detail.scrollTop + nodes.value[0] >= nodes.value[nodes.value.length - 1]) {
  221. num.value = nodes.value.length - 1;
  222. }
  223. console.log(num.value);
  224. }
  225. const coordinate = () => {
  226. const instance = getCurrentInstance(); // 获取组件实例
  227. const query = uni.createSelectorQuery().in(instance)
  228. console.log('query',query);
  229. query.selectAll(".min").boundingClientRect((data) => {
  230. console.log('data',data);
  231. for (let i = 0; i < data.length; i++) {
  232. nodes.value.push(data[i].top)
  233. }
  234. }).exec()
  235. }
  236. </script>
  237. <style lang="scss">
  238. .title{
  239. width: 99%;
  240. text-align: left;
  241. padding-left: 10px;
  242. border-left: 5px solid red;
  243. font-size: 18px;
  244. margin-left: 20px;
  245. margin-top: 10px;
  246. font-weight: 800;
  247. }
  248. .active {
  249. font-size: 30upx;
  250. color: #F9BE3E;
  251. }
  252. .active2 {
  253. font-size: 30upx;
  254. }
  255. .min {
  256. display: flex;
  257. flex-direction: row;
  258. justify-content: space-around;
  259. flex-wrap: wrap;
  260. // margin: 20px 0;
  261. background-color: white;
  262. padding-bottom: 20px;
  263. }
  264. .minmi {
  265. display: flex;
  266. width: 592upx;
  267. margin-left: 25upx;
  268. padding-top: 51upx;
  269. .imgPic {
  270. width: 208upx;
  271. height: 167upx;
  272. border-radius: 10upx;
  273. margin-left: 20upx;
  274. }
  275. .rightContainer {
  276. display: flex;
  277. flex-direction: column;
  278. height: 167upx;
  279. box-sizing: border-box;
  280. justify-content: space-between;
  281. align-items: flex-start;
  282. padding-left: 18upx;
  283. padding-right: 18upx;
  284. padding-top: 18upx;
  285. // padding-bottom: 18upx;
  286. flex: 1;
  287. .foodName {
  288. font-weight: 700;
  289. font-size: 25upx;
  290. }
  291. .foodPrice {
  292. display: flex;
  293. justify-content: space-between;
  294. width: 375upx;
  295. color: #F9BE3E;
  296. .priceflex {
  297. display: flex;
  298. align-items: center;
  299. .zero {
  300. font-size: 15upx;
  301. }
  302. }
  303. .shopCar {
  304. background-color: #F9BE3E;
  305. border-radius: 45upx;
  306. width: 112upx;
  307. height: 45upx;
  308. font-size: 25upx;
  309. text-align: center;
  310. line-height: 46upx;
  311. }
  312. }
  313. }
  314. }
  315. .aside-main {
  316. width: 100%;
  317. display: flex;
  318. flex-direction: row;
  319. justify-content: space-between;
  320. box-sizing: border-box;
  321. }
  322. .scroll-Y1 {
  323. flex: 1;
  324. box-sizing: border-box;
  325. }
  326. .scroll-Y1 view {
  327. text-align: center;
  328. padding-top: 33upx;
  329. // padding-bottom: 33upx;
  330. }
  331. .scroll-Y2 {
  332. flex: 3;
  333. box-sizing: border-box;
  334. // padding-bottom: 170upx;
  335. }
  336. .scroll-Y2 view {
  337. text-align: center;
  338. /* margin:20upx; */
  339. }
  340. .icon {
  341. width: 50upx;
  342. height: 50upx;
  343. margin-top: 10upx;
  344. }
  345. .icon1 {
  346. width: 30upx;
  347. height: 30upx;
  348. position: absolute;
  349. top: 15upx;
  350. left: 10upx;
  351. }
  352. .btn {
  353. width: 140upx;
  354. height: 60upx;
  355. line-height: 60upx;
  356. margin: 0;
  357. padding: 0;
  358. font-size: 30upx;
  359. }
  360. .serch {
  361. height: 60upx;
  362. flex: 2;
  363. margin-left: 20upx;
  364. margin-right: 20upx;
  365. box-sizing: border-box;
  366. border: solid 1upx #ccc;
  367. border-radius: 10upx;
  368. position: relative;
  369. }
  370. .serch input {
  371. height: 60upx;
  372. margin-left: 60upx;
  373. }
  374. </style>