first commit
This commit is contained in:
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/address/add.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/address/add.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/address/list.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/address/list.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/cate/cate.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/cate/cate.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/cate/classify.data.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/cate/classify.data.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/equity/equity.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/equity/equity.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/goods/goods.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/goods/goods.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/goods/prefecture.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/goods/prefecture.js.map
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"prefecture.js","sources":["pages/goods/prefecture.vue","../../../../program/HBuilderX/plugins/uniapp-cli-vite/uniPage:/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,recommended:1 })\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 toGoods = (e) => {\n\tuni.navigateTo({\n\t\turl: `/pages/goods/goods?id=${e}`\n\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\tmargin-bottom: 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)"],"names":["ref","onLoad","api","uni"],"mappings":";;;;;;;;;;;;;;;;AAyBM,UAAA,SAASA,kBAAI,CAAC;AACd,UAAA,aAAaA,kBAAqB,EAAE;AACpC,UAAA,SAASA,kBAAI,IAAI;AACjB,UAAA,WAAWA,kBAAI,CAAA,CAAE;AACjB,UAAA,iBAAiBA,kBAAI,CAAA,CAAE;AAC7BC,kBAAAA,OAAO,MAAM;AACZC,gBAAAA,IAAI,eAAe,EAAE,KAAK,CAAC,QAAQ;AAClC,uBAAe,QAAQ,IAAI;AAAA,MAAA,CAC3B;AAAA,IAAA,CACD;AAQK,UAAA,YAAY,CAAC,QAAQ,aAAa;AACvCA,gBAAA,IAAI,UAAU,EAAE,QAAQ,UAAU,MAAM,OAAO,OAAO,YAAY,WAAW,OAAM,aAAY,EAAG,CAAA,EAChG,KAAK,CAAC,QAAa;AACZ,eAAA,MAAM,SAAS,IAAI,IAAI;AAAA,MAAA,CAC9B,EACA,MAAM,CAAC,QAAQ;AACR,eAAA,MAAM,SAAS,KAAK;AAAA,MAAA,CAC3B;AAAA,IAAA;AAGG,UAAA,UAAU,CAAC,MAAM;AACtBC,oBAAAA,MAAI,WAAW;AAAA,QACd,KAAK,yBAAyB,CAAC;AAAA,MAAA,CAC/B;AAAA,IAAA;AAGF,UAAM,OAAO,MAAM;AAClBA,oBAAA,MAAI,aAAa;AAAA,IAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AC1DlB,GAAG,WAAW,eAAe;"}
|
||||
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/index/index.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/index/index.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/login/login.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/login/login.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/mine/mine.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/mine/mine.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/mine/mobile.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/mine/mobile.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/mine/sett.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/mine/sett.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/notice/details.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/notice/details.js.map
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"details.js","sources":["pages/notice/details.vue","../../../../program/HBuilderX/plugins/uniapp-cli-vite/uniPage:/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\">发布时间:{{ timeFormat(articleItem.createTime, 'yyyy-MM-dd hh:mm:ss') }}</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=\"articleItem.content\" />\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';\nimport { timeFormat } from '@/utils/fun.js';\r\n\r\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)"],"names":["ref","onLoad","api","MiniProgramPage"],"mappings":";;;;;;;;;;;;;;;AAsBM,UAAA,cAAcA,kBAAI,CAAA,CAAE;AAE1BC,kBAAA,OAAO,CAAC,YAAiB;AACpBC,oBAAA,WAAW,EAAE,IAAI,QAAQ,IAAI,EAAE,KAAK,CAAC,QAAQ;AAChD,oBAAY,QAAQ;AAAA,MAAA,CACpB;AAAA,IAAA,CACD;;;;;;;;;;;;;;;;;AC3BD,GAAG,WAAWC,SAAe;"}
|
||||
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/notice/notice.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/notice/notice.js.map
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"notice.js","sources":["pages/notice/notice.vue","../../../../program/HBuilderX/plugins/uniapp-cli-vite/uniPage:/cGFnZXMvbm90aWNlL25vdGljZS52dWU"],"sourcesContent":["<template>\n\t<view class=\"notice\">\n\t\t<wd-navbar title=\"公告\" safeAreaInsetTop left-arrow @click-left=\"back\"></wd-navbar>\n\n\t\t<!-- 顶部导航栏 -->\n\t\t<view class=\"nav-tabs\">\n\t\t\t<view class=\"tab-item\" :class=\"active == 1 ? 'active' : ''\" @click=\"activeChange(1, '')\">通知</view>\n\t\t\t<!-- <view class=\"tab-item\" :class=\"active == 2 ? 'active' : ''\" @click=\"activeChange(2, null)\">公告</view> -->\n\t\t\t<view\n\t\t\t\tclass=\"tab-item\"\n\t\t\t\t:class=\"active == 2 && categoryId == item.id ? 'active' : ''\"\n\t\t\t\t@click=\"activeChange(2, item.id)\"\n\t\t\t\tv-for=\"(item, index) in noticeCateList\"\n\t\t\t\t:key=\"index\"\n\t\t\t>\n\t\t\t\t{{ item.categoryName }}\n\t\t\t</view>\n\t\t</view>\n\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=\"notice_block\" v-for=\"(item, index) in dataList\" :key=\"index\" @click=\"toDeitl(item)\">\n\t\t\t\t\t<view>\n\t\t\t\t\t\t{{ active == 1 ? '通知' : active == 2 ? noticeCateList.find((val) => val.id == categoryId).categoryName : '' }}:{{\n\t\t\t\t\t\t\tactive == 1 ? item.content : item.title\n\t\t\t\t\t\t}}\n\t\t\t\t\t</view>\n\t\t\t\t\t<image style=\"width: 40rpx; height: 40rpx\" src=\"/static/y.png\" v-if=\"active == 2\"></image>\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 toDeitl = (item) => {\n\tif (active.value == 1) {\n\t\tuni.showModal({\n\t\t\ttitle: '通知',\n\t\t\tcontent: item.content,\n\t\t\tshowCancel: false\n\t\t});\n\t} else {\n\t\tuni.navigateTo({\n\t\t\turl: '/pages/notice/details?id=' + item.id\n\t\t});\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.noticePage({ 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\t/* 导航标签样式 */\n\t.nav-tabs {\n\t\tdisplay: flex;\n\t\t/* justify-content: space-around; */\n\t\tbackground-color: #ffffff;\n\t\tpadding: 24rpx 0;\n\t\tborder-bottom: 1rpx solid #eee;\n\t}\n\n\t.tab-item {\n\t\tfont-size: 15px;\n\t\tcolor: #999;\n\t\tposition: relative;\n\t\tpadding: 0 10px;\n\t\tz-index: 9;\n\t}\n\n\t.tab-item.active {\n\t\tcolor: #333;\n\t\tfont-weight: bold;\n\t}\n\n\t.tab-item.active::after {\n\t\tcontent: '';\n\t\tposition: absolute;\n\t\tbottom: 0rpx;\n\t\tright: 20rpx;\n\t\twidth: 40rpx;\n\t\theight: 12rpx;\n\t\tbackground: #627c54;\n\t\tborder-radius: 24rpx 24rpx 24rpx 24rpx;\n\t\tz-index: 5;\n\t\topacity: 0.8;\n\t}\n}\n</style>\n","import MiniProgramPage from 'D:/Backup/Documents/HBuilderProjects/dajiankuang/pages/notice/notice.vue'\nwx.createPage(MiniProgramPage)"],"names":["ref","onLoad","api","uni"],"mappings":";;;;;;;;;;;;;;;;;AAsCM,UAAA,SAASA,kBAAI,CAAC;AACd,UAAA,aAAaA,kBAAqB,EAAE;AACpC,UAAA,SAASA,kBAAI,IAAI;AACjB,UAAA,WAAWA,kBAAI,CAAA,CAAE;AACjB,UAAA,iBAAiBA,kBAAI,CAAA,CAAE;AAC7BC,kBAAAA,OAAO,MAAM;AACZC,gBAAAA,IAAI,eAAe,EAAE,KAAK,CAAC,QAAQ;AAClC,uBAAe,QAAQ,IAAI;AAAA,MAAA,CAC3B;AAAA,IAAA,CACD;AAEK,UAAA,UAAU,CAAC,SAAS;AACrB,UAAA,OAAO,SAAS,GAAG;AACtBC,sBAAAA,MAAI,UAAU;AAAA,UACb,OAAO;AAAA,UACP,SAAS,KAAK;AAAA,UACd,YAAY;AAAA,QAAA,CACZ;AAAA,MAAA,OACK;AACNA,sBAAAA,MAAI,WAAW;AAAA,UACd,KAAK,8BAA8B,KAAK;AAAA,QAAA,CACxC;AAAA,MACF;AAAA,IAAA;AAGK,UAAA,eAAe,CAAC,GAAG,WAAW;AACnC,aAAO,QAAQ;AACf,iBAAW,QAAQ;AACnB,aAAO,MAAM;IAAO;AAGf,UAAA,YAAY,CAAC,QAAQ,aAAa;AACvCD,gBAAAA,IAAI,WAAW,EAAE,QAAQ,UAAU,MAAM,OAAO,OAAO,YAAY,WAAW,MAAM,CAAC,EACnF,KAAK,CAAC,QAAa;AACZ,eAAA,MAAM,SAAS,IAAI,IAAI;AAAA,MAAA,CAC9B,EACA,MAAM,CAAC,QAAQ;AACR,eAAA,MAAM,SAAS,KAAK;AAAA,MAAA,CAC3B;AAAA,IAAA;AAGH,UAAM,OAAO,MAAM;AAClBC,oBAAA,MAAI,aAAa;AAAA,IAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AC/ElB,GAAG,WAAW,eAAe;"}
|
||||
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/order/confirm.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/order/confirm.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/order/order.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/order/order.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/order/success.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/order/success.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/protocol/protocol.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/protocol/protocol.js.map
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"protocol.js","sources":["pages/protocol/protocol.vue","../../../../program/HBuilderX/plugins/uniapp-cli-vite/uniPage:/cGFnZXMvcHJvdG9jb2wvcHJvdG9jb2wudnVl"],"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 'D:/Backup/Documents/HBuilderProjects/dajiankuang/pages/protocol/protocol.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
unpackage/dist/dev/.sourcemap/mp-weixin/pages/team/team.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/team/team.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/wallet/list.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/wallet/list.js.map
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"list.js","sources":["pages/wallet/list.vue","../../../../program/HBuilderX/plugins/uniapp-cli-vite/uniPage:/cGFnZXMvd2FsbGV0L2xpc3QudnVl"],"sourcesContent":["<template>\n\t<view>\n\t\t<wd-navbar title=\"我的账单\" :bordered=\"false\" left-arrow custom-style=\"background-color: transparent !important;\" safeAreaInsetTop @click-left=\"back\"></wd-navbar>\n\t\t<z-paging ref=\"paging\" :refresher-enabled=\"showLoading\" v-model=\"dataList\" use-page-scroll @query=\"queryList\">\n\t\t\t<view class=\"p30\">\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\n\t\t\t\t<view>\n\t\t\t\t\t<view style=\"display: flex; align-items: center; justify-content: space-between\">\n\t\t\t\t\t\t<image style=\"width: 74rpx; height: 34rpx\" mode=\"widthFix\" src=\"/static/icons/zhangdan.png\"></image>\n\n\t\t\t\t\t\t<wd-picker @close=\"showLoading = true\" @open=\"showLoading = false\" :columns=\"columns\" v-model=\"queryPrams.bizType\" use-default-slot @confirm=\"handleConfirm\">\n\t\t\t\t\t\t\t<view style=\"display: flex; align-items: center; font-size: 28rpx\">\n\t\t\t\t\t\t\t\t{{ typeName || '筛选' }}\n\t\t\t\t\t\t\t\t<image style=\"margin-left: 15rpx; width: 35rpx; height: 35rpx\" src=\"/static/icons/xia.png\"></image>\n\t\t\t\t\t\t\t</view>\n\t\t\t\t\t\t</wd-picker>\n\t\t\t\t\t</view>\n\n\t\t\t\t\t<view class=\"wall_list\" v-for=\"(item, index) in dataList\" :key=\"index\">\n\t\t\t\t\t\t<view>\n\t\t\t\t\t\t\t<view style=\"margin-bottom: 25rpx; font-size: 28rpx\">{{ item.title }}</view>\n\t\t\t\t\t\t\t<view style=\"font-size: 24rpx; color: #999\">\n\t\t\t\t\t\t\t\t{{ timeFormat(item.createTime, 'yyyy-MM-dd hh:mm:ss') }}\n\t\t\t\t\t\t\t</view>\n\t\t\t\t\t\t</view>\n\t\t\t\t\t\t<view style=\"font-size: 32rpx; font-weight: bold; color: #799675\">¥{{ item.money }}</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 { ref, computed } from 'vue';\nimport api from '@/api/index';\nimport { Store } from '@/store';\nconst store = Store();\nconst paging = ref(null);\nconst dataList = ref([]);\nconst columns = ref([]);\n\nconst showLoading = ref(true);\n\nconst typeName = ref('');\n\nconst queryPrams = ref({\n\tbizType: ''\n});\n\nconst userInfo = computed(\n\t() =>\n\t\tstore.userInfo || {\n\t\t\tinviteCode: '',\n\t\t\tnickname: '',\n\t\t\tmobile: '',\n\t\t\tavatar: '',\n\t\t\tpaywallet: {\n\t\t\t\tbalance: 0\n\t\t\t}\n\t\t}\n);\n\nimport { timeFormat } from '@/utils/fun.js';\n\nconst queryList = (pageNo, pageSize) => {\n\tapi.moneyRecord({ pageNo, pageSize, ...queryPrams.value })\n\t\t.then((res: any) => {\n\t\t\tcolumns.value = Object.entries(res.bizType).map(([value, label]) => ({\n\t\t\t\tvalue,\n\t\t\t\tlabel\n\t\t\t}));\n\t\t\tcolumns.value.unshift({\n\t\t\t\tlabel: '全部',\n\t\t\t\tvalue: ''\n\t\t\t});\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 handleConfirm = (e) => {\n\tif (!e.value) {\n\t\ttypeName.value = '';\n\t} else {\n\t\ttypeName.value = e.selectedItems.label;\n\t}\n\tpaging.value.reload();\n};\n\nconst back = () => {\n\tuni.navigateBack();\n};\n</script>\n\n<style lang=\"scss\" scoped>\n.block_wall {\n\tdisplay: flex;\n\talign-items: center;\n\tjustify-content: center;\n\tflex-direction: column;\n\t&_tit {\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t}\n}\n\n.wall_list {\n\twidth: 690rpx;\n\theight: 118rpx;\n\tbackground: #ffffff;\n\tbox-shadow: 0rpx 2rpx 8rpx 2rpx rgba(0, 88, 219, 0.06);\n\tborder-radius: 8rpx 8rpx 8rpx 8rpx;\n\tdisplay: flex;\n\talign-items: center;\n\tjustify-content: space-between;\n\tpadding: 0 30rpx;\n\tmargin-top: 30rpx;\n}\n</style>\n","import MiniProgramPage from 'D:/Backup/Documents/HBuilderProjects/dajiankuang/pages/wallet/list.vue'\nwx.createPage(MiniProgramPage)"],"names":["Store","ref","computed","api","uni"],"mappings":";;;;;;;;;;;;;;;;;;;;;AAuCA,UAAM,QAAQA,YAAAA;AACR,UAAA,SAASC,kBAAI,IAAI;AACjB,UAAA,WAAWA,kBAAI,CAAA,CAAE;AACjB,UAAA,UAAUA,kBAAI,CAAA,CAAE;AAEhB,UAAA,cAAcA,kBAAI,IAAI;AAEtB,UAAA,WAAWA,kBAAI,EAAE;AAEvB,UAAM,aAAaA,cAAAA,IAAI;AAAA,MACtB,SAAS;AAAA,IAAA,CACT;AAEgBC,kBAAA;AAAA,MAChB,MACC,MAAM,YAAY;AAAA,QACjB,YAAY;AAAA,QACZ,UAAU;AAAA,QACV,QAAQ;AAAA,QACR,QAAQ;AAAA,QACR,WAAW;AAAA,UACV,SAAS;AAAA,QACV;AAAA,MACD;AAAA,IACF;AAIM,UAAA,YAAY,CAAC,QAAQ,aAAa;AACnCC,gBAAAA,IAAA,YAAY,EAAE,QAAQ,UAAU,GAAG,WAAW,OAAO,EACvD,KAAK,CAAC,QAAa;AACX,gBAAA,QAAQ,OAAO,QAAQ,IAAI,OAAO,EAAE,IAAI,CAAC,CAAC,OAAO,KAAK,OAAO;AAAA,UACpE;AAAA,UACA;AAAA,QACC,EAAA;AACF,gBAAQ,MAAM,QAAQ;AAAA,UACrB,OAAO;AAAA,UACP,OAAO;AAAA,QAAA,CACP;AACM,eAAA,MAAM,SAAS,IAAI,IAAI;AAAA,MAAA,CAC9B,EACA,MAAM,CAAC,QAAQ;AACR,eAAA,MAAM,SAAS,KAAK;AAAA,MAAA,CAC3B;AAAA,IAAA;AAGG,UAAA,gBAAgB,CAAC,MAAM;AACxB,UAAA,CAAC,EAAE,OAAO;AACb,iBAAS,QAAQ;AAAA,MAAA,OACX;AACG,iBAAA,QAAQ,EAAE,cAAc;AAAA,MAClC;AACA,aAAO,MAAM;IAAO;AAGrB,UAAM,OAAO,MAAM;AAClBC,oBAAA,MAAI,aAAa;AAAA,IAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AC9FlB,GAAG,WAAW,eAAe;"}
|
||||
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/wallet/wallet.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/wallet/wallet.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/wallet/zhaun.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/pages/wallet/zhaun.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user