雖然Vue最強大的是元件化開發,但其實多頁面開發也蠻適合的,下本文是小編給大家分享的vue實現仿淘寶結帳頁面實例代碼,主要功能是仿照淘寶頁面的結算購物車商品時自動算出合計價格的頁面,希望能幫助大家。
這個demo,是小編基於之前的vue2.0在table中實現全選和反選 文章進行更新後的demo,主要功能呢,是仿照淘寶頁面的結算購物車商品時自動算出合計價格的頁面,具體頁面效果請看下面的動圖:(如果大家發現有什麼問題請及時提出幫小穎改正錯誤呦,謝謝啦嘻嘻)
效果圖:
更新後的home.vue
<template> <p class="container"> <p class="checkout-title"> <span>购物车</span> </p> <table class="product_table"> <tbody> <template v-for="(list,index) in table_list"> <tr> <td width="7%" min-width="94px" v-if="index===0"> <input type="checkbox" v-model='checked' @click='checkedAll'> </td> <td width="7%" v-if="index!==0"> <input type="checkbox" v-model='checkList' :value="list.id" @click=checkProductFun(index,$event)> </td> <td width="43%">{{list.product_inf}}</td> <td width="10%" v-if="index===0">{{list.product_price}}</td> <td width="10%" v-if="index!==0">¥{{list.product_price}}</td> <td width="10%" v-if="index===0">{{list.product_quantity}}</td> <td width="10%" v-if="index!==0"> <a class="numbers plus" href="javascript:void(0)" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" @click="changeMoney(index,-1)">-</a> <input class="txt_number" type="text" v-model="list.product_quantity" size="1" disabled> <a class="numbers reduce" href="javascript:void(0)" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" @click="changeMoney(index,1)">+</a> </td> <td width="10%">{{list.total_amount}}</td> <td width="20%" v-if="index===0">编辑</td> <td width="20%" v-if="index!==0"> <a href="javascript:void(0)" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" class="update">修改</a> <a href="javascript:void(0)" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" class="delete">删除</a> </td> </tr> </template> </tbody> </table> <p class="price_total_bottom"> <p class="price_total_ms"> <label>合计:{{allProductTotal}}</label> <router-link to="/userAddress">结账</router-link> </p> </p> </p> </template> <script> import userAddress from './address' export default { components: { userAddress }, data() { return { table_list: [{ 'id': 0, 'product_inf': '商品信息', 'product_price': '商品金额', 'product_quantity': '商品数量', 'total_amount': '总金额' }, { 'id': '1', 'product_inf': '女士银手链', 'product_price': 100, 'product_quantity': 10, 'total_amount': 1000 }, { 'id': '2', 'product_inf': '女士银手镯', 'product_price': 200, 'product_quantity': 5, 'total_amount': 1000 }, { 'id': '3', 'product_inf': '女士银耳环', 'product_price': 50, 'product_quantity': 10, 'total_amount': 500 }], checked: false, allProductTotal: null, checkList: ['1', '3'] } }, mounted: function() { var _this = this; // 根据data中默认勾选的checkbox,计算当前勾选的商品总价 _this.allProductTotal = 0; this.checkList.forEach(function(element1, index1) { _this.table_list.forEach(function(element2, index2) { if (element1 == element2.id) { _this.$set(_this.table_list[index2], 'checked', true); _this.allProductTotal += element2.product_price * element2.product_quantity; } }); }); }, methods: { checkedAll: function() { var _this = this; _this.allProductTotal = 0; if (_this.checked) { //实现反选 _this.checkList = []; _this.table_list.forEach(function(item, index) { if (_this.table_list[index].checked) { _this.table_list[index].checked = false; } }); } else { //实现全选 _this.checkList = []; _this.table_list.forEach(function(item, index) { if (index > 0) { _this.checkList.push(item.id); if (!_this.table_list[index].checked) { _this.$set(_this.table_list[index], 'checked', true); } else { _this.table_list[index].checked = true; } if (item.checked) { _this.allProductTotal += item.product_price * item.product_quantity; } } }); } }, checkProductFun(index, event) { //根据checkbox是否勾选,计算勾选后的商品总价 var _this = this; _this.allProductTotal = 0; if (event.target.checked) { if (!_this.table_list[index].checked) { _this.$set(_this.table_list[index], 'checked', true); } } else { if (_this.table_list[index].checked) { _this.table_list[index].checked = false; } } this.table_list.forEach(function(item, index) { if (item.checked) { _this.allProductTotal += item.product_price * item.product_quantity; } }); }, changeMoney: function(index, way) { if (way > 0) { this.table_list[index].product_quantity++; } else { this.table_list[index].product_quantity--; if (this.table_list[index].product_quantity < 1) { this.table_list[index].product_quantity = 1; } } this.calcTotalPrice(); }, calcTotalPrice: function() { var _this = this; _this.allProductTotal = 0; this.table_list.forEach(function(item, index) { if (index > 0) { //因为第一行为表头不需要进行计算 item.total_amount = item.product_price * item.product_quantity; //根据商品数量计算每一个商品对应的总金额 } if (item.checked) { _this.allProductTotal += item.product_price * item.product_quantity; //根据是否否选该商品的checkbox,计算总价 } }); }, }, watch: { //深度 watcher 'checkList': { handler: function(val, oldVal) { if (val.length === this.table_list.length - 1) { this.checked = true; } else { this.checked = false; } }, deep: true } } } </script> <!-- Add "scoped" attribute to limit CSS to this component only --> <style scoped> .container { padding: 69px 0 54px 0; } table { border-collapse: collapse; border-color: transparent; text-align: center; } .product_table, .product_table tbody { width: 100% } .product_table tr:first-child { background: #ece6e6; color: #e66280; font-size: 20px; } .product_table td { border: 1px solid #f3e8e8; height: 62px; line-height: 62px; } .product_table a.update:link, .product_table a.update:visited, .product_table a.update:hover, .product_table a.update:active { color: #1CE24A; } .product_table a.delete:link, .product_table a.delete:visited, .product_table a.delete:hover, .product_table a.delete:active { color: #ffa700; } .product_table .txt_number { text-align: center; } .product_table .numbers { font-weight: bold; } .price_total_bottom { font-size: 20px; padding: 20px 10px; } .price_total_ms { text-align: right; } .price_total_bottom .price_total_ms label { margin-right: 100px; } .price_total_bottom .price_total_ms a { cursor: default; text-align: center; display: inline-block; font-size: 20px; color: #fff; font-weight: bold; width: 220px; height: 54px; line-height: 54px; border: 0; background-color: #f71455; } </style>
相關推薦:
以上是vue.js實作仿淘寶結帳頁面實例分享的詳細內容。更多資訊請關注PHP中文網其他相關文章!

Python更適合初學者,學習曲線平緩,語法簡潔;JavaScript適合前端開發,學習曲線較陡,語法靈活。 1.Python語法直觀,適用於數據科學和後端開發。 2.JavaScript靈活,廣泛用於前端和服務器端編程。

Python和JavaScript在社區、庫和資源方面的對比各有優劣。 1)Python社區友好,適合初學者,但前端開發資源不如JavaScript豐富。 2)Python在數據科學和機器學習庫方面強大,JavaScript則在前端開發庫和框架上更勝一籌。 3)兩者的學習資源都豐富,但Python適合從官方文檔開始,JavaScript則以MDNWebDocs為佳。選擇應基於項目需求和個人興趣。

從C/C 轉向JavaScript需要適應動態類型、垃圾回收和異步編程等特點。 1)C/C 是靜態類型語言,需手動管理內存,而JavaScript是動態類型,垃圾回收自動處理。 2)C/C 需編譯成機器碼,JavaScript則為解釋型語言。 3)JavaScript引入閉包、原型鍊和Promise等概念,增強了靈活性和異步編程能力。

不同JavaScript引擎在解析和執行JavaScript代碼時,效果會有所不同,因為每個引擎的實現原理和優化策略各有差異。 1.詞法分析:將源碼轉換為詞法單元。 2.語法分析:生成抽象語法樹。 3.優化和編譯:通過JIT編譯器生成機器碼。 4.執行:運行機器碼。 V8引擎通過即時編譯和隱藏類優化,SpiderMonkey使用類型推斷系統,導致在相同代碼上的性能表現不同。

JavaScript在現實世界中的應用包括服務器端編程、移動應用開發和物聯網控制:1.通過Node.js實現服務器端編程,適用於高並發請求處理。 2.通過ReactNative進行移動應用開發,支持跨平台部署。 3.通過Johnny-Five庫用於物聯網設備控制,適用於硬件交互。

我使用您的日常技術工具構建了功能性的多租戶SaaS應用程序(一個Edtech應用程序),您可以做同樣的事情。 首先,什麼是多租戶SaaS應用程序? 多租戶SaaS應用程序可讓您從唱歌中為多個客戶提供服務

本文展示了與許可證確保的後端的前端集成,並使用Next.js構建功能性Edtech SaaS應用程序。 前端獲取用戶權限以控制UI的可見性並確保API要求遵守角色庫

JavaScript是現代Web開發的核心語言,因其多樣性和靈活性而廣泛應用。 1)前端開發:通過DOM操作和現代框架(如React、Vue.js、Angular)構建動態網頁和單頁面應用。 2)服務器端開發:Node.js利用非阻塞I/O模型處理高並發和實時應用。 3)移動和桌面應用開發:通過ReactNative和Electron實現跨平台開發,提高開發效率。


熱AI工具

Undresser.AI Undress
人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover
用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool
免費脫衣圖片

Clothoff.io
AI脫衣器

AI Hentai Generator
免費產生 AI 無盡。

熱門文章

熱工具

mPDF
mPDF是一個PHP庫,可以從UTF-8編碼的HTML產生PDF檔案。原作者Ian Back編寫mPDF以從他的網站上「即時」輸出PDF文件,並處理不同的語言。與原始腳本如HTML2FPDF相比,它的速度較慢,並且在使用Unicode字體時產生的檔案較大,但支援CSS樣式等,並進行了大量增強。支援幾乎所有語言,包括RTL(阿拉伯語和希伯來語)和CJK(中日韓)。支援嵌套的區塊級元素(如P、DIV),

SAP NetWeaver Server Adapter for Eclipse
將Eclipse與SAP NetWeaver應用伺服器整合。

WebStorm Mac版
好用的JavaScript開發工具

MinGW - Minimalist GNU for Windows
這個專案正在遷移到osdn.net/projects/mingw的過程中,你可以繼續在那裡關注我們。 MinGW:GNU編譯器集合(GCC)的本機Windows移植版本,可自由分發的導入函式庫和用於建置本機Windows應用程式的頭檔;包括對MSVC執行時間的擴展,以支援C99功能。 MinGW的所有軟體都可以在64位元Windows平台上運作。

VSCode Windows 64位元 下載
微軟推出的免費、功能強大的一款IDE編輯器