创建排除文件
7
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
.vscode/
|
||||
.hbuilderx/
|
||||
.history/
|
||||
.idea/
|
||||
node_modules/
|
||||
unpackage/
|
||||
.DS_Store
|
||||
|
|
@ -1 +0,0 @@
|
|||
{"version":3,"names":["_sfc_main","data","swiperList","dataList","title","color","url","methods","wx","createPage","MiniProgramPage"],"sources":["home-page.vue","cGFnZXMvaG9tZS9ob21lLXBhZ2UudnVl"],"sourcesContent":["<template>\r\n\t<view class=\"content\" style=\"background-color: #FFFDF6;\">\r\n\r\n\t\t<image src=\"/static/bg.png\" style=\"width: 620.83rpx; height: 100%; position: absolute;\" mode=\"\"></image>\r\n\r\n\r\n\t\t<view class=\"content\" style=\"position: absolute;\">\r\n\r\n\r\n\t\t\t<!-- 搜索 -->\r\n\t\t\t<view class=\"\" style=\"width: 100%; margin-top: 96.53rpx;\">\r\n\t\t\t\t<view class=\"\"\r\n\t\t\t\t\tstyle=\"width: 230.56rpx; height: 71.53rpx; background-color: #FFFFFF; border: 5rpx solid #F5D677; border-radius: 50rpx; display: flex; align-items: center;\">\r\n\t\t\t\t\t<image src=\"/static/ic_search.png\" style=\"width: 28.47rpx; height: 28.47rpx; margin-left: 25rpx;\"\r\n\t\t\t\t\t\tmode=\"\"></image>\r\n\t\t\t\t</view>\r\n\t\t\t</view>\r\n\r\n\t\t\t<!-- 公告 -->\r\n\t\t\t<view class=\"\"\r\n\t\t\t\tstyle=\"width:100%; height: 57.64rpx; background-color: #FFFFFF; border: 5rpx solid #F5D677; border-radius: 20rpx; margin-top: 33.33rpx; display: flex; align-items: center;\">\r\n\r\n\t\t\t\t<image src=\"/static/ic_notice.png\" style=\"width: 23.61rpx; height: 22.92rpx; margin-left: 24.31rpx;\"\r\n\t\t\t\t\tmode=\"\"></image>\r\n\t\t\t\t<view class=\"news-text\">\r\n\t\t\t\t\t<uni-notice-bar scrollable single :style=\"{ width: `100%` }\" :speed=\"8\"\r\n\t\t\t\t\t\tbackground-color=\"transparent\" color=\"#6B5E4B\" text=\"感谢您的理解与支持\"></uni-notice-bar>\r\n\t\t\t\t</view>\r\n\t\t\t</view>\r\n\r\n\r\n\r\n\t\t\t<!-- 轮播图 -->\r\n\t\t\t<view class=\"\" style=\"width: 100%; margin-top: 30.56rpx; \">\r\n\t\t\t\t<swiper :indicator-dots=\"false\" :autoplay=\"true\" :interval=\"3000\" :duration=\"500\" :circular=\"true\">\r\n\t\t\t\t\t<swiper-item v-for=\"(item, index) in swiperList\" :key=\"index\">\r\n\t\t\t\t\t\t<view class=\"\" style=\"background-color: #F5D677; width: 100%; height: 300rpx;\">\r\n\t\t\t\t\t\t\t{{item}}\r\n\t\t\t\t\t\t</view>\r\n\t\t\t\t\t</swiper-item>\r\n\t\t\t\t</swiper>\r\n\t\t\t</view>\r\n\r\n\r\n\t\t\t<view class=\"\"\r\n\t\t\t\tstyle=\"width: 100%; height: 160.42rpx; display: flex; flex-direction: row; justify-content: space-between; margin-top: 29.86rpx;\">\r\n\r\n\t\t\t\t<view class=\"\" v-for=\"(item,index) in dataList\"\r\n\t\t\t\t\tstyle=\"width: 159.72rpx; height: 159.72rpx; background-color: #FDF4D5; border: 5rpx solid ;\"\r\n\t\t\t\t\t:style=\"{ border: `1px solid ${itme.color}`}\">\r\n\r\n\t\t\t\t</view>\r\n\r\n\t\t\t</view>\r\n\r\n\r\n\r\n\r\n\r\n\t\t</view>\r\n\r\n\r\n\r\n\r\n\r\n\t</view>\r\n</template>\r\n\r\n<script>\r\n\texport default {\r\n\t\tdata() {\r\n\t\t\treturn {\r\n\t\t\t\tswiperList: [1, 2, 3, 4],\r\n\t\t\t\tdataList: [{\r\n\t\t\t\t\t\ttitle: \"坂本日常\",\r\n\t\t\t\t\t\tcolor: \"#90BB76\",\r\n\t\t\t\t\t\turl: \"\"\r\n\t\t\t\t\t},\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\ttitle: \"坂本日常\",\r\n\t\t\t\t\t\tcolor: \"#90BB76\",\r\n\t\t\t\t\t\turl: \"\"\r\n\t\t\t\t\t},\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\ttitle: \"坂本日常\",\r\n\t\t\t\t\t\tcolor: \"#90BB76\",\r\n\t\t\t\t\t\turl: \"\"\r\n\t\t\t\t\t},\r\n\t\t\t\t\t{\r\n\t\t\t\t\t\ttitle: \"坂本日常\",\r\n\t\t\t\t\t\tcolor: \"#90BB76\",\r\n\t\t\t\t\t\turl: \"\"\r\n\t\t\t\t\t}\r\n\t\t\t\t]\r\n\t\t\t}\r\n\t\t},\r\n\t\tmethods: {\r\n\r\n\t\t}\r\n\t}\r\n</script>\r\n\r\n<style lang=\"scss\">\r\n\t.content {\r\n\t\twidth: 693.06rpx;\r\n\t\theight: 100vh;\r\n\t\tmargin: 0 auto;\r\n\t\tdisplay: flex;\r\n\t\tflex-direction: column;\r\n\t\tposition: relative;\r\n\t\talign-items: center;\r\n\r\n\t}\r\n\r\n\t.news-text {\r\n\t\twidth: 600rpx;\r\n\t\theight: 57.64rpx;\r\n\t\tdisplay: flex;\r\n\t\talign-items: center;\r\n\t\tmargin-left: 18rpx;\r\n\t\tpadding-top: 20rpx;\r\n\r\n\t\t::v-deep.uni-noticebar__content-text {\r\n\t\t\tfont-size: 22.22rpx;\r\n\t\t}\r\n\t}\r\n</style>","import MiniProgramPage from 'F:/gitCode/uniapp/guyu/pages/home/home-page.vue'\nwx.createPage(MiniProgramPage)"],"mappings":";;;;;;AAqEC,IAAKA,SAAA,GAAU;EACdC,IAAA,WAAAA,KAAA,EAAO;IACN,OAAO;MACNC,UAAA,EAAY,CAAC,GAAG,GAAG,GAAG,CAAC;MACvBC,QAAA,EAAU,CAAC;QACTC,KAAA,EAAO;QACPC,KAAA,EAAO;QACPC,GAAA,EAAK;MACL,GACD;QACCF,KAAA,EAAO;QACPC,KAAA,EAAO;QACPC,GAAA,EAAK;MACL,GACD;QACCF,KAAA,EAAO;QACPC,KAAA,EAAO;QACPC,GAAA,EAAK;MACL,GACD;QACCF,KAAA,EAAO;QACPC,KAAA,EAAO;QACPC,GAAA,EAAK;MACN;IAEF;EACA;EACDC,OAAA,EAAS,CAET;AACD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AClGDC,EAAA,CAAGC,UAAA,CAAWC,eAAe","ignoreList":[]}
|
||||
|
|
@ -1 +0,0 @@
|
|||
{"version":3,"file":"app.js","sources":["App.vue","main.js"],"sourcesContent":["<script>\r\n\texport default {\r\n\t\tonLaunch: function() {\r\n\t\t\tconsole.log('App Launch')\r\n\t\t},\r\n\t\tonShow: function() {\r\n\t\t\tconsole.log('App Show')\r\n\t\t},\r\n\t\tonHide: function() {\r\n\t\t\tconsole.log('App Hide')\r\n\t\t}\r\n\t}\r\n</script>\r\n\r\n<style lang=\"scss\">\r\n\t/*每个页面公共css */\r\n\r\n\r\n\t@font-face {\r\n\t\tfont-family: 'JiangChengYuanTi-300W';\r\n\t\t/* 定义字体家族名称 */\r\n\t\tsrc: url('/static/fonts/JiangChengYuanTi-300W.ttf') format('truetype');\r\n\t\t/* 指定字体文件路径和格式 */\r\n\t\tfont-weight: normal;\r\n\t\tfont-style: normal;\r\n\t}\r\n\r\n\t@font-face {\r\n\t\tfont-family: 'JiangChengYuanTi-400W';\r\n\t\t/* 定义字体家族名称 */\r\n\t\tsrc: url('/static/fonts/JiangChengYuanTi-300W.ttf') format('truetype');\r\n\t\t/* 指定字体文件路径和格式 */\r\n\t\tfont-weight: normal;\r\n\t\tfont-style: normal;\r\n\t}\r\n\r\n\t@font-face {\r\n\t\tfont-family: 'JiangChengYuanTi-500W';\r\n\t\t/* 定义字体家族名称 */\r\n\t\tsrc: url('/static/fonts/JiangChengYuanTi-300W.ttf') format('truetype');\r\n\t\t/* 指定字体文件路径和格式 */\r\n\t\tfont-weight: normal;\r\n\t\tfont-style: normal;\r\n\t}\r\n\r\n\t@font-face {\r\n\t\tfont-family: 'JiangChengYuanTi-600W';\r\n\t\t/* 定义字体家族名称 */\r\n\t\tsrc: url('/static/fonts/JiangChengYuanTi-300W.ttf') format('truetype');\r\n\t\t/* 指定字体文件路径和格式 */\r\n\t\tfont-weight: normal;\r\n\t\tfont-style: normal;\r\n\t}\r\n\r\n\t@font-face {\r\n\t\tfont-family: 'JiangChengYuanTi-700W';\r\n\t\t/* 定义字体家族名称 */\r\n\t\tsrc: url('/static/fonts/JiangChengYuanTi-300W.ttf') format('truetype');\r\n\t\t/* 指定字体文件路径和格式 */\r\n\t\tfont-weight: normal;\r\n\t\tfont-style: normal;\r\n\t}\r\n\r\n\r\n\t.myZt-300w {\r\n\t\tfont-family: 'JiangChengYuanTi-300W', sans-serif;\r\n\t}\r\n\r\n\t.myZt-400w {\r\n\t\tfont-family: 'JiangChengYuanTi-400W', sans-serif;\r\n\t}\r\n\r\n\t.myZt-500w {\r\n\t\tfont-family: 'JiangChengYuanTi-500W', sans-serif;\r\n\t}\r\n\r\n\t.myZt-600w {\r\n\t\tfont-family: 'JiangChengYuanTi-600W', sans-serif;\r\n\t}\r\n\r\n\t.myZt-700w {\r\n\t\tfont-family: 'JiangChengYuanTi-700W', sans-serif;\r\n\t}\r\n\r\n\t.bg {\r\n\t\tbackground-size: cover;\r\n\t\tbackground-repeat: no-repeat;\r\n\t\tbackground-position: center;\r\n\t}\r\n\r\n\t.column {\r\n\t\tdisplay: flex;\r\n\t\tflex-direction: column;\r\n\t}\r\n\r\n\t.row {\r\n\t\tdisplay: flex;\r\n\t\tflex-direction: row;\r\n\t}\r\n\r\n\t.center {\r\n\t\tdisplay: flex;\r\n\t\talign-items: center;\r\n\t\tjustify-content: center;\r\n\t}\r\n</style>","import App from './App'\n\n// #ifndef VUE3\nimport Vue from 'vue'\nimport './uni.promisify.adaptor'\nVue.config.productionTip = false\nApp.mpType = 'app'\nconst app = new Vue({\n ...App\n})\napp.$mount()\n// #endif\n\n// #ifdef VUE3\nimport { createSSRApp } from 'vue'\nexport function createApp() {\n const app = createSSRApp(App)\n return {\n app\n }\n}\n// #endif"],"names":["uni","createSSRApp","App"],"mappings":";;;;;;;;;;;;;;;AACC,MAAK,YAAU;AAAA,EACd,UAAU,WAAW;AACpBA,kBAAAA,MAAA,MAAA,OAAA,gBAAY,YAAY;AAAA,EACxB;AAAA,EACD,QAAQ,WAAW;AAClBA,kBAAAA,MAAY,MAAA,OAAA,gBAAA,UAAU;AAAA,EACtB;AAAA,EACD,QAAQ,WAAW;AAClBA,kBAAAA,MAAY,MAAA,OAAA,iBAAA,UAAU;AAAA,EACvB;AACD;ACIM,SAAS,YAAY;AAC1B,QAAM,MAAMC,cAAY,aAACC,SAAG;AAC5B,SAAO;AAAA,IACL;AAAA,EACD;AACH;;;"}
|
||||
|
|
@ -1 +0,0 @@
|
|||
{"version":3,"file":"assets.js","sources":["static/bg.png","static/ic_search.png","static/ic_notice.png","static/ic_minus.png","static/ic_add.png","static/pay_bg.png","static/ic_modify.png","static/ic_coupon.png","static/ic_order.png","static/ic_kf.png","static/ic_back.png","static/bags.png","static/details.png","static/share.png","static/ic_prompt.png","static/ic_pay.png","static/ic_join.png","static/ic_close.png","static/ic_address.png","static/ic_right_arrow.png","static/ic_check.png","static/confirm_pay.png","static/ic_save.png","static/ic_logistics.png","static/confirm_receipt.png","static/ic_copy.png"],"sourcesContent":["export default \"__VITE_ASSET__bac8c679__\"","export default \"__VITE_ASSET__3638b49d__\"","export default \"__VITE_ASSET__d68df3c1__\"","export default \"__VITE_ASSET__bda5b53e__\"","export default \"__VITE_ASSET__63ab7a4a__\"","export default \"__VITE_ASSET__1a1db255__\"","export default \"__VITE_ASSET__82cecd0b__\"","export default \"__VITE_ASSET__a83ffaaf__\"","export default \"__VITE_ASSET__c3b37da8__\"","export default \"__VITE_ASSET__30b826e5__\"","export default \"__VITE_ASSET__35492172__\"","export default \"__VITE_ASSET__8eb81c6b__\"","export default \"__VITE_ASSET__71a6f703__\"","export default \"__VITE_ASSET__e3417b68__\"","export default \"__VITE_ASSET__8282e1ce__\"","export default \"__VITE_ASSET__99e67017__\"","export default \"__VITE_ASSET__1da9a958__\"","export default \"__VITE_ASSET__96212905__\"","export default \"__VITE_ASSET__dc3075f2__\"","export default \"__VITE_ASSET__c9decb20__\"","export default \"__VITE_ASSET__ec31f9f9__\"","export default \"__VITE_ASSET__b86711f9__\"","export default \"__VITE_ASSET__b31d1dfc__\"","export default \"__VITE_ASSET__a940df47__\"","export default \"__VITE_ASSET__280b22dd__\"","export default \"__VITE_ASSET__4233e632__\""],"names":[],"mappings":";AAAA,MAAe,eAAA;ACAf,MAAe,eAAA;ACAf,MAAe,eAAA;ACAf,MAAe,cAAA;ACAf,MAAe,cAAA;ACAf,MAAe,eAAA;ACAf,MAAe,eAAA;ACAf,MAAe,eAAA;ACAf,MAAe,eAAA;ACAf,MAAe,eAAA;ACAf,MAAe,aAAA;ACAf,MAAe,eAAA;ACAf,MAAe,eAAA;ACAf,MAAe,eAAA;ACAf,MAAe,aAAA;ACAf,MAAe,aAAA;ACAf,MAAe,aAAA;ACAf,MAAe,aAAA;ACAf,MAAe,eAAA;ACAf,MAAe,aAAA;ACAf,MAAe,cAAA;ACAf,MAAe,cAAA;ACAf,MAAe,eAAA;ACAf,MAAe,aAAA;ACAf,MAAe,aAAA;ACAf,MAAe,aAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
||||
|
|
@ -1 +0,0 @@
|
|||
{"version":3,"file":"index.js","sources":["pages/index/index.vue","../../../Software/HBuilderX.4.15.2024050802/HBuilderX/plugins/uniapp-cli-vite/uniPage:/cGFnZXMvaW5kZXgvaW5kZXgudnVl"],"sourcesContent":["<template>\r\n\t<view class=\"content\">\r\n\t\t\r\n\t</view>\r\n</template>\r\n\r\n<script>\r\n\texport default {\r\n\t\tdata() {\r\n\t\t\treturn {\r\n\t\t\t\t\r\n\t\t\t}\r\n\t\t},\r\n\t\tonLoad() {\r\n\r\n\t\t},\r\n\t\tmethods: {\r\n\r\n\t\t}\r\n\t}\r\n</script>\r\n\r\n<style>\r\n\t.content {\r\n\t\tdisplay: flex;\r\n\t\tflex-direction: column;\r\n\t\talign-items: center;\r\n\t\tjustify-content: center;\r\n\t}\r\n\r\n\r\n</style>\n","import MiniProgramPage from 'F:/gitCode/uniapp/guyu/pages/index/index.vue'\nwx.createPage(MiniProgramPage)"],"names":[],"mappings":";;AAOC,MAAK,YAAU;AAAA,EACd,OAAO;AACN,WAAO,CAEP;AAAA,EACA;AAAA,EACD,SAAS;AAAA,EAER;AAAA,EACD,SAAS,CAET;AACD;;;;;AClBD,GAAG,WAAW,eAAe;"}
|
||||
|
|
@ -1 +0,0 @@
|
|||
{"version":3,"file":"bags-page.js","sources":["pages/index/page/bags/bags-page.vue","../../Software/HBuilderX.4.15.2024050802/HBuilderX/plugins/uniapp-cli-vite/uniPage:/cGFnZXMvaW5kZXgvcGFnZS9iYWdzL2JhZ3MtcGFnZS52dWU"],"sourcesContent":["<template>\n\t<view>\n\t\t\n\t</view>\n</template>\n\n<script>\n\texport default {\n\t\tdata() {\n\t\t\treturn {\n\t\t\t\t\n\t\t\t}\n\t\t},\n\t\tmethods: {\n\t\t\t\n\t\t}\n\t}\n</script>\n\n<style>\n\n</style>\n","import MiniProgramPage from 'F:/work/guyu/pages/index/page/bags/bags-page.vue'\nwx.createPage(MiniProgramPage)"],"names":[],"mappings":";;AAOC,MAAK,YAAU;AAAA,EACd,OAAO;AACN,WAAO,CAEP;AAAA,EACA;AAAA,EACD,SAAS,CAET;AACD;;;;;ACfD,GAAG,WAAW,eAAe;"}
|
||||
|
|
@ -1 +0,0 @@
|
|||
{"version":3,"file":"home-page.js","sources":["pages/index/page/home/home-page.vue","../../Software/HBuilderX.4.15.2024050802/HBuilderX/plugins/uniapp-cli-vite/uniPage:/cGFnZXMvaW5kZXgvcGFnZS9ob21lL2hvbWUtcGFnZS52dWU"],"sourcesContent":["<template>\n\t<view>\n\t\t\n\t</view>\n</template>\n\n<script>\n\texport default {\n\t\tdata() {\n\t\t\treturn {\n\t\t\t\t\n\t\t\t}\n\t\t},\n\t\tmethods: {\n\t\t\t\n\t\t}\n\t}\n</script>\n\n<style>\n\n</style>\n","import MiniProgramPage from 'F:/work/guyu/pages/index/page/home/home-page.vue'\nwx.createPage(MiniProgramPage)"],"names":[],"mappings":";;AAOC,MAAK,YAAU;AAAA,EACd,OAAO;AACN,WAAO,CAEP;AAAA,EACA;AAAA,EACD,SAAS,CAET;AACD;;;;;ACfD,GAAG,WAAW,eAAe;"}
|
||||
|
|
@ -1 +0,0 @@
|
|||
{"version":3,"file":"address-page.js","sources":["pages/me/address-page.vue","../../../Software/HBuilderX.4.15.2024050802/HBuilderX/plugins/uniapp-cli-vite/uniPage:/cGFnZXMvbWUvYWRkcmVzcy1wYWdlLnZ1ZQ"],"sourcesContent":["<template>\n\t<view>\n\t\t\n\t</view>\n</template>\n\n<script>\n\texport default {\n\t\tdata() {\n\t\t\treturn {\n\t\t\t\t\n\t\t\t}\n\t\t},\n\t\tmethods: {\n\t\t\t\n\t\t}\n\t}\n</script>\n\n<style>\n\n</style>\n","import MiniProgramPage from 'F:/gitCode/uniapp/guyu/pages/me/address-page.vue'\nwx.createPage(MiniProgramPage)"],"names":[],"mappings":";;AAOC,MAAK,YAAU;AAAA,EACd,OAAO;AACN,WAAO,CAEP;AAAA,EACA;AAAA,EACD,SAAS,CAET;AACD;;;;;ACfD,GAAG,WAAW,eAAe;"}
|
||||
|
|
@ -1 +0,0 @@
|
|||
{"version":3,"file":"logistics-details-page.js","sources":["pages/me/logistics-details-page.vue","../../../Software/HBuilderX.4.15.2024050802/HBuilderX/plugins/uniapp-cli-vite/uniPage:/cGFnZXMvbWUvbG9naXN0aWNzLWRldGFpbHMtcGFnZS52dWU"],"sourcesContent":["<template>\r\n\t<view class=\"content bg\" style=\"background-image: url('/static/bags_bg.png');\">\r\n\r\n\t\t<view class=\"title\">\r\n\t\t\t<view class=\"back\" @click=\"toBack()\">\r\n\t\t\t\t<image src=\"/static/ic_back.png\" mode=\"\"></image>\r\n\t\t\t</view>\r\n\t\t\t<text>物流详情</text>\r\n\t\t\t<view class=\"back\"></view>\r\n\t\t</view>\r\n\r\n\r\n\r\n\t\t<view class=\"\"\r\n\t\t\tstyle=\"width: 689.58rpx; height: 180.56rpx; background-color: white; border-radius: 16rpx; margin: 86.81rpx auto 0; position: relative; display: flex; align-items: center;\">\r\n\r\n\r\n\t\t\t<image src=\"\"\r\n\t\t\t\tstyle=\"width: 125rpx; height: 125rpx; background-color: #9B9285; border-radius: 16rpx; position: absolute; left: 30.56rpx;\"\r\n\t\t\t\tmode=\"\"></image>\r\n\r\n\t\t\t<text\r\n\t\t\t\tstyle=\"position: absolute; left: 182.64rpx; top: 34.72rpx; font-size: 23.59rpx; color: #FF8B36;\">待发货</text>\r\n\r\n\t\t\t<text\r\n\t\t\t\tstyle=\"position: absolute; left: 182.64rpx; top: 83.33rpx; font-size: 19.42rpx; color: #8C8574;\">快递公司:</text>\r\n\r\n\t\t\t<view class=\"row\" style=\"align-items: center; position: absolute; left: 182.64rpx; bottom: 34.03rpx;\">\r\n\t\t\t\t<text style=\"font-size: 19.42rpx; color: #8C8574;\">快递单号:9569469491691981</text>\r\n\t\t\t\t<image src=\"/static/ic_copy.png\" @click=\"copyData\" style=\"width: 20.83rpx; height: 20.83rpx; margin-left: 10rpx;\" mode=\"\">\r\n\t\t\t\t</image>\r\n\t\t\t</view>\r\n\r\n\r\n\t\t</view>\r\n\r\n\r\n\t</view>\r\n</template>\r\n\r\n<script>\r\n\texport default {\r\n\t\tdata() {\r\n\t\t\treturn {\r\n\r\n\t\t\t}\r\n\t\t},\r\n\t\tmethods: {\r\n\t\t\ttoBack() {\r\n\t\t\t\tuni.navigateBack();\r\n\t\t\t},\r\n\r\n\t\t\tcopyData() {\r\n\t\t\t\t// 复制文本到剪贴板\r\n\t\t\t\tuni.setClipboardData({\r\n\t\t\t\t\tdata: '要复制的文本内容',\r\n\t\t\t\t\tsuccess: function() {\r\n\t\t\t\t\t\tuni.showToast({\r\n\t\t\t\t\t\t\ttitle: '复制成功',\r\n\t\t\t\t\t\t\ticon: 'none'\r\n\t\t\t\t\t\t});\r\n\t\t\t\t\t},\r\n\t\t\t\t\tfail: function() {\r\n\t\t\t\t\t\tuni.showToast({\r\n\t\t\t\t\t\t\ttitle: '复制失败',\r\n\t\t\t\t\t\t\ticon: 'none'\r\n\t\t\t\t\t\t});\r\n\t\t\t\t\t}\r\n\t\t\t\t});\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n</script>\r\n\r\n<style lang=\"scss\">\r\n\t.content {\r\n\t\twidth: 100%;\r\n\t\theight: 100vh;\r\n\t\tdisplay: flex;\r\n\t\tflex-direction: column;\r\n\t\talign-items: center;\r\n\t}\r\n\r\n\t.title {\r\n\t\twidth: 688.88rpx;\r\n\t\tdisplay: flex;\r\n\t\tflex-direction: row;\r\n\t\tjustify-content: space-between;\r\n\t\tmargin-top: 119.44rpx;\r\n\r\n\t\ttext {\r\n\t\t\tfont-size: 29.17rpx;\r\n\t\t\tcolor: #6E5B51;\r\n\t\t}\r\n\t}\r\n\r\n\t.back {\r\n\t\twidth: 40rpx;\r\n\t\theight: 40rpx;\r\n\r\n\t\timage {\r\n\t\t\twidth: 14.58rpx;\r\n\t\t\theight: 27.08rpx;\r\n\t\t}\r\n\t}\r\n</style>","import MiniProgramPage from 'F:/gitCode/uniapp/guyu/pages/me/logistics-details-page.vue'\nwx.createPage(MiniProgramPage)"],"names":["uni"],"mappings":";;;AAyCC,MAAK,YAAU;AAAA,EACd,OAAO;AACN,WAAO,CAEP;AAAA,EACA;AAAA,EACD,SAAS;AAAA,IACR,SAAS;AACRA,oBAAG,MAAC,aAAY;AAAA,IAChB;AAAA,IAED,WAAW;AAEVA,oBAAAA,MAAI,iBAAiB;AAAA,QACpB,MAAM;AAAA,QACN,SAAS,WAAW;AACnBA,wBAAAA,MAAI,UAAU;AAAA,YACb,OAAO;AAAA,YACP,MAAM;AAAA,UACP,CAAC;AAAA,QACD;AAAA,QACD,MAAM,WAAW;AAChBA,wBAAAA,MAAI,UAAU;AAAA,YACb,OAAO;AAAA,YACP,MAAM;AAAA,UACP,CAAC;AAAA,QACF;AAAA,MACD,CAAC;AAAA,IACF;AAAA,EACD;AACD;;;;;;;;;;ACtED,GAAG,WAAW,eAAe;"}
|
||||
|
|
@ -1 +0,0 @@
|
|||
{"version":3,"file":"me-page.js","sources":["pages/me/me-page.vue","../../../Software/HBuilderX.4.15.2024050802/HBuilderX/plugins/uniapp-cli-vite/uniPage:/cGFnZXMvbWUvbWUtcGFnZS52dWU"],"sourcesContent":["<template>\r\n\t<view class=\"content\" style=\"background-image: url('/static/bags_bg.png');\">\r\n\r\n\r\n\t\t<view class=\"\" @click=\"toInfo()\"\r\n\t\t\tstyle=\"width: 100%; height: 138.19rpx; margin-top: 195.14rpx; position: relative;\">\r\n\r\n\t\t\t<image src=\"\"\r\n\t\t\t\tstyle=\"width: 137.5rpx; height: 137.5rpx; background-color: #FFFFFF; border: 2rpx solid #F5D677; border-radius: 50%; margin-left: 29.17rpx; position: absolute;\"\r\n\t\t\t\tmode=\"\"></image>\r\n\r\n\t\t\t<view class=\"\"\r\n\t\t\t\tstyle=\"display: flex; flex-direction: row; position: absolute; align-items: center; left: 186.81rpx; top: 35.42rpx;\">\r\n\t\t\t\t<text style=\"font-size: 29.17rpx; color: #6E5B51;\">坂本日常</text>\r\n\t\t\t\t<image src=\"/static/ic_modify.png\" style=\"width: 22.92rpx; height: 22.92rpx; margin-left: 13.16rpx;\"\r\n\t\t\t\t\tmode=\"\"></image>\r\n\t\t\t</view>\r\n\r\n\t\t\t<text\r\n\t\t\t\tstyle=\"position: absolute; left: 186.81rpx; bottom: 35.42rpx; font-size: 19.42rpx; color: #8C8574;\">ID:3232321323</text>\r\n\r\n\t\t</view>\r\n\r\n\t\t<view class=\"\"\r\n\t\t\tstyle=\"width: 689.58rpx; height: 161.81rpx; background-color: #FFFFFF; margin: 48.61rpx auto 0; border-radius: 20rpx; display: flex; flex-direction: row; align-items: center; justify-content: space-around;\">\r\n\t\t\t<view style=\"width: 0.69rpx; height: 98.61rpx; \"></view>\r\n\r\n\t\t\t<!-- 优惠券 -->\r\n\t\t\t<image @click=\"toCoupon()\" src=\"/static/ic_coupon.png\" style=\"width: 100.69rpx; height: 98.61rpx;\" mode=\"\">\r\n\t\t\t</image>\r\n\r\n\t\t\t<view style=\"width: 0.69rpx; height: 98.61rpx; background-color: #6E5B51;\"></view>\r\n\r\n\t\t\t<!-- 订单管理 -->\r\n\t\t\t<image @click=\"toOrder()\" src=\"/static/ic_order.png\" style=\"width: 100.69rpx; height: 98.61rpx;\" mode=\"\">\r\n\t\t\t</image>\r\n\r\n\t\t\t<view style=\"width: 0.69rpx; height: 98.61rpx; background-color: #6E5B51;\"></view>\r\n\r\n\t\t\t<!-- 联系客服 -->\r\n\t\t\t<image src=\"/static/ic_kf.png\" style=\"width: 100.69rpx; height: 98.61rpx;\" mode=\"\"></image>\r\n\t\t\t<view style=\"width: 0.69rpx; height: 98.61rpx; \"></view>\r\n\r\n\t\t</view>\r\n\r\n\r\n\t</view>\r\n</template>\r\n\r\n<script>\r\n\texport default {\r\n\t\tdata() {\r\n\t\t\treturn {\r\n\r\n\t\t\t}\r\n\t\t},\r\n\t\tmethods: {\r\n\t\t\t//个人信息\r\n\t\t\ttoInfo() {\r\n\t\t\t\tuni.navigateTo({\r\n\t\t\t\t\turl: '/pages/me/user-info-page'\r\n\t\t\t\t});\r\n\t\t\t},\r\n\r\n\t\t\t//优惠券\r\n\t\t\ttoCoupon() {\r\n\t\t\t\tuni.navigateTo({\r\n\t\t\t\t\turl: '/pages/me/coupon-page'\r\n\t\t\t\t});\r\n\t\t\t},\r\n\r\n\t\t\t//订单管理\r\n\t\t\ttoOrder() {\r\n\t\t\t\tuni.navigateTo({\r\n\t\t\t\t\turl: '/pages/me/order-page'\r\n\t\t\t\t});\r\n\t\t\t}\r\n\r\n\t\t}\r\n\t}\r\n</script>\r\n\r\n<style lang=\"scss\">\r\n\t.content {\r\n\t\twidth: 100%;\r\n\t\theight: 100vh;\r\n\t\tdisplay: flex;\r\n\t\tflex-direction: column;\r\n\t\talign-items: center;\r\n\t\tbackground-size: cover;\r\n\t\tbackground-repeat: no-repeat;\r\n\t\tbackground-position: center;\r\n\t}\r\n</style>","import MiniProgramPage from 'F:/gitCode/uniapp/guyu/pages/me/me-page.vue'\nwx.createPage(MiniProgramPage)"],"names":["uni"],"mappings":";;;AAkDC,MAAK,YAAU;AAAA,EACd,OAAO;AACN,WAAO,CAEP;AAAA,EACA;AAAA,EACD,SAAS;AAAA;AAAA,IAER,SAAS;AACRA,oBAAAA,MAAI,WAAW;AAAA,QACd,KAAK;AAAA,MACN,CAAC;AAAA,IACD;AAAA;AAAA,IAGD,WAAW;AACVA,oBAAAA,MAAI,WAAW;AAAA,QACd,KAAK;AAAA,MACN,CAAC;AAAA,IACD;AAAA;AAAA,IAGD,UAAU;AACTA,oBAAAA,MAAI,WAAW;AAAA,QACd,KAAK;AAAA,MACN,CAAC;AAAA,IACF;AAAA,EAED;AACD;;;;;;;;;;;;;AC9ED,GAAG,WAAW,eAAe;"}
|
||||
|
|
@ -1 +0,0 @@
|
|||
{"version":3,"file":"uni-icons.js","sources":["uni_modules/uni-icons/components/uni-icons/uni-icons.vue","../../../Software/HBuilderX.4.15.2024050802/HBuilderX/plugins/uniapp-cli-vite/uniComponent:/RjovZ2l0Q29kZS91bmlhcHAvZ3V5dS91bmlfbW9kdWxlcy91bmktaWNvbnMvY29tcG9uZW50cy91bmktaWNvbnMvdW5pLWljb25zLnZ1ZQ"],"sourcesContent":["<template>\r\n\t<!-- #ifdef APP-NVUE -->\r\n\t<text :style=\"styleObj\" class=\"uni-icons\" @click=\"_onClick\">{{unicode}}</text>\r\n\t<!-- #endif -->\r\n\t<!-- #ifndef APP-NVUE -->\r\n\t<text :style=\"styleObj\" class=\"uni-icons\" :class=\"['uniui-'+type,customPrefix,customPrefix?type:'']\" @click=\"_onClick\">\r\n\t\t<slot></slot>\r\n\t</text>\r\n\t<!-- #endif -->\r\n</template>\r\n\r\n<script>\r\n\timport { fontData } from './uniicons_file_vue.js';\r\n\r\n\tconst getVal = (val) => {\r\n\t\tconst reg = /^[0-9]*$/g\r\n\t\treturn (typeof val === 'number' || reg.test(val)) ? val + 'px' : val;\r\n\t}\r\n\r\n\t// #ifdef APP-NVUE\r\n\tvar domModule = weex.requireModule('dom');\r\n\timport iconUrl from './uniicons.ttf'\r\n\tdomModule.addRule('fontFace', {\r\n\t\t'fontFamily': \"uniicons\",\r\n\t\t'src': \"url('\" + iconUrl + \"')\"\r\n\t});\r\n\t// #endif\r\n\r\n\t/**\r\n\t * Icons 图标\r\n\t * @description 用于展示 icons 图标\r\n\t * @tutorial https://ext.dcloud.net.cn/plugin?id=28\r\n\t * @property {Number} size 图标大小\r\n\t * @property {String} type 图标图案,参考示例\r\n\t * @property {String} color 图标颜色\r\n\t * @property {String} customPrefix 自定义图标\r\n\t * @event {Function} click 点击 Icon 触发事件\r\n\t */\r\n\texport default {\r\n\t\tname: 'UniIcons',\r\n\t\temits: ['click'],\r\n\t\tprops: {\r\n\t\t\ttype: {\r\n\t\t\t\ttype: String,\r\n\t\t\t\tdefault: ''\r\n\t\t\t},\r\n\t\t\tcolor: {\r\n\t\t\t\ttype: String,\r\n\t\t\t\tdefault: '#333333'\r\n\t\t\t},\r\n\t\t\tsize: {\r\n\t\t\t\ttype: [Number, String],\r\n\t\t\t\tdefault: 16\r\n\t\t\t},\r\n\t\t\tcustomPrefix: {\r\n\t\t\t\ttype: String,\r\n\t\t\t\tdefault: ''\r\n\t\t\t},\r\n\t\t\tfontFamily: {\r\n\t\t\t\ttype: String,\r\n\t\t\t\tdefault: ''\r\n\t\t\t}\r\n\t\t},\r\n\t\tdata() {\r\n\t\t\treturn {\r\n\t\t\t\ticons: fontData\r\n\t\t\t}\r\n\t\t},\r\n\t\tcomputed: {\r\n\t\t\tunicode() {\r\n\t\t\t\tlet code = this.icons.find(v => v.font_class === this.type)\r\n\t\t\t\tif (code) {\r\n\t\t\t\t\treturn code.unicode\r\n\t\t\t\t}\r\n\t\t\t\treturn ''\r\n\t\t\t},\r\n\t\t\ticonSize() {\r\n\t\t\t\treturn getVal(this.size)\r\n\t\t\t},\r\n\t\t\tstyleObj() {\r\n\t\t\t\tif (this.fontFamily !== '') {\r\n\t\t\t\t\treturn `color: ${this.color}; font-size: ${this.iconSize}; font-family: ${this.fontFamily};`\r\n\t\t\t\t}\r\n\t\t\t\treturn `color: ${this.color}; font-size: ${this.iconSize};`\r\n\t\t\t}\r\n\t\t},\r\n\t\tmethods: {\r\n\t\t\t_onClick() {\r\n\t\t\t\tthis.$emit('click')\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n</script>\r\n\r\n<style lang=\"scss\">\r\n\t/* #ifndef APP-NVUE */\r\n\t@import './uniicons.css';\r\n\r\n\t@font-face {\r\n\t\tfont-family: uniicons;\r\n\t\tsrc: url('./uniicons.ttf');\r\n\t}\r\n\r\n\t/* #endif */\r\n\t.uni-icons {\r\n\t\tfont-family: uniicons;\r\n\t\ttext-decoration: none;\r\n\t\ttext-align: center;\r\n\t}\r\n</style>\n","import Component from 'F:/gitCode/uniapp/guyu/uni_modules/uni-icons/components/uni-icons/uni-icons.vue'\nwx.createComponent(Component)"],"names":["fontData"],"mappings":";;;AAcC,MAAM,SAAS,CAAC,QAAQ;AACvB,QAAM,MAAM;AACZ,SAAQ,OAAO,QAAQ,YAAY,IAAI,KAAK,GAAG,IAAK,MAAM,OAAO;AAClE;AAqBA,MAAK,YAAU;AAAA,EACd,MAAM;AAAA,EACN,OAAO,CAAC,OAAO;AAAA,EACf,OAAO;AAAA,IACN,MAAM;AAAA,MACL,MAAM;AAAA,MACN,SAAS;AAAA,IACT;AAAA,IACD,OAAO;AAAA,MACN,MAAM;AAAA,MACN,SAAS;AAAA,IACT;AAAA,IACD,MAAM;AAAA,MACL,MAAM,CAAC,QAAQ,MAAM;AAAA,MACrB,SAAS;AAAA,IACT;AAAA,IACD,cAAc;AAAA,MACb,MAAM;AAAA,MACN,SAAS;AAAA,IACT;AAAA,IACD,YAAY;AAAA,MACX,MAAM;AAAA,MACN,SAAS;AAAA,IACV;AAAA,EACA;AAAA,EACD,OAAO;AACN,WAAO;AAAA,MACN,OAAOA,2DAAO;AAAA,IACf;AAAA,EACA;AAAA,EACD,UAAU;AAAA,IACT,UAAU;AACT,UAAI,OAAO,KAAK,MAAM,KAAK,OAAK,EAAE,eAAe,KAAK,IAAI;AAC1D,UAAI,MAAM;AACT,eAAO,KAAK;AAAA,MACb;AACA,aAAO;AAAA,IACP;AAAA,IACD,WAAW;AACV,aAAO,OAAO,KAAK,IAAI;AAAA,IACvB;AAAA,IACD,WAAW;AACV,UAAI,KAAK,eAAe,IAAI;AAC3B,eAAO,UAAU,KAAK,KAAK,gBAAgB,KAAK,QAAQ,kBAAkB,KAAK,UAAU;AAAA,MAC1F;AACA,aAAO,UAAU,KAAK,KAAK,gBAAgB,KAAK,QAAQ;AAAA,IACzD;AAAA,EACA;AAAA,EACD,SAAS;AAAA,IACR,WAAW;AACV,WAAK,MAAM,OAAO;AAAA,IACnB;AAAA,EACD;AACD;;;;;;;;;;;AC1FD,GAAG,gBAAgB,SAAS;"}
|
||||
35
unpackage/dist/dev/mp-weixin/app.js
vendored
|
|
@ -1,35 +0,0 @@
|
|||
"use strict";
|
||||
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
||||
const common_vendor = require("./common/vendor.js");
|
||||
if (!Math) {
|
||||
"./pages/home/home-page.js";
|
||||
"./pages/index/index.js";
|
||||
"./pages/bags/bags-page.js";
|
||||
"./pages/me/me-page.js";
|
||||
"./pages/home/product-details.js";
|
||||
"./pages/me/user-info-page.js";
|
||||
"./pages/me/coupon-page.js";
|
||||
"./pages/me/order-page.js";
|
||||
"./pages/me/logistics-details-page.js";
|
||||
"./pages/me/address-page.js";
|
||||
}
|
||||
const _sfc_main = {
|
||||
onLaunch: function() {
|
||||
common_vendor.index.__f__("log", "at App.vue:4", "App Launch");
|
||||
},
|
||||
onShow: function() {
|
||||
common_vendor.index.__f__("log", "at App.vue:7", "App Show");
|
||||
},
|
||||
onHide: function() {
|
||||
common_vendor.index.__f__("log", "at App.vue:10", "App Hide");
|
||||
}
|
||||
};
|
||||
function createApp() {
|
||||
const app = common_vendor.createSSRApp(_sfc_main);
|
||||
return {
|
||||
app
|
||||
};
|
||||
}
|
||||
createApp().app.mount("#app");
|
||||
exports.createApp = createApp;
|
||||
//# sourceMappingURL=../.sourcemap/mp-weixin/app.js.map
|
||||
43
unpackage/dist/dev/mp-weixin/app.json
vendored
|
|
@ -1,43 +0,0 @@
|
|||
{
|
||||
"pages": [
|
||||
"pages/home/home-page",
|
||||
"pages/index/index",
|
||||
"pages/bags/bags-page",
|
||||
"pages/me/me-page",
|
||||
"pages/home/product-details",
|
||||
"pages/me/user-info-page",
|
||||
"pages/me/coupon-page",
|
||||
"pages/me/order-page",
|
||||
"pages/me/logistics-details-page",
|
||||
"pages/me/address-page"
|
||||
],
|
||||
"window": {
|
||||
"navigationBarTextStyle": "black",
|
||||
"navigationBarTitleText": "uni-app",
|
||||
"navigationBarBackgroundColor": "#F8F8F8",
|
||||
"backgroundColor": "#F8F8F8"
|
||||
},
|
||||
"tabBar": {
|
||||
"color": "#FFFDF1",
|
||||
"selectedColor": "#333333",
|
||||
"borderStyle": "black",
|
||||
"list": [
|
||||
{
|
||||
"pagePath": "pages/home/home-page",
|
||||
"iconPath": "/static/tabbar/ic_home.png",
|
||||
"selectedIconPath": "/static/tabbar/ic_s.png"
|
||||
},
|
||||
{
|
||||
"pagePath": "pages/bags/bags-page",
|
||||
"iconPath": "/static/tabbar/ic_bags.png",
|
||||
"selectedIconPath": "/static/tabbar/ic_s.png"
|
||||
},
|
||||
{
|
||||
"pagePath": "pages/me/me-page",
|
||||
"iconPath": "/static/tabbar/ic_me.png",
|
||||
"selectedIconPath": "/static/tabbar/ic_s.png"
|
||||
}
|
||||
]
|
||||
},
|
||||
"usingComponents": {}
|
||||
}
|
||||
99
unpackage/dist/dev/mp-weixin/app.wxss
vendored
|
|
@ -1,99 +0,0 @@
|
|||
/**
|
||||
* 这里是uni-app内置的常用样式变量
|
||||
*
|
||||
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
||||
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
||||
*
|
||||
*/
|
||||
/**
|
||||
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
||||
*
|
||||
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
||||
*/
|
||||
/* 颜色变量 */
|
||||
/* 行为相关颜色 */
|
||||
/* 文字基本颜色 */
|
||||
/* 背景颜色 */
|
||||
/* 边框颜色 */
|
||||
/* 尺寸变量 */
|
||||
/* 文字尺寸 */
|
||||
/* 图片尺寸 */
|
||||
/* Border Radius */
|
||||
/* 水平间距 */
|
||||
/* 垂直间距 */
|
||||
/* 透明度 */
|
||||
/* 文章场景相关 */
|
||||
/*每个页面公共css */
|
||||
@font-face {
|
||||
font-family: "JiangChengYuanTi-300W";
|
||||
/* 定义字体家族名称 */
|
||||
src: url("static/fonts/JiangChengYuanTi-300W.ttf") format("truetype");
|
||||
/* 指定字体文件路径和格式 */
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "JiangChengYuanTi-400W";
|
||||
/* 定义字体家族名称 */
|
||||
src: url("static/fonts/JiangChengYuanTi-300W.ttf") format("truetype");
|
||||
/* 指定字体文件路径和格式 */
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "JiangChengYuanTi-500W";
|
||||
/* 定义字体家族名称 */
|
||||
src: url("static/fonts/JiangChengYuanTi-300W.ttf") format("truetype");
|
||||
/* 指定字体文件路径和格式 */
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "JiangChengYuanTi-600W";
|
||||
/* 定义字体家族名称 */
|
||||
src: url("static/fonts/JiangChengYuanTi-300W.ttf") format("truetype");
|
||||
/* 指定字体文件路径和格式 */
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "JiangChengYuanTi-700W";
|
||||
/* 定义字体家族名称 */
|
||||
src: url("static/fonts/JiangChengYuanTi-300W.ttf") format("truetype");
|
||||
/* 指定字体文件路径和格式 */
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
.myZt-300w {
|
||||
font-family: "JiangChengYuanTi-300W", sans-serif;
|
||||
}
|
||||
.myZt-400w {
|
||||
font-family: "JiangChengYuanTi-400W", sans-serif;
|
||||
}
|
||||
.myZt-500w {
|
||||
font-family: "JiangChengYuanTi-500W", sans-serif;
|
||||
}
|
||||
.myZt-600w {
|
||||
font-family: "JiangChengYuanTi-600W", sans-serif;
|
||||
}
|
||||
.myZt-700w {
|
||||
font-family: "JiangChengYuanTi-700W", sans-serif;
|
||||
}
|
||||
.bg {
|
||||
background-size: cover;
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
}
|
||||
.column {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.row {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
}
|
||||
.center {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}page{--status-bar-height:25px;--top-window-height:0px;--window-top:0px;--window-bottom:0px;--window-left:0px;--window-right:0px;--window-magin:0px}[data-c-h="true"]{display: none !important;}
|
||||
54
unpackage/dist/dev/mp-weixin/common/assets.js
vendored
|
|
@ -1,54 +0,0 @@
|
|||
"use strict";
|
||||
const _imports_0$2 = "/static/bg.png";
|
||||
const _imports_1$5 = "/static/ic_search.png";
|
||||
const _imports_2$4 = "/static/ic_notice.png";
|
||||
const _imports_10 = "/static/ic_minus.png";
|
||||
const _imports_11 = "/static/ic_add.png";
|
||||
const _imports_2$3 = "/static/pay_bg.png";
|
||||
const _imports_0$1 = "/static/ic_modify.png";
|
||||
const _imports_1$4 = "/static/ic_coupon.png";
|
||||
const _imports_2$2 = "/static/ic_order.png";
|
||||
const _imports_3$2 = "/static/ic_kf.png";
|
||||
const _imports_0 = "/static/ic_back.png";
|
||||
const _imports_1$3 = "/static/bags.png";
|
||||
const _imports_2$1 = "/static/details.png";
|
||||
const _imports_3$1 = "/static/share.png";
|
||||
const _imports_4 = "/static/ic_prompt.png";
|
||||
const _imports_5 = "/static/ic_pay.png";
|
||||
const _imports_6 = "/static/ic_join.png";
|
||||
const _imports_7 = "/static/ic_close.png";
|
||||
const _imports_1$2 = "/static/ic_address.png";
|
||||
const _imports_9 = "/static/ic_right_arrow.png";
|
||||
const _imports_12 = "/static/ic_check.png";
|
||||
const _imports_13 = "/static/confirm_pay.png";
|
||||
const _imports_1$1 = "/static/ic_save.png";
|
||||
const _imports_2 = "/static/ic_logistics.png";
|
||||
const _imports_3 = "/static/confirm_receipt.png";
|
||||
const _imports_1 = "/static/ic_copy.png";
|
||||
exports._imports_0 = _imports_0$2;
|
||||
exports._imports_0$1 = _imports_0$1;
|
||||
exports._imports_0$2 = _imports_0;
|
||||
exports._imports_1 = _imports_1$5;
|
||||
exports._imports_1$1 = _imports_1$4;
|
||||
exports._imports_1$2 = _imports_1$3;
|
||||
exports._imports_1$3 = _imports_1$2;
|
||||
exports._imports_1$4 = _imports_1$1;
|
||||
exports._imports_1$5 = _imports_1;
|
||||
exports._imports_10 = _imports_10;
|
||||
exports._imports_11 = _imports_11;
|
||||
exports._imports_12 = _imports_12;
|
||||
exports._imports_13 = _imports_13;
|
||||
exports._imports_2 = _imports_2$4;
|
||||
exports._imports_2$1 = _imports_2$3;
|
||||
exports._imports_2$2 = _imports_2$2;
|
||||
exports._imports_2$3 = _imports_2$1;
|
||||
exports._imports_2$4 = _imports_2;
|
||||
exports._imports_3 = _imports_3$2;
|
||||
exports._imports_3$1 = _imports_3$1;
|
||||
exports._imports_3$2 = _imports_3;
|
||||
exports._imports_4 = _imports_4;
|
||||
exports._imports_5 = _imports_5;
|
||||
exports._imports_6 = _imports_6;
|
||||
exports._imports_7 = _imports_7;
|
||||
exports._imports_9 = _imports_9;
|
||||
//# sourceMappingURL=../../.sourcemap/mp-weixin/common/assets.js.map
|
||||
8003
unpackage/dist/dev/mp-weixin/common/vendor.js
vendored
|
|
@ -1,91 +0,0 @@
|
|||
"use strict";
|
||||
const common_vendor = require("../common/vendor.js");
|
||||
const _sfc_main = {
|
||||
props: {
|
||||
bannerList: {
|
||||
type: Array,
|
||||
default() {
|
||||
return [];
|
||||
}
|
||||
},
|
||||
swiperConfig: {
|
||||
type: Object,
|
||||
default() {
|
||||
return {
|
||||
indicatorDots: true,
|
||||
indicatorColor: "rgba(255, 255, 255, .4)",
|
||||
indicatorActiveColor: "rgba(255, 255, 255, 1)",
|
||||
autoplay: false,
|
||||
interval: 3e3,
|
||||
duration: 300,
|
||||
circular: true,
|
||||
previousMargin: "58rpx",
|
||||
nextMargin: "58rpx"
|
||||
};
|
||||
}
|
||||
},
|
||||
scaleX: {
|
||||
type: String,
|
||||
default: (634 / 550).toFixed(4)
|
||||
},
|
||||
scaleY: {
|
||||
type: String,
|
||||
default: (378 / 328).toFixed(4)
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
listLen() {
|
||||
return this.bannerList.length;
|
||||
}
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
curIndex: 0,
|
||||
descIndex: 0,
|
||||
isDescAnimating: false
|
||||
};
|
||||
},
|
||||
methods: {
|
||||
swiperChange(e) {
|
||||
const that = this;
|
||||
this.curIndex = e.mp.detail.current;
|
||||
this.isDescAnimating = true;
|
||||
let timer = setTimeout(function() {
|
||||
that.descIndex = e.mp.detail.current;
|
||||
clearTimeout(timer);
|
||||
}, 150);
|
||||
},
|
||||
animationfinish(e) {
|
||||
this.isDescAnimating = false;
|
||||
},
|
||||
getBannerDetail(index) {
|
||||
}
|
||||
}
|
||||
};
|
||||
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
||||
return {
|
||||
a: common_vendor.f($props.bannerList, (item, i, i0) => {
|
||||
return {
|
||||
a: item.picture,
|
||||
b: $data.curIndex === i ? "scale(" + $props.scaleX + "," + $props.scaleY + ")" : "scale(1,1)",
|
||||
c: common_vendor.o(($event) => $options.getBannerDetail(i), i),
|
||||
d: common_vendor.n($data.curIndex === 0 ? i === $options.listLen - 1 ? "item-left" : i === 1 ? "item-right" : "item-center" : $data.curIndex === $options.listLen - 1 ? i === 0 ? "item-right" : i === $options.listLen - 2 ? "item-left" : "item-center" : i === $data.curIndex - 1 ? "item-left" : i === $data.curIndex + 1 ? "item-right" : "item-center"),
|
||||
e: i
|
||||
};
|
||||
}),
|
||||
b: $props.swiperConfig.indicatorDots,
|
||||
c: $props.swiperConfig.indicatorColor,
|
||||
d: $props.swiperConfig.indicatorActiveColor,
|
||||
e: $props.swiperConfig.autoplay,
|
||||
f: $props.swiperConfig.interval,
|
||||
g: $props.swiperConfig.duration,
|
||||
h: $props.swiperConfig.circular,
|
||||
i: $props.swiperConfig.previousMargin,
|
||||
j: $props.swiperConfig.nextMargin,
|
||||
k: common_vendor.o((...args) => $options.swiperChange && $options.swiperChange(...args)),
|
||||
l: common_vendor.o((...args) => $options.animationfinish && $options.animationfinish(...args))
|
||||
};
|
||||
}
|
||||
const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-625b6715"]]);
|
||||
wx.createComponent(Component);
|
||||
//# sourceMappingURL=../../.sourcemap/mp-weixin/components/specialBanner.js.map
|
||||
|
|
@ -1,4 +0,0 @@
|
|||
{
|
||||
"component": true,
|
||||
"usingComponents": {}
|
||||
}
|
||||
|
|
@ -1 +0,0 @@
|
|||
<view class="banner-container data-v-625b6715"><swiper class="data-v-625b6715" style="{{'width:' + '100vw' + ';' + ('height:' + '410rpx')}}" indicator-dots="{{b}}" indicator-color="{{c}}" indicator-active-color="{{d}}" autoplay="{{e}}" interval="{{f}}" duration="{{g}}" circular="{{h}}" previous-margin="{{i}}" next-margin="{{j}}" bindchange="{{k}}" bindanimationfinish="{{l}}"><swiper-item wx:for="{{a}}" wx:for-item="item" wx:key="e" class="data-v-625b6715"><view class="{{['image-container', 'data-v-625b6715', item.d]}}"><image src="{{item.a}}" class="slide-image data-v-625b6715" style="{{'transform:' + item.b + ';' + ('transition-duration:' + '.3s') + ';' + ('transition-timing-function:' + 'ease')}}" bindtap="{{item.c}}"/></view></swiper-item></swiper></view>
|
||||
|
|
@ -1,99 +0,0 @@
|
|||
/**
|
||||
* 这里是uni-app内置的常用样式变量
|
||||
*
|
||||
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
||||
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
||||
*
|
||||
*/
|
||||
/**
|
||||
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
||||
*
|
||||
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
||||
*/
|
||||
/* 颜色变量 */
|
||||
/* 行为相关颜色 */
|
||||
/* 文字基本颜色 */
|
||||
/* 背景颜色 */
|
||||
/* 边框颜色 */
|
||||
/* 尺寸变量 */
|
||||
/* 文字尺寸 */
|
||||
/* 图片尺寸 */
|
||||
/* Border Radius */
|
||||
/* 水平间距 */
|
||||
/* 垂直间距 */
|
||||
/* 透明度 */
|
||||
/* 文章场景相关 */
|
||||
.banner-container.data-v-625b6715 {
|
||||
width: 100vw;
|
||||
height: 524rpx;
|
||||
}
|
||||
.banner-container .image-container.data-v-625b6715 {
|
||||
box-sizing: border-box;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
}
|
||||
.banner-container .image-container .slide-image.data-v-625b6715 {
|
||||
width: 447.92rpx;
|
||||
height: 448.61rpx;
|
||||
z-index: 200;
|
||||
}
|
||||
.banner-container .item-left.data-v-625b6715 {
|
||||
justify-content: flex-end;
|
||||
padding: 56rpx 26rpx 0 0;
|
||||
}
|
||||
.banner-container .item-right.data-v-625b6715 {
|
||||
justify-content: flex-start;
|
||||
padding: 56rpx 0 0 26rpx;
|
||||
}
|
||||
.banner-container .item-center.data-v-625b6715 {
|
||||
justify-content: center;
|
||||
padding: 56rpx 0 0 0;
|
||||
}
|
||||
.banner-container .desc-wrap.data-v-625b6715 {
|
||||
box-sizing: border-box;
|
||||
width: 100%;
|
||||
height: 98rpx;
|
||||
padding: 24rpx 66rpx 0;
|
||||
}
|
||||
.banner-container .desc-wrap .title.data-v-625b6715 {
|
||||
width: 100%;
|
||||
height: 42rpx;
|
||||
line-height: 42rpx;
|
||||
color: #222222;
|
||||
font-size: 30rpx;
|
||||
font-family: "PingFangTC-Regular";
|
||||
font-weight: 600;
|
||||
text-align: left;
|
||||
}
|
||||
.banner-container .desc-wrap .desc.data-v-625b6715 {
|
||||
margin-top: 4rpx;
|
||||
width: 100%;
|
||||
height: 34rpx;
|
||||
line-height: 34rpx;
|
||||
color: #999999;
|
||||
font-size: 24rpx;
|
||||
font-family: "PingFangTC-Regular";
|
||||
text-align: left;
|
||||
}
|
||||
@keyframes descAnimation-625b6715 {
|
||||
0% {
|
||||
opacity: 1;
|
||||
}
|
||||
25% {
|
||||
opacity: 0.5;
|
||||
}
|
||||
50% {
|
||||
opacity: 0;
|
||||
}
|
||||
75% {
|
||||
opacity: 0.5;
|
||||
}
|
||||
100% {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
.banner-container .hideAndShowDesc.data-v-625b6715 {
|
||||
animation: descAnimation-625b6715 0.3s ease 1;
|
||||
-webkit-animation: descAnimation-625b6715 0.3s ease 1;
|
||||
}
|
||||
155
unpackage/dist/dev/mp-weixin/pages/bags/bags-page.js
vendored
|
|
@ -1,155 +0,0 @@
|
|||
"use strict";
|
||||
const common_vendor = require("../../common/vendor.js");
|
||||
const common_assets = require("../../common/assets.js");
|
||||
const _sfc_main = {
|
||||
data() {
|
||||
return {
|
||||
checkNum: 0,
|
||||
//选中几个
|
||||
sumPrice: 0,
|
||||
//总价
|
||||
selectAll: false,
|
||||
dataList: [
|
||||
{
|
||||
imgurl: "",
|
||||
title: "坂本日常 吧唧",
|
||||
name: "坂本",
|
||||
price: 20,
|
||||
num: 1,
|
||||
isCheck: false,
|
||||
type: "库存紧张"
|
||||
},
|
||||
{
|
||||
imgurl: "",
|
||||
title: "坂本日常 吧唧",
|
||||
name: "坂本",
|
||||
price: 20,
|
||||
num: 1,
|
||||
isCheck: false,
|
||||
type: "库存紧张"
|
||||
},
|
||||
{
|
||||
imgurl: "",
|
||||
title: "坂本日常 吧唧",
|
||||
name: "坂本",
|
||||
price: 20,
|
||||
num: 1,
|
||||
isCheck: false,
|
||||
type: "库存紧张"
|
||||
},
|
||||
{
|
||||
imgurl: "",
|
||||
title: "坂本日常 吧唧",
|
||||
name: "坂本",
|
||||
price: 20,
|
||||
num: 1,
|
||||
isCheck: false,
|
||||
type: "库存紧张"
|
||||
},
|
||||
{
|
||||
imgurl: "",
|
||||
title: "坂本日常 吧唧",
|
||||
name: "坂本",
|
||||
price: 20,
|
||||
num: 1,
|
||||
isCheck: false,
|
||||
type: "库存紧张"
|
||||
},
|
||||
{
|
||||
imgurl: "",
|
||||
title: "坂本日常 吧唧",
|
||||
name: "坂本",
|
||||
price: 20,
|
||||
num: 1,
|
||||
isCheck: false,
|
||||
type: "库存紧张"
|
||||
},
|
||||
{
|
||||
imgurl: "",
|
||||
title: "坂本日常 吧唧",
|
||||
name: "坂本",
|
||||
price: 20,
|
||||
num: 1,
|
||||
isCheck: false,
|
||||
type: "库存紧张"
|
||||
}
|
||||
]
|
||||
};
|
||||
},
|
||||
methods: {
|
||||
// 切换单个项目的选中状态
|
||||
toggleItem(index) {
|
||||
this.dataList[index].isCheck = !this.dataList[index].isCheck;
|
||||
this.updateSelectAllStatus();
|
||||
},
|
||||
// 全选/取消全选
|
||||
toggleSelectAll() {
|
||||
this.selectAll = !this.selectAll;
|
||||
this.dataList.forEach((item) => {
|
||||
item.isCheck = this.selectAll;
|
||||
});
|
||||
this.selectedCount();
|
||||
this.totalPrice();
|
||||
},
|
||||
// 更新全选状态(当手动选择所有项时自动勾选全选)
|
||||
updateSelectAllStatus() {
|
||||
this.selectAll = this.dataList.every((item) => item.isCheck);
|
||||
this.selectedCount();
|
||||
this.totalPrice();
|
||||
},
|
||||
// 增加数量
|
||||
increase(index) {
|
||||
this.dataList[index].num++;
|
||||
this.selectedCount();
|
||||
this.totalPrice();
|
||||
},
|
||||
// 减少数量
|
||||
decrease(index) {
|
||||
if (this.dataList[index].num > 1) {
|
||||
this.dataList[index].num--;
|
||||
}
|
||||
this.selectedCount();
|
||||
this.totalPrice();
|
||||
},
|
||||
// 选中的商品总数量
|
||||
selectedCount() {
|
||||
this.checkNum = this.dataList.reduce((total, item) => {
|
||||
return total + (item.isCheck ? item.num : 0);
|
||||
}, 0);
|
||||
},
|
||||
// 选中的商品总价格
|
||||
totalPrice() {
|
||||
this.sumPrice = this.dataList.reduce((total, item) => {
|
||||
return total + (item.isCheck ? item.price * item.num : 0);
|
||||
}, 0);
|
||||
}
|
||||
}
|
||||
};
|
||||
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
||||
return {
|
||||
a: common_vendor.f($data.dataList, (item, index, i0) => {
|
||||
return {
|
||||
a: item.isCheck ? "/static/ic_check_s.png" : "/static/ic_check.png",
|
||||
b: common_vendor.o(($event) => $options.toggleItem(index)),
|
||||
c: item.imgurl,
|
||||
d: common_vendor.t(item.title),
|
||||
e: common_vendor.t(item.name),
|
||||
f: common_vendor.t(item.price),
|
||||
g: common_vendor.o(($event) => $options.decrease(index)),
|
||||
h: common_vendor.t(item.num),
|
||||
i: common_vendor.o(($event) => $options.increase(index))
|
||||
};
|
||||
}),
|
||||
b: common_assets._imports_10,
|
||||
c: common_assets._imports_11,
|
||||
d: common_assets._imports_2$1,
|
||||
e: common_vendor.t($data.checkNum),
|
||||
f: common_vendor.t($data.sumPrice),
|
||||
g: common_vendor.t($data.checkNum),
|
||||
h: $data.selectAll ? "/static/ic_check_s.png" : "/static/ic_check.png",
|
||||
i: common_vendor.o((...args) => $options.toggleSelectAll && $options.toggleSelectAll(...args))
|
||||
};
|
||||
}
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render]]);
|
||||
wx.createPage(MiniProgramPage);
|
||||
//# sourceMappingURL=../../../.sourcemap/mp-weixin/pages/bags/bags-page.js.map
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
{
|
||||
"navigationStyle": "custom",
|
||||
"navigationBarTitleText": "",
|
||||
"usingComponents": {}
|
||||
}
|
||||
|
|
@ -1 +0,0 @@
|
|||
<view class="content bg" style="background-image:url('/static/bags_bg.png')"><view class="" style="width:100%;overflow:auto"><view class="" style="width:689.58rpx;margin:201.39rpx auto 114.58rpx;display:flex;flex-direction:column"><view wx:for="{{a}}" wx:for-item="item" class="" style="width:100%;height:161.81rpx;background-color:#FFFBF0;border-radius:30rpx;margin-bottom:29.17rpx;display:flex;align-items:center;position:relative"><image src="{{item.a}}" bindtap="{{item.b}}" style="width:29.17rpx;height:29.17rpx;margin-left:20.83rpx" mode=""></image><image src="{{item.c}}" style="width:125rpx;height:125rpx;background-color:#9B9285;border-radius:30rpx;margin-left:19.44rpx" mode=""></image><text style="position:absolute;left:210.42rpx;top:24.31rpx;font-size:23.58rpx;color:#6E5B51">{{item.d}}</text><text style="position:absolute;left:210.42rpx;top:60.42rpx;font-size:19.42rpx;color:#6E5B51">{{item.e}}</text><view class="" style="display:flex;flex-direction:row;position:absolute;left:205.81rpx;bottom:26.39rpx"><text style="font-size:29.13rpx;color:#6E5B51">¥{{item.f}}</text><text style="font-size:19.42rpx;color:#6E5B51;margin-left:17.36rpx;margin-top:10rpx">库存紧张</text></view><view class="" style="display:flex;flex-direction:row;position:absolute;bottom:23.61rpx;right:23.61rpx;align-items:center"><image src="{{b}}" bindtap="{{item.g}}" style="width:28.47rpx;height:28.47rpx" mode=""></image><text style="width:70.83rpx;font-size:29.17rpx;color:#6E5B51;text-align:center">{{item.h}}</text><image src="{{c}}" bindtap="{{item.i}}" style="width:28.47rpx;height:28.47rpx" mode=""></image></view></view></view></view><view class="" style="width:100%;height:114.58rpx;background-color:#FFFDF1;position:fixed;bottom:0;display:flex;flex-direction:row-reverse;align-items:center"><view class="" style="width:164.58rpx;height:68.75rpx;position:relative;margin-right:19.44rpx;display:flex;align-items:center;justify-content:center"><image src="{{d}}" style="width:100%;height:100%;position:absolute" mode=""></image><text style="position:absolute;font-size:20.83rpx;color:#66594E">结算 ({{e}})</text></view><text style="font-size:29.13rpx;color:#6E5B51;margin-right:30.56rpx">¥{{f}}</text><text style="font-size:19.42rpx;color:#8C8574">共</text><text style="font-size:19.42rpx;color:#8C8574;margin-right:30rpx">合计: {{g}}件</text><view class="" style="display:flex;flex-direction:row;align-items:center;position:fixed;left:46rpx"><image src="{{h}}" bindtap="{{i}}" style="width:29.17rpx;height:29.17rpx" mode=""></image><text style="font-size:19.42rpx;color:#8C8574;margin-left:13rpx;margin-bottom:2rpx">全选</text></view></view></view>
|
||||
|
|
@ -1,32 +0,0 @@
|
|||
/**
|
||||
* 这里是uni-app内置的常用样式变量
|
||||
*
|
||||
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
||||
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
||||
*
|
||||
*/
|
||||
/**
|
||||
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
||||
*
|
||||
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
||||
*/
|
||||
/* 颜色变量 */
|
||||
/* 行为相关颜色 */
|
||||
/* 文字基本颜色 */
|
||||
/* 背景颜色 */
|
||||
/* 边框颜色 */
|
||||
/* 尺寸变量 */
|
||||
/* 文字尺寸 */
|
||||
/* 图片尺寸 */
|
||||
/* Border Radius */
|
||||
/* 水平间距 */
|
||||
/* 垂直间距 */
|
||||
/* 透明度 */
|
||||
/* 文章场景相关 */
|
||||
.content {
|
||||
width: 100%;
|
||||
height: 100vh;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
207
unpackage/dist/dev/mp-weixin/pages/home/home-page.js
vendored
|
|
@ -1,207 +0,0 @@
|
|||
"use strict";
|
||||
const common_vendor = require("../../common/vendor.js");
|
||||
const common_assets = require("../../common/assets.js");
|
||||
const _sfc_main = {
|
||||
data() {
|
||||
return {
|
||||
currendIndex: 0,
|
||||
swiperList: [1, 2, 3, 4],
|
||||
dataList: [
|
||||
{
|
||||
id: 1,
|
||||
title: "坂本日常",
|
||||
color: "#90BB76",
|
||||
url: ""
|
||||
},
|
||||
{
|
||||
id: 1,
|
||||
title: "坂本日常",
|
||||
color: "#FDA6AA",
|
||||
url: ""
|
||||
},
|
||||
{
|
||||
id: 1,
|
||||
title: "坂本日常",
|
||||
color: "#96ABEB",
|
||||
url: ""
|
||||
},
|
||||
{
|
||||
id: 1,
|
||||
title: "坂本日常",
|
||||
color: "#F9D051",
|
||||
url: ""
|
||||
}
|
||||
],
|
||||
tabList: [
|
||||
{
|
||||
id: 1,
|
||||
title: "全部"
|
||||
},
|
||||
{
|
||||
id: 1,
|
||||
title: "吧唧"
|
||||
},
|
||||
{
|
||||
id: 1,
|
||||
title: "立牌"
|
||||
},
|
||||
{
|
||||
id: 1,
|
||||
title: "色纸"
|
||||
},
|
||||
{
|
||||
id: 1,
|
||||
title: "拍立得"
|
||||
}
|
||||
],
|
||||
goodsLsit: [
|
||||
{
|
||||
id: 1,
|
||||
title: "坂本日常坂本日常坂本日常坂本日常坂本日常坂本日常坂本日常坂本日常坂本日常",
|
||||
imgUrl: "",
|
||||
type: "",
|
||||
price: "20"
|
||||
},
|
||||
{
|
||||
id: 1,
|
||||
title: "坂本日常坂本日常坂本日常坂本日常",
|
||||
imgUrl: "",
|
||||
type: "",
|
||||
price: "20"
|
||||
},
|
||||
{
|
||||
id: 1,
|
||||
title: "坂本日常坂本日常坂本日常坂本日常",
|
||||
imgUrl: "",
|
||||
type: "",
|
||||
price: "20"
|
||||
},
|
||||
{
|
||||
id: 1,
|
||||
title: "坂本日常坂本日常坂本日常坂本日常",
|
||||
imgUrl: "",
|
||||
type: "",
|
||||
price: "20"
|
||||
},
|
||||
{
|
||||
id: 1,
|
||||
title: "坂本日常坂本日常坂本日常坂本日常",
|
||||
imgUrl: "",
|
||||
type: "",
|
||||
price: "20"
|
||||
},
|
||||
{
|
||||
id: 1,
|
||||
title: "坂本日常坂本日常坂本日常坂本日常",
|
||||
imgUrl: "",
|
||||
type: "",
|
||||
price: "20"
|
||||
},
|
||||
{
|
||||
id: 1,
|
||||
title: "坂本日常坂本日常坂本日常坂本日常",
|
||||
imgUrl: "",
|
||||
type: "",
|
||||
price: "20"
|
||||
},
|
||||
{
|
||||
id: 1,
|
||||
title: "坂本日常坂本日常坂本日常坂本日常",
|
||||
imgUrl: "",
|
||||
type: "",
|
||||
price: "20"
|
||||
},
|
||||
{
|
||||
id: 1,
|
||||
title: "坂本日常坂本日常坂本日常坂本日常",
|
||||
imgUrl: "",
|
||||
type: "",
|
||||
price: "20"
|
||||
},
|
||||
{
|
||||
id: 1,
|
||||
title: "坂本日常坂本日常坂本日常坂本日常",
|
||||
imgUrl: "",
|
||||
type: "",
|
||||
price: "20"
|
||||
}
|
||||
]
|
||||
};
|
||||
},
|
||||
methods: {
|
||||
clickTab(index) {
|
||||
this.currendIndex = index;
|
||||
},
|
||||
setTabBg(index) {
|
||||
if (this.currendIndex == index) {
|
||||
return {
|
||||
backgroundColor: "#F5D677",
|
||||
border: "1rpx solid transparent"
|
||||
};
|
||||
} else {
|
||||
return {
|
||||
backgroundColor: "transparent",
|
||||
border: "1rpx solid #9A8F79"
|
||||
};
|
||||
}
|
||||
},
|
||||
toDetails(id) {
|
||||
common_vendor.index.navigateTo({
|
||||
url: "/pages/home/product-details?id=" + id
|
||||
});
|
||||
}
|
||||
}
|
||||
};
|
||||
if (!Array) {
|
||||
const _easycom_uni_notice_bar2 = common_vendor.resolveComponent("uni-notice-bar");
|
||||
_easycom_uni_notice_bar2();
|
||||
}
|
||||
const _easycom_uni_notice_bar = () => "../../uni_modules/uni-notice-bar/components/uni-notice-bar/uni-notice-bar.js";
|
||||
if (!Math) {
|
||||
_easycom_uni_notice_bar();
|
||||
}
|
||||
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
||||
return {
|
||||
a: common_assets._imports_0,
|
||||
b: common_assets._imports_1,
|
||||
c: common_assets._imports_2,
|
||||
d: `100%`,
|
||||
e: common_vendor.p({
|
||||
scrollable: true,
|
||||
single: true,
|
||||
speed: 8,
|
||||
["background-color"]: "transparent",
|
||||
color: "#6B5E4B",
|
||||
text: "感谢您的理解与支持"
|
||||
}),
|
||||
f: common_vendor.f($data.swiperList, (item, index, i0) => {
|
||||
return {
|
||||
a: common_vendor.t(item),
|
||||
b: index
|
||||
};
|
||||
}),
|
||||
g: common_vendor.f($data.dataList, (item, index, i0) => {
|
||||
return {
|
||||
a: `2px solid ${item.color}`,
|
||||
b: common_vendor.t(item.title),
|
||||
c: common_vendor.o(($event) => $options.toDetails($data.dataList[index].id))
|
||||
};
|
||||
}),
|
||||
h: common_vendor.f($data.tabList, (item, index, i0) => {
|
||||
return {
|
||||
a: common_vendor.t(item.title),
|
||||
b: common_vendor.o(($event) => $options.clickTab(index)),
|
||||
c: common_vendor.s($options.setTabBg(index))
|
||||
};
|
||||
}),
|
||||
i: common_vendor.f($data.goodsLsit, (item, index, i0) => {
|
||||
return {
|
||||
a: common_vendor.t(item.title),
|
||||
b: common_vendor.t(item.price)
|
||||
};
|
||||
})
|
||||
};
|
||||
}
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render]]);
|
||||
wx.createPage(MiniProgramPage);
|
||||
//# sourceMappingURL=../../../.sourcemap/mp-weixin/pages/home/home-page.js.map
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"navigationStyle": "custom",
|
||||
"navigationBarTitleText": "",
|
||||
"usingComponents": {
|
||||
"uni-notice-bar": "../../uni_modules/uni-notice-bar/components/uni-notice-bar/uni-notice-bar"
|
||||
}
|
||||
}
|
||||
|
|
@ -1 +0,0 @@
|
|||
<view class="content" style="background-color:#FFFDF6"><image src="{{a}}" style="width:620.83rpx;height:100%;position:absolute" mode=""></image><view class="content" style="position:absolute"><view class="" style="width:100%;margin-top:96.53rpx"><view class="" style="width:230.56rpx;height:71.53rpx;background-color:#FFFFFF;border:5rpx solid #F5D677;border-radius:50rpx;display:flex;align-items:center"><image src="{{b}}" style="width:28.47rpx;height:28.47rpx;margin-left:25rpx" mode=""></image></view></view><view class="" style="width:100%;height:57.64rpx;background-color:#FFFFFF;border:5rpx solid #F5D677;border-radius:20rpx;margin-top:33.33rpx;display:flex;align-items:center"><image src="{{c}}" style="width:23.61rpx;height:22.92rpx;margin-left:24.31rpx" mode=""></image><view class="news-text"><uni-notice-bar wx:if="{{e}}" style="{{'width:' + d}}" u-i="0110074c-0" bind:__l="__l" u-p="{{e}}"></uni-notice-bar></view></view><view class="" style="width:100%;margin-top:30.56rpx"><swiper indicator-dots="{{false}}" autoplay="{{true}}" interval="{{3000}}" duration="{{500}}" circular="{{true}}"><swiper-item wx:for="{{f}}" wx:for-item="item" wx:key="b"><view class="" style="background-color:#F5D677;width:100%;height:300rpx">{{item.a}}</view></swiper-item></swiper></view><view class="" style="width:100%;display:flex;flex-direction:row;justify-content:space-between;margin-top:29.86rpx"><view wx:for="{{g}}" wx:for-item="item" class="" bindtap="{{item.c}}" style="display:flex;flex-direction:column;justify-content:center"><view class="" style="{{'width:159.72rpx;height:159.72rpx;background-color:#FDF4D5;border-radius:40rpx' + ';' + ('border:' + item.a)}}"></view><text class="myZt-300w" style="text-align:center;margin-top:13.19rpx;font-size:22.22rpx;color:#685952;width:159.72rpx;text-overflow:ellipsis;white-space:nowrap;overflow:hidden">{{item.b}}</text></view></view><view class="" style="width:100%;display:flex;flex-direction:row;margin-top:32.64rpx"><view wx:for="{{h}}" wx:for-item="item" class="" bindtap="{{item.b}}" style="{{item.c + ';' + 'padding:0 16.67rpx 6rpx 16.67rpx;margin-right:26.39rpx;border-radius:50rpx'}}"><text class="myZt-500w" style="font-size:23.61rpx">{{item.a}}</text></view></view><view class="grid-container"><view wx:for="{{i}}" wx:for-item="item" class="" style="height:490.28rpx;background-color:#FEF6D6;border:3rpx solid #F9D051;border-radius:40rpx;display:flex;flex-direction:column"><view class="" style="width:100%;height:320.83rpx;background-color:#FFFFFF;border-radius:40rpx 40rpx 0 0"></view><text class="myZt-500w" style="width:280.56rpx;margin:15.28rpx auto;font-size:25rpx;color:#685952;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden;text-overflow:ellipsis">{{item.a}}</text><text style="font-size:19.44rpx;color:#FF6A6A;margin-left:24.31rpx">现货发售中</text><view class="" style="display:flex;flex-direction:row;margin-left:20.31rpx"><text class="myZt-500w" style="font-size:29.17rpx;color:#87644E">¥{{item.b}}</text><text style="font-size:19.44rpx;color:#87644E;margin-top:10rpx"> / 包</text></view></view></view></view></view>
|
||||
|
|
@ -1,54 +0,0 @@
|
|||
/**
|
||||
* 这里是uni-app内置的常用样式变量
|
||||
*
|
||||
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
||||
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
||||
*
|
||||
*/
|
||||
/**
|
||||
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
||||
*
|
||||
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
||||
*/
|
||||
/* 颜色变量 */
|
||||
/* 行为相关颜色 */
|
||||
/* 文字基本颜色 */
|
||||
/* 背景颜色 */
|
||||
/* 边框颜色 */
|
||||
/* 尺寸变量 */
|
||||
/* 文字尺寸 */
|
||||
/* 图片尺寸 */
|
||||
/* Border Radius */
|
||||
/* 水平间距 */
|
||||
/* 垂直间距 */
|
||||
/* 透明度 */
|
||||
/* 文章场景相关 */
|
||||
.content {
|
||||
width: 693.06rpx;
|
||||
height: 100vh;
|
||||
margin: 0 auto;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
position: relative;
|
||||
align-items: center;
|
||||
}
|
||||
.news-text {
|
||||
width: 600rpx;
|
||||
height: 57.64rpx;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-left: 18rpx;
|
||||
padding-top: 20rpx;
|
||||
}
|
||||
.news-text.uni-noticebar__content-text {
|
||||
font-size: 22.22rpx;
|
||||
}
|
||||
.grid-container {
|
||||
width: 100%;
|
||||
display: grid;
|
||||
/* 3列等宽 */
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
/* 间距 */
|
||||
gap: 34.72rpx;
|
||||
padding: 20rpx;
|
||||
}
|
||||
|
|
@ -1,121 +0,0 @@
|
|||
"use strict";
|
||||
const common_vendor = require("../../common/vendor.js");
|
||||
const common_assets = require("../../common/assets.js");
|
||||
const specialBanner = () => "../../components/specialBanner.js";
|
||||
const _sfc_main = {
|
||||
components: {
|
||||
specialBanner
|
||||
},
|
||||
onLoad(options) {
|
||||
common_vendor.index.__f__("log", "at pages/home/product-details.vue:154", options.id);
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
goodsNum: 1,
|
||||
bannerList: [{
|
||||
picture: "https://contentcms-bj.cdn.bcebos.com/cmspic/ab7e4834ebc54a128e243bdfd51444da.jpeg?x-bce-process=image/crop,x_0,y_0,w_619,h_337",
|
||||
path: ""
|
||||
}, {
|
||||
picture: "https://contentcms-bj.cdn.bcebos.com/cmspic/ab7e4834ebc54a128e243bdfd51444da.jpeg?x-bce-process=image/crop,x_0,y_0,w_619,h_337",
|
||||
path: ""
|
||||
}, {
|
||||
picture: "https://contentcms-bj.cdn.bcebos.com/cmspic/ab7e4834ebc54a128e243bdfd51444da.jpeg?x-bce-process=image/crop,x_0,y_0,w_619,h_337",
|
||||
path: ""
|
||||
}, {
|
||||
picture: "https://contentcms-bj.cdn.bcebos.com/cmspic/ab7e4834ebc54a128e243bdfd51444da.jpeg?x-bce-process=image/crop,x_0,y_0,w_619,h_337",
|
||||
path: ""
|
||||
}],
|
||||
swiperConfig: {
|
||||
indicatorDots: false,
|
||||
indicatorColor: "rgba(255, 255, 255, .4)",
|
||||
indicatorActiveColor: "rgba(255, 255, 255, 1)",
|
||||
autoplay: false,
|
||||
interval: 3e3,
|
||||
duration: 300,
|
||||
circular: true,
|
||||
previousMargin: "58rpx",
|
||||
nextMargin: "58rpx"
|
||||
}
|
||||
};
|
||||
},
|
||||
methods: {
|
||||
toBack() {
|
||||
common_vendor.index.navigateBack();
|
||||
},
|
||||
openDetailsPop() {
|
||||
this.$refs.detailsPop.open();
|
||||
},
|
||||
closeDetailsPop() {
|
||||
this.$refs.detailsPop.close();
|
||||
},
|
||||
openPayPop() {
|
||||
this.$refs.payPop.open();
|
||||
},
|
||||
closePayPop() {
|
||||
this.$refs.payPop.close();
|
||||
},
|
||||
// 增加数量
|
||||
increase(index) {
|
||||
this.goodsNum++;
|
||||
},
|
||||
// 减少数量
|
||||
decrease(index) {
|
||||
if (this.goodsNum > 1) {
|
||||
this.goodsNum--;
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
if (!Array) {
|
||||
const _component_special_banner = common_vendor.resolveComponent("special-banner");
|
||||
const _easycom_uni_popup2 = common_vendor.resolveComponent("uni-popup");
|
||||
(_component_special_banner + _easycom_uni_popup2)();
|
||||
}
|
||||
const _easycom_uni_popup = () => "../../uni_modules/uni-popup/components/uni-popup/uni-popup.js";
|
||||
if (!Math) {
|
||||
_easycom_uni_popup();
|
||||
}
|
||||
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
||||
return {
|
||||
a: common_assets._imports_0$2,
|
||||
b: common_vendor.o(($event) => $options.toBack()),
|
||||
c: common_assets._imports_1$2,
|
||||
d: common_assets._imports_2$3,
|
||||
e: common_vendor.o(($event) => $options.openDetailsPop()),
|
||||
f: common_assets._imports_3$1,
|
||||
g: common_vendor.p({
|
||||
["banner-list"]: $data.bannerList,
|
||||
["swiper-config"]: $data.swiperConfig
|
||||
}),
|
||||
h: common_assets._imports_4,
|
||||
i: common_assets._imports_5,
|
||||
j: common_vendor.o(($event) => $options.openPayPop()),
|
||||
k: common_assets._imports_6,
|
||||
l: common_assets._imports_7,
|
||||
m: common_vendor.o(($event) => $options.closeDetailsPop()),
|
||||
n: common_vendor.sr("detailsPop", "65d16733-1"),
|
||||
o: common_vendor.p({
|
||||
type: "bottom",
|
||||
["safe-area"]: false
|
||||
}),
|
||||
p: common_assets._imports_7,
|
||||
q: common_vendor.o(($event) => $options.closePayPop()()),
|
||||
r: common_assets._imports_1$3,
|
||||
s: common_assets._imports_9,
|
||||
t: common_assets._imports_10,
|
||||
v: common_vendor.o(($event) => $options.decrease(_ctx.index)),
|
||||
w: common_vendor.t($data.goodsNum),
|
||||
x: common_assets._imports_11,
|
||||
y: common_vendor.o(($event) => $options.increase(_ctx.index)),
|
||||
z: common_assets._imports_12,
|
||||
A: common_assets._imports_13,
|
||||
B: common_vendor.sr("payPop", "65d16733-2"),
|
||||
C: common_vendor.p({
|
||||
type: "bottom",
|
||||
["safe-area"]: false
|
||||
})
|
||||
};
|
||||
}
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render]]);
|
||||
wx.createPage(MiniProgramPage);
|
||||
//# sourceMappingURL=../../../.sourcemap/mp-weixin/pages/home/product-details.js.map
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"navigationStyle": "custom",
|
||||
"navigationBarTitleText": "",
|
||||
"usingComponents": {
|
||||
"special-banner": "../../components/specialBanner",
|
||||
"uni-popup": "../../uni_modules/uni-popup/components/uni-popup/uni-popup"
|
||||
}
|
||||
}
|
||||
|
|
@ -1 +0,0 @@
|
|||
<view class="content bg" style="background-image:url('/static/details_bg.png')"><view class="back" bindtap="{{b}}"><image src="{{a}}" mode=""></image></view><view class="title bg" style="background-image:url('/static/title_bg.png')"><text>坂本日常 吧唧</text></view><view class="v_fun"><image src="{{c}}" mode=""></image><image src="{{d}}" bindtap="{{e}}" mode=""></image><image src="{{f}}" mode=""></image></view><view class="ipBg bg" style="background-image:url('/static/goods_bg.png')"><view class="" style="width:100%;height:448.61rpx;margin-top:54.86rpx"><special-banner wx:if="{{g}}" u-i="65d16733-0" bind:__l="__l" u-p="{{g}}"></special-banner></view><view class="tip"><image src="{{h}}" style="width:513.89rpx;height:51.39rpx;position:absolute"></image><text style="position:absolute;font-size:20.83rpx;color:#8C8574">运费10元 满100包邮 3-5个工作日发货</text></view><view class="pay" bindtap="{{j}}"><image src="{{i}}" mode=""></image><view class="price"><text>¥20</text></view></view><image class="join" src="{{k}}" mode=""></image></view><uni-popup wx:if="{{o}}" class="r" u-s="{{['d']}}" u-r="detailsPop" u-i="65d16733-1" bind:__l="__l" u-p="{{o}}"><view class="detailsPop bg" style="background-image:url('/static/specifics_bg.png')"><view class="popTitle"><view style="width:30rpx"></view><text style="font-size:31.25rpx;color:#695C4E">商品详情</text><view class="popClose" style="" bindtap="{{m}}"><image src="{{l}}" style="" mode=""></image></view></view><image class="detailsImg" src="{{''}}" mode=""></image><text class="detailsBrand">品牌:</text><text class="detailsSize">尺寸:直径约56mm</text></view></uni-popup><uni-popup wx:if="{{C}}" class="r" u-s="{{['d']}}" u-r="payPop" u-i="65d16733-2" bind:__l="__l" u-p="{{C}}"><view class="payPop bg" style="background-image:url('/static/pay_pop_bg.png')"><view class="popTitle"><view style="width:30rpx"></view><text style="font-size:22.22rpx;color:#8C8574">本商品不可退换 未成年人请谨慎购买</text><view class="popClose" bindtap="{{q}}"><image src="{{p}}" mode=""></image></view></view><view class="payPopAddress"><image class="image1" src="{{r}}" mode=""></image><text>某某 河南省河南省河南省河南省</text><image class="image2" src="{{s}}" mode=""></image></view><view class="payPopInfo"><image class="goodsImg" src="{{''}}" mode=""></image><text class="goodsTitle">坂本日常 吧唧</text><text class="goodsName">坂本</text><view class="goodsPrice"><text class="text1">¥20</text><text class="text2">库存紧张</text></view><view class="addSub"><image src="{{t}}" bindtap="{{v}}" style="width:28.47rpx;height:28.47rpx" mode=""></image><text style="width:70.83rpx;font-size:29.17rpx;color:#6E5B51;text-align:center">{{w}}</text><image src="{{x}}" bindtap="{{y}}" style="width:28.47rpx;height:28.47rpx" mode=""></image></view></view><view class="payPopPayment"><text style="margin-left:20.14rpx">支付方式</text><text style="margin-right:20.14rpx">微信支付</text></view><view class="payExplain"></view><view class="payAgreement"><image src="{{z}}" style="width:23.61rpx;height:23.61rpx" mode=""></image><text style="color:#8C8574;margin-left:10rpx">同意 <text style="color:#FCAD6F"> 《用户协议》</text></text></view><image class="conPay" src="{{A}}" mode=""></image></view></uni-popup></view>
|
||||
|
|
@ -1,283 +0,0 @@
|
|||
/**
|
||||
* 这里是uni-app内置的常用样式变量
|
||||
*
|
||||
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
||||
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
||||
*
|
||||
*/
|
||||
/**
|
||||
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
||||
*
|
||||
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
||||
*/
|
||||
/* 颜色变量 */
|
||||
/* 行为相关颜色 */
|
||||
/* 文字基本颜色 */
|
||||
/* 背景颜色 */
|
||||
/* 边框颜色 */
|
||||
/* 尺寸变量 */
|
||||
/* 文字尺寸 */
|
||||
/* 图片尺寸 */
|
||||
/* Border Radius */
|
||||
/* 水平间距 */
|
||||
/* 垂直间距 */
|
||||
/* 透明度 */
|
||||
/* 文章场景相关 */
|
||||
.content {
|
||||
width: 100%;
|
||||
height: 100vh;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
.back {
|
||||
width: 40rpx;
|
||||
height: 40rpx;
|
||||
position: fixed;
|
||||
top: 118.06rpx;
|
||||
left: 30.56rpx;
|
||||
}
|
||||
.back image {
|
||||
width: 14.58rpx;
|
||||
height: 27.08rpx;
|
||||
}
|
||||
.title {
|
||||
width: 550rpx;
|
||||
height: 93.06rpx;
|
||||
margin-top: 225.69rpx;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
.title text {
|
||||
font-size: 23.61rpx;
|
||||
color: #6E5B51;
|
||||
}
|
||||
.v_fun {
|
||||
width: 550rpx;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
margin-top: 31.94rpx;
|
||||
}
|
||||
.v_fun image {
|
||||
width: 111.81rpx;
|
||||
height: 81.94rpx;
|
||||
}
|
||||
.ipBg {
|
||||
width: 100%;
|
||||
height: 1118.75rpx;
|
||||
margin-top: 76.39rpx;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.tip {
|
||||
margin: 120rpx auto 0;
|
||||
width: 513.89rpx;
|
||||
height: 51.39rpx;
|
||||
position: relative;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
.pay {
|
||||
margin: 59.03rpx auto 0;
|
||||
position: relative;
|
||||
width: 561.81rpx;
|
||||
height: 161.11rpx;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
}
|
||||
.pay image {
|
||||
width: 561.81rpx;
|
||||
height: 161.11rpx;
|
||||
position: absolute;
|
||||
}
|
||||
.pay .price {
|
||||
width: 150rpx;
|
||||
height: 40rpx;
|
||||
position: absolute;
|
||||
bottom: 38rpx;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
.pay .price text {
|
||||
font-size: 27.78rpx;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
.join {
|
||||
width: 561.81rpx;
|
||||
height: 122.92rpx;
|
||||
margin: 0 auto 0;
|
||||
}
|
||||
.popTitle {
|
||||
width: 688.88rpx;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
margin-top: 36.11rpx;
|
||||
align-items: center;
|
||||
}
|
||||
.detailsPop {
|
||||
width: 100%;
|
||||
height: 819.44rpx;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
.detailsPop .detailsImg {
|
||||
width: 447.92rpx;
|
||||
height: 447.92rpx;
|
||||
background-color: white;
|
||||
margin-top: 85.42rpx;
|
||||
}
|
||||
.detailsPop .detailsBrand {
|
||||
font-size: 25rpx;
|
||||
color: #695C4E;
|
||||
width: 100%;
|
||||
margin-left: 38.19rpx;
|
||||
margin-top: 81.94rpx;
|
||||
}
|
||||
.detailsPop .detailsSize {
|
||||
font-size: 25rpx;
|
||||
color: #695C4E;
|
||||
width: 100%;
|
||||
margin-left: 38.19rpx;
|
||||
margin-top: 19.44rpx;
|
||||
}
|
||||
.popClose {
|
||||
width: 30rpx;
|
||||
height: 30rpx;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
.popClose image {
|
||||
width: 19.44rpx;
|
||||
height: 19.44rpx;
|
||||
}
|
||||
.payPop {
|
||||
width: 100%;
|
||||
height: 1002.78rpx;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
.payPop .payPopAddress {
|
||||
width: 690.28rpx;
|
||||
height: 62.5rpx;
|
||||
background-color: #FFFFFF;
|
||||
border-radius: 16rpx;
|
||||
margin-top: 22.92rpx;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
position: relative;
|
||||
}
|
||||
.payPop .payPopAddress .image1 {
|
||||
width: 19.44rpx;
|
||||
height: 22.92rpx;
|
||||
position: absolute;
|
||||
left: 19.44rpx;
|
||||
}
|
||||
.payPop .payPopAddress text {
|
||||
font-size: 22.22rpx;
|
||||
color: #6E5B51;
|
||||
left: 52.08rpx;
|
||||
position: absolute;
|
||||
}
|
||||
.payPop .payPopAddress .image2 {
|
||||
width: 13.19rpx;
|
||||
height: 22.92rpx;
|
||||
position: absolute;
|
||||
right: 26.39rpx;
|
||||
}
|
||||
.payPop .payPopInfo {
|
||||
width: 690.28rpx;
|
||||
height: 161.81rpx;
|
||||
background-color: #FFFFFF;
|
||||
border-radius: 16rpx;
|
||||
margin-top: 22.92rpx;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
position: relative;
|
||||
}
|
||||
.payPop .payPopInfo .goodsImg {
|
||||
width: 120.83rpx;
|
||||
height: 120.83rpx;
|
||||
background-color: #AAAAAA;
|
||||
border-radius: 50%;
|
||||
position: absolute;
|
||||
left: 20.14rpx;
|
||||
}
|
||||
.payPop .payPopInfo .goodsTitle {
|
||||
font-size: 23.61rpx;
|
||||
color: #6E5B51;
|
||||
position: absolute;
|
||||
left: 163.19rpx;
|
||||
top: 28.47rpx;
|
||||
}
|
||||
.payPop .payPopInfo .goodsName {
|
||||
font-size: 19.44rpx;
|
||||
color: #8C8574;
|
||||
position: absolute;
|
||||
left: 163.19rpx;
|
||||
top: 64.58rpx;
|
||||
}
|
||||
.payPop .payPopInfo .goodsPrice {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
position: absolute;
|
||||
left: 160.58rpx;
|
||||
bottom: 22.22rpx;
|
||||
}
|
||||
.payPop .payPopInfo .goodsPrice .text1 {
|
||||
font-size: 29.17rpx;
|
||||
color: #6E5B51;
|
||||
}
|
||||
.payPop .payPopInfo .goodsPrice .text2 {
|
||||
font-size: 19.44rpx;
|
||||
color: #8C8574;
|
||||
margin-left: 10rpx;
|
||||
margin-top: 10rpx;
|
||||
}
|
||||
.payPop .payPopInfo .addSub {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
position: absolute;
|
||||
bottom: 23.61rpx;
|
||||
right: 23.61rpx;
|
||||
align-items: center;
|
||||
}
|
||||
.payPop .payPopPayment {
|
||||
width: 690.28rpx;
|
||||
height: 62.5rpx;
|
||||
background-color: #FFFFFF;
|
||||
border-radius: 16rpx;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-top: 15.28rpx;
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
font-size: 22.22rpx;
|
||||
color: #8C8574;
|
||||
}
|
||||
.payPop .payExplain {
|
||||
width: 689.58rpx;
|
||||
height: 204.17rpx;
|
||||
background-color: #FFFFFF;
|
||||
margin-top: 15.28rpx;
|
||||
}
|
||||
.payPop .payAgreement {
|
||||
width: 689.58rpx;
|
||||
margin: 15.28rpx auto 0;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
font-size: 22.22rpx;
|
||||
}
|
||||
.payPop .conPay {
|
||||
width: 561.81rpx;
|
||||
height: 161.11rpx;
|
||||
margin: 86.11rpx auto 0;
|
||||
}
|
||||
|
|
@ -1,16 +0,0 @@
|
|||
"use strict";
|
||||
const common_vendor = require("../../common/vendor.js");
|
||||
const _sfc_main = {
|
||||
data() {
|
||||
return {};
|
||||
},
|
||||
onLoad() {
|
||||
},
|
||||
methods: {}
|
||||
};
|
||||
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
||||
return {};
|
||||
}
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render]]);
|
||||
wx.createPage(MiniProgramPage);
|
||||
//# sourceMappingURL=../../../.sourcemap/mp-weixin/pages/index/index.js.map
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
{
|
||||
"navigationStyle": "custom",
|
||||
"navigationBarTitleText": "",
|
||||
"usingComponents": {}
|
||||
}
|
||||
|
|
@ -1 +0,0 @@
|
|||
<view class="content"></view>
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
|
||||
.content {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -1,14 +0,0 @@
|
|||
"use strict";
|
||||
const common_vendor = require("../../common/vendor.js");
|
||||
const _sfc_main = {
|
||||
data() {
|
||||
return {};
|
||||
},
|
||||
methods: {}
|
||||
};
|
||||
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
||||
return {};
|
||||
}
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render]]);
|
||||
wx.createPage(MiniProgramPage);
|
||||
//# sourceMappingURL=../../../.sourcemap/mp-weixin/pages/me/address-page.js.map
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
{
|
||||
"navigationStyle": "custom",
|
||||
"navigationBarTitleText": "",
|
||||
"usingComponents": {}
|
||||
}
|
||||
|
|
@ -1 +0,0 @@
|
|||
<view></view>
|
||||
|
|
@ -1,80 +0,0 @@
|
|||
"use strict";
|
||||
const common_vendor = require("../../common/vendor.js");
|
||||
const common_assets = require("../../common/assets.js");
|
||||
const _sfc_main = {
|
||||
data() {
|
||||
return {
|
||||
dataList: [
|
||||
{
|
||||
imgUrl: "",
|
||||
title: "满50减50",
|
||||
time: "2025年12月30日到期",
|
||||
type: 0
|
||||
},
|
||||
{
|
||||
imgUrl: "",
|
||||
title: "满50减50",
|
||||
time: "2025年12月30日到期",
|
||||
type: 1
|
||||
},
|
||||
{
|
||||
imgUrl: "",
|
||||
title: "满50减50",
|
||||
time: "2025年12月30日到期",
|
||||
type: 0
|
||||
},
|
||||
{
|
||||
imgUrl: "",
|
||||
title: "满50减50",
|
||||
time: "2025年12月30日到期",
|
||||
type: 0
|
||||
},
|
||||
{
|
||||
imgUrl: "",
|
||||
title: "满50减50",
|
||||
time: "2025年12月30日到期",
|
||||
type: 0
|
||||
},
|
||||
{
|
||||
imgUrl: "",
|
||||
title: "满50减50",
|
||||
time: "2025年12月30日到期",
|
||||
type: 0
|
||||
},
|
||||
{
|
||||
imgUrl: "",
|
||||
title: "满50减50",
|
||||
time: "2025年12月30日到期",
|
||||
type: 0
|
||||
},
|
||||
{
|
||||
imgUrl: "",
|
||||
title: "满50减50",
|
||||
time: "2025年12月30日到期",
|
||||
type: 0
|
||||
}
|
||||
]
|
||||
};
|
||||
},
|
||||
methods: {
|
||||
toBack() {
|
||||
common_vendor.index.navigateBack();
|
||||
}
|
||||
}
|
||||
};
|
||||
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
||||
return {
|
||||
a: common_assets._imports_0$2,
|
||||
b: common_vendor.o(($event) => $options.toBack()),
|
||||
c: common_vendor.f($data.dataList, (item, index, i0) => {
|
||||
return {
|
||||
a: common_vendor.t(item.title),
|
||||
b: common_vendor.t(item.time),
|
||||
c: item.type == 0 ? "/static/coupon_0.png" : "/static/coupon_1.png"
|
||||
};
|
||||
})
|
||||
};
|
||||
}
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render]]);
|
||||
wx.createPage(MiniProgramPage);
|
||||
//# sourceMappingURL=../../../.sourcemap/mp-weixin/pages/me/coupon-page.js.map
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
{
|
||||
"navigationStyle": "custom",
|
||||
"navigationBarTitleText": "",
|
||||
"usingComponents": {}
|
||||
}
|
||||
|
|
@ -1 +0,0 @@
|
|||
<view class="content bg" style="background-image:url('/static/bags_bg.png')"><view class="title"><view class="back" bindtap="{{b}}"><image src="{{a}}" mode=""></image></view><text>我的优惠券</text><view class="back"></view></view><view class="list" style=""><view wx:for="{{c}}" wx:for-item="item" class="item" style=""><image class="item-img" src="{{''}}" mode=""></image><text class="item-title">{{item.a}}</text><text class="item-time">{{item.b}}</text><image class="item-type" src="{{item.c}}" mode=""></image></view></view></view>
|
||||
|
|
@ -1,94 +0,0 @@
|
|||
/**
|
||||
* 这里是uni-app内置的常用样式变量
|
||||
*
|
||||
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
||||
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
||||
*
|
||||
*/
|
||||
/**
|
||||
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
||||
*
|
||||
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
||||
*/
|
||||
/* 颜色变量 */
|
||||
/* 行为相关颜色 */
|
||||
/* 文字基本颜色 */
|
||||
/* 背景颜色 */
|
||||
/* 边框颜色 */
|
||||
/* 尺寸变量 */
|
||||
/* 文字尺寸 */
|
||||
/* 图片尺寸 */
|
||||
/* Border Radius */
|
||||
/* 水平间距 */
|
||||
/* 垂直间距 */
|
||||
/* 透明度 */
|
||||
/* 文章场景相关 */
|
||||
.content {
|
||||
width: 100%;
|
||||
height: 100vh;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
.title {
|
||||
width: 688.88rpx;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
margin-top: 119.44rpx;
|
||||
}
|
||||
.title text {
|
||||
font-size: 29.17rpx;
|
||||
color: #6E5B51;
|
||||
}
|
||||
.back {
|
||||
width: 40rpx;
|
||||
height: 40rpx;
|
||||
}
|
||||
.back image {
|
||||
width: 14.58rpx;
|
||||
height: 27.08rpx;
|
||||
}
|
||||
.list {
|
||||
width: 100%;
|
||||
margin-top: 65rpx;
|
||||
overflow: auto;
|
||||
}
|
||||
.item {
|
||||
width: 689.58rpx;
|
||||
height: 180.56rpx;
|
||||
background-color: white;
|
||||
border-radius: 16rpx;
|
||||
margin: 0 auto 15.28rpx;
|
||||
position: relative;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
.item .item-img {
|
||||
width: 125rpx;
|
||||
height: 125rpx;
|
||||
background-color: #9B9285;
|
||||
border-radius: 16rpx;
|
||||
position: absolute;
|
||||
left: 30.56rpx;
|
||||
}
|
||||
.item .item-title {
|
||||
font-size: 25rpx;
|
||||
color: #876850;
|
||||
position: absolute;
|
||||
left: 185.42rpx;
|
||||
top: 56.25rpx;
|
||||
}
|
||||
.item .item-time {
|
||||
font-size: 19.42rpx;
|
||||
color: #876850;
|
||||
position: absolute;
|
||||
left: 185.42rpx;
|
||||
bottom: 56.25rpx;
|
||||
}
|
||||
.item .item-type {
|
||||
width: 143.75rpx;
|
||||
height: 59.72rpx;
|
||||
position: absolute;
|
||||
right: 26.39rpx;
|
||||
}
|
||||
|
|
@ -1,41 +0,0 @@
|
|||
"use strict";
|
||||
const common_vendor = require("../../common/vendor.js");
|
||||
const common_assets = require("../../common/assets.js");
|
||||
const _sfc_main = {
|
||||
data() {
|
||||
return {};
|
||||
},
|
||||
methods: {
|
||||
toBack() {
|
||||
common_vendor.index.navigateBack();
|
||||
},
|
||||
copyData() {
|
||||
common_vendor.index.setClipboardData({
|
||||
data: "要复制的文本内容",
|
||||
success: function() {
|
||||
common_vendor.index.showToast({
|
||||
title: "复制成功",
|
||||
icon: "none"
|
||||
});
|
||||
},
|
||||
fail: function() {
|
||||
common_vendor.index.showToast({
|
||||
title: "复制失败",
|
||||
icon: "none"
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
};
|
||||
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
||||
return {
|
||||
a: common_assets._imports_0$2,
|
||||
b: common_vendor.o(($event) => $options.toBack()),
|
||||
c: common_assets._imports_1$5,
|
||||
d: common_vendor.o((...args) => $options.copyData && $options.copyData(...args))
|
||||
};
|
||||
}
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render]]);
|
||||
wx.createPage(MiniProgramPage);
|
||||
//# sourceMappingURL=../../../.sourcemap/mp-weixin/pages/me/logistics-details-page.js.map
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
{
|
||||
"navigationStyle": "custom",
|
||||
"navigationBarTitleText": "",
|
||||
"usingComponents": {}
|
||||
}
|
||||
|
|
@ -1 +0,0 @@
|
|||
<view class="content bg" style="background-image:url('/static/bags_bg.png')"><view class="title"><view class="back" bindtap="{{b}}"><image src="{{a}}" mode=""></image></view><text>物流详情</text><view class="back"></view></view><view class="" style="width:689.58rpx;height:180.56rpx;background-color:white;border-radius:16rpx;margin:86.81rpx auto 0;position:relative;display:flex;align-items:center"><image src="{{''}}" style="width:125rpx;height:125rpx;background-color:#9B9285;border-radius:16rpx;position:absolute;left:30.56rpx" mode=""></image><text style="position:absolute;left:182.64rpx;top:34.72rpx;font-size:23.59rpx;color:#FF8B36">待发货</text><text style="position:absolute;left:182.64rpx;top:83.33rpx;font-size:19.42rpx;color:#8C8574">快递公司:</text><view class="row" style="align-items:center;position:absolute;left:182.64rpx;bottom:34.03rpx"><text style="font-size:19.42rpx;color:#8C8574">快递单号:9569469491691981</text><image src="{{c}}" bindtap="{{d}}" style="width:20.83rpx;height:20.83rpx;margin-left:10rpx" mode=""></image></view></view></view>
|
||||
|
|
@ -1,51 +0,0 @@
|
|||
/**
|
||||
* 这里是uni-app内置的常用样式变量
|
||||
*
|
||||
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
||||
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
||||
*
|
||||
*/
|
||||
/**
|
||||
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
||||
*
|
||||
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
||||
*/
|
||||
/* 颜色变量 */
|
||||
/* 行为相关颜色 */
|
||||
/* 文字基本颜色 */
|
||||
/* 背景颜色 */
|
||||
/* 边框颜色 */
|
||||
/* 尺寸变量 */
|
||||
/* 文字尺寸 */
|
||||
/* 图片尺寸 */
|
||||
/* Border Radius */
|
||||
/* 水平间距 */
|
||||
/* 垂直间距 */
|
||||
/* 透明度 */
|
||||
/* 文章场景相关 */
|
||||
.content {
|
||||
width: 100%;
|
||||
height: 100vh;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
.title {
|
||||
width: 688.88rpx;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
margin-top: 119.44rpx;
|
||||
}
|
||||
.title text {
|
||||
font-size: 29.17rpx;
|
||||
color: #6E5B51;
|
||||
}
|
||||
.back {
|
||||
width: 40rpx;
|
||||
height: 40rpx;
|
||||
}
|
||||
.back image {
|
||||
width: 14.58rpx;
|
||||
height: 27.08rpx;
|
||||
}
|
||||
42
unpackage/dist/dev/mp-weixin/pages/me/me-page.js
vendored
|
|
@ -1,42 +0,0 @@
|
|||
"use strict";
|
||||
const common_vendor = require("../../common/vendor.js");
|
||||
const common_assets = require("../../common/assets.js");
|
||||
const _sfc_main = {
|
||||
data() {
|
||||
return {};
|
||||
},
|
||||
methods: {
|
||||
//个人信息
|
||||
toInfo() {
|
||||
common_vendor.index.navigateTo({
|
||||
url: "/pages/me/user-info-page"
|
||||
});
|
||||
},
|
||||
//优惠券
|
||||
toCoupon() {
|
||||
common_vendor.index.navigateTo({
|
||||
url: "/pages/me/coupon-page"
|
||||
});
|
||||
},
|
||||
//订单管理
|
||||
toOrder() {
|
||||
common_vendor.index.navigateTo({
|
||||
url: "/pages/me/order-page"
|
||||
});
|
||||
}
|
||||
}
|
||||
};
|
||||
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
||||
return {
|
||||
a: common_assets._imports_0$1,
|
||||
b: common_vendor.o(($event) => $options.toInfo()),
|
||||
c: common_vendor.o(($event) => $options.toCoupon()),
|
||||
d: common_assets._imports_1$1,
|
||||
e: common_vendor.o(($event) => $options.toOrder()),
|
||||
f: common_assets._imports_2$2,
|
||||
g: common_assets._imports_3
|
||||
};
|
||||
}
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render]]);
|
||||
wx.createPage(MiniProgramPage);
|
||||
//# sourceMappingURL=../../../.sourcemap/mp-weixin/pages/me/me-page.js.map
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
{
|
||||
"navigationStyle": "custom",
|
||||
"navigationBarTitleText": "",
|
||||
"usingComponents": {}
|
||||
}
|
||||
|
|
@ -1 +0,0 @@
|
|||
<view class="content" style="background-image:url('/static/bags_bg.png')"><view class="" bindtap="{{b}}" style="width:100%;height:138.19rpx;margin-top:195.14rpx;position:relative"><image src="{{''}}" style="width:137.5rpx;height:137.5rpx;background-color:#FFFFFF;border:2rpx solid #F5D677;border-radius:50%;margin-left:29.17rpx;position:absolute" mode=""></image><view class="" style="display:flex;flex-direction:row;position:absolute;align-items:center;left:186.81rpx;top:35.42rpx"><text style="font-size:29.17rpx;color:#6E5B51">坂本日常</text><image src="{{a}}" style="width:22.92rpx;height:22.92rpx;margin-left:13.16rpx" mode=""></image></view><text style="position:absolute;left:186.81rpx;bottom:35.42rpx;font-size:19.42rpx;color:#8C8574">ID:3232321323</text></view><view class="" style="width:689.58rpx;height:161.81rpx;background-color:#FFFFFF;margin:48.61rpx auto 0;border-radius:20rpx;display:flex;flex-direction:row;align-items:center;justify-content:space-around"><view style="width:0.69rpx;height:98.61rpx"></view><image bindtap="{{c}}" src="{{d}}" style="width:100.69rpx;height:98.61rpx" mode=""></image><view style="width:0.69rpx;height:98.61rpx;background-color:#6E5B51"></view><image bindtap="{{e}}" src="{{f}}" style="width:100.69rpx;height:98.61rpx" mode=""></image><view style="width:0.69rpx;height:98.61rpx;background-color:#6E5B51"></view><image src="{{g}}" style="width:100.69rpx;height:98.61rpx" mode=""></image><view style="width:0.69rpx;height:98.61rpx"></view></view></view>
|
||||
|
|
@ -1,35 +0,0 @@
|
|||
/**
|
||||
* 这里是uni-app内置的常用样式变量
|
||||
*
|
||||
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
||||
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
||||
*
|
||||
*/
|
||||
/**
|
||||
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
||||
*
|
||||
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
||||
*/
|
||||
/* 颜色变量 */
|
||||
/* 行为相关颜色 */
|
||||
/* 文字基本颜色 */
|
||||
/* 背景颜色 */
|
||||
/* 边框颜色 */
|
||||
/* 尺寸变量 */
|
||||
/* 文字尺寸 */
|
||||
/* 图片尺寸 */
|
||||
/* Border Radius */
|
||||
/* 水平间距 */
|
||||
/* 垂直间距 */
|
||||
/* 透明度 */
|
||||
/* 文章场景相关 */
|
||||
.content {
|
||||
width: 100%;
|
||||
height: 100vh;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
background-size: cover;
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
}
|
||||
|
|
@ -1,84 +0,0 @@
|
|||
"use strict";
|
||||
const common_vendor = require("../../common/vendor.js");
|
||||
const common_assets = require("../../common/assets.js");
|
||||
const _sfc_main = {
|
||||
data() {
|
||||
return {
|
||||
dataList: [{
|
||||
imgUrl: "",
|
||||
title: "坂本日常 吧唧",
|
||||
name: "坂本",
|
||||
price: 20,
|
||||
num: 1,
|
||||
type: 0,
|
||||
address: "某某小区",
|
||||
phone: "某某 13333333333",
|
||||
isTakeOver: false
|
||||
}, {
|
||||
imgUrl: "",
|
||||
title: "坂本日常 吧唧",
|
||||
name: "坂本",
|
||||
price: 20,
|
||||
num: 1,
|
||||
type: 0,
|
||||
address: "某某小区",
|
||||
phone: "某某 13333333333",
|
||||
isTakeOver: false
|
||||
}, {
|
||||
imgUrl: "",
|
||||
title: "坂本日常 吧唧",
|
||||
name: "坂本",
|
||||
price: 20,
|
||||
num: 1,
|
||||
type: 0,
|
||||
address: "某某小区",
|
||||
phone: "某某 13333333333",
|
||||
isTakeOver: false
|
||||
}, {
|
||||
imgUrl: "",
|
||||
title: "坂本日常 吧唧",
|
||||
name: "坂本",
|
||||
price: 20,
|
||||
num: 1,
|
||||
type: 0,
|
||||
address: "某某小区",
|
||||
phone: "某某 13333333333",
|
||||
isTakeOver: false
|
||||
}]
|
||||
};
|
||||
},
|
||||
methods: {
|
||||
toBack() {
|
||||
common_vendor.index.navigateBack();
|
||||
},
|
||||
//物流详情
|
||||
toDetails(id) {
|
||||
common_vendor.index.navigateTo({
|
||||
url: "/pages/me/logistics-details-page?id" + id
|
||||
});
|
||||
}
|
||||
}
|
||||
};
|
||||
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
||||
return {
|
||||
a: common_assets._imports_0$2,
|
||||
b: common_vendor.o(($event) => $options.toBack()),
|
||||
c: common_vendor.f($data.dataList, (item, index, i0) => {
|
||||
return {
|
||||
a: common_vendor.t(item.title),
|
||||
b: common_vendor.t(item.name),
|
||||
c: common_vendor.t(item.price),
|
||||
d: common_vendor.t(item.num),
|
||||
e: common_vendor.t(item.address),
|
||||
f: common_vendor.t(item.phone),
|
||||
g: common_vendor.o(($event) => $options.toDetails(index))
|
||||
};
|
||||
}),
|
||||
d: common_assets._imports_1$3,
|
||||
e: common_assets._imports_2$4,
|
||||
f: common_assets._imports_3$2
|
||||
};
|
||||
}
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render]]);
|
||||
wx.createPage(MiniProgramPage);
|
||||
//# sourceMappingURL=../../../.sourcemap/mp-weixin/pages/me/order-page.js.map
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
{
|
||||
"navigationStyle": "custom",
|
||||
"navigationBarTitleText": "",
|
||||
"usingComponents": {}
|
||||
}
|
||||
|
|
@ -1 +0,0 @@
|
|||
<view class="content bg" style="background-image:url('/static/bags_bg.png')"><view class="title"><view class="back" bindtap="{{b}}"><image src="{{a}}" mode=""></image></view><text>订单管理</text><view class="back"></view></view><view class="" style="width:100%;margin-top:54.86rpx;overflow:auto"><view wx:for="{{c}}" wx:for-item="item" class="" style="width:689.58rpx;height:404.86rpx;background-color:white;border-radius:16rpx;margin:0 auto 15.28rpx;position:relative"><image src="{{''}}" style="position:absolute;width:125rpx;height:125rpx;background-color:#9B9285;border-radius:16rpx;left:30.56rpx;top:59.72rpx" mode=""></image><text style="font-size:23.58rpx;color:#FF8B36;position:absolute;top:30.56rpx;right:23.61rpx">待发货</text><text style="font-size:23.58rpx;color:#6E5B51;position:absolute;left:171.53rpx;top:65.97rpx">{{item.a}}</text><text style="font-size:19.42rpx;color:#8C8574;position:absolute;left:173.61rpx;top:102.8rpx">{{item.b}}</text><text style="font-size:29.13rpx;color:#6E5B51;position:absolute;left:172.92rpx;top:154.17rpx">¥{{item.c}}</text><text style="font-size:19.42rpx;color:#8C8574;position:absolute;top:103.47rpx;right:25rpx">x{{item.d}}</text><view class="row" style="align-items:center;position:absolute;left:30.56rpx;top:227.08rpx"><image src="{{d}}" style="width:19.44rpx;height:22.92rpx" mode=""></image><text style="font-size:23.58rpx;color:#6E5B51;margin-left:10rpx">{{item.e}}</text></view><text style="font-size:19.42rpx;color:#8C8574;position:absolute;left:60.58rpx;top:263.19rpx">{{item.f}}</text><view class="row" style="position:absolute;right:24.31rpx;bottom:31.94rpx"><image src="{{e}}" style="width:143.75rpx;height:59.72rpx" bindtap="{{item.g}}" mode=""></image><image src="{{f}}" style="width:143.75rpx;height:59.72rpx;margin-left:25.69rpx" mode=""></image></view></view></view></view>
|
||||
|
|
@ -1,51 +0,0 @@
|
|||
/**
|
||||
* 这里是uni-app内置的常用样式变量
|
||||
*
|
||||
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
||||
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
||||
*
|
||||
*/
|
||||
/**
|
||||
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
||||
*
|
||||
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
||||
*/
|
||||
/* 颜色变量 */
|
||||
/* 行为相关颜色 */
|
||||
/* 文字基本颜色 */
|
||||
/* 背景颜色 */
|
||||
/* 边框颜色 */
|
||||
/* 尺寸变量 */
|
||||
/* 文字尺寸 */
|
||||
/* 图片尺寸 */
|
||||
/* Border Radius */
|
||||
/* 水平间距 */
|
||||
/* 垂直间距 */
|
||||
/* 透明度 */
|
||||
/* 文章场景相关 */
|
||||
.content {
|
||||
width: 100%;
|
||||
height: 100vh;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
.title {
|
||||
width: 688.88rpx;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
margin-top: 119.44rpx;
|
||||
}
|
||||
.title text {
|
||||
font-size: 29.17rpx;
|
||||
color: #6E5B51;
|
||||
}
|
||||
.back {
|
||||
width: 40rpx;
|
||||
height: 40rpx;
|
||||
}
|
||||
.back image {
|
||||
width: 14.58rpx;
|
||||
height: 27.08rpx;
|
||||
}
|
||||
|
|
@ -1,63 +0,0 @@
|
|||
"use strict";
|
||||
const common_vendor = require("../../common/vendor.js");
|
||||
const common_assets = require("../../common/assets.js");
|
||||
const _sfc_main = {
|
||||
data() {
|
||||
return {
|
||||
nickName: "某某"
|
||||
};
|
||||
},
|
||||
methods: {
|
||||
toBack() {
|
||||
common_vendor.index.navigateBack();
|
||||
},
|
||||
//修改头像
|
||||
chooseImage() {
|
||||
common_vendor.index.chooseImage({
|
||||
count: 1,
|
||||
// 默认9,设置图片的最大选择数
|
||||
sizeType: ["compressed"],
|
||||
// 可以指定是原图还是压缩图,默认二者都有
|
||||
sourceType: ["album", "camera"],
|
||||
// 可以指定来源是相册还是相机,默认二者都有
|
||||
success: (res) => {
|
||||
this.avatarUrl = res.tempFilePaths[0];
|
||||
}
|
||||
});
|
||||
},
|
||||
//上传图片
|
||||
uploadImage(filePath) {
|
||||
common_vendor.index.uploadFile({
|
||||
url: "你的上传接口URL",
|
||||
// 仅为示例,请替换为实际接口地址
|
||||
filePath,
|
||||
name: "file",
|
||||
// 必须填,对应服务器接收的参数名
|
||||
formData: {
|
||||
"user": "test"
|
||||
// HTTP 请求中其他额外的 form data
|
||||
},
|
||||
success: (uploadFileRes) => {
|
||||
common_vendor.index.__f__("log", "at pages/me/user-info-page.vue:87", "上传成功");
|
||||
},
|
||||
fail: (error) => {
|
||||
common_vendor.index.__f__("error", "at pages/me/user-info-page.vue:91", "上传失败", error);
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
};
|
||||
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
||||
return {
|
||||
a: common_assets._imports_0$2,
|
||||
b: common_vendor.o(($event) => $options.toBack()),
|
||||
c: common_vendor.o(($event) => $options.chooseImage()),
|
||||
d: common_vendor.o(($event) => $options.chooseImage()),
|
||||
e: $data.nickName,
|
||||
f: common_vendor.o(($event) => $data.nickName = $event.detail.value),
|
||||
g: common_assets._imports_1$4
|
||||
};
|
||||
}
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render]]);
|
||||
wx.createPage(MiniProgramPage);
|
||||
//# sourceMappingURL=../../../.sourcemap/mp-weixin/pages/me/user-info-page.js.map
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
{
|
||||
"navigationStyle": "custom",
|
||||
"navigationBarTitleText": "",
|
||||
"usingComponents": {}
|
||||
}
|
||||
|
|
@ -1 +0,0 @@
|
|||
<view class="content bg" style="background-image:url('/static/bags_bg.png')"><view class="title"><view class="back" bindtap="{{b}}"><image src="{{a}}" mode=""></image></view><text>个人信息</text><view class="back"></view></view><image class="head" src="{{''}}" bindtap="{{c}}" style="" mode=""></image><text class="setHead" bindtap="{{d}}" style="">修改头像</text><view class="row nickName"><text style="margin-left:40.28rpx">昵称</text><view class="" style="width:50.58rpx;height:20rpx;margin-right:40.28rpx"><block wx:if="{{r0}}"><textarea fixed="true" value="{{e}}" bindinput="{{f}}"/></block></view></view><view class="row nickName"><text style="margin-left:40.28rpx">绑定手机号</text><text style="margin-right:40.28rpx">13333333333</text></view><view class="row nickName"><text style="margin-left:40.28rpx">我的ID</text><text style="margin-right:40.28rpx">5666</text></view><image class="save" src="{{g}}" mode=""></image></view>
|
||||
|
|
@ -1,80 +0,0 @@
|
|||
/**
|
||||
* 这里是uni-app内置的常用样式变量
|
||||
*
|
||||
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
||||
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
||||
*
|
||||
*/
|
||||
/**
|
||||
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
||||
*
|
||||
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
||||
*/
|
||||
/* 颜色变量 */
|
||||
/* 行为相关颜色 */
|
||||
/* 文字基本颜色 */
|
||||
/* 背景颜色 */
|
||||
/* 边框颜色 */
|
||||
/* 尺寸变量 */
|
||||
/* 文字尺寸 */
|
||||
/* 图片尺寸 */
|
||||
/* Border Radius */
|
||||
/* 水平间距 */
|
||||
/* 垂直间距 */
|
||||
/* 透明度 */
|
||||
/* 文章场景相关 */
|
||||
.content {
|
||||
width: 100%;
|
||||
height: 100vh;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
.title {
|
||||
width: 688.88rpx;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
margin-top: 119.44rpx;
|
||||
}
|
||||
.title text {
|
||||
font-size: 29.17rpx;
|
||||
color: #6E5B51;
|
||||
}
|
||||
.back {
|
||||
width: 40rpx;
|
||||
height: 40rpx;
|
||||
}
|
||||
.back image {
|
||||
width: 14.58rpx;
|
||||
height: 27.08rpx;
|
||||
}
|
||||
.head {
|
||||
width: 137.5rpx;
|
||||
height: 137.5rpx;
|
||||
background-color: white;
|
||||
border-radius: 50%;
|
||||
border: 1rpx solid #F5D677;
|
||||
margin-top: 31.94rpx;
|
||||
}
|
||||
.setHead {
|
||||
margin-top: 14.58rpx;
|
||||
font-size: 19.42rpx;
|
||||
color: #8C8574;
|
||||
}
|
||||
.nickName {
|
||||
width: 689.58rpx;
|
||||
height: 88.19rpx;
|
||||
background-color: white;
|
||||
margin-top: 60.42rpx;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
border-radius: 16rpx;
|
||||
font-size: 20.45rpx;
|
||||
color: #876850;
|
||||
}
|
||||
.save {
|
||||
width: 561.81rpx;
|
||||
height: 122.92rpx;
|
||||
margin-top: 259.03rpx;
|
||||
}
|
||||
29
unpackage/dist/dev/mp-weixin/project.config.json
vendored
|
|
@ -1,29 +0,0 @@
|
|||
{
|
||||
"description": "项目配置文件。",
|
||||
"packOptions": {
|
||||
"ignore": [],
|
||||
"include": []
|
||||
},
|
||||
"setting": {
|
||||
"urlCheck": false,
|
||||
"es6": true,
|
||||
"postcss": false,
|
||||
"minified": false,
|
||||
"newFeature": true,
|
||||
"bigPackageSizeSupport": true,
|
||||
"babelSetting": {
|
||||
"ignore": [],
|
||||
"disablePlugins": [],
|
||||
"outputPath": ""
|
||||
}
|
||||
},
|
||||
"compileType": "miniprogram",
|
||||
"libVersion": "3.8.9",
|
||||
"appid": "touristappid",
|
||||
"projectname": "guyu",
|
||||
"condition": {},
|
||||
"editorSetting": {
|
||||
"tabIndent": "insertSpaces",
|
||||
"tabSize": 2
|
||||
}
|
||||
}
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"description": "项目私有配置文件。此文件中的内容将覆盖 project.config.json 中的相同字段。项目的改动优先同步到此文件中。详见文档:https://developers.weixin.qq.com/miniprogram/dev/devtools/projectconfig.html",
|
||||
"projectname": "guyu",
|
||||
"setting": {
|
||||
"compileHotReLoad": true
|
||||
}
|
||||
}
|
||||
BIN
unpackage/dist/dev/mp-weixin/static/bags.png
vendored
|
Before Width: | Height: | Size: 32 KiB |
BIN
unpackage/dist/dev/mp-weixin/static/bags_bg.png
vendored
|
Before Width: | Height: | Size: 669 KiB |
BIN
unpackage/dist/dev/mp-weixin/static/bg.png
vendored
|
Before Width: | Height: | Size: 1.5 MiB |
BIN
unpackage/dist/dev/mp-weixin/static/confirm_pay.png
vendored
|
Before Width: | Height: | Size: 292 KiB |
|
Before Width: | Height: | Size: 24 KiB |
BIN
unpackage/dist/dev/mp-weixin/static/coupon_0.png
vendored
|
Before Width: | Height: | Size: 18 KiB |
BIN
unpackage/dist/dev/mp-weixin/static/coupon_1.png
vendored
|
Before Width: | Height: | Size: 17 KiB |
BIN
unpackage/dist/dev/mp-weixin/static/details.png
vendored
|
Before Width: | Height: | Size: 39 KiB |
BIN
unpackage/dist/dev/mp-weixin/static/details_bg.png
vendored
|
Before Width: | Height: | Size: 2.2 MiB |
BIN
unpackage/dist/dev/mp-weixin/static/goods_bg.png
vendored
|
Before Width: | Height: | Size: 1.6 MiB |
BIN
unpackage/dist/dev/mp-weixin/static/ic_add.png
vendored
|
Before Width: | Height: | Size: 8.4 KiB |
BIN
unpackage/dist/dev/mp-weixin/static/ic_address.png
vendored
|
Before Width: | Height: | Size: 6.6 KiB |
BIN
unpackage/dist/dev/mp-weixin/static/ic_back.png
vendored
|
Before Width: | Height: | Size: 2.2 KiB |
BIN
unpackage/dist/dev/mp-weixin/static/ic_check.png
vendored
|
Before Width: | Height: | Size: 6.7 KiB |
BIN
unpackage/dist/dev/mp-weixin/static/ic_check_s.png
vendored
|
Before Width: | Height: | Size: 9.3 KiB |
BIN
unpackage/dist/dev/mp-weixin/static/ic_close.png
vendored
|
Before Width: | Height: | Size: 4.1 KiB |