first commit

This commit is contained in:
PC-202306242200\Administrator
2026-03-28 23:10:55 +08:00
commit 1c24452b6c
1735 changed files with 150474 additions and 0 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1 @@
{"version":3,"names":["swiperList","ref","wx","createPage","_sfc_main"],"sources":["goods.vue","cGFnZXMvZ29vZHMvZ29vZHMudnVl"],"sourcesContent":["<template>\n\t<view>\n\t\t<wd-swiper :list=\"swiperList\" direction=\"vertical\" indicatorPosition=\"right\" autoplay v-model:current=\"current\" @click=\"handleClick\" @change=\"onChange\">\n\t\t\t<template #indicator=\"{ current, total }\">\n\t\t\t\t<view class=\"custom-indicator\" style=\"position: absolute; bottom: 24rpx; right: 24rpx\">{{ current + 1 }}/{{ total }}</view>\n\t\t\t</template>\n\t\t</wd-swiper>\n\t</view>\n</template>\n\n<script setup lang=\"ts\">\nconst swiperList = ref(['https://wot-ui.cn/assets/redpanda.jpg', 'https://wot-ui.cn/assets/capybara.jpg']);\n</script>\n\n<style></style>\n","import MiniProgramPage from 'D:/Backup/Documents/HBuilderProjects/dajiankuang/pages/goods/goods.vue'\nwx.createPage(MiniProgramPage)"],"mappings":";;;;;;;;;;;;;;;;;IAWA,IAAMA,UAAA,GAAaC,GAAA,CAAI,CAAC,yCAAyC,uCAAuC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ACVzGC,EAAA,CAAGC,UAAA,CAAWC,SAAe","ignoreList":[]}

View File

@@ -0,0 +1 @@
{"version":3,"names":["active","common_vendor","ref","categoryId","paging","dataList","noticeCateList","onLoad","api_index","api","noticeCatePage","then","res","value","list","queryList","pageNo","pageSize","goodsPage","type","complete","catch","back","index","navigateBack","wx","createPage","MiniProgramPage"],"sources":["prefecture.vue","cGFnZXMvZ29vZHMvcHJlZmVjdHVyZS52dWU"],"sourcesContent":["<template>\n\t<view class=\"notice\">\n\t\t<wd-navbar title=\"进货专区\" safeAreaInsetTop left-arrow @click-left=\"back\"></wd-navbar>\n\t\t<z-paging ref=\"paging\" v-model=\"dataList\" use-page-scroll @query=\"queryList\">\n\t\t\t<view class=\"p30\">\n\t\t\t\t<view class=\"home_block\" @click=\"toGoods(item.id)\" v-for=\"(item, index) in dataList\" :key=\"index\">\n\t\t\t\t\t<image class=\"home_block_left\" :src=\"item.cover\"></image>\n\t\t\t\t\t<view class=\"home_block_right\">\n\t\t\t\t\t\t<view class=\"home_block_right_title\">{{ item.name }}</view>\n\t\t\t\t\t\t<view class=\"home_block_right_info\">{{ item.specs }}</view>\n\t\t\t\t\t\t<view style=\"display: flex; justify-content: space-between; align-items: center; margin-top: 25rpx\">\n\t\t\t\t\t\t\t<view style=\"font-size: 36rpx; font-weight: bold; color: #ff2929\">¥{{ item.currentPrice }}</view>\n\t\t\t\t\t\t\t<view class=\"home_block_right_button\">下单</view>\n\t\t\t\t\t\t</view>\n\t\t\t\t\t</view>\n\t\t\t\t</view>\n\t\t\t</view>\n\t\t</z-paging>\n\t</view>\n</template>\n\n<script setup lang=\"ts\">\nimport { onLoad } from '@dcloudio/uni-app';\nimport { ref, computed } from 'vue';\nimport api from '@/api/index';\nconst active = ref(1);\nconst categoryId = ref<string | number>('');\nconst paging = ref(null);\nconst dataList = ref([]);\nconst noticeCateList = ref([]);\nonLoad(() => {\n\tapi.noticeCatePage().then((res) => {\n\t\tnoticeCateList.value = res.list;\n\t});\n});\n\nconst activeChange = (e, cateId) => {\n\tactive.value = e;\n\tcategoryId.value = cateId;\n\tpaging.value.reload();\n};\n\nconst queryList = (pageNo, pageSize) => {\n\tapi.goodsPage({ pageNo, pageSize, type: active.value, categoryId: categoryId.value })\n\t\t.then((res: any) => {\n\t\t\tpaging.value.complete(res.list);\n\t\t})\n\t\t.catch((res) => {\n\t\t\tpaging.value.complete(false);\n\t\t});\n};\n\nconst back = () => {\n\tuni.navigateBack();\n};\n</script>\n\n<style lang=\"scss\" scoped>\n.notice {\n\t&_block {\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t\tjustify-content: space-between;\n\t\tpadding: 0 35rpx;\n\t\twidth: 690rpx;\n\t\theight: 106rpx;\n\t\tbackground: #ffffff;\n\t\tborder-radius: 16rpx;\n\t\tposition: relative;\n\n\t\tfont-weight: 400;\n\t\tfont-size: 24rpx;\n\t\tcolor: #232323;\n\t}\n}\n\n.home_block {\n\twidth: 690rpx;\n\theight: 250rpx;\n\tbackground: #ffffff;\n\tborder-radius: 8rpx 8rpx 8rpx 8rpx;\n\tdisplay: flex;\n\talign-items: center;\n\tpadding-right: 25rpx;\n\t&_left {\n\t\twidth: 250rpx;\n\t\theight: 250rpx;\n\t\tborder-radius: 8rpx 8rpx 8rpx 8rpx;\n\t\tmargin-right: 25rpx;\n\t}\n\t&_right {\n\t\tflex: 1;\n\t\t&_title {\n\t\t\tfont-weight: 600;\n\t\t\tfont-size: 28rpx;\n\t\t\tcolor: #232323;\n\t\t}\n\t\t&_info {\n\t\t\tfont-weight: 400;\n\t\t\tfont-size: 24rpx;\n\t\t\tcolor: #232323;\n\t\t\tmargin-top: 25rpx;\n\t\t}\n\t\t&_button {\n\t\t\twidth: 128rpx;\n\t\t\theight: 48rpx;\n\t\t\tbackground: #ff2a2a;\n\t\t\tbox-shadow: 0rpx 2rpx 4rpx 2rpx #dbdbdb;\n\t\t\tborder-radius: 10rpx 10rpx 10rpx 10rpx;\n\t\t\tdisplay: flex;\n\t\t\talign-items: center;\n\t\t\tjustify-content: center;\n\t\t\tfont-weight: 800;\n\t\t\tfont-size: 20rpx;\n\t\t\tcolor: #ffffff;\n\t\t}\n\t}\n}\n</style>\n","import MiniProgramPage from 'D:/Backup/Documents/HBuilderProjects/dajiankuang/pages/goods/prefecture.vue'\nwx.createPage(MiniProgramPage)"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;IAyBM,IAAAA,MAAA,GAASC,aAAA,CAAAC,GAAA,CAAI,CAAC;IACd,IAAAC,UAAA,GAAaF,aAAA,CAAAC,GAAA,CAAqB,EAAE;IACpC,IAAAE,MAAA,GAASH,aAAA,CAAAC,GAAA,CAAI,IAAI;IACjB,IAAAG,QAAA,GAAWJ,aAAA,CAAAC,GAAA,CAAI,EAAE;IACjB,IAAAI,cAAA,GAAiBL,aAAA,CAAAC,GAAA,CAAI,EAAE;IAC7BD,aAAA,CAAAM,MAAA,CAAO,YAAM;MACZC,SAAA,CAAAC,GAAA,CAAIC,cAAA,EAAe,CAAEC,IAAA,CAAK,UAACC,GAAA,EAAQ;QAClCN,cAAA,CAAeO,KAAA,GAAQD,GAAA,CAAIE,IAAA;MAAA,CAC3B;IAAA,CACD;IAQK,IAAAC,SAAA,GAAY,SAAZA,UAAaC,MAAA,EAAQC,QAAA,EAAa;MACvCT,SAAA,CAAAC,GAAA,CAAIS,SAAA,CAAU;QAAEF,MAAA,EAAAA,MAAA;QAAQC,QAAA,EAAAA,QAAA;QAAUE,IAAA,EAAMnB,MAAA,CAAOa,KAAA;QAAOV,UAAA,EAAYA,UAAA,CAAWU;MAAM,CAAC,EAClFF,IAAA,CAAK,UAACC,GAAA,EAAa;QACZR,MAAA,CAAAS,KAAA,CAAMO,QAAA,CAASR,GAAA,CAAIE,IAAI;MAAA,CAC9B,EACAO,KAAA,CAAM,UAACT,GAAA,EAAQ;QACRR,MAAA,CAAAS,KAAA,CAAMO,QAAA,CAAS,KAAK;MAAA,CAC3B;IAAA;IAGH,IAAME,IAAA,GAAO,SAAPA,KAAA,EAAa;MAClBrB,aAAA,CAAAsB,KAAA,CAAIC,YAAA,EAAa;IAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ACpDlBC,EAAA,CAAGC,UAAA,CAAWC,eAAe","ignoreList":[]}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1 @@
{"version":3,"names":["wx","createPage","_sfc_main"],"sources":["cGFnZXMvbWluZS9tb2JpbGUudnVl"],"sourcesContent":["import MiniProgramPage from 'D:/Backup/Documents/HBuilderProjects/dajiankuang/pages/mine/mobile.vue'\nwx.createPage(MiniProgramPage)"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AACAA,EAAA,CAAGC,UAAA,CAAWC,SAAe","ignoreList":[]}

View File

@@ -0,0 +1 @@
{"version":3,"names":["articleItem","common_vendor","ref","onLoad","options","api_index","api","noticeInfo","id","then","res","value","wx","createPage","_sfc_main"],"sources":["details.vue","cGFnZXMvbm90aWNlL2RldGFpbHMudnVl"],"sourcesContent":["<template>\n\t<view style=\"padding: 30rpx\">\n\t\t<view style=\"font-size: 34rpx\">{{ articleItem.title }}</view>\n\t\t<view style=\"height: 20rpx\"></view>\n\t\t<view style=\"color: #999; font-size: 30rpx\">发布时间:{{ articleItem.createdAt }}</view>\n\t\t<view style=\"height: 20rpx\"></view>\n\t\t<video v-if=\"articleItem.video\" style=\"width: 690rpx; height: 388rpx\" :poster=\"articleItem.cover\" :src=\"articleItem.video\" :direction=\"90\"></video>\n\t\t<view style=\"height: 20rpx\"></view>\n\t\t<view>\n\t\t\t<mp-html :content=\"goods.detail\" />\n\t\t</view>\n\t\t<view style=\"50rpx\"></view>\n\t</view>\n</template>\n\n<script setup lang=\"ts\">\nimport { onLoad } from '@dcloudio/uni-app';\nimport { ref, computed } from 'vue';\nimport api from '@/api/index';\n\nconst articleItem = ref({});\n\nonLoad((options: any) => {\n\tapi.noticeInfo({ id: options.id }).then((res) => {\n\t\tarticleItem.value = res;\n\t});\n});\n</script>\n\n<style></style>\n","import MiniProgramPage from 'D:/Backup/Documents/HBuilderProjects/dajiankuang/pages/notice/details.vue'\nwx.createPage(MiniProgramPage)"],"mappings":";;;;;;;;;;;;;;;;;;IAoBM,IAAAA,WAAA,GAAcC,aAAA,CAAAC,GAAA,CAAI,EAAE;IAE1BD,aAAA,CAAAE,MAAA,CAAO,UAACC,OAAA,EAAiB;MACpBC,SAAA,CAAAC,GAAA,CAAAC,UAAA,CAAW;QAAEC,EAAA,EAAIJ,OAAA,CAAQI;MAAA,CAAI,EAAEC,IAAA,CAAK,UAACC,GAAA,EAAQ;QAChDV,WAAA,CAAYW,KAAA,GAAQD,GAAA;MAAA,CACpB;IAAA,CACD;;;;;;;;;;;;;;;;;ACzBDE,EAAA,CAAGC,UAAA,CAAWC,SAAe","ignoreList":[]}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long