diff --git a/本时生活H5/.hbuilderx/launch.json b/本时生活H5/.hbuilderx/launch.json
new file mode 100644
index 0000000..07c1d5f
--- /dev/null
+++ b/本时生活H5/.hbuilderx/launch.json
@@ -0,0 +1,16 @@
+{ // launch.json 配置了启动调试时相关设置,configurations下节点名称可为 app-plus/h5/mp-weixin/mp-baidu/mp-alipay/mp-qq/mp-toutiao/mp-360/
+ // launchtype项可配置值为local或remote, local代表前端连本地云函数,remote代表前端连云端云函数
+ "version": "0.0",
+ "configurations": [{
+ "default" :
+ {
+ "launchtype" : "local"
+ },
+ "h5" :
+ {
+ "launchtype" : "local"
+ },
+ "type" : "uniCloud"
+ }
+ ]
+}
diff --git a/本时生活H5/App.vue b/本时生活H5/App.vue
new file mode 100644
index 0000000..ebe72e8
--- /dev/null
+++ b/本时生活H5/App.vue
@@ -0,0 +1,123 @@
+
+
+
diff --git a/本时生活H5/apis/interfaces/address.js b/本时生活H5/apis/interfaces/address.js
new file mode 100644
index 0000000..1252320
--- /dev/null
+++ b/本时生活H5/apis/interfaces/address.js
@@ -0,0 +1,83 @@
+
+/**
+ * 手太欠
+ * 愿这世界都如故事里一样 美好而动人~
+ */
+
+import request from '../request.js'
+
+// 我的地址列表
+const index = () => {
+ return request({
+ url : 'addresses'
+ })
+}
+
+// 删除地址
+const remove = (addressId) => {
+ return request({
+ url : 'addresses/' + addressId + '/destroy',
+ method: "DELETE"
+ })
+}
+
+// 删除地址
+const setdef = (addressId) => {
+ return request({
+ url : 'addresses/' + addressId + '/setdef',
+ method: "POST"
+ })
+}
+
+// 获取省
+const create = () => {
+ return request({
+ url : 'addresses/create'
+ })
+}
+
+// 获取市级列表
+const children = (psn) => {
+ return request({
+ url : 'areas/children',
+ data: {
+ psn
+ }
+ })
+}
+
+// 创建地址保存
+const add = (data) => {
+ return request({
+ url : 'addresses/store',
+ method: "POST",
+ data: data
+ })
+}
+
+// 编辑地址保存
+const keep = (addressId, data) => {
+ return request({
+ url : 'addresses/' + addressId + '/update',
+ method: "POST",
+ data: data
+ })
+}
+
+// 获取已有地址信息
+const edit = (addressId) => {
+ return request({
+ url : 'addresses/' + addressId + '/edit'
+ })
+}
+
+export {
+ index,
+ remove,
+ setdef,
+ create,
+ children,
+ add,
+ keep,
+ edit
+}
\ No newline at end of file
diff --git a/本时生活H5/apis/interfaces/auth.js b/本时生活H5/apis/interfaces/auth.js
new file mode 100644
index 0000000..f39f854
--- /dev/null
+++ b/本时生活H5/apis/interfaces/auth.js
@@ -0,0 +1,69 @@
+
+/**
+ * 手太欠
+ * 愿这世界都如故事里一样 美好而动人~
+ */
+import request from '../request'
+
+// 手机号+验证码登录
+const auth = (data) => {
+ return request({
+ url: 'auth/login_by_code',
+ method: 'POST',
+ data: data
+ })
+}
+
+// 设置登录密码
+const passSetup = (data) => {
+ return request({
+ url: 'auth/reset_password',
+ method: 'POST',
+ data: data
+ })
+}
+
+// 手机号+密码登录
+const passlogin = (data) => {
+ return request({
+ url: 'auth/login_by_password',
+ method: 'POST',
+ data: data
+ })
+}
+
+// 注册
+const register = (data) => {
+ return request({
+ url: 'auth/register',
+ method: 'POST',
+ data: data
+ })
+}
+
+// 领取红包-发送短信-获取验证码
+const send = (data) => {
+ return request({
+ url: 'sms/send',
+ method: 'POST',
+ data: data
+ })
+}
+
+// 领取红包-领取
+const unicom = (data) => {
+ return request({
+ url: 'unicom/get',
+ method: 'POST',
+ data: data
+ })
+}
+
+export {
+ auth,
+ passSetup,
+ passlogin,
+ register,
+ send,
+ unicom
+}
diff --git a/本时生活H5/apis/interfaces/campus.js b/本时生活H5/apis/interfaces/campus.js
new file mode 100644
index 0000000..97ac606
--- /dev/null
+++ b/本时生活H5/apis/interfaces/campus.js
@@ -0,0 +1,95 @@
+
+/**
+ * 手太欠
+ * 愿这世界都如故事里一样 美好而动人~
+ */
+import request from '../request'
+
+const index = (data) => {
+ return request({
+ url: 'schools'
+ })
+}
+
+//卡券二维码
+const qrcode = (coupon_id) => {
+ return request({
+ url: 'coupons/qrcode',
+ data: {
+ coupon_id
+ }
+ })
+}
+
+//门店列表
+const barcode = (coupon_id) => {
+ return request({
+ url: "coupons/" + coupon_id + '/barcode'
+ })
+}
+
+//卡券二维码
+const couponinfo = (data) => {
+ return request({
+ url: "coupons/show",
+ data: data
+ })
+}
+
+// 获取商家券信息
+const merchantCard = (coupon_id) => {
+ return request({
+ url: "coupons/merchant_card",
+ method: "GET",
+ data: {
+ coupon_id
+ }
+ })
+}
+
+// 校园活动确认订单
+const buy = (data) => {
+ return request({
+ url : "schools/buy",
+ data: data
+ })
+}
+
+// 校园活动提交订单
+const buySubmit = (data) => {
+ return request({
+ url : "schools/buy",
+ method : "POST",
+ data : data
+ })
+}
+
+// 卡券分组
+const coupon = (data) => {
+ return request({
+ url : "coupons",
+ data : data
+ })
+}
+
+// 卡券分组
+const breakCode = (coupon_id) => {
+ return request({
+ url : "coupons/qrcode",
+ data: {
+ coupon_id
+ }
+ })
+}
+
+export {
+ index,
+ qrcode,
+ barcode,
+ couponinfo,
+ merchantCard,
+ buy,
+ buySubmit,
+ coupon,
+ breakCode
+}
diff --git a/本时生活H5/apis/interfaces/draw.js b/本时生活H5/apis/interfaces/draw.js
new file mode 100644
index 0000000..79edb7a
--- /dev/null
+++ b/本时生活H5/apis/interfaces/draw.js
@@ -0,0 +1,79 @@
+/**
+ * 手太欠
+ * 愿这世界都如故事里一样 美好而动人~
+ * 抽奖活动
+ */
+import request from '../request'
+
+// 首页
+const index = (data) => {
+ return request({
+ url: 'activity/exchanges'
+ })
+}
+
+// 抽奖
+const result = (exchange_id) => {
+ return request({
+ url: 'activity/exchanges/' + exchange_id + '/draw'
+ })
+}
+
+// 抽奖默认信息(抽奖次数)
+const awards = (exchange_id, data) => {
+ return request({
+ url: 'activity/exchanges/' + exchange_id + "/awards",
+ data: data
+ })
+}
+
+// 我的订单
+const orders = (data) => {
+ return request({
+ url: 'activity/exchanges/orders',
+ data: data
+ })
+}
+
+// 我的优惠券
+const coupons = (data) => {
+ return request({
+ url: 'activity/exchanges/coupons',
+ data: data
+ })
+}
+
+// 产品选择
+const exchanges = (log_id) => {
+ return request({
+ url: 'activity/exchanges/log/' + log_id
+ })
+}
+
+// 兑换产品
+const exchangesBuy = (data) => {
+ return request({
+ url: 'activity/exchanges/buy',
+ method: 'POST',
+ data: data
+ })
+}
+
+// 兑换产品
+const activityBuy = (data) => {
+ return request({
+ url: 'activity/exchanges/buy',
+ data: data
+ })
+}
+
+export {
+ index,
+ result,
+ awards,
+ orders,
+ coupons,
+ exchanges,
+ exchangesBuy,
+ activityBuy
+}
\ No newline at end of file
diff --git a/本时生活H5/apis/interfaces/giftPack.js b/本时生活H5/apis/interfaces/giftPack.js
new file mode 100644
index 0000000..9287657
--- /dev/null
+++ b/本时生活H5/apis/interfaces/giftPack.js
@@ -0,0 +1,61 @@
+/**
+ * 手太欠
+ * 愿这世界都如故事里一样 美好而动人~
+ */
+import request from '../request'
+
+// 月兑活动 - 首页
+const index = (data) => {
+ return request({
+ url: 'months'
+ })
+}
+
+// 月兑活动 - 商品详情
+const details = (month_id) => {
+ return request({
+ url : "months/" + month_id
+ })
+}
+
+// 月兑活动 - 确认订单
+const buy = (data) => {
+ return request({
+ url : "months/buy",
+ data: data
+ })
+}
+
+// 月兑活动 - 提交订单
+const buySubmit = (data) => {
+ return request({
+ url : "months/buy",
+ method : "POST",
+ data : data
+ })
+}
+
+// 月兑活动 - 优惠券列表
+const logs = (data) => {
+ return request({
+ url : "account/logs",
+ data : data
+ })
+}
+
+// 月兑活动 - 账变列表
+const coupon = (data) => {
+ return request({
+ url : "months/coupons",
+ data : data
+ })
+}
+
+export {
+ index,
+ details,
+ buy,
+ buySubmit,
+ coupon,
+ logs
+}
\ No newline at end of file
diff --git a/本时生活H5/apis/interfaces/index.js b/本时生活H5/apis/interfaces/index.js
new file mode 100644
index 0000000..3e20cd1
--- /dev/null
+++ b/本时生活H5/apis/interfaces/index.js
@@ -0,0 +1,73 @@
+
+/**
+ * 手太欠
+ * 愿这世界都如故事里一样 美好而动人~
+ */
+
+import request from '../request.js'
+
+// 活动权益内容
+const activity = (data) => {
+ return request({
+ url: 'home',
+ data: data
+ })
+}
+
+// 钻石+白金权益内容
+const index = (data) => {
+ return request({
+ url: 'home/group',
+ data: data
+ })
+}
+
+// 周五福利日订阅
+const subscribe = (subscribe) => {
+ return request({
+ url: 'wechat/' + subscribe + "/welfare_subscribe",
+ method: "POST"
+ })
+}
+
+// 所有城市-最新无字母
+const newCity = () => {
+ return request({
+ url: 'ajax/all_right_citys'
+ })
+}
+
+// 市区选择-最新无字母
+const newidxCity = (data) => {
+ return request({
+ url: 'ajax/all_right_children',
+ data: data
+ })
+}
+
+// h5掉起微信授权的前置获取相关的签名信息前置
+const subscribeUrl = (data) => {
+ return request({
+ url: 'auth/jssdk',
+ data: data
+ })
+}
+
+const subscribeH5 = (subscribe, channel) => {
+ return request({
+ url: "wechat/" + subscribe + "/welfare_subscribe",
+ method: "POST",
+ data: {
+ channel: 'h5'
+ }
+ })
+}
+export {
+ activity,
+ index,
+ subscribe,
+ newCity,
+ newidxCity,
+ subscribeUrl,
+ subscribeH5
+}
\ No newline at end of file
diff --git a/本时生活H5/apis/interfaces/oil.js b/本时生活H5/apis/interfaces/oil.js
new file mode 100644
index 0000000..8034619
--- /dev/null
+++ b/本时生活H5/apis/interfaces/oil.js
@@ -0,0 +1,33 @@
+/**
+ * 手太欠
+ * 愿这世界都如故事里一样 美好而动人~
+ */
+import request from '../request'
+
+const index = (data) => {
+ return request({
+ url: 'petros'
+ })
+}
+
+// 校园活动确认订单
+const buy = (data) => {
+ return request({
+ url : "petros/buy",
+ data: data
+ })
+}
+
+// 校园活动提交订单
+const buySubmit = (data) => {
+ return request({
+ url : "petros/buy",
+ method : "POST",
+ data : data
+ })
+}
+export {
+ index,
+ buy,
+ buySubmit
+}
\ No newline at end of file
diff --git a/本时生活H5/apis/interfaces/recharge.js b/本时生活H5/apis/interfaces/recharge.js
new file mode 100644
index 0000000..11003c6
--- /dev/null
+++ b/本时生活H5/apis/interfaces/recharge.js
@@ -0,0 +1,30 @@
+
+/**
+ * 手太欠
+ * 愿这世界都如故事里一样 美好而动人~
+ */
+
+import request from '../request.js'
+
+// 充值前置
+const create = () => {
+ return request({
+ url : 'recharges/create'
+ })
+}
+
+// 充值提交
+const store = (recharge_id) => {
+ return request({
+ url : 'recharges/store',
+ method: 'POST',
+ data: {
+ recharge_id
+ }
+ })
+}
+
+export {
+ create,
+ store
+}
\ No newline at end of file
diff --git a/本时生活H5/apis/interfaces/rights.js b/本时生活H5/apis/interfaces/rights.js
new file mode 100644
index 0000000..5126b35
--- /dev/null
+++ b/本时生活H5/apis/interfaces/rights.js
@@ -0,0 +1,143 @@
+
+/**
+ * 手太欠
+ * 愿这世界都如故事里一样 美好而动人~
+ */
+
+import request from '../request.js'
+
+// 权益详情
+const index = (data) => {
+ return request({
+ url : 'orders/create/',
+ data: data
+ })
+}
+
+// 权益分类
+const classify = (category_id, data) => {
+ return request({
+ url : 'categories/' + category_id,
+ data: data
+ })
+}
+
+// 权益购买提交
+const rightStore = (data) => {
+ return request({
+ url : 'orders/store/',
+ method: "POST",
+ data: data
+ })
+}
+
+// 洗车券-获取跳转地址 --暂时隐藏
+const washcarUrl = (data) => {
+ return request({
+ url: 'washcar/infourl',
+ data: data
+ })
+}
+
+// 获取洗车券信息
+const washcarBuy = (data) => {
+ return request({
+ url: 'washcar/create',
+ data: data
+ })
+}
+
+// 洗车券订单提交
+const washcarCreate = (data) => {
+ return request({
+ url : 'washcar/create',
+ method: "POST",
+ data: data
+ })
+}
+
+
+// h5微信支付获取微信授权地址
+const getAuthUrl = (url) => {
+ return request({
+ url : 'auth/get_auth_url',
+ data: {
+ url
+ }
+ })
+}
+
+// h5掉起微信支付的前置获取相关的签名信息
+const wpayH5Info = (data) => {
+ return request({
+ url : 'auth/jssdk',
+ data: data
+ })
+}
+
+//获取openid地址-web
+const unionpay = (data) => {
+ return request({
+ url : 'unionpay/openid',
+ data: data
+ })
+}
+
+//领取银联权益优惠券
+const unionCode = (data) => {
+ return request({
+ url : 'unionpay/union_openid',
+ data: data
+ })
+}
+
+// 权益 单订单支付
+const rightsSingle = (orderid) => {
+ return request({
+ url : 'payments/order',
+ data: {
+ orderid
+ }
+ })
+}
+
+// h5掉起微信支付的前置获取相关的签名信息
+// const fridayPayH5 = (url, data) => {
+// return request({
+// url : 'payments/welfare/wechat',
+// method: "POST",
+// data: data
+// })
+// }
+
+// H5 权益支付
+// const wechatH5 = (data) => {
+// return request({
+// url : 'payments/wechat',
+// method: "POST",
+// data: data
+// })
+// }
+
+const h5Pay = (url, data) => {
+ return request({
+ url: url,
+ method: "POST",
+ data
+ })
+}
+
+export {
+ index,
+ classify,
+ rightStore,
+ washcarUrl,
+ washcarBuy,
+ washcarCreate,
+ getAuthUrl,
+ wpayH5Info,
+ unionpay,
+ unionCode,
+ rightsSingle,
+ h5Pay
+}
\ No newline at end of file
diff --git a/本时生活H5/apis/interfaces/subscribe.js b/本时生活H5/apis/interfaces/subscribe.js
new file mode 100644
index 0000000..5398fde
--- /dev/null
+++ b/本时生活H5/apis/interfaces/subscribe.js
@@ -0,0 +1,27 @@
+
+/**
+ * 手太欠
+ * 愿这世界都如故事里一样 美好而动人~
+ */
+import request from '../request'
+
+// 业务信息
+const business = (type) => {
+ return request({
+ url: "business/" + type
+ })
+}
+
+// 提交预约
+const create = (data) => {
+ return request({
+ url: "business/create",
+ method: "POST",
+ data: data
+ })
+}
+
+export {
+ business,
+ create
+}
diff --git a/本时生活H5/apis/interfaces/unicom.js b/本时生活H5/apis/interfaces/unicom.js
new file mode 100644
index 0000000..c86b9b3
--- /dev/null
+++ b/本时生活H5/apis/interfaces/unicom.js
@@ -0,0 +1,33 @@
+/**
+ * 手太欠
+ * 愿这世界都如故事里一样 美好而动人~
+ */
+import request from '../request'
+
+const index = (data) => {
+ return request({
+ url: 'activity/unicoms'
+ })
+}
+
+// 校园活动确认订单
+const buy = (data) => {
+ return request({
+ url : "activity/unicoms/buy",
+ data: data
+ })
+}
+
+// 校园活动提交订单
+const buySubmit = (data) => {
+ return request({
+ url : "activity/unicoms/buy",
+ method : "POST",
+ data : data
+ })
+}
+export {
+ index,
+ buy,
+ buySubmit
+}
\ No newline at end of file
diff --git a/本时生活H5/apis/interfaces/user.js b/本时生活H5/apis/interfaces/user.js
new file mode 100644
index 0000000..7957c2b
--- /dev/null
+++ b/本时生活H5/apis/interfaces/user.js
@@ -0,0 +1,419 @@
+
+/**
+ * 手太欠
+ * 愿这世界都如故事里一样 美好而动人~
+ */
+
+import request from '../request.js'
+
+// 活动权益内容
+const index = () => {
+ return request({
+ url: 'user'
+ })
+}
+
+// 卡券详情
+const couponinfo = (data) => {
+ return request({
+ url: 'coupons/show',
+ data: data
+ })
+}
+
+// 卡券二维码
+const qrcode = (coupon_id) => {
+ return request({
+ url: 'coupons/qrcode',
+ data: {
+ coupon_id
+ }
+ })
+}
+
+// 卡券条形码
+const barcode = (coupon_id) => {
+ return request({
+ url: 'coupons/' + coupon_id + '/barcode'
+ })
+}
+
+// 卡券列表
+const coupon = (status) => {
+ return request({
+ url: 'coupons?status=' + status
+ })
+}
+
+// 卡券分组
+const couponArr = (data) => {
+ return request({
+ url: 'coupons/list',
+ data: data
+ })
+}
+
+// 积分账变记录
+const logs = (data) => {
+ return request({
+ url: 'account/logs',
+ data: data
+ })
+}
+
+// 订单收益列表
+const profits = (data) => {
+ return request({
+ url: 'data/profits',
+ data: data
+ })
+}
+
+// 订单收益列表-下级明细
+const profitsNext = (data) => {
+ return request({
+ url: 'data/profitlogs',
+ data: data
+ })
+}
+
+// 积分卡激活
+const cards = (data) => {
+ return request({
+ url: 'user/cards/activate',
+ method: "POST",
+ data: data
+ })
+}
+
+// 冻结列表
+const ungrants = (type) => {
+ return request({
+ url: 'account/newungrants',
+ data: {
+ type
+ }
+ })
+}
+
+// 洗车券-获取跳转地址
+const washcarCoupon = (coupon) => {
+ return request({
+ url: 'washcar/' + coupon + "/info",
+ method: "POST"
+ })
+}
+
+//权益商品订单列表
+const orders = (data) => {
+ return request({
+ url: 'orders/index',
+ data: data
+ })
+}
+
+//权益订单列表
+const ordersCoupons = (data) => {
+ return request({
+ url: 'orders/coupons',
+ data: data
+ })
+}
+
+//取消兑换订单
+const cancel = (orderid) => {
+ return request({
+ url: 'orders/cancel?orderid=' + orderid,
+ method: "POST"
+ })
+}
+
+// 福利商品订单列表
+const welfare = (data) => {
+ return request({
+ url: 'welfares/orders',
+ data: data
+ })
+}
+
+// 福利券订单列表
+const welfareCoupons = (data) => {
+ return request({
+ url: 'welfares/coupons',
+ data: data
+ })
+}
+
+// 福利取消订单
+const welfaresCancel = (orderid) => {
+ return request({
+ url: 'welfares/orders/cancel?orderid=' + orderid,
+ method: "POST"
+ })
+}
+
+//权益订单详情
+const show = (orderid) => {
+ return request({
+ url: 'orders/show',
+ data: {
+ orderid
+ }
+ })
+}
+
+//周五福利订单详情
+const welfaresShow = (orderid) => {
+ return request({
+ url: 'welfares/orders/show',
+ data: {
+ orderid
+ }
+ })
+}
+
+// 头像上传+昵称修改
+const upload = (data) => {
+ return request({
+ url: 'user/setting/info',
+ method: "POST",
+ data: data
+ })
+}
+
+// 发送短信
+const send = (data) => {
+ return request({
+ url: 'sms/send',
+ method: "POST",
+ data: data
+ })
+}
+
+// 设置支付密码
+const setPassword = (data) => {
+ return request({
+ url: 'user/setting/set_password',
+ method: "POST",
+ data: data
+ })
+}
+
+// 修改支付密码
+const changePassword = (data) => {
+ return request({
+ url: 'user/setting/change_password',
+ method: "POST",
+ data: data
+ })
+}
+
+// 重置支付密码
+const resetPassword = (data) => {
+ return request({
+ url: 'user/setting/reset_password',
+ method: "POST",
+ data: data
+ })
+}
+
+//门店列表
+const stores = (data) => {
+ return request({
+ url: 'coupons/new_stores',
+ method: "POST",
+ data: data
+ })
+}
+
+//门店详情
+const storesShow = (data) => {
+ return request({
+ url: 'coupons/store/show',
+ data: data
+ })
+}
+
+//省市区
+const areas = (psn) => {
+ return request({
+ url: 'areas/children?psn=' + psn
+ })
+}
+
+// 2021-07-28新增
+// 我的收益
+const myProfit = () => {
+ return request({
+ url: 'data/index'
+ })
+}
+
+// 我的收益-收益报表
+const myIncome = (month) => {
+ return request({
+ url: 'data/income',
+ data:{
+ month
+ }
+ })
+}
+
+// 我的收益-收益报表 + 我的收益-我的团队
+const profitUrl = (url, data) => {
+ return request({
+ url: url,
+ data: data
+ })
+}
+
+// 提现前置账户信息
+const withdraws = () => {
+ return request({
+ url: 'withdraws/create'
+ })
+}
+
+// 提现记录列表
+const withdrawsList = (data) => {
+ return request({
+ url: 'user/withdraws',
+ data: data
+ })
+}
+
+// 提现表单填写
+const withdrawsForm = (data) => {
+ return request({
+ url: 'withdraws',
+ method: "POST",
+ data: data
+ })
+}
+
+// 权益详细列表
+const profitLogs = (data) => {
+ return request({
+ url: 'data/logs',
+ data: data
+ })
+}
+
+// 转账获取积分账户分类
+const transfers = () => {
+ return request({
+ url: 'user/transfers'
+ })
+}
+
+// 转账提交表单
+const transfersForm = (data) => {
+ return request({
+ url: 'user/transfers',
+ method: "POST",
+ data: data
+ })
+}
+
+// 校验转账的手机号码
+const ajaxTel = (mobile) => {
+ return request({
+ url: 'ajax/user',
+ data: {
+ mobile
+ }
+ })
+}
+
+// 产品分享 - 新增
+const productList = (page) => {
+ return request({
+ url: 'shares/goods',
+ data: {
+ page
+ }
+ })
+}
+
+const productInfo = (right) => {
+ return request({
+ url: 'shares/goods/' + right
+ })
+}
+
+const productPoster = (right) => {
+ return request({
+ url: 'shares/goods/' + right + '/poster'
+ })
+}
+
+// 我的分享
+const myshare = (data) => {
+ return request({
+ url: 'user/share',
+ data: data
+ })
+}
+
+// 产品分享二维码+储值分享二维码
+const publicCode = (data) => {
+ return request({
+ url: 'user/share/goods',
+ data: data
+ })
+}
+
+// 储值分享
+const storedList = () => {
+ return request({
+ url: 'shares/recharges'
+ })
+}
+
+
+export {
+ index,
+ couponinfo,
+ qrcode,
+ barcode,
+ coupon,
+ couponArr,
+ logs,
+ profits,
+ profitsNext,
+ cards,
+ ungrants,
+ washcarCoupon,
+ orders,
+ ordersCoupons,
+ cancel,
+ welfare,
+ welfareCoupons,
+ welfaresCancel,
+ show,
+ welfaresShow,
+ upload,
+ send,
+ setPassword,
+ changePassword,
+ resetPassword,
+ stores,
+ storesShow,
+ areas,
+ myProfit,
+ myIncome,
+ profitUrl,
+ withdraws,
+ withdrawsList,
+ withdrawsForm,
+ profitLogs,
+ transfers,
+ transfersForm,
+ ajaxTel,
+ productList,
+ productInfo,
+ productPoster,
+ myshare,
+ publicCode,
+ storedList
+}
\ No newline at end of file
diff --git a/本时生活H5/apis/interfaces/welfares.js b/本时生活H5/apis/interfaces/welfares.js
new file mode 100644
index 0000000..4690efb
--- /dev/null
+++ b/本时生活H5/apis/interfaces/welfares.js
@@ -0,0 +1,40 @@
+
+/**
+ * 手太欠
+ * 愿这世界都如故事里一样 美好而动人~
+ */
+
+import request from '../request.js'
+
+// 周五福利日详情
+const index = (welfare_id, data) => {
+ return request({
+ url : 'welfare/' + welfare_id,
+ data: data
+ })
+}
+
+
+//周五福利-获取支付信息
+const fridayInfo = (welfare_id, data) => {
+ return request({
+ url : 'welfare/order/' + welfare_id,
+ data: data
+ })
+}
+
+// 周五福利 单订单支付
+const welfSingle = (orderid) => {
+ return request({
+ url : 'payments/welfare',
+ data: {
+ orderid
+ }
+ })
+}
+
+export {
+ index,
+ fridayInfo,
+ welfSingle
+}
\ No newline at end of file
diff --git a/本时生活H5/apis/interfaces/wxJSDK.js b/本时生活H5/apis/interfaces/wxJSDK.js
new file mode 100644
index 0000000..9064224
--- /dev/null
+++ b/本时生活H5/apis/interfaces/wxJSDK.js
@@ -0,0 +1,17 @@
+/**
+ * 手太欠
+ * 愿这世界都如故事里一样 美好而动人~
+ */
+
+import request from '../request'
+
+const config = (data) => {
+ return request({
+ url : 'auth/jssdk',
+ data: data
+ })
+}
+
+export {
+ config
+}
diff --git a/本时生活H5/apis/request.js b/本时生活H5/apis/request.js
new file mode 100644
index 0000000..495bd76
--- /dev/null
+++ b/本时生活H5/apis/request.js
@@ -0,0 +1,139 @@
+
+/**
+ * 手太欠
+ * 愿这世界都如故事里一样 美好而动人~
+ */
+
+import store from '@/store'
+
+// 基础配置
+// https://lifetest.ysd-bs.com //测试地址
+// https://card.ysd-bs.com
+const config = {
+ apiUrl : 'https://lifetest.ysd-bs.com/api/',
+ timeout: 60000
+}
+
+let loginHintState = false
+
+// 网络请求
+const request = (parameter) => {
+ // 检查url配置
+ if(parameter.url === 'undefined' || parameter.url === '') {
+ uni.showToast({
+ title: '请求地址不能为空',
+ icon : 'none'
+ })
+ return
+ }
+
+ // 注入header
+ config.header = {
+ 'Accept': 'application/json',
+ 'Authorization': store.getters.getToken || ''
+ }
+ // 请求实例
+ return new Promise((resolve, reject) => {
+ uni.request({
+ url : config.apiUrl + parameter.url,
+ timeout : config.timeout,
+ header : config.header || {},
+ data : parameter.data || {},
+ method : parameter.method || 'GET',
+ success: res => {
+ if (res.header.Authorization) {
+ updateToken('token', res.header.Authorization)
+ }
+ if (res.statusCode === 200) {
+ const resolveData = res.data
+ if(resolveData.status_code === 200) {
+ resolve(resolveData.data)
+ return
+ }
+ if (resolveData.status_code === 401) {
+ loginHint()
+ return
+ }
+ reject(resolveData)
+ return
+ }
+ errToast(res.statusCode)
+ }
+ })
+ })
+}
+
+// 处理一些http请求错误提示
+const errToast = (code) => {
+ switch (code){
+ case 404:
+ uni,uni.showToast({
+ title: code + '接口不存在,请联系系统管理员',
+ icon : none
+ })
+ break;
+ case 405:
+ uni.showToast({
+ title: code + '请检查接口请求方式错误',
+ icon :'none'
+ })
+ break;
+ case 500:
+ uni.showToast({
+ title: code + '服务端错误,请检查服务器信息',
+ icon : 'none'
+ })
+ break;
+ }
+}
+
+// 更新token
+const updateToken = (token) => {
+ store.commit('setToken', token)
+}
+
+// 处理登录提示
+const loginHint = () => {
+ if(loginHintState) return
+ if(!loginHintState) loginHintState = true
+ updateToken('')
+ uni.showModal({
+ title:'登录提示',
+ content:'您的登录信息已过期,请重新登录',
+ confirmColor:'#33f800',
+ showCancel:false,
+ success: res => {
+ console.log(getApp().globalData.envType)
+ loginHintState = false
+ if(res.confirm){
+ if(getApp().globalData.envType == 'campusEnv') {
+ uni.reLaunch({
+ url: '/pages/campus/signin'
+ })
+ } else if(getApp().globalData.envType == 'oilEnv') {
+ uni.reLaunch({
+ url: '/pages/oil/signin'
+ })
+ }else if(getApp().globalData.envType == 'unicomEnv') {
+ uni.reLaunch({
+ url: '/pages/unicom/signin'
+ })
+ }else if(getApp().globalData.envType == 'drawEnv') {
+ uni.reLaunch({
+ url: '/pages/draw/signin'
+ })
+ }else if(getApp().globalData.envType == 'giftPEnv') {
+ uni.reLaunch({
+ url: '/pages/giftPack/signin'
+ })
+ }else {
+ uni.reLaunch({
+ url: '/pages/auth/login'
+ })
+ }
+ }
+ }
+ })
+}
+
+export default request
\ No newline at end of file
diff --git a/本时生活H5/js_sdk/ican-clipBoard/ican-clipBoard.js b/本时生活H5/js_sdk/ican-clipBoard/ican-clipBoard.js
new file mode 100644
index 0000000..f16c8f6
--- /dev/null
+++ b/本时生活H5/js_sdk/ican-clipBoard/ican-clipBoard.js
@@ -0,0 +1,41 @@
+/** clipboard.js v2.0.4**/
+!function(t,e){try{global.ClipboardJS=e();}catch(e){};"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.ClipboardJS=e():t.ClipboardJS=e()}(this,function(){return function(n){var o={};function r(t){if(o[t])return o[t].exports;var e=o[t]={i:t,l:!1,exports:{}};return n[t].call(e.exports,e,e.exports,r),e.l=!0,e.exports}
+ return r.m=n,r.c=o,r.d=function(t,e,n){r.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:n})},r.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},r.t=function(e,t){if(1&t&&(e=r(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(r.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)r.d(n,o,function(t){return e[t]}.bind(null,o));return n},r.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return r.d(e,"a",e),e},r.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},r.p="",r(r.s=0)}([function(t,e,n){"use strict";var r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},i=function(){function o(t,e){for(var n=0;ndata})
+ cb.on('success',function(res){success&&Types.isFunction(success)&&success(res)
+ complete&&Types.isFunction(complete)&&complete()
+ cb.off('error')
+ cb.off('success')
+ cb.destroy()})
+ cb.on('error',function(err){fail&&Types.isFunction(fail)&&fail(err)
+ complete&&Types.isFunction(complete)&&complete()
+ cb.off('error')
+ cb.off('success')
+ cb.destroy()})
+ cb.onClick(e)}
+//#endif
diff --git a/本时生活H5/main.js b/本时生活H5/main.js
new file mode 100644
index 0000000..4121ca7
--- /dev/null
+++ b/本时生活H5/main.js
@@ -0,0 +1,22 @@
+import Vue from 'vue'
+import App from './App'
+import store from './store'
+import { VueJsonp } from 'vue-jsonp'
+
+Vue.config.productionTip = false
+
+// Vue.config.ignoredElements = ['wx-open-subscribe']
+
+Vue.prototype.$store = store
+Vue.prototype.$wx = require('jweixin-module')
+App.mpType = 'app'
+
+
+
+// jsonp
+Vue.use(VueJsonp)
+
+const app = new Vue({
+ ...App
+})
+app.$mount()
diff --git a/本时生活H5/manifest.json b/本时生活H5/manifest.json
new file mode 100644
index 0000000..4ea6d2e
--- /dev/null
+++ b/本时生活H5/manifest.json
@@ -0,0 +1,106 @@
+{
+ "name" : "本时生活H5",
+ "appid" : "__UNI__8D6D53E",
+ "description" : "",
+ "versionName" : "1.0.0",
+ "versionCode" : "100",
+ "transformPx" : false,
+ /* 5+App特有相关 */
+ "app-plus" : {
+ "usingComponents" : true,
+ "nvueStyleCompiler" : "uni-app",
+ "compilerVersion" : 3,
+ "splashscreen" : {
+ "alwaysShowBeforeRender" : true,
+ "waiting" : true,
+ "autoclose" : true,
+ "delay" : 0
+ },
+ /* 模块配置 */
+ "modules" : {
+ "Payment" : {}
+ },
+ /* 应用发布信息 */
+ "distribute" : {
+ /* android打包配置 */
+ "android" : {
+ "permissions" : [
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ "",
+ ""
+ ]
+ },
+ /* ios打包配置 */
+ "ios" : {},
+ /* SDK配置 */
+ "sdkConfigs" : {
+ "payment" : {
+ "weixin" : {
+ "__platform__" : [ "android" ],
+ "appid" : "wx0e1082e90b9aa6a5",
+ "UniversalLinks" : ""
+ }
+ },
+ "ad" : {}
+ }
+ }
+ },
+ /* 快应用特有相关 */
+ "quickapp" : {},
+ "permission" : {
+ "scope.userLocation" : {
+ "desc" : "你的位置信息将用于小程序位置接口的效果展示"
+ }
+ },
+ /* 小程序特有相关 */
+ "mp-weixin" : {
+ "appid" : "wx8e424dbdc443381f",
+ "setting" : {
+ "urlCheck" : false,
+ "postcss" : false
+ },
+ "usingComponents" : true,
+ "permission" : {
+ "scope.userLocation" : {
+ "desc" : "你的位置信息将用于小程序位置接口的效果展示"
+ }
+ }
+ },
+ "mp-alipay" : {
+ "usingComponents" : true
+ },
+ "mp-baidu" : {
+ "usingComponents" : true
+ },
+ "mp-toutiao" : {
+ "usingComponents" : true
+ },
+ "uniStatistics" : {
+ "enable" : false
+ },
+ "h5" : {
+ "router" : {
+ "mode" : "history"
+ },
+ "sdkConfigs" : {
+ "maps" : {
+ "qqmap" : {
+ "key" : "4KYBZ-LCAKF-QWOJN-NIDNZ-FZHLZ-2XFW7"
+ }
+ }
+ },
+ "title" : "本时生活"
+ }
+}
diff --git a/本时生活H5/node_modules/.yarn-integrity b/本时生活H5/node_modules/.yarn-integrity
new file mode 100644
index 0000000..251f517
--- /dev/null
+++ b/本时生活H5/node_modules/.yarn-integrity
@@ -0,0 +1,16 @@
+{
+ "systemParams": "win32-x64-93",
+ "modulesFolders": [
+ "node_modules"
+ ],
+ "flags": [],
+ "linkedModules": [],
+ "topLevelPatterns": [
+ "jweixin-module@^1.6.0"
+ ],
+ "lockfileEntries": {
+ "jweixin-module@^1.6.0": "https://registry.yarnpkg.com/jweixin-module/-/jweixin-module-1.6.0.tgz#4a7ea614083e3c9c3f49e2fdc2bb882cfa58dfcd"
+ },
+ "files": [],
+ "artifacts": {}
+}
\ No newline at end of file
diff --git a/本时生活H5/node_modules/jweixin-module/README.md b/本时生活H5/node_modules/jweixin-module/README.md
new file mode 100644
index 0000000..7c91d7b
--- /dev/null
+++ b/本时生活H5/node_modules/jweixin-module/README.md
@@ -0,0 +1,30 @@
+# jweixin-module
+
+微信JS-SDK
+
+## 安装
+
+### NPM
+
+```shell
+npm install jweixin-module --save
+```
+
+### UMD
+
+```http
+https://unpkg.com/jweixin-module/out/index.js
+```
+
+## 使用
+
+```js
+var jweixin = require('jweixin-module')
+jweixin.ready(function(){
+ // TODO
+});
+```
+
+## 完整API
+
+>[微信JS-SDK说明文档](https://mp.weixin.qq.com/wiki?t=resource/res_main&id=mp1421141115)
diff --git a/本时生活H5/node_modules/jweixin-module/lib/index.js b/本时生活H5/node_modules/jweixin-module/lib/index.js
new file mode 100644
index 0000000..1b5014b
--- /dev/null
+++ b/本时生活H5/node_modules/jweixin-module/lib/index.js
@@ -0,0 +1 @@
+!function(e,n){"function"==typeof define&&(define.amd||define.cmd)?define(function(){return n(e)}):n(e,!0)}(window,function(o,e){if(!o.jWeixin){var n,c={config:"preVerifyJSAPI",onMenuShareTimeline:"menu:share:timeline",onMenuShareAppMessage:"menu:share:appmessage",onMenuShareQQ:"menu:share:qq",onMenuShareWeibo:"menu:share:weiboApp",onMenuShareQZone:"menu:share:QZone",previewImage:"imagePreview",getLocation:"geoLocation",openProductSpecificView:"openProductViewWithPid",addCard:"batchAddCard",openCard:"batchViewCard",chooseWXPay:"getBrandWCPayRequest",openEnterpriseRedPacket:"getRecevieBizHongBaoRequest",startSearchBeacons:"startMonitoringBeacons",stopSearchBeacons:"stopMonitoringBeacons",onSearchBeacons:"onBeaconsInRange",consumeAndShareCard:"consumedShareCard",openAddress:"editAddress"},a=function(){var e={};for(var n in c)e[c[n]]=n;return e}(),i=o.document,t=i.title,r=navigator.userAgent.toLowerCase(),s=navigator.platform.toLowerCase(),d=!(!s.match("mac")&&!s.match("win")),u=-1!=r.indexOf("wxdebugger"),l=-1!=r.indexOf("micromessenger"),p=-1!=r.indexOf("android"),f=-1!=r.indexOf("iphone")||-1!=r.indexOf("ipad"),m=(n=r.match(/micromessenger\/(\d+\.\d+\.\d+)/)||r.match(/micromessenger\/(\d+\.\d+)/))?n[1]:"",g={initStartTime:L(),initEndTime:0,preVerifyStartTime:0,preVerifyEndTime:0},h={version:1,appId:"",initTime:0,preVerifyTime:0,networkType:"",isPreVerifyOk:1,systemType:f?1:p?2:-1,clientVersion:m,url:encodeURIComponent(location.href)},v={},S={_completes:[]},y={state:0,data:{}};O(function(){g.initEndTime=L()});var I=!1,_=[],w={config:function(e){B("config",v=e);var t=!1!==v.check;O(function(){if(t)M(c.config,{verifyJsApiList:C(v.jsApiList),verifyOpenTagList:C(v.openTagList)},function(){S._complete=function(e){g.preVerifyEndTime=L(),y.state=1,y.data=e},S.success=function(e){h.isPreVerifyOk=0},S.fail=function(e){S._fail?S._fail(e):y.state=-1};var t=S._completes;return t.push(function(){!function(){if(!(d||u||v.debug||m<"6.0.2"||h.systemType<0)){var i=new Image;h.appId=v.appId,h.initTime=g.initEndTime-g.initStartTime,h.preVerifyTime=g.preVerifyEndTime-g.preVerifyStartTime,w.getNetworkType({isInnerInvoke:!0,success:function(e){h.networkType=e.networkType;var n="https://open.weixin.qq.com/sdk/report?v="+h.version+"&o="+h.isPreVerifyOk+"&s="+h.systemType+"&c="+h.clientVersion+"&a="+h.appId+"&n="+h.networkType+"&i="+h.initTime+"&p="+h.preVerifyTime+"&u="+h.url;i.src=n}})}}()}),S.complete=function(e){for(var n=0,i=t.length;n`
+
+ - `jsonp: (url: string, param?: IJsonpParam, timeout?: number) => Promise`
+
+## API
+
+### IJsonpParam
+
+IJsonpParam is the type of param for jsonp function.
+
+```ts
+/**
+ * JSONP parameter declaration.
+ */
+interface IJsonpParam {
+ /**
+ * Callback query name.
+ * This param is used to define the query name of the callback function.
+ *
+ * @example
+ * // The request url will be "/some-url?myCallback=jsonp_func&myCustomUrlParam=veryNice"
+ * jsonp('/some-url', {
+ * callbackQuery: 'myCallback',
+ * callbackName: 'jsonp_func',
+ * myCustomUrlParam: 'veryNice'
+ * })
+ *
+ * @default callback
+ */
+ callbackQuery?: string
+
+ /**
+ * Callback function name.
+ * This param is used to define the jsonp function name.
+ *
+ * @example
+ * // The request url will be "/some-url?myCallback=jsonp_func&myCustomUrlParam=veryNice"
+ * jsonp('/some-url', {
+ * callbackQuery: 'myCallback',
+ * callbackName: 'jsonp_func',
+ * myCustomUrlParam: 'veryNice'
+ * })
+ *
+ * @default jsonp_ + randomStr()
+ */
+ callbackName?: string
+
+ /**
+ * Custom data.
+ */
+ [key: string]: any
+}
+```
+
+## Example
+
+```ts
+import Vue from 'vue'
+import { VueJsonp } from 'vue-jsonp'
+
+Vue.use(VueJsonp)
+
+const vm = new Vue()
+const { code, data, message } = await vm.$jsonp<{
+ code: number,
+ message: string,
+ data: {
+ id: number,
+ nickname: string
+ }
+}>('/my-awesome-url', {
+ name: 'MyName', age: 20
+})
+
+assert(code === 0)
+assert(message === 'ok')
+assert(data.id === 1)
+assert(data.nickname === 'John Smith')
+```
+
+```ts
+import { jsonp } from 'vue-jsonp'
+
+const result = await jsonp('/my-awesome-url')
+assert(result === 'such a jsonp')
+```
+
+## License
+
+MIT
diff --git a/本时生活H5/node_modules/vue-jsonp/dist/index.d.ts b/本时生活H5/node_modules/vue-jsonp/dist/index.d.ts
new file mode 100644
index 0000000..ec621c7
--- /dev/null
+++ b/本时生活H5/node_modules/vue-jsonp/dist/index.d.ts
@@ -0,0 +1,73 @@
+/**
+ * Vue Jsonp.
+ * # Carry Your World #
+ *
+ * @author: LancerComet
+ * @license: MIT
+ */
+import { PluginObject } from 'vue/types/plugin';
+declare module 'vue/types/vue' {
+ interface Vue {
+ $jsonp: typeof jsonp;
+ }
+}
+/**
+ * Vue JSONP.
+ */
+declare const VueJsonp: PluginObject;
+/**
+ * JSONP function.
+ *
+ * @param { string } url Target URL address.
+ * @param { IJsonpParam } param Querying params object.
+ * @param { number } timeout Timeout setting (ms).
+ *
+ * @example
+ * jsonp('/url', {
+ * callbackQuery: ''
+ * callbackName: '',
+ * name: 'LancerComet',
+ * age: 26
+ * }, 1000)
+ */
+declare function jsonp(url: string, param?: IJsonpParam, timeout?: number): Promise;
+export { VueJsonp, jsonp };
+/**
+ * JSONP parameter declaration.
+ */
+interface IJsonpParam {
+ /**
+ * Callback query name.
+ * This param is used to define the query name of the callback function.
+ *
+ * @example
+ * // The request url will be "/some-url?myCallback=jsonp_func&myCustomUrlParam=veryNice"
+ * jsonp('/some-url', {
+ * callbackQuery: 'myCallback',
+ * callbackName: 'jsonp_func',
+ * myCustomUrlParam: 'veryNice'
+ * })
+ *
+ * @default callback
+ */
+ callbackQuery?: string;
+ /**
+ * Callback function name.
+ * This param is used to define the jsonp function name.
+ *
+ * @example
+ * // The request url will be "/some-url?myCallback=jsonp_func&myCustomUrlParam=veryNice"
+ * jsonp('/some-url', {
+ * callbackQuery: 'myCallback',
+ * callbackName: 'jsonp_func',
+ * myCustomUrlParam: 'veryNice'
+ * })
+ *
+ * @default jsonp_ + randomStr()
+ */
+ callbackName?: string;
+ /**
+ * Custom data.
+ */
+ [key: string]: any;
+}
diff --git a/本时生活H5/node_modules/vue-jsonp/dist/index.esm.js b/本时生活H5/node_modules/vue-jsonp/dist/index.esm.js
new file mode 100644
index 0000000..893bec4
--- /dev/null
+++ b/本时生活H5/node_modules/vue-jsonp/dist/index.esm.js
@@ -0,0 +1,8 @@
+function e(t,n){t=t.replace(/=/g,"");var o=[];switch(n.constructor){case String:case Number:case Boolean:o.push(encodeURIComponent(t)+"="+encodeURIComponent(n));break;case Array:n.forEach((function(n){o=o.concat(e(t+"[]=",n))}));break;case Object:Object.keys(n).forEach((function(r){var a=n[r];o=o.concat(e(t+"["+r+"]",a))}))}return o}function t(e){var n=[];return e.forEach((function(e){"string"==typeof e?n.push(e):n=n.concat(t(e))})),n}
+/**
+ * Vue Jsonp.
+ * # Carry Your World #
+ *
+ * @author: LancerComet
+ * @license: MIT
+ */var n={install:function(e){e.prototype.$jsonp=o}};function o(n,o,r){if(void 0===o&&(o={}),"string"!=typeof n)throw new Error('[Vue-jsonp] Type of param "url" is not string.');if("object"!=typeof o||!o)throw new Error("[Vue-jsonp] Invalid params, should be an object.");return r="number"==typeof r?r:5e3,new Promise((function(a,c){var u="string"==typeof o.callbackQuery?o.callbackQuery:"callback",i="string"==typeof o.callbackName?o.callbackName:"jsonp_"+(Math.floor(1e5*Math.random())*Date.now()).toString(16);o[u]=i,delete o.callbackQuery,delete o.callbackName;var s=[];Object.keys(o).forEach((function(t){s=s.concat(e(t,o[t]))}));var l=t(s).join("&"),f=function(){p(),clearTimeout(m),c({status:400,statusText:"Bad Request"})},p=function(){b.removeEventListener("error",f)},d=function(){document.body.removeChild(b),delete window[i]},m=null;r>-1&&(m=setTimeout((function(){p(),d(),c({statusText:"Request Timeout",status:408})}),r)),window[i]=function(e){clearTimeout(m),p(),d(),a(e)};var b=document.createElement("script");b.addEventListener("error",f),b.src=n+(/\?/.test(n)?"&":"?")+l,document.body.appendChild(b)}))}export{n as VueJsonp,o as jsonp};
diff --git a/本时生活H5/node_modules/vue-jsonp/dist/index.js b/本时生活H5/node_modules/vue-jsonp/dist/index.js
new file mode 100644
index 0000000..c5e0aee
--- /dev/null
+++ b/本时生活H5/node_modules/vue-jsonp/dist/index.js
@@ -0,0 +1,8 @@
+!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports):"function"==typeof define&&define.amd?define(["exports"],t):t((e="undefined"!=typeof globalThis?globalThis:e||self).VueJsonp={})}(this,(function(e){"use strict";function t(e,o){e=e.replace(/=/g,"");var n=[];switch(o.constructor){case String:case Number:case Boolean:n.push(encodeURIComponent(e)+"="+encodeURIComponent(o));break;case Array:o.forEach((function(o){n=n.concat(t(e+"[]=",o))}));break;case Object:Object.keys(o).forEach((function(r){var c=o[r];n=n.concat(t(e+"["+r+"]",c))}))}return n}function o(e){var t=[];return e.forEach((function(e){"string"==typeof e?t.push(e):t=t.concat(o(e))})),t}
+/**
+ * Vue Jsonp.
+ * # Carry Your World #
+ *
+ * @author: LancerComet
+ * @license: MIT
+ */var n={install:function(e){e.prototype.$jsonp=r}};function r(e,n,r){if(void 0===n&&(n={}),"string"!=typeof e)throw new Error('[Vue-jsonp] Type of param "url" is not string.');if("object"!=typeof n||!n)throw new Error("[Vue-jsonp] Invalid params, should be an object.");return r="number"==typeof r?r:5e3,new Promise((function(c,a){var i="string"==typeof n.callbackQuery?n.callbackQuery:"callback",s="string"==typeof n.callbackName?n.callbackName:"jsonp_"+(Math.floor(1e5*Math.random())*Date.now()).toString(16);n[i]=s,delete n.callbackQuery,delete n.callbackName;var u=[];Object.keys(n).forEach((function(e){u=u.concat(t(e,n[e]))}));var f=o(u).join("&"),l=function(){p(),clearTimeout(b),a({status:400,statusText:"Bad Request"})},p=function(){m.removeEventListener("error",l)},d=function(){document.body.removeChild(m),delete window[s]},b=null;r>-1&&(b=setTimeout((function(){p(),d(),a({statusText:"Request Timeout",status:408})}),r)),window[s]=function(e){clearTimeout(b),p(),d(),c(e)};var m=document.createElement("script");m.addEventListener("error",l),m.src=e+(/\?/.test(e)?"&":"?")+f,document.body.appendChild(m)}))}e.VueJsonp=n,e.jsonp=r,Object.defineProperty(e,"__esModule",{value:!0})}));
diff --git a/本时生活H5/node_modules/vue-jsonp/dist/utils/index.d.ts b/本时生活H5/node_modules/vue-jsonp/dist/utils/index.d.ts
new file mode 100644
index 0000000..6b2f521
--- /dev/null
+++ b/本时生活H5/node_modules/vue-jsonp/dist/utils/index.d.ts
@@ -0,0 +1,20 @@
+/**
+ * Generate random string.
+ *
+ * @return { string }
+ */
+declare function randomStr(): string;
+/**
+ * Format params into querying string.
+ *
+ * @return {string[]}
+ */
+declare function formatParams(queryKey: string, value: any): string[];
+/**
+ * Flat querys.
+ *
+ * @param {string[] | (string[])[]} array
+ * @returns
+ */
+declare function flatten(array: string[] | (string[])[]): string[];
+export { formatParams, flatten, randomStr };
diff --git a/本时生活H5/node_modules/vue-jsonp/package.json b/本时生活H5/node_modules/vue-jsonp/package.json
new file mode 100644
index 0000000..11300f4
--- /dev/null
+++ b/本时生活H5/node_modules/vue-jsonp/package.json
@@ -0,0 +1,80 @@
+{
+ "_from": "vue-jsonp",
+ "_id": "vue-jsonp@2.0.0",
+ "_inBundle": false,
+ "_integrity": "sha512-Mzd9GNeuKP5hHFDWZNMWOsCuMILSkA6jo2l4A02wheFz3qqBzH7aSEFTey1BRCZCLizlaf1EqJ5YUtF392KspA==",
+ "_location": "/vue-jsonp",
+ "_phantomChildren": {},
+ "_requested": {
+ "type": "tag",
+ "registry": true,
+ "raw": "vue-jsonp",
+ "name": "vue-jsonp",
+ "escapedName": "vue-jsonp",
+ "rawSpec": "",
+ "saveSpec": null,
+ "fetchSpec": "latest"
+ },
+ "_requiredBy": [
+ "#USER",
+ "/"
+ ],
+ "_resolved": "https://registry.npmjs.org/vue-jsonp/-/vue-jsonp-2.0.0.tgz",
+ "_shasum": "3bfac56bb72941a2511c11e1a123b876f03427f7",
+ "_spec": "vue-jsonp",
+ "_where": "H:\\工作项目\\BSlive\\本时生活H5",
+ "author": {
+ "name": "LancerComet",
+ "email": "chw644@hotmail.com"
+ },
+ "bugs": {
+ "url": "https://github.com/LancerComet/vue-jsonp/issues"
+ },
+ "bundleDependencies": false,
+ "deprecated": false,
+ "description": "A tiny library for handling JSONP request.",
+ "devDependencies": {
+ "@types/expect-puppeteer": "^4.4.3",
+ "@types/jest": "^26.0.14",
+ "@types/jest-environment-puppeteer": "^4.4.0",
+ "@types/puppeteer": "^3.0.2",
+ "jest": "^26.4.2",
+ "jest-puppeteer": "^4.4.0",
+ "puppeteer": "^5.3.1",
+ "rollup": "^2.28.2",
+ "rollup-plugin-cleanup": "^3.2.1",
+ "rollup-plugin-delete": "^2.0.0",
+ "rollup-plugin-terser": "^7.0.2",
+ "rollup-plugin-typescript2": "^0.27.3",
+ "ts-jest": "^26.4.1",
+ "tslint": "^6.1.3",
+ "typescript": "^4.0.3",
+ "vue": "^2.6.12"
+ },
+ "files": [
+ "dist/",
+ "index.d.ts",
+ "README.md"
+ ],
+ "homepage": "https://github.com/LancerComet/vue-jsonp#readme",
+ "keywords": [
+ "Vue",
+ "JSONP"
+ ],
+ "license": "MIT",
+ "main": "./dist/index.js",
+ "module": "./dist/index.esm.js",
+ "name": "vue-jsonp",
+ "repository": {
+ "type": "git",
+ "url": "git+https://github.com/LancerComet/vue-jsonp.git"
+ },
+ "scripts": {
+ "build": "rollup -c",
+ "prepublish": "npm run test",
+ "pretest": "npm run build",
+ "preversion": "npm run test",
+ "test": "jest"
+ },
+ "version": "2.0.0"
+}
diff --git a/本时生活H5/package-lock.json b/本时生活H5/package-lock.json
new file mode 100644
index 0000000..bfec92c
--- /dev/null
+++ b/本时生活H5/package-lock.json
@@ -0,0 +1,16 @@
+{
+ "requires": true,
+ "lockfileVersion": 1,
+ "dependencies": {
+ "jweixin-module": {
+ "version": "1.6.0",
+ "resolved": "https://registry.npmjs.org/jweixin-module/-/jweixin-module-1.6.0.tgz",
+ "integrity": "sha512-dGk9cf+ipipHmtzYmKZs5B2toX+p4hLyllGLF6xuC8t+B05oYxd8fYoaRz0T30U2n3RUv8a4iwvjhA+OcYz52w=="
+ },
+ "vue-jsonp": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/vue-jsonp/-/vue-jsonp-2.0.0.tgz",
+ "integrity": "sha512-Mzd9GNeuKP5hHFDWZNMWOsCuMILSkA6jo2l4A02wheFz3qqBzH7aSEFTey1BRCZCLizlaf1EqJ5YUtF392KspA=="
+ }
+ }
+}
diff --git a/本时生活H5/pages.json b/本时生活H5/pages.json
new file mode 100644
index 0000000..4774d38
--- /dev/null
+++ b/本时生活H5/pages.json
@@ -0,0 +1,735 @@
+{
+ "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
+ {
+ "path": "pages/auth/login",
+ "style": {
+ "navigationBarTitleText": "",
+ "enablePullDownRefresh": false,
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationStyle": "custom",
+ "app-plus": {
+ "animationType": "slide-in-bottom"
+ }
+ }
+ },{
+ "path": "pages/auth/register",
+ "style": {
+ "navigationBarTitleText": "",
+ "enablePullDownRefresh": false,
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationStyle": "custom",
+ "app-plus": {
+ "animationType": "slide-in-bottom"
+ }
+ }
+ },{
+ "path": "pages/auth/password",
+ "style": {
+ "navigationBarTitleText": "",
+ "enablePullDownRefresh": false,
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationStyle": "custom",
+ "app-plus": {
+ "animationType": "slide-in-bottom"
+ }
+ }
+ },{
+ "path": "pages/auth/psssword_forget",
+ "style": {
+ "navigationBarTitleText": "",
+ "enablePullDownRefresh": false,
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationStyle": "custom",
+ "app-plus": {
+ "animationType": "slide-in-bottom"
+ }
+ }
+ },{
+ "path": "pages/auth/password_login",
+ "style": {
+ "navigationBarTitleText": "",
+ "enablePullDownRefresh": false,
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "navigationStyle": "custom",
+ "app-plus": {
+ "animationType": "slide-in-bottom"
+ }
+ }
+ },{
+ "path": "pages/index/index",
+ "style": {
+ "navigationBarTitleText":"首页",
+ "navigationStyle": "custom",
+ "navigationBarTextStyle": "white",
+ "navigationStyle": "custom"
+ }
+ },{
+ "path": "pages/user/index",
+ "style": {
+ "navigationBarTitleText": "个人中心",
+ "navigationStyle": "custom",
+ "navigationBarBackgroundColor": "#FFFFFF",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path": "pages/rights/index",
+ "style": {
+ "navigationBarTitleText": "卡券权益",
+ "navigationStyle": "custom",
+ "navigationBarBackgroundColor": "#000000",
+ "navigationBarTextStyle": "white",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path": "pages/webView/webView",
+ "style": {
+ "navigationBarTitleText": "",
+ "navigationStyle": "custom",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path": "pages/subscribe/upgrade/upgrade",
+ "style": {
+ "navigationBarTitleText": "5G升级包预约",
+ "navigationStyle": "custom",
+ "navigationBarBackgroundColor":"#2a211e",
+ "navigationBarTextStyle": "white",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path": "pages/subscribe/combo/combo",
+ "style": {
+ "navigationBarTitleText": "冰激凌预约",
+ "navigationStyle": "custom",
+ "navigationBarBackgroundColor":"#2a211e",
+ "navigationBarTextStyle": "white",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path": "pages/switchcity/switchcity",
+ "style": {
+ "navigationBarTitleText": "切换城市",
+ "navigationStyle": "custom",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path": "pages/welfare/welfare",
+ "style": {
+ "navigationBarTitleText": "支付详情",
+ "navigationStyle": "custom",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path": "pages/classify/classify",
+ "style": {
+ "navigationBarTitleText": "卡券权益",
+ "navigationStyle": "custom",
+ "navigationBarBackgroundColor": "#000000",
+ "navigationBarTextStyle": "white",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path": "pages/account/account",
+ "style": {
+ "navigationBarTitleText": "账变记录",
+ "navigationStyle": "custom",
+ "navigationBarBackgroundColor": "#dfb48b",
+ "navigationBarTextStyle": "white",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path": "pages/account/myBalance",
+ "style": {
+ "navigationBarTitleText": "收益账户",
+ "navigationStyle": "custom",
+ "navigationBarBackgroundColor": "#dfb48b",
+ "navigationBarTextStyle": "white",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path": "pages/account/myBalance_list",
+ "style": {
+ "navigationBarTitleText": "收益列表",
+ "navigationStyle": "custom",
+ "navigationBarBackgroundColor": "#dfb48b",
+ "navigationBarTextStyle": "white",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path": "pages/account/myProfit",
+ "style": {
+ "navigationBarTitleText": "我的收益",
+ "navigationStyle": "custom",
+ "navigationBarBackgroundColor": "#dfb48b",
+ "navigationBarTextStyle": "white",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path": "pages/account/myProfit_list",
+ "style": {
+ "navigationBarTitleText": "权益列表",
+ "navigationStyle": "custom",
+ "navigationBarBackgroundColor": "#dfb48b",
+ "navigationBarTextStyle": "white",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path": "pages/account/withdrawal_record",
+ "style": {
+ "navigationBarTitleText": "提现记录",
+ "navigationStyle": "custom",
+ "navigationBarBackgroundColor": "#dfb48b",
+ "navigationBarTextStyle": "white",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path": "pages/account/withdrawal_form",
+ "style": {
+ "navigationBarTitleText": "提现申请",
+ "navigationStyle": "custom",
+ "navigationBarBackgroundColor": "#dfb48b",
+ "navigationBarTextStyle": "white",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path": "pages/account/recharge",
+ "style": {
+ "navigationBarTitleText": "充值中心",
+ "navigationStyle": "custom",
+ "navigationBarBackgroundColor": "#dfb48b",
+ "navigationBarTextStyle": "white",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path": "pages/frozen/frozen",
+ "style": {
+ "navigationBarTitleText": "待发放",
+ "navigationStyle": "custom",
+ "navigationBarBackgroundColor": "#24315d",
+ "navigationBarTextStyle": "white",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path": "pages/favour/favour",
+ "style": {
+ "navigationBarTitleText": "积分赠与",
+ "navigationStyle": "custom",
+ "navigationBarBackgroundColor": "#24315d",
+ "navigationBarTextStyle": "white",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path": "pages/coupon/coupon",
+ "style": {
+ "navigationBarTitleText": "我的卡券",
+ "navigationStyle": "custom",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path": "pages/couponDetails/couponDetails",
+ "style": {
+ "navigationBarTitleText": "卡券详情",
+ "navigationStyle": "custom",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path": "pages/couponArr/couponArr",
+ "style": {
+ "navigationBarTitleText": "我的卡券",
+ "navigationStyle": "custom",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path": "pages/packet/packet",
+ "style": {
+ "navigationBarTitleText": "联通红包",
+ "navigationStyle": "custom",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path": "pages/activate/activate",
+ "style": {
+ "navigationBarTitleText": "卡激活",
+ "navigationStyle": "custom",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path": "pages/site/index",
+ "style": {
+ "navigationBarTitleText": "我的地址",
+ "navigationStyle": "custom",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path": "pages/site/create",
+ "style": {
+ "navigationBarTitleText": "新增地址",
+ "navigationStyle": "custom",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path": "pages/site/edit",
+ "style": {
+ "navigationBarTitleText": "编辑地址",
+ "navigationStyle": "custom",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path": "pages/washcar/washcar",
+ "style": {
+ "navigationBarTitleText": "",
+ "navigationStyle": "custom",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path": "pages/car/index",
+ "style": {
+ "navigationBarTitleText": "亿时代",
+ "navigationStyle": "custom",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path": "pages/order/order",
+ "style": {
+ "navigationBarTitleText": "我的订单",
+ "navigationStyle": "custom",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path": "pages/order/orderData",
+ "style": {
+ "navigationBarTitleText": "订单详情",
+ "navigationStyle": "custom",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path": "pages/setUpForm/index",
+ "style": {
+ "navigationBarTitleText": "个人设置",
+ "navigationStyle": "custom",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path": "pages/setUpForm/form_submit",
+ "style": {
+ "navigationBarTitleText": "个人设置",
+ "navigationStyle": "custom",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path": "pages/payPassword/index",
+ "style": {
+ "navigationBarTitleText": "支付密码",
+ "navigationStyle": "custom",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path": "pages/payPassword/setup",
+ "style": {
+ "navigationBarTitleText": "支付密码设置",
+ "navigationStyle": "custom",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path": "pages/payPassword/forget",
+ "style": {
+ "navigationBarTitleText": "找回密码",
+ "navigationStyle": "custom",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path": "pages/cashier/index",
+ "style": {
+ "navigationBarTitleText": "收银台",
+ "navigationStyle": "custom",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path": "pages/campus/index",
+ "style": {
+ "navigationBarTitleText": "校园迎新活动",
+ "navigationStyle": "custom",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path": "pages/campus/buy",
+ "style": {
+ "navigationBarTitleText": "活动购买",
+ "navigationStyle": "custom",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path": "pages/campus/myCoupon",
+ "style": {
+ "navigationBarTitleText": "我的优惠券",
+ "navigationStyle": "custom",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path": "pages/campus/details",
+ "style": {
+ "navigationBarTitleText": "活动详情",
+ "navigationStyle": "custom",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path": "pages/campus/signin",
+ "style": {
+ "navigationBarTitleText": "校园迎新活动 登录",
+ "navigationStyle": "custom",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path": "pages/campus/myList",
+ "style": {
+ "navigationBarTitleText": "优惠券列表",
+ "navigationStyle": "custom",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path": "pages/store/index",
+ "style": {
+ "navigationBarTitleText": "门店列表",
+ "navigationStyle": "custom",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path": "pages/store/details",
+ "style": {
+ "navigationBarTitleText": "门店详情",
+ "navigationStyle": "custom",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path" : "pages/campus/register",
+ "style" : {
+ "navigationBarTitleText": "快速注册",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path" : "pages/campus/password",
+ "style" : {
+ "navigationBarTitleText": "忘记密码",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path" : "pages/campus/setPassword",
+ "style" : {
+ "navigationBarTitleText": "重置密码",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path" : "pages/userGoods/index",
+ "style" : {
+ "navigationBarTitleText": "产品分享",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path" : "pages/userGoods/goodsDet",
+ "style" : {
+ "navigationBarTitleText": "产品详情",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path" : "pages/userGoods/goodsCode",
+ "style" : {
+ "navigationBarTitleText": "产品分享-分享码",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path" : "pages/code/code",
+ "style" : {
+ "navigationBarTitleText": "我的邀请码",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path" : "pages/userStored/index",
+ "style" : {
+ "navigationBarTitleText": "储值分享",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path" : "pages/userStored/storedCode",
+ "style" : {
+ "navigationBarTitleText": "储值分享-分享码",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path": "pages/oil/index",
+ "style": {
+ "navigationBarTitleText": "联通优惠活动",
+ "navigationStyle": "custom",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path": "pages/oil/buy",
+ "style": {
+ "navigationBarTitleText": "活动购买",
+ "navigationStyle": "custom",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path": "pages/oil/myCoupon",
+ "style": {
+ "navigationBarTitleText": "我的优惠券",
+ "navigationStyle": "custom",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path": "pages/oil/details",
+ "style": {
+ "navigationBarTitleText": "活动详情",
+ "navigationStyle": "custom",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path": "pages/oil/signin",
+ "style": {
+ "navigationBarTitleText": "联通优惠活动 登录",
+ "navigationStyle": "custom",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path": "pages/oil/myList",
+ "style": {
+ "navigationBarTitleText": "优惠券列表",
+ "navigationStyle": "custom",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path" : "pages/oil/register",
+ "style" : {
+ "navigationBarTitleText": "快速注册",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path" : "pages/oil/password",
+ "style" : {
+ "navigationBarTitleText": "忘记密码",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path" : "pages/oil/setPassword",
+ "style" : {
+ "navigationBarTitleText": "重置密码",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path": "pages/giftPack/index",
+ "style": {
+ "navigationBarTitleText": "本时礼包活动",
+ "navigationStyle": "custom",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path": "pages/giftPack/user",
+ "style": {
+ "navigationBarTitleText": "我的",
+ "navigationStyle": "custom",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path": "pages/giftPack/buy",
+ "style": {
+ "navigationBarTitleText": "活动购买",
+ "navigationStyle": "custom",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path": "pages/giftPack/myCoupon",
+ "style": {
+ "navigationBarTitleText": "我的优惠券",
+ "navigationStyle": "custom",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path": "pages/giftPack/details",
+ "style": {
+ "navigationBarTitleText": "优惠券详情",
+ "navigationStyle": "custom",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path": "pages/giftPack/signin",
+ "style": {
+ "navigationBarTitleText": "本时礼包活动 登录",
+ "navigationStyle": "custom",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path" : "pages/giftPack/register",
+ "style" : {
+ "navigationBarTitleText": "快速注册",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path" : "pages/giftPack/password",
+ "style" : {
+ "navigationBarTitleText": "忘记密码",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path" : "pages/giftPack/setPassword",
+ "style" : {
+ "navigationBarTitleText": "重置密码",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path" : "pages/giftPack/logs",
+ "style" : {
+ "navigationBarTitleText": "积分记录",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path": "pages/unicom/index",
+ "style": {
+ "navigationBarTitleText": "中国联通回馈活动",
+ "navigationStyle": "custom",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path": "pages/unicom/buy",
+ "style": {
+ "navigationBarTitleText": "活动购买",
+ "navigationStyle": "custom",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path": "pages/unicom/details",
+ "style": {
+ "navigationBarTitleText": "活动详情",
+ "navigationStyle": "custom",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path": "pages/unicom/signin",
+ "style": {
+ "navigationBarTitleText": "中国联通回馈活动 登录",
+ "navigationStyle": "custom",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path" : "pages/unicom/register",
+ "style" : {
+ "navigationBarTitleText": "快速注册",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path" : "pages/unicom/password",
+ "style" : {
+ "navigationBarTitleText": "忘记密码",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path" : "pages/unicom/setPassword",
+ "style" : {
+ "navigationBarTitleText": "重置密码",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path": "pages/draw/index",
+ "style": {
+ "navigationBarTitleText": "抽奖活动",
+ "navigationStyle": "custom",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path": "pages/draw/signin",
+ "style": {
+ "navigationBarTitleText": "抽奖活动 登录",
+ "navigationStyle": "custom",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path" : "pages/draw/register",
+ "style" : {
+ "navigationBarTitleText": "抽奖活动 快速注册",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path" : "pages/draw/password",
+ "style" : {
+ "navigationBarTitleText": "抽奖活动 忘记密码",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path" : "pages/draw/setPassword",
+ "style" : {
+ "navigationBarTitleText": "抽奖活动 重置密码",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path" : "pages/draw/myCoupon",
+ "style" : {
+ "navigationBarTitleText": "我的优惠券",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path" : "pages/draw/couponDetails",
+ "style" : {
+ "navigationBarTitleText": "优惠券详情",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path" : "pages/draw/order",
+ "style" : {
+ "navigationBarTitleText": "我的订单",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path" : "pages/draw/orderDetails",
+ "style" : {
+ "navigationBarTitleText": "订单详情",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path" : "pages/draw/logs",
+ "style" : {
+ "navigationBarTitleText": "抽奖记录",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path" : "pages/draw/choose",
+ "style" : {
+ "navigationBarTitleText": "选择产品",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path" : "pages/draw/right",
+ "style" : {
+ "navigationBarTitleText": "购买权益",
+ "enablePullDownRefresh": false
+ }
+ },{
+ "path" : "pages/draw/success",
+ "style" : {
+ "navigationBarTitleText": "兑换成功",
+ "enablePullDownRefresh": false
+ }
+ }
+ ],
+ "globalStyle": {
+ "navigationBarTextStyle": "black",
+ "navigationBarTitleText": "uni-app",
+ "navigationBarBackgroundColor": "#F8F8F8",
+ "backgroundColor": "#F8F8F8",
+ "navigationStyle":"custom"
+ },
+ "tabBar": {
+ "color": "#9b9f9f",
+ "selectedColor": "#000000",
+ "backgroundColor": "#FFFFFF",
+ "borderStyle": "#ddd",
+ "list": [{
+ "pagePath": "pages/index/index",
+ "text": "首页",
+ "iconPath": "static/tabBarIcon/00.png",
+ "selectedIconPath": "static/tabBarIcon/00_active.png"
+ }, {
+ "pagePath": "pages/user/index",
+ "text": "我的",
+ "iconPath": "static/tabBarIcon/01.png",
+ "selectedIconPath": "static/tabBarIcon/01_active.png"
+ }]
+ }
+}
diff --git a/本时生活H5/pages/account/account.vue b/本时生活H5/pages/account/account.vue
new file mode 100644
index 0000000..8804729
--- /dev/null
+++ b/本时生活H5/pages/account/account.vue
@@ -0,0 +1,300 @@
+
+
+
+
+
+ 白金账户余额
+ 钻石账户余额
+
+
+
+ 可用余额
+ {{ balanceData.number }}
+ 可用余额,入账记录
+
+
+
+ 待发放
+ {{ balanceData.blockeds }}
+ 立即查询
+
+
+
+
+
+
+
+ 账变记录
+
+
+ {{ balanceData.screenArray[balanceData.screenIndex].name }}
+
+
+
+
+
+
+
+
+ {{ item.channel == 'in' ? '入' : '出' }}{{ item.title }}
+
+
+ {{ item.variable }}
+
+
+
+
+
+ {{ item.channel == 'in' ? '有效期:' : '扣除时间:' }}
+ {{ item.created_at }}{{ item.channel == 'in' ? ' 至 ' + item.expired_at : '' }}
+
+
+
+
+
+
+
+
+ 抱歉,目前暂无内容~
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/account/myBalance.vue b/本时生活H5/pages/account/myBalance.vue
new file mode 100644
index 0000000..0d2b7ee
--- /dev/null
+++ b/本时生活H5/pages/account/myBalance.vue
@@ -0,0 +1,298 @@
+
+
+
+
+
+ 余额(积分)
+
+ ¥{{ number }}
+
+
+ 我的收益
+
+
+
+
+
+ 提现
+
+
+
+
+
+
+
+ 提现记录
+
+
+
+
+
+
+
+ 收益订单列表
+
+
+
+ {{ item.right }}
+
+
+ {{ item.user.nickname }}{{ item.user.username }}
+
+
+
+ {{ item.created_at }}
+
+
+
+
+
+ 加载中...
+
+
+ 没有更多了~
+
+
+
+
+
+
+ 抱歉,目前暂无内容~
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/account/myBalance_list.vue b/本时生活H5/pages/account/myBalance_list.vue
new file mode 100644
index 0000000..1507657
--- /dev/null
+++ b/本时生活H5/pages/account/myBalance_list.vue
@@ -0,0 +1,155 @@
+
+
+
+
+
+
+
+
+
+
+ {{ item.rule.title }}
+
+
+ {{ item.created_at }}
+
+
+
+ {{ item.bonus > 0 ? '+' : '' }}{{ item.bonus }}
+
+
+
+
+
+
+
+
+
+ 抱歉,目前暂无内容~
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/account/myProfit.vue b/本时生活H5/pages/account/myProfit.vue
new file mode 100644
index 0000000..48ff898
--- /dev/null
+++ b/本时生活H5/pages/account/myProfit.vue
@@ -0,0 +1,1030 @@
+
+
+
+
+ {{ profitUser.nickname }}的收益
+
+
+
+
+
+
+
+ 我在本时生活总收益!
+
+
+
+ 余额
+ ¥{{profitUser.account.balance}}
+
+ 提现
+
+
+
+
+ 分享产品收益
+
+
+ {{ profitFinance.share_product }}
+
+
+
+
+ 团队产品消费收益
+
+
+ {{ profitFinance.team_product }}
+
+
+
+
+ 分享储值收益
+
+
+ {{ profitFinance.share_Recharge }}
+
+
+
+
+ 团队储值收益
+
+
+ {{ profitFinance.team_recharge }}
+
+
+
+
+ 达人总数
+
+
+ {{profitCount.leader}}
+
+
+
+
+ 用户总数
+
+
+ {{ profitCount.users }}
+
+
+
+
+
+
+ 总收益
+
+
+ {{ profitFinance.all_profit }}
+
+
+
+
+ 已提现
+
+
+ {{profitFinance.withdrawed}}
+
+
+
+
+ 提现中
+
+
+ {{ profitFinance.withdrawing }}
+
+
+
+
+
+
+
+ 收益报表
+ 收益订单
+ 我的团队
+
+
+
+
+
+
+
+ 本月收益统计
+
+
+
+ {{ incometMonths[monthsIndex].name }}
+
+
+
+
+
+
+
+ 分享产品收益
+
+
+ {{ incometFfinance.share_product.this_month }}
+
+
+
+ {{ incometFfinance.share_product.text }}
+
+
+
+
+ 团队产品消费收益
+
+
+ {{incometFfinance.team_product.this_month}}
+
+
+
+ {{ incometFfinance.team_product.text }}
+
+
+
+
+ 分享储值收益
+
+
+ {{incometFfinance.share_recharge.this_month}}
+
+
+
+ {{ incometFfinance.share_recharge.text }}
+
+
+
+
+ 团队储值收益
+
+
+ {{ incometFfinance.team_recharge.this_month }}
+
+
+
+ {{ incometFfinance.team_recharge.text }}
+
+
+
+
+
+
+ 新增团队统计
+
+
+
+
+ 新增达人数
+
+
+ {{ incometCount.leader }}
+
+
+
+
+ 新增用户数
+
+
+ {{ incometCount.users }}
+
+
+
+
+
+
+ 消费订单统计
+
+
+
+
+ 产品消费
+
+
+ {{ incometOrder.product }}
+
+
+
+
+ 储值消费
+
+
+ {{ incometOrder.recharge }}
+
+
+
+
+
+
+
+
+
+
+ 共{{ publicData.length }}条订单
+
+
+
+ {{ ordersWay[ordersIndex].name }}
+
+
+
+
+
+
+
+
+
+ {{item.type == 'recharge' ? '储值' : '产品'}}
+
+ 订单号:{{ item.order.orderid }}
+
+
+
+ {{ item.name }}
+
+
+
+
+ 姓名:{{ item.user.nickname }}
+
+
+ 联系电话:{{ item.user.username }}
+
+
+ 佣金:¥{{ item.bonus }}
+
+
+ 当前状态:{{ item.order.status }}
+
+
+
+
+
+
+ 加载中...
+
+
+ 没有更多了~
+
+
+
+
+
+
+ 抱歉,目前暂无数据~
+
+
+
+
+
+
+
+
+ 共{{ publicData.length }}人
+
+
+
+ {{ teamWay[teamIndex].name }}
+
+
+
+
+
+ 创收排行
+
+
+
+
+
+ 达人姓名
+ 联系电话
+ 身份
+ 创收额
+
+
+
+
+
+ {{ item.user.nickname }}
+
+
+ {{ item.user.username }}
+
+
+ {{ item.user.identity.identity_name }}
+
+
+ {{ item.balance }}
+
+
+
+
+
+
+ 加载中...
+
+
+ 没有更多了~
+
+
+
+
+
+
+
+
+ 抱歉,目前暂无数据~
+
+
+
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/account/myProfit_list.vue b/本时生活H5/pages/account/myProfit_list.vue
new file mode 100644
index 0000000..721edeb
--- /dev/null
+++ b/本时生活H5/pages/account/myProfit_list.vue
@@ -0,0 +1,178 @@
+
+
+
+
+
+ {{ item.name }}
+ ¥{{ item.bonus }}
+
+
+
+ 时间
+ {{ item.created_at }}
+
+
+ 状态
+ {{ item.order.status }}
+
+
+
+ 收益来源
+
+
+
+ {{ item.source.nickname }}
+ {{ item.source.username }}
+
+
+
+
+
+
+ 加载中...
+
+
+ 没有更多了~
+
+
+
+
+
+
+ 抱歉,目前暂无记录~
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/account/recharge.vue b/本时生活H5/pages/account/recharge.vue
new file mode 100644
index 0000000..1262c77
--- /dev/null
+++ b/本时生活H5/pages/account/recharge.vue
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/account/withdrawal_form.vue b/本时生活H5/pages/account/withdrawal_form.vue
new file mode 100644
index 0000000..15c6de8
--- /dev/null
+++ b/本时生活H5/pages/account/withdrawal_form.vue
@@ -0,0 +1,167 @@
+
+
+
+
+ {{ balance }}
+ (我的账户余额)
+
+
+
+ 当前现金金额低于2元不可提现,每次提现的额度不低于2元,提现手续费按照到账周期收取
+
+
+
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/account/withdrawal_record.vue b/本时生活H5/pages/account/withdrawal_record.vue
new file mode 100644
index 0000000..6f8a1f3
--- /dev/null
+++ b/本时生活H5/pages/account/withdrawal_record.vue
@@ -0,0 +1,203 @@
+
+
+
+
+ 提现列表
+
+
+
+ {{ WithdrawalWay[WithdrawalIndex].name }}
+
+
+
+
+
+
+
+
+ {{ item.way }}
+ +{{ item.take }}
+
+
+
+ 提现时间
+ {{ item.create_at }}
+
+
+ 提现状态
+
+ {{ item.status.status_text }}
+
+
+
+
+
+
+ 加载中...
+
+
+ 没有更多了~
+
+
+
+
+
+
+ 抱歉,目前暂无记录~
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/activate/activate.vue b/本时生活H5/pages/activate/activate.vue
new file mode 100644
index 0000000..af07f46
--- /dev/null
+++ b/本时生活H5/pages/activate/activate.vue
@@ -0,0 +1,196 @@
+
+
+
+
+
+
+ 消费红包【储值卡】
+
+
+ 温馨提示:
+
+ 尊敬的会员:储值后,将开启您,愉快的消费之旅!
+
+
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/auth/login.vue b/本时生活H5/pages/auth/login.vue
new file mode 100644
index 0000000..084af26
--- /dev/null
+++ b/本时生活H5/pages/auth/login.vue
@@ -0,0 +1,277 @@
+
+
+
+
+
+
+
+ 欢迎使用,本时生活
+
+
+
+
+
+
+
+
+
+
+
+
+ 密码登录
+
+
+ 账户注册
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/本时生活H5/pages/auth/password.vue b/本时生活H5/pages/auth/password.vue
new file mode 100644
index 0000000..1a62694
--- /dev/null
+++ b/本时生活H5/pages/auth/password.vue
@@ -0,0 +1,170 @@
+
+
+
+ 跳过,暂不设置
+
+
+
+
+ 设置登录密码
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/本时生活H5/pages/auth/password_login.vue b/本时生活H5/pages/auth/password_login.vue
new file mode 100644
index 0000000..9cffd71
--- /dev/null
+++ b/本时生活H5/pages/auth/password_login.vue
@@ -0,0 +1,203 @@
+
+
+
+
+
+
+
+ 欢迎使用,本时生活
+
+
+
+
+
+
+
+
+
+ 忘记密码?
+
+
+ 短信快捷登录
+
+
+ 账户注册
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/本时生活H5/pages/auth/psssword_forget.vue b/本时生活H5/pages/auth/psssword_forget.vue
new file mode 100644
index 0000000..5a08479
--- /dev/null
+++ b/本时生活H5/pages/auth/psssword_forget.vue
@@ -0,0 +1,198 @@
+
+
+
+
+ 身份验证
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/本时生活H5/pages/auth/register.vue b/本时生活H5/pages/auth/register.vue
new file mode 100644
index 0000000..4f86bc3
--- /dev/null
+++ b/本时生活H5/pages/auth/register.vue
@@ -0,0 +1,286 @@
+
+
+
+
+
+
+
+ 欢迎使用,本时生活
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 短信快捷登录
+
+
+ 密码登录
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/本时生活H5/pages/campus/buy.vue b/本时生活H5/pages/campus/buy.vue
new file mode 100644
index 0000000..4b45622
--- /dev/null
+++ b/本时生活H5/pages/campus/buy.vue
@@ -0,0 +1,680 @@
+
+
+
+
+
+ 共:{{ rightData.num }}件商品
+ 实付:¥{{ rightData.total }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ rightData.detail.four_title }}
+
+
+
+
+
+
+
+
+
+
+ {{ rightData.detail.five_title }}
+
+
+ ¥{{ rightData.detail.price }}
+
+ -
+
+ +
+
+
+
+
+
+
+
+
+
+
+ 提交方式
+
+
+
+ {{ buyWay.platformCp[buyWay.platIndex].name }}
+
+
+
+
+
+
+
+
+
+
+ {{ rightData.addressSee.name }}{{ rightData.addressSee.mobile }}
+ {{ rightData.addressSee.all_address }}
+
+
+
+
+
+
+
+ 添加收货地址
+
+
+
+
+
+
+ 快递运费
+ ¥{{ rightData.freight }}
+
+
+
+
+
+
+
+
+
+
+ 购买前请仔细阅读使用须知、内容介绍
+
+
+
+
+ 购买须知
+
+
+
+
+ 内容介绍
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/campus/details.vue b/本时生活H5/pages/campus/details.vue
new file mode 100644
index 0000000..b92410d
--- /dev/null
+++ b/本时生活H5/pages/campus/details.vue
@@ -0,0 +1,539 @@
+
+
+
+
+
+
+ {{ details.name }}
+
+
+ 有效期: {{ details.startTime }} - {{ details.endTime }}
+
+
+
+ 活动来源 : {{ details.activity_name }}
+
+ 劵码
+
+
+
+ {{ details.code }}
+
+
+
+
+ 请出示以上券码给网点工作人员
+
+
+
+
+
+
+
+ 适用门店
+
+
+ 查看所有
+
+
+
+
+
+ 您尚未授权本时生活开启定位服务
+ 不能看到附近的商家哦,点击下方按钮开启
+
+
+
+
+
+
+
+
+
+ {{ item.title }}
+
+
+ {{ item.address }}
+ {{ item.km }}
+
+
+
+
+
+
+
+
+
+ 暂无门店
+
+
+
+
+
+
+
+
+ 使用须知
+
+
+
+
+
+
+
+
+
+ 内容介绍
+
+
+
+
+
+
+
+
+
+
+
+
+ 校园迎新活动
+
+ 亿时代 - 本时生活
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/campus/index.vue b/本时生活H5/pages/campus/index.vue
new file mode 100644
index 0000000..21956f9
--- /dev/null
+++ b/本时生活H5/pages/campus/index.vue
@@ -0,0 +1,323 @@
+
+
+
+
+
+
+
+
+
+ {{ item.title }}{{ item.name }}
+
+
+
+
+
+
+
+ 电影院优惠券
+
+
+
+
+ {{ item.three_title || '-' }}{{ item.two_title || '-'}}
+
+
+ {{item.label || '-'}}
+
+ {{btnItem}}
+
+
+
+
+ {{ items }}
+
+
+
+
+
+
+
+ 洗浴优惠券
+
+
+
+
+ {{ item.three_title || '-' }}{{ item.two_title || '-'}}
+
+
+ {{item.label || '-'}}
+
+ {{btnItem}}
+
+
+
+ {{ items }}
+
+
+
+
+
+
+
+ 超市券
+
+
+
+
+ {{ item.three_title || '-' }}{{ item.two_title || '-'}}
+
+
+ {{item.label || '-'}}
+
+ {{btnItem}}
+
+
+
+
+ {{ items }}
+
+
+
+
+
+
+
+ 餐饮优惠券
+
+
+
+
+ {{ item.three_title || '-' }}{{ item.two_title || '-'}}
+
+
+ {{item.label || '-'}}
+
+ {{btnItem}}
+
+
+
+
+ {{ items }}
+
+
+
+
+ 我的优惠券立即查看
+
+
+
+
+
+
diff --git a/本时生活H5/pages/campus/myCoupon.vue b/本时生活H5/pages/campus/myCoupon.vue
new file mode 100644
index 0000000..206715c
--- /dev/null
+++ b/本时生活H5/pages/campus/myCoupon.vue
@@ -0,0 +1,653 @@
+
+
+
+
+ 尊敬的{{ userTel }}, 欢迎参加校园迎新活动
+
+
+
+
+
+
+
+ {{ item.title }}
+ ({{count.init}}张)
+ ({{count.used}}张)
+ ({{ count.pass }}张)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ item.name }}
+ 活动来源: {{item.activity_name}}
+ {{ item.startTime }} 至 {{ item.endTime }}
+ 使用时间:{{item.used_at}}
+
+
+
+ 去使用
+
+
+
+
+
+
+
+ 查看全部{{ item.count }}张卡券
+
+
+
+
+
+
+
+
+
+ 暂无优惠券
+
+
+
+
+
+
+
+
+
+
+
+ 关注公众号
+
+
+
+
+
+
+
+
+ 长按识别图中二维码
+
+
+
+ 本时生活平台优惠活动
+
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/campus/myList.vue b/本时生活H5/pages/campus/myList.vue
new file mode 100644
index 0000000..3daf397
--- /dev/null
+++ b/本时生活H5/pages/campus/myList.vue
@@ -0,0 +1,315 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ item.name }}
+ 活动来源: {{item.activity_name}}
+ {{ item.startTime }} 至 {{ item.endTime }}
+ 使用时间:{{item.used_at}}
+
+
+
+ 去使用
+
+
+
+
+
+
+
+
+
+
+
+ 暂无优惠券
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/campus/password.vue b/本时生活H5/pages/campus/password.vue
new file mode 100644
index 0000000..827a6fa
--- /dev/null
+++ b/本时生活H5/pages/campus/password.vue
@@ -0,0 +1,231 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/campus/register.vue b/本时生活H5/pages/campus/register.vue
new file mode 100644
index 0000000..5960bde
--- /dev/null
+++ b/本时生活H5/pages/campus/register.vue
@@ -0,0 +1,238 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/campus/setPassword.vue b/本时生活H5/pages/campus/setPassword.vue
new file mode 100644
index 0000000..4875b5f
--- /dev/null
+++ b/本时生活H5/pages/campus/setPassword.vue
@@ -0,0 +1,169 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/campus/signin.vue b/本时生活H5/pages/campus/signin.vue
new file mode 100644
index 0000000..f194a20
--- /dev/null
+++ b/本时生活H5/pages/campus/signin.vue
@@ -0,0 +1,259 @@
+
+
+
+
+
+
+ {{passwordLogin ? '验证码登录': '密码登录'}}
+ 快速注册
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/campus/购买备份.vue b/本时生活H5/pages/campus/购买备份.vue
new file mode 100644
index 0000000..b286935
--- /dev/null
+++ b/本时生活H5/pages/campus/购买备份.vue
@@ -0,0 +1,522 @@
+
+
+
+
+
+
+ 校园活动
+
+
+
+
+ {{ detail.title }}
+
+
+ {{ detail.type_no }}
+ 复制
+
+
+
+
+
+ 购买须知
+
+
+ 限时活动
+
+
+ ¥{{ detail.price }}
+
+
+ ¥{{ detail.price }}
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+ +
+
+
+
+
+
+
+ 在线支付
+
+
+ 沃支付
+ 微信支付
+
+
+
+
+
+
+
+ ¥{{ detail.price }}
+
+
+
+
+
+
+
+ ¥{{ amount }}
+
+
+
+
+
+
+
+
+ 内容介绍
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 购买须知
+
+
+
+
+ 我知道了
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/car/index.vue b/本时生活H5/pages/car/index.vue
new file mode 100644
index 0000000..5eddc64
--- /dev/null
+++ b/本时生活H5/pages/car/index.vue
@@ -0,0 +1,909 @@
+
+
+
+
+
+ 共:{{ dataInfo.num }}件商品
+ 实付:¥{{ dataInfo.amount }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ dataInfo.detail.title }}
+
+
+
+
+
+
+
+
+
+ {{ dataInfo.detail.title }}
+
+
+ ¥{{ dataInfo.detail.price }}
+
+
+ -
+
+ +
+
+
+
+
+
+
+
+
+ {{ dataInfo.detail.attribute.form_type }}
+ -¥{{ dataInfo.score }}
+
+
+ {{dataInfo.detail.attribute.form_pay}}
+ ¥{{ dataInfo.amount }}
+
+
+
+
+
+
+ 提交方式
+
+
+
+ {{ plat.platformCp[plat.platIndex].name }}
+
+
+
+
+
+
+
+
+
+
+ {{ dataInfo.detail.address.name }}{{ dataInfo.detail.mobile }}
+ {{ dataInfo.detail.address.all_address }}
+
+
+
+
+
+
+
+ 添加收货地址
+
+
+
+
+
+
+ 快递运费
+ ¥{{ dataInfo.freight }}
+
+
+
+
+
+
+
+
+
+
+
+ 购买前请仔细阅读使用须知、内容介绍
+
+
+
+
+ 购买须知
+
+
+
+
+ 内容介绍
+
+
+
+
+
+
+
+
+
+
+
+
+ 请选择收货地址
+ 新增收货地址
+
+
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/cashier/index.vue b/本时生活H5/pages/cashier/index.vue
new file mode 100644
index 0000000..de0d755
--- /dev/null
+++ b/本时生活H5/pages/cashier/index.vue
@@ -0,0 +1,707 @@
+
+
+
+ 注:推荐使用沃支付,可在享优惠!
+
+
+
+ 支付类型线上支付
+
+
+
+
+ 中奖用户0元支付
+
+
+ 具体支付金额以页面显示为准
+
+
+
+
+ 付款金额
+
+
+ ¥{{ defaultPrice }}
+
+
+
+
+
+
+ 付款方式*
+
+
+
+
+
+
+ 沃支付支付
+
+
+
+
+
+
+
+
+ 沃支付支付
+
+
+
+
+
+
+ 微信支付
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/classify/classify.vue b/本时生活H5/pages/classify/classify.vue
new file mode 100644
index 0000000..559074b
--- /dev/null
+++ b/本时生活H5/pages/classify/classify.vue
@@ -0,0 +1,433 @@
+
+
+
+
+
+
+
+
+
+ {{ infoData.two_title }}
+
+
+ {{ infoData.three_title == null ? '' : infoData.three_title }}
+
+
+ {{ infoData.two_description }}
+
+
+
+
+
+
+
+
+
+ {{ noticeData }}
+
+
+
+
+
+ 卡券专区
+
+
+
+ {{ item.label }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ item.title }}
+ {{ item.subtitle }}
+
+
+
+
+
+
+ 抱歉, 暂无内容
+
+
+
+
+
+
+
+
+
+
+ 购买前请仔细阅读内容介绍
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/code/code.vue b/本时生活H5/pages/code/code.vue
new file mode 100644
index 0000000..9d56bb3
--- /dev/null
+++ b/本时生活H5/pages/code/code.vue
@@ -0,0 +1,374 @@
+
+
+
+
+
+
+
+ 每邀请一位好友注册成功后
+ 您将获得30元消费红包奖励
+
+
+
+
+ {{ userInfo.nickname }}
+
+
+
+
+ 邀好友享福利
+ 邀请好友加入本时生活
+
+
+ 生成海报
+
+
+
+
+
+
+
+
+
+
+
+
+ 扫码享福利
+ 邀请好友加入本时生活
+
+
+
+
+ 长按图片保存二维码
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/coupon/coupon.vue b/本时生活H5/pages/coupon/coupon.vue
new file mode 100644
index 0000000..ef3fc45
--- /dev/null
+++ b/本时生活H5/pages/coupon/coupon.vue
@@ -0,0 +1,322 @@
+
+
+
+
+
+ {{ item.title }}
+ ({{ couponData.count.init }}张)
+ ({{ couponData.count.used }}张)
+ ({{ couponData.count.pass }}张)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ item.name }}
+ {{ item.startTime }} 至 {{ item.endTime }}
+ 活动来源: {{ item.activity_name }}
+ 使用时间:{{ item.used_at }}
+
+
+
+ 去使用
+
+
+
+
+
+
+
+ 查看全部{{item.count}}张卡券
+
+
+
+
+
+
+
+
+
+ 暂无优惠券
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/couponArr/couponArr.vue b/本时生活H5/pages/couponArr/couponArr.vue
new file mode 100644
index 0000000..d13a87f
--- /dev/null
+++ b/本时生活H5/pages/couponArr/couponArr.vue
@@ -0,0 +1,202 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ item.name }}
+ {{ item.startTime }} 至 {{ item.endTime }}
+ 活动来源: {{ item.activity_name }}
+ 使用时间:{{ item.used_at }}
+
+
+
+ 去使用
+
+
+
+
+
+
+
+
+
+
+
+ 暂无优惠券
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/couponDetails/couponDetails.vue b/本时生活H5/pages/couponDetails/couponDetails.vue
new file mode 100644
index 0000000..f241f18
--- /dev/null
+++ b/本时生活H5/pages/couponDetails/couponDetails.vue
@@ -0,0 +1,387 @@
+
+
+
+
+
+
+ {{ coupon.details.name }}
+
+
+ 有效期: {{ coupon.details.startTime }} - {{ coupon.details.endTime }}
+
+
+ 活动来源 : {{ coupon.details.activity_name }}
+
+ 劵码
+
+
+
+ {{ coupon.details.code }}
+
+
+
+
+ 请出示以上券码给网点工作人员
+
+
+
+
+
+
+
+ 适用门店
+
+
+ 查看所有
+
+
+
+
+
+ 您尚未授权本时生活开启定位服务
+ 不能看到附近的商家哦,点击下方按钮开启
+
+
+
+
+
+
+
+
+
+ {{ item.title }}
+
+
+ {{ item.address }}
+ {{ item.km }}
+
+
+
+
+
+
+
+
+
+ 暂无门店
+
+
+
+
+
+
+
+
+
+ 使用须知
+
+
+
+
+
+
+
+
+
+
+ 内容介绍
+
+
+
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/draw/choose.vue b/本时生活H5/pages/draw/choose.vue
new file mode 100644
index 0000000..ae347d5
--- /dev/null
+++ b/本时生活H5/pages/draw/choose.vue
@@ -0,0 +1,515 @@
+
+
+
+
+
+
+ 选择商品兑换
+
+
+
+
+ radioChange(e,index,item)" v-for="(item, index) in goodsArr" :key="index">
+
+
+
+
+ {{item.title}}
+ 基于能监测健康的手环
+
+
+ ¥{{item.price}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{goodTitle}}{{goodPay == 0 ? '免费兑换' : '支付金额: ¥' + goodPrice}}
+
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/draw/couponDetails.vue b/本时生活H5/pages/draw/couponDetails.vue
new file mode 100644
index 0000000..db511d2
--- /dev/null
+++ b/本时生活H5/pages/draw/couponDetails.vue
@@ -0,0 +1,546 @@
+
+
+
+
+
+
+ {{ details.name }}
+
+
+ 有效期: {{ details.startTime }} - {{ details.endTime }}
+
+
+
+ 活动来源 : {{ details.activity_name }}
+
+ 劵码
+
+
+
+ {{ details.code }}
+
+
+
+
+ 请出示以上券码给网点工作人员
+
+
+
+
+
+
+
+ 适用门店
+
+
+ 查看所有
+
+
+
+
+
+ 您尚未授权本时生活开启定位服务
+ 不能看到附近的商家哦,点击下方按钮开启
+
+
+
+
+
+
+
+
+
+ {{ item.title }}
+
+
+ {{ item.address }}
+ {{ item.km }}
+
+
+
+
+
+
+
+
+
+ 暂无门店
+
+
+
+
+
+
+
+
+ 使用须知
+
+
+
+
+
+
+
+
+
+ 内容介绍
+
+
+
+
+
+
+
+
+
+
+
+
+ 抽奖活动
+
+ 亿时代 - 本时生活
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/draw/index.vue b/本时生活H5/pages/draw/index.vue
new file mode 100644
index 0000000..44f1f89
--- /dev/null
+++ b/本时生活H5/pages/draw/index.vue
@@ -0,0 +1,603 @@
+
+
+
+
+
+
+
+
+ 抽奖数{{number >= 0 ? number : '0'}}次
+
+
+
+
+
+
+
+ - 参与抽奖用户 -
+
+
+
+
+ {{item.user.nickname}}
+
+
+ {{item.user.username}}
+
+
+ {{item.created_at}}
+
+
+
+
+ 抽奖记录
+
+
+ 我的订单
+
+
+ 我的优惠券
+
+
+
+
+ 切换用户
+
+
+
+
+
+
+
+
+
+
+ 恭喜中奖
+
+
+ 获得【{{prize}}】
+
+
+
+ 去兑换
+
+ 去使用
+
+ ~温馨提示:请您尽快使用哦~
+
+
+
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/draw/logs.vue b/本时生活H5/pages/draw/logs.vue
new file mode 100644
index 0000000..148e86b
--- /dev/null
+++ b/本时生活H5/pages/draw/logs.vue
@@ -0,0 +1,175 @@
+
+
+
+
+
+ {{ item.title }}
+
+
+
+
+ 抽奖结果
+ 抽奖状态
+ 抽奖时间
+ 操作
+
+
+
+ {{item.exchange_item.title}}
+ {{item.status.text}}
+ {{item.created_at}}
+
+ 已使用
+ 去使用
+
+
+ 已领取
+ 去领取
+
+
+
+
+
+
+ 暂无抽奖记录
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/draw/myCoupon.vue b/本时生活H5/pages/draw/myCoupon.vue
new file mode 100644
index 0000000..be12ea8
--- /dev/null
+++ b/本时生活H5/pages/draw/myCoupon.vue
@@ -0,0 +1,226 @@
+
+
+
+
+
+ {{ item.title }}
+
+
+
+
+
+
+
+
+
+
+
+ {{item.name}}
+ 活动来源: {{item.activity_name}}
+ {{item.startTime}} 至 {{item.endTime}}
+
+
+ 去使用
+
+
+ {{item.status == 1 ? '已使用' : '已过期'}}
+
+
+
+
+
+
+
+ 加载中...
+
+
+ 没有更多了~
+
+
+
+
+
+
+
+ 暂无优惠券
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/draw/order.vue b/本时生活H5/pages/draw/order.vue
new file mode 100644
index 0000000..35ec907
--- /dev/null
+++ b/本时生活H5/pages/draw/order.vue
@@ -0,0 +1,239 @@
+
+
+
+
+
+ {{ item.title }}
+
+
+
+
+
+
+
+ 订单号:{{item.orderid}}
+
+
+
+ 产品名称{{item.award.title}}
+
+
+ 产品价格
+ {{item.amount != 0 ? '¥' + item.amount : '免费兑换'}}
+
+
+
+
+ {{item.created_at}}
+
+
+
+
+
+
+ 加载中...
+
+
+ 没有更多了~
+
+
+
+
+
+
+ 暂无优惠券
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/draw/orderDetails.vue b/本时生活H5/pages/draw/orderDetails.vue
new file mode 100644
index 0000000..fdc7e0e
--- /dev/null
+++ b/本时生活H5/pages/draw/orderDetails.vue
@@ -0,0 +1,229 @@
+
+
+
+
+
+
+
+ 订单编号
+
+ 57843657846357834
+ 复制
+
+
+
+
+
+
+ 慢慢悠 1800000000
+
+ 汗水里156高
+
+
+
+
+
+
+ 订单信息
+
+ 商品
+ 乐心血压仪
+
+
+ 金额
+ ¥399
+
+
+ 交易时间
+ 2022-09-23 15:00
+
+
+ 运费金额
+ 免邮
+
+
+ 交易状态
+ 待发货
+
+
+
+ 物流信息
+
+ 物流公司
+ 顺丰速递
+
+
+ 收货姓名
+ 慢悠悠
+
+
+ 收货电话
+ 15000000000
+
+
+ 物流单号
+ 6546546546546复制
+
+
+
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/draw/password.vue b/本时生活H5/pages/draw/password.vue
new file mode 100644
index 0000000..f34722d
--- /dev/null
+++ b/本时生活H5/pages/draw/password.vue
@@ -0,0 +1,190 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/draw/register.vue b/本时生活H5/pages/draw/register.vue
new file mode 100644
index 0000000..3a5560d
--- /dev/null
+++ b/本时生活H5/pages/draw/register.vue
@@ -0,0 +1,195 @@
+
+
+
+
+
+
+ 已有账号,立即登录
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/draw/right.vue b/本时生活H5/pages/draw/right.vue
new file mode 100644
index 0000000..2af9d21
--- /dev/null
+++ b/本时生活H5/pages/draw/right.vue
@@ -0,0 +1,797 @@
+
+
+
+
+
+ 共:{{rightData.num}}件商品
+ 实付:¥{{rightData.total}}
+
+
+
+
+
+
+
+
+
+ 重要提示
+
+
+
+
+
+ {{pointMoreShow == true ? '收起' : '展开'}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{rightData.detail.title}}
+
+
+
+
+
+
+
+
+
+
+ {{ rightData.detail.title }}
+
+
+ ¥{{ rightData.detail.amount }}
+
+
+
+
+
+
+
+
+
+
+ 购买前请仔细阅读使用须知、内容介绍
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/draw/setPassword.vue b/本时生活H5/pages/draw/setPassword.vue
new file mode 100644
index 0000000..e36b9e4
--- /dev/null
+++ b/本时生活H5/pages/draw/setPassword.vue
@@ -0,0 +1,111 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/draw/signin.vue b/本时生活H5/pages/draw/signin.vue
new file mode 100644
index 0000000..da1a50c
--- /dev/null
+++ b/本时生活H5/pages/draw/signin.vue
@@ -0,0 +1,125 @@
+
+
+
+
+
+
+ 快速注册
+ 忘记密码?
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/draw/success.vue b/本时生活H5/pages/draw/success.vue
new file mode 100644
index 0000000..710c570
--- /dev/null
+++ b/本时生活H5/pages/draw/success.vue
@@ -0,0 +1,74 @@
+
+
+
+
+
+ 兑换成功
+ 管理员审核后,尽快给你发货,请您耐心等待
+
+ 我的订单
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/favour/favour.vue b/本时生活H5/pages/favour/favour.vue
new file mode 100644
index 0000000..ee30e3e
--- /dev/null
+++ b/本时生活H5/pages/favour/favour.vue
@@ -0,0 +1,367 @@
+
+
+
+
+
+
+
+
+ 我的{{ typeArr[typeIndex].value }}
+
+ {{ typeArr[typeIndex].value }}
+
+ {{ typeArr[typeIndex].key == 'silver' ? account.silver : account.drill }}元
+
+
+
+
+
+ 赠好友消费红包
+
+
+ 赠予记录
+
+
+
+
+
+
+
+ 当前转入的账户信息
+
+
+ {{ userInfo.nickname }}
+
+ 知道了
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/frozen/frozen.vue b/本时生活H5/pages/frozen/frozen.vue
new file mode 100644
index 0000000..975c9f6
--- /dev/null
+++ b/本时生活H5/pages/frozen/frozen.vue
@@ -0,0 +1,456 @@
+
+
+
+
+
+
+
+
+
+
+
+
+ 待发放(额度)
+ ¥{{ item.ungrant }}
+
+
+
+ 发放周期 {{ item.cycle }}
+ 共{{ item.num }}期
+
+
+
+ {{ item.source.remark }}
+ {{ item.mobile }}
+
+
+
+
+
+ 消费红包分期发放
+
+
+ 应发余额¥{{ item.variable }},发放期数{{ item.num }}期,每期发放¥{{ item.avg }}/期
+
+
+
+
+
+
+
+
+
+ 第{{listItem.num}}期
+
+ 共{{item.items.length}}期
+
+
+
+ {{listItem.variable}}( 发放额度 )
+
+ 发放时间:{{listItem.start_at}}
+
+
+ {{listItem.status_text}}
+
+
+
+
+
+
+
+
+
+ 抱歉,目前发放期数~
+
+
+
+
+
+
+
+
+
+
+ 返回上一个权益
+
+
+
+ 查看下一个权益
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 抱歉,目前暂无内容~
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/giftPack/buy.vue b/本时生活H5/pages/giftPack/buy.vue
new file mode 100644
index 0000000..f795566
--- /dev/null
+++ b/本时生活H5/pages/giftPack/buy.vue
@@ -0,0 +1,812 @@
+
+
+
+
+
+ 共:{{ rightData.num }}件商品
+ 实付:¥{{ rightData.total }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ rightData.detail.four_title }}
+
+
+
+
+
+
+
+
+
+
+ {{ rightData.detail.five_title }}
+
+
+ ¥{{ rightData.detail.price }}
+
+ -
+
+ +
+
+
+
+
+
+
+
+
+ {{ rightData.detail.attribute.form_type }}
+ -¥{{ rightData.detail.score }}
+
+
+
+
+
+
+
+
+ 提交方式
+
+
+
+ {{ buyWay.platformCp[buyWay.platIndex].name }}
+
+
+
+
+
+
+
+
+
+
+ {{ rightData.addressSee.name }}{{ rightData.addressSee.mobile }}
+ {{ rightData.addressSee.all_address }}
+
+
+
+
+
+
+
+ 添加收货地址
+
+
+
+
+
+
+ 快递运费
+ ¥{{ rightData.freight }}
+
+
+
+
+
+
+
+
+
+
+ 购买前请仔细阅读使用须知、内容介绍
+
+
+
+
+ 购买须知
+
+
+
+
+ 内容介绍
+
+
+
+
+
+
+
+
+
+
+
+ 重要提示
+
+
+
+
+
+ {{ notes.pointMoreShow == true ? '收起' : '展开' }}
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/giftPack/details.vue b/本时生活H5/pages/giftPack/details.vue
new file mode 100644
index 0000000..c9d81d9
--- /dev/null
+++ b/本时生活H5/pages/giftPack/details.vue
@@ -0,0 +1,600 @@
+
+
+
+
+
+
+ {{ details.name }}
+
+
+ 有效期: {{ details.startTime }} - {{ details.endTime }}
+
+
+
+ 活动来源 : {{ details.activity_name }}
+
+ 劵码
+
+
+
+ {{ details.code }}
+
+
+
+
+ 请出示以上券码给网点工作人员
+
+
+
+
+ 去使用
+
+
+
+
+
+
+
+ 适用门店
+
+
+ 查看所有
+
+
+
+
+
+ 您尚未授权本时生活开启定位服务
+ 不能看到附近的商家哦,点击下方按钮开启
+
+
+
+
+
+
+
+
+
+ {{ item.title }}
+
+
+ {{ item.address }}
+ {{ item.km }}
+
+
+
+
+
+
+
+
+
+ 暂无门店
+
+
+
+
+
+
+
+
+ 使用须知
+
+
+
+
+
+
+
+
+
+ 内容介绍
+
+
+
+
+
+
+
+
+
+
+
+
+ 月兑活动
+
+ 亿时代 - 本时生活
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/giftPack/index.vue b/本时生活H5/pages/giftPack/index.vue
new file mode 100644
index 0000000..c5da71c
--- /dev/null
+++ b/本时生活H5/pages/giftPack/index.vue
@@ -0,0 +1,587 @@
+
+
+
+
+
+
+
+
+
+
+
+ {{ item.title }}
+
+
+ ({{item.used == 0 ? '剩余' + numbers + '次' : count + '张'}})
+
+
+
+
+
+
+
+
+
+ {{item.title}}
+
+
+
+
+ {{ items.three_title || '-' }}{{ items.two_title || '-'}}
+
+
+
+ {{btnItem}}
+
+
+
+
+ {{btnItem}}
+
+
+
+
+ {{ items.name }}
+
+ 详细信息
+
+
+
+
+
+
+
+
+
+
+
+
+ 暂无可兑换的卡券
+
+
+
+
+
+
+
+
+
+
+
+
+ ¥{{item.price}}
+
+
+
+ {{item.name}}
+
+
+ 详细信息
+
+
+
+
+ 立即使用
+
+
+
+
+
+
+
+
+
+
+
+
+ 可使用的卡券暂时没有啦~
+ 我的优惠券
+
+
+
+
+
+
+
+
+
+
+ 活动首页
+
+
+
+
+
+ 个人中心
+
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/giftPack/logs.vue b/本时生活H5/pages/giftPack/logs.vue
new file mode 100644
index 0000000..a673613
--- /dev/null
+++ b/本时生活H5/pages/giftPack/logs.vue
@@ -0,0 +1,163 @@
+
+
+
+ 积分记录
+
+
+
+
+
+
+ {{item.title}}
+ {{item.variable}}
+
+
+ 余额:19999
+ {{item.created_at}}
+
+
+
+
+
+
+ 加载中...
+
+
+ 没有更多了~
+
+
+
+
+
+
+
+
+ 抱歉,目前暂无内容~
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/本时生活H5/pages/giftPack/myCoupon.vue b/本时生活H5/pages/giftPack/myCoupon.vue
new file mode 100644
index 0000000..4ec53a2
--- /dev/null
+++ b/本时生活H5/pages/giftPack/myCoupon.vue
@@ -0,0 +1,542 @@
+
+
+
+ 尊敬的{{ userTel }}, 欢迎参加此活动
+
+
+
+
+
+
+ {{ item.title }}
+
+
+
+
+
+
+
+
+
+ ¥{{item.price}}
+
+
+
+ {{item.name}}
+
+
+ 详细信息
+
+
+
+
+ 立即使用
+
+
+ 已使用
+
+
+ 已过期
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 暂无优惠券
+
+
+
+
+
+
+
+
+
+
+ 关注小程序
+
+
+
+
+
+
+
+
+ 长按识别图中二维码
+
+
+
+ 本时生活平台优惠活动
+
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/giftPack/password.vue b/本时生活H5/pages/giftPack/password.vue
new file mode 100644
index 0000000..017cf1f
--- /dev/null
+++ b/本时生活H5/pages/giftPack/password.vue
@@ -0,0 +1,232 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/giftPack/register.vue b/本时生活H5/pages/giftPack/register.vue
new file mode 100644
index 0000000..230e99e
--- /dev/null
+++ b/本时生活H5/pages/giftPack/register.vue
@@ -0,0 +1,239 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/giftPack/setPassword.vue b/本时生活H5/pages/giftPack/setPassword.vue
new file mode 100644
index 0000000..1638b20
--- /dev/null
+++ b/本时生活H5/pages/giftPack/setPassword.vue
@@ -0,0 +1,170 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/giftPack/signin.vue b/本时生活H5/pages/giftPack/signin.vue
new file mode 100644
index 0000000..1ed1b24
--- /dev/null
+++ b/本时生活H5/pages/giftPack/signin.vue
@@ -0,0 +1,260 @@
+
+
+
+
+
+
+ {{passwordLogin ? '验证码登录': '密码登录'}}
+ 快速注册
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/giftPack/user.vue b/本时生活H5/pages/giftPack/user.vue
new file mode 100644
index 0000000..0c0580e
--- /dev/null
+++ b/本时生活H5/pages/giftPack/user.vue
@@ -0,0 +1,361 @@
+
+
+
+
+
+ 用户{{userData.info.username}}
+ 感谢您参加本事礼包活动
+
+
+
+
+
+ {{userData.gold.balance}}
+
+ 可用余额
+
+
+
+ {{userData.gold.overdue}}
+
+ 已过期
+
+
+
+
+ 查看积分详细记录
+
+
+
+ 积分账户
+
+
+ 本时生活·礼包活动
+
+
+
+
+
+
+
+
+ 我的优惠券
+
+
+
+
+
+
+ 其他功能
+
+
+
+
+ 修改密码
+
+
+
+
+
+
+ 退出登录
+
+
+
+
+
+
+
+
+
+
+
+ 活动首页
+
+
+
+
+
+ 个人中心
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/本时生活H5/pages/index/index.vue b/本时生活H5/pages/index/index.vue
new file mode 100644
index 0000000..55ef479
--- /dev/null
+++ b/本时生活H5/pages/index/index.vue
@@ -0,0 +1,1113 @@
+
+
+
+
+
+
+
+ {{ address.cityName }}{{ address.districtName }}
+
+
+
+
+
+
+
+
+ 活动中心
+
+
+ 白金会员
+
+
+ 钻石会员
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ content.noticeData }}
+
+
+
+
+
+
+
+
+
+ {{ item.title }}
+
+ {{ item.label }}
+
+
+
+
+
+ 抱歉, 此地区暂无权益
+
+
+
+
+
+
+
+
+
+
+ {{ content.activities.length }} 大会员权益,福利全线升级
+
+
+
+
+
+ {{ item.price }} 元({{item.title}})
+
+ [限量{{ item.stock }}份] [剩余{{ item.surplus }}份]
+
+
+ {{ item.start_time }} 开抢{{ item.end_time }} 结束
+
+
+
+ 抢购
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ item.title }}
+
+ {{ item.label }}
+
+
+
+
+
+ 抱歉, 此地区暂无权益
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/oil/buy.vue b/本时生活H5/pages/oil/buy.vue
new file mode 100644
index 0000000..84f6a9c
--- /dev/null
+++ b/本时生活H5/pages/oil/buy.vue
@@ -0,0 +1,668 @@
+
+
+
+
+
+ 共:{{ rightData.num }}件商品
+ 实付:¥{{ rightData.total }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ rightData.detail.four_title }}
+
+
+
+
+
+
+
+
+
+
+ {{ rightData.detail.five_title }}
+
+
+ ¥{{ rightData.detail.price }}
+
+ -
+
+ +
+
+
+
+
+
+
+
+
+
+
+ 提交方式
+
+
+
+ {{ buyWay.platformCp[buyWay.platIndex].name }}
+
+
+
+
+
+
+
+
+
+
+ {{ rightData.addressSee.name }}{{ rightData.addressSee.mobile }}
+ {{ rightData.addressSee.all_address }}
+
+
+
+
+
+
+
+ 添加收货地址
+
+
+
+
+
+
+ 快递运费
+ ¥{{ rightData.freight }}
+
+
+
+
+
+
+
+
+
+
+ 购买前请仔细阅读使用须知、内容介绍
+
+
+
+
+ 购买须知
+
+
+
+
+ 内容介绍
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/oil/details.vue b/本时生活H5/pages/oil/details.vue
new file mode 100644
index 0000000..5a3c65a
--- /dev/null
+++ b/本时生活H5/pages/oil/details.vue
@@ -0,0 +1,598 @@
+
+
+
+
+
+
+ {{ details.name }}
+
+
+ 有效期: {{ details.startTime }} - {{ details.endTime }}
+
+
+
+ 活动来源 : {{ details.activity_name }}
+
+ 劵码
+
+
+
+ {{ details.code }}
+
+
+
+
+ 请出示以上券码给网点工作人员
+
+
+
+
+ 去使用
+
+
+
+
+
+
+
+ 适用门店
+
+
+ 查看所有
+
+
+
+
+
+ 您尚未授权本时生活开启定位服务
+ 不能看到附近的商家哦,点击下方按钮开启
+
+
+
+
+
+
+
+
+
+ {{ item.title }}
+
+
+ {{ item.address }}
+ {{ item.km }}
+
+
+
+
+
+
+
+
+
+ 暂无门店
+
+
+
+
+
+
+
+
+ 使用须知
+
+
+
+
+
+
+
+
+
+ 内容介绍
+
+
+
+
+
+
+
+
+
+
+
+
+ 中石油活动
+
+ 亿时代 - 本时生活
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/oil/index.vue b/本时生活H5/pages/oil/index.vue
new file mode 100644
index 0000000..73b3bec
--- /dev/null
+++ b/本时生活H5/pages/oil/index.vue
@@ -0,0 +1,266 @@
+
+
+
+
+
+
+
+
+
+ {{item.title}}
+
+
+
+
+ {{ items.three_title || '-' }}{{ items.two_title || '-'}}
+
+
+
+ {{btnItem}}
+
+
+
+
+ {{ itemsDes }}
+
+ {{items.label || '-'}}
+
+
+
+
+
+ 我的优惠券立即查看
+
+
+
+
+
+
diff --git a/本时生活H5/pages/oil/myCoupon.vue b/本时生活H5/pages/oil/myCoupon.vue
new file mode 100644
index 0000000..9b5de53
--- /dev/null
+++ b/本时生活H5/pages/oil/myCoupon.vue
@@ -0,0 +1,653 @@
+
+
+
+
+ 尊敬的{{ userTel }}, 欢迎参加联通优惠活动
+
+
+
+
+
+
+
+ {{ item.title }}
+ ({{count.init}}张)
+ ({{count.used}}张)
+ ({{ count.pass }}张)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ item.name }}
+ 活动来源: {{item.activity_name}}
+ {{ item.startTime }} 至 {{ item.endTime }}
+ 使用时间:{{item.used_at}}
+
+
+
+ 去使用
+
+
+
+
+
+
+
+ 查看全部{{ item.count }}张卡券
+
+
+
+
+
+
+
+
+
+ 暂无优惠券
+
+
+
+
+
+
+
+
+
+
+
+ 关注小程序
+
+
+
+
+
+
+
+
+ 长按识别图中二维码
+
+
+
+ 本时生活平台优惠活动
+
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/oil/myList.vue b/本时生活H5/pages/oil/myList.vue
new file mode 100644
index 0000000..c0eddb4
--- /dev/null
+++ b/本时生活H5/pages/oil/myList.vue
@@ -0,0 +1,315 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ item.name }}
+ 活动来源: {{item.activity_name}}
+ {{ item.startTime }} 至 {{ item.endTime }}
+ 使用时间:{{item.used_at}}
+
+
+
+ 去使用
+
+
+
+
+
+
+
+
+
+
+
+ 暂无优惠券
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/oil/password.vue b/本时生活H5/pages/oil/password.vue
new file mode 100644
index 0000000..c2cba24
--- /dev/null
+++ b/本时生活H5/pages/oil/password.vue
@@ -0,0 +1,231 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/oil/register.vue b/本时生活H5/pages/oil/register.vue
new file mode 100644
index 0000000..fe1c7df
--- /dev/null
+++ b/本时生活H5/pages/oil/register.vue
@@ -0,0 +1,238 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/oil/setPassword.vue b/本时生活H5/pages/oil/setPassword.vue
new file mode 100644
index 0000000..60b652c
--- /dev/null
+++ b/本时生活H5/pages/oil/setPassword.vue
@@ -0,0 +1,169 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/oil/signin.vue b/本时生活H5/pages/oil/signin.vue
new file mode 100644
index 0000000..0e2457f
--- /dev/null
+++ b/本时生活H5/pages/oil/signin.vue
@@ -0,0 +1,260 @@
+
+
+
+
+
+
+ {{passwordLogin ? '验证码登录': '密码登录'}}
+ 快速注册
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/order/order.vue b/本时生活H5/pages/order/order.vue
new file mode 100644
index 0000000..bd9aa86
--- /dev/null
+++ b/本时生活H5/pages/order/order.vue
@@ -0,0 +1,364 @@
+
+
+
+
+
+ 全部
+
+
+ 待支付
+
+
+ {{order.orderType == 'welfare' || order.orderType == 'rights' ? '待发货' : '已支付'}}
+
+
+ 已发货
+
+
+ 已完成
+
+
+
+
+
+
+
+ {{ item.orderid }}
+
+ {{ item.state_text ||item.status_text }}
+
+
+ {{ item.state_text || item.status_text }}
+
+ {{ item.state_text || item.status_text }}
+
+
+
+
+
+
+ {{ item.items.title }}
+ {{ item.source.right.title }}
+
+
+ {{ item.type_text }}
+ {{ item.type_text }}
+
+ 红包电子券
+ 实物券
+
+
+
+
+ ¥{{ item.items.price }} × {{ item.items.qty ? item.items.qty : '1' }}
+
+
+ ¥{{ item.source.welfare.price }}× 1
+
+
+
+
+ 订单详情
+
+ 取消订单
+
+ 取消订单
+
+
+ 立即支付
+
+ 立即支付
+
+
+
+
+
+
+
+ 暂无订单
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/order/orderData.vue b/本时生活H5/pages/order/orderData.vue
new file mode 100644
index 0000000..ef734f3
--- /dev/null
+++ b/本时生活H5/pages/order/orderData.vue
@@ -0,0 +1,359 @@
+
+
+
+
+ {{ order.state_text || order.status_text }}
+
+
+
+
+
+
+
+
+
+
+ 收货人:{{ order.express.name }}
+ {{ order.express.mobile }}
+
+ {{ order.express.address }}
+
+
+
+
+
+
+
+
+
+ {{ order.items.title }}
+ {{ order.source.right.title }}
+
+
+ ¥{{ order.items.price }}
+ {{ order.source.welfare.price }}
+ ×{{ order.items.qty }}
+ ×1
+
+
+
+
+
+
+
+ 权益类型
+ {{ order.type_text || order.type_text }}
+
+
+ 订单号
+ {{ order.orderid }}
+
+
+ 下单时间
+ {{ order.created_at }}
+
+
+
+
+ 实际支付
+ ¥{{ order.total }}
+ ¥{{ order.source.welfare.price }}
+
+
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/packet/packet.vue b/本时生活H5/pages/packet/packet.vue
new file mode 100644
index 0000000..e382c96
--- /dev/null
+++ b/本时生活H5/pages/packet/packet.vue
@@ -0,0 +1,363 @@
+
+
+
+
+
+
+
+
+
+
+
+ 请输入办理业务手机号
+ 例:185XXXX0001
+
+
+
+
+
+
+
+
+
+ 领取成功,共领取{{ popData }},可在账户中查看
+ 我知道了 ({{ countDownNum }})
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/payPassword/forget.vue b/本时生活H5/pages/payPassword/forget.vue
new file mode 100644
index 0000000..f8c8fe8
--- /dev/null
+++ b/本时生活H5/pages/payPassword/forget.vue
@@ -0,0 +1,140 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/payPassword/index.vue b/本时生活H5/pages/payPassword/index.vue
new file mode 100644
index 0000000..5085359
--- /dev/null
+++ b/本时生活H5/pages/payPassword/index.vue
@@ -0,0 +1,53 @@
+
+
+
+
+ 支付密码
+
+
+ {{ passType ? '已设置' : '未设置' }}
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/payPassword/setup.vue b/本时生活H5/pages/payPassword/setup.vue
new file mode 100644
index 0000000..ab9307f
--- /dev/null
+++ b/本时生活H5/pages/payPassword/setup.vue
@@ -0,0 +1,141 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/payView/payView.vue b/本时生活H5/pages/payView/payView.vue
new file mode 100644
index 0000000..c96e118
--- /dev/null
+++ b/本时生活H5/pages/payView/payView.vue
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/rights/index.vue b/本时生活H5/pages/rights/index.vue
new file mode 100644
index 0000000..9aa37da
--- /dev/null
+++ b/本时生活H5/pages/rights/index.vue
@@ -0,0 +1,970 @@
+
+
+
+
+
+
+
+ 重要提示
+
+
+
+
+
+ {{ notes.pointMoreShow == true ? '收起' : '展开' }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ rightData.detail.three_title }}
+
+
+
+
+
+
+
+
+
+
+ {{ rightData.detail.title }}
+
+
+ ¥{{rightData.detail.amount}}
+
+ -
+
+ +
+
+
+
+
+
+
+
+
+ {{ rightData.detail.attribute.form_type }}
+ -¥{{ rightData.detail.score }}
+
+
+
+
+
+
+
+ 电子券
+ {{ rightData.detail.qty }}张
+
+
+
+ 请选择提交方式
+
+
+
+ {{ buyWay.platformCp[buyWay.platIndex].name }}
+
+
+
+
+
+
+
+
+
+
+ {{ rightData.addressSee.name }}{{ rightData.addressSee.mobile }}
+
+ {{ rightData.addressSee.all_address }}
+
+
+
+
+
+ 添加收货地址
+
+
+
+
+
+ 快递运费
+ ¥{{ rightData.freight }}
+
+
+
+
+
+
+
+
+
+
+ 购买前请仔细阅读使用须知、内容介绍
+
+
+
+
+ 购买须知
+
+
+
+
+ 内容介绍
+
+
+
+
+
+
+
+
+
+
+ 立即领取
+
+
+ 立即购买
+ 立即购买
+
+
+
+
+ 共:{{ rightData.num }}件商品
+ 实付:¥{{ rightData.total }}
+
+
+
+
+
+
+
+
+ 请选择收货地址
+ 新增收货地址
+
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/setUpForm/form_submit.vue b/本时生活H5/pages/setUpForm/form_submit.vue
new file mode 100644
index 0000000..37c4be2
--- /dev/null
+++ b/本时生活H5/pages/setUpForm/form_submit.vue
@@ -0,0 +1,232 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/setUpForm/index.vue b/本时生活H5/pages/setUpForm/index.vue
new file mode 100644
index 0000000..924358e
--- /dev/null
+++ b/本时生活H5/pages/setUpForm/index.vue
@@ -0,0 +1,72 @@
+
+
+
+
+ 头像设置
+
+
+
+
+
+ 用户昵称
+
+
+
+
+
+ 支付密码
+
+
+
+
+
+ 退出登录
+
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/site/create.vue b/本时生活H5/pages/site/create.vue
new file mode 100644
index 0000000..72a02d7
--- /dev/null
+++ b/本时生活H5/pages/site/create.vue
@@ -0,0 +1,250 @@
+
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/site/edit.vue b/本时生活H5/pages/site/edit.vue
new file mode 100644
index 0000000..8496aed
--- /dev/null
+++ b/本时生活H5/pages/site/edit.vue
@@ -0,0 +1,278 @@
+
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/site/index.vue b/本时生活H5/pages/site/index.vue
new file mode 100644
index 0000000..c96c04d
--- /dev/null
+++ b/本时生活H5/pages/site/index.vue
@@ -0,0 +1,206 @@
+
+
+
+
+ {{ item.name }}{{ item.mobile }}
+
+
+ 默认
+
+ {{ item.all_address }}
+
+
+
+
+ 选择地址
+
+
+
+ 删除
+ 编辑
+
+
+ 设为默认地址
+
+
+
+
+ 默认地址
+
+
+
+
+
+
+
+
+ 还未添加收货地址
+
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/store/details.vue b/本时生活H5/pages/store/details.vue
new file mode 100644
index 0000000..e66190b
--- /dev/null
+++ b/本时生活H5/pages/store/details.vue
@@ -0,0 +1,230 @@
+
+
+
+
+
+
+
+
+ {{ storeinfo.title }}
+
+
+
+
+
+ {{ storeinfo.address }}
+ 距您 {{ distance }}
+
+
+
+
+
+
+
+
+ 营业时间
+ {{ storeinfo.open_time }}
+ 00:00
+
+
+
+
+
+
+
+
+ 去导航
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/store/index.vue b/本时生活H5/pages/store/index.vue
new file mode 100644
index 0000000..8e8a66d
--- /dev/null
+++ b/本时生活H5/pages/store/index.vue
@@ -0,0 +1,444 @@
+
+
+
+
+
+
+
+
+
+
+ {{ areasList[areaIndex].name }}
+
+
+
+
+
+
+
+ {{ cityList[cityIndex].name }}
+
+
+
+
+
+
+
+ {{ regiList[regiIndex].name }}
+
+
+
+
+
+
+
+
+
+
+
+ {{ item.title }}
+
+ {{ item.address }}
+ {{ item.km }}
+
+
+
+
+
+
+ 加载中...
+
+
+ 没有更多了~
+
+
+
+
+
+
+
+ 暂无商家
+
+
+
+
+
+
diff --git a/本时生活H5/pages/subscribe/combo/combo.vue b/本时生活H5/pages/subscribe/combo/combo.vue
new file mode 100644
index 0000000..5e37400
--- /dev/null
+++ b/本时生活H5/pages/subscribe/combo/combo.vue
@@ -0,0 +1,299 @@
+
+
+
+
+
+
+ *请选择套餐类型
+
+
+
+
+
+
+
+
+
+
+
+ *请选择套餐类型
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 客服热线:{{ mobile }}
+ 拨打客服电话
+
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/subscribe/upgrade/upgrade.vue b/本时生活H5/pages/subscribe/upgrade/upgrade.vue
new file mode 100644
index 0000000..b27bd3b
--- /dev/null
+++ b/本时生活H5/pages/subscribe/upgrade/upgrade.vue
@@ -0,0 +1,321 @@
+
+
+
+
+
+
+ 生效时间
+ *请选择升级包生效时间
+
+
+
+
+
+
+
+ *请选择升级包类型
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 客服热线:{{ mobile }}
+ 拨打客服电话
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/switchcity/switchcity.vue b/本时生活H5/pages/switchcity/switchcity.vue
new file mode 100644
index 0000000..b979730
--- /dev/null
+++ b/本时生活H5/pages/switchcity/switchcity.vue
@@ -0,0 +1,281 @@
+
+
+
+ 黑龙江省
+ {{ address.cityName }}
+ {{ address.districtName ? address.districtName : '请选择区域' }}
+
+
+
+
+
+
+ {{ item.name }}
+
+
+
+
+
+
+
+
+
+ {{ item.name }}
+
+
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/unicom/buy.vue b/本时生活H5/pages/unicom/buy.vue
new file mode 100644
index 0000000..4196730
--- /dev/null
+++ b/本时生活H5/pages/unicom/buy.vue
@@ -0,0 +1,664 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ rightData.detail.five_title }}
+
+
+
+
+ -
+
+ +
+
+
+
+
+
+
+
+
+
+
+ 提交方式
+
+
+
+ {{ buyWay.platformCp[buyWay.platIndex].name }}
+
+
+
+
+
+
+
+
+
+
+ {{ rightData.addressSee.name }}{{ rightData.addressSee.mobile }}
+ {{ rightData.addressSee.all_address }}
+
+
+
+
+
+
+
+ 添加收货地址
+
+
+
+
+
+
+ 快递运费
+ ¥{{ rightData.freight }}
+
+
+
+
+
+
+
+
+
+
+ 购买前请仔细阅读使用须知、内容介绍
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/unicom/details.vue b/本时生活H5/pages/unicom/details.vue
new file mode 100644
index 0000000..78f7511
--- /dev/null
+++ b/本时生活H5/pages/unicom/details.vue
@@ -0,0 +1,539 @@
+
+
+
+
+
+
+ {{ details.name }}
+
+
+ 有效期: {{ details.startTime }} - {{ details.endTime }}
+
+
+
+ 活动来源 : {{ details.activity_name }}
+
+ 劵码
+
+
+
+ {{ details.code }}
+
+
+
+
+ 请出示以上券码给网点工作人员
+
+
+
+
+
+
+
+ 适用门店
+
+
+ 查看所有
+
+
+
+
+
+ 您尚未授权本时生活开启定位服务
+ 不能看到附近的商家哦,点击下方按钮开启
+
+
+
+
+
+
+
+
+
+ {{ item.title }}
+
+
+ {{ item.address }}
+ {{ item.km }}
+
+
+
+
+
+
+
+
+
+ 暂无门店
+
+
+
+
+
+
+
+
+ 使用须知
+
+
+
+
+
+
+
+
+
+ 内容介绍
+
+
+
+
+
+
+
+
+
+
+
+
+ 中石油活动
+
+ 亿时代 - 本时生活
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/unicom/index.vue b/本时生活H5/pages/unicom/index.vue
new file mode 100644
index 0000000..de954e0
--- /dev/null
+++ b/本时生活H5/pages/unicom/index.vue
@@ -0,0 +1,221 @@
+
+
+
+
+
+
+
+
+
+ {{ item.title }}{{ item.name }}
+
+
+
+
+
+
+
+
+
+
+ 老用户回馈抽奖链接
+
+
+ 立即参与
+
+
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/unicom/password.vue b/本时生活H5/pages/unicom/password.vue
new file mode 100644
index 0000000..24f6a1c
--- /dev/null
+++ b/本时生活H5/pages/unicom/password.vue
@@ -0,0 +1,231 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/unicom/register.vue b/本时生活H5/pages/unicom/register.vue
new file mode 100644
index 0000000..d6ef33b
--- /dev/null
+++ b/本时生活H5/pages/unicom/register.vue
@@ -0,0 +1,238 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/unicom/setPassword.vue b/本时生活H5/pages/unicom/setPassword.vue
new file mode 100644
index 0000000..d44b7fc
--- /dev/null
+++ b/本时生活H5/pages/unicom/setPassword.vue
@@ -0,0 +1,169 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/unicom/signin.vue b/本时生活H5/pages/unicom/signin.vue
new file mode 100644
index 0000000..0183016
--- /dev/null
+++ b/本时生活H5/pages/unicom/signin.vue
@@ -0,0 +1,260 @@
+
+
+
+
+
+
+ {{passwordLogin ? '验证码登录': '密码登录'}}
+ 快速注册
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/user/index.vue b/本时生活H5/pages/user/index.vue
new file mode 100644
index 0000000..8b1774c
--- /dev/null
+++ b/本时生活H5/pages/user/index.vue
@@ -0,0 +1,474 @@
+
+
+
+
+
+
+
+ 编辑头像
+
+
+
+
+
+
+ {{userInfo.nickname}}
+
+
+ {{ userInfo.identity.name }}
+
+
+ {{ userInfo.identity.name }}
+
+
+ {{ userInfo.identity.name }}
+
+
+
+ {{userInfo.username}}
+
+
+
+
+
+
+
+ 去登录
+
+
+
+
+
+
+ 我的会员卡
+
+
+
+
+
+ 可用余额:{{ userInfo.account.silver }}
+
+
+
+ 可用余额:{{ userInfo.account.drill }}
+
+
+
+ 可用余额:{{ userInfo.account.balance }}
+
+
+
+
+
+
+
+ 滑动切换,查看更多权益
+
+
+
+
+
+
+ 我的服务
+
+
+
+
+
+ 我的卡券
+
+
+
+
+
+ 红包领取
+
+
+
+
+
+ 收货地址
+
+
+
+
+
+ 实体卡激活
+
+
+
+
+
+
+ 兑换订单
+
+
+
+
+
+ 福利券订单
+
+
+
+
+
+ 福利商品订单
+
+
+
+
+
+ 权益券订单
+
+
+
+
+
+ 权益商品订单
+
+
+
+
+
+
+ 我的工具
+
+
+
+
+
+ 储值分享
+
+
+
+
+
+ 产品分享
+
+
+
+
+
+ 红包赠予
+
+
+
+
+
+ 个人设置
+
+
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/userGoods/goodsCode.vue b/本时生活H5/pages/userGoods/goodsCode.vue
new file mode 100644
index 0000000..5200f02
--- /dev/null
+++ b/本时生活H5/pages/userGoods/goodsCode.vue
@@ -0,0 +1,407 @@
+
+
+
+
+
+
+
+
+
+
+ 产品海报
+
+
+ {{ profitText }}
+
+
+
+
+ {{ pagedescrip }}
+
+
+
+ 生成海报
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 长按图片保存二维码
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/本时生活H5/pages/userGoods/goodsDet.vue b/本时生活H5/pages/userGoods/goodsDet.vue
new file mode 100644
index 0000000..6188245
--- /dev/null
+++ b/本时生活H5/pages/userGoods/goodsDet.vue
@@ -0,0 +1,349 @@
+
+
+
+
+
+
+
+
+
+
+ {{ current }}/{{ productData.share.pictures.length }}
+
+
+
+
+
+
+ {{ productData.title }}
+ {{ productData.share.description }}
+
+ ¥{{ productData.price }}
+ 门市价¥{{ productData.share.cost }}
+
+
+ 立即购买
+
+
+
+
+
+ 规格
+ {{ productData.share.type_name }}
+
+
+ 门店
+
+
+ {{ item.title }}
+ {{ item.address }}
+
+
+
+
+
+
+
+
+ 图文详情
+
+
+
+
+
+ END
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/userGoods/index.vue b/本时生活H5/pages/userGoods/index.vue
new file mode 100644
index 0000000..310b399
--- /dev/null
+++ b/本时生活H5/pages/userGoods/index.vue
@@ -0,0 +1,307 @@
+
+
+
+
+
+
+
+
+
+
+
+ {{ noticeText }}
+
+
+
+
+
+
+
+
+
+
+
+ [ {{ item.title }} ]{{ item.share.type_name }}
+ {{ item.share.sub_title }}
+ {{ items }}
+ 追加激励¥{{ item.profit.stimulate }}
+
+ ¥{{ item.price }}¥{{ item.share.cost }}
+
+ 返¥{{ item.profit.value }}
+
+
+
+
+
+
+
+
+
+
+
+ [ {{ item.title }} ]{{ item.share.type_name }}
+ {{ item.share.sub_title }}
+ {{ items }}
+ 追加激励¥{{ item.profit.stimulate }}
+
+ ¥{{ item.price }}¥{{ item.share.cost }}
+
+ 返¥{{ item.profit.value }}
+
+
+
+
+
+
+
+ 加载中...
+
+
+ 没有更多了~
+
+
+
+
+
+
+ 暂无数据
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/userStored/index.vue b/本时生活H5/pages/userStored/index.vue
new file mode 100644
index 0000000..34226cb
--- /dev/null
+++ b/本时生活H5/pages/userStored/index.vue
@@ -0,0 +1,297 @@
+
+
+
+
+
+
+
+
+
+
+
+ {{ item.title }}
+ 消费红包
+
+
+ {{ item.text }}({{ item.qty }}张{{ item.worth }}元)
+
+
+
+
+
+
+
+ {{ item.coupon_name }}
+
+
+ ¥{{ item.worth }}(满{{ item.full }}减{{ item.worth }})
+
+
+ 立即儲值
+
+
+
+
+
+
+
+
+ 暂无数据
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/本时生活H5/pages/userStored/storedCode.vue b/本时生活H5/pages/userStored/storedCode.vue
new file mode 100644
index 0000000..0fc8da4
--- /dev/null
+++ b/本时生活H5/pages/userStored/storedCode.vue
@@ -0,0 +1,308 @@
+
+
+
+
+
+ 向重要的人分享生活的惊喜
+
+
+
+
+
+ 生成海报
+
+
+
+
+
+
+
+
+
+
+
+
+ 向重要的人分享生活的惊喜
+
+
+
+
+ 长按图片保存二维码
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/本时生活H5/pages/washcar/washcar.vue b/本时生活H5/pages/washcar/washcar.vue
new file mode 100644
index 0000000..ed5ea59
--- /dev/null
+++ b/本时生活H5/pages/washcar/washcar.vue
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/webView/webView.vue b/本时生活H5/pages/webView/webView.vue
new file mode 100644
index 0000000..2cc234f
--- /dev/null
+++ b/本时生活H5/pages/webView/webView.vue
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/pages/welfare/welfare.vue b/本时生活H5/pages/welfare/welfare.vue
new file mode 100644
index 0000000..a2d4aef
--- /dev/null
+++ b/本时生活H5/pages/welfare/welfare.vue
@@ -0,0 +1,910 @@
+
+
+
+
+
+
+
+ 重要提示
+
+
+
+
+
+ {{ notes.pointMoreShow == true ? '展开' : '收起' }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ welfareData.right.subtitle}}
+
+
+
+
+
+
+
+
+
+
+ {{ welfareData.right.title }}
+
+
+ ¥{{welfareData.detail.price}}
+
+
+
+ -
+
+ +
+
+
+
+
+
+
+
+
+ {{welfareData.detail.attribute.form_pay}}
+ ¥{{welfareData.detail.total}}
+
+
+ {{welfareData.detail.attribute.form_qty}}
+ {{ welfareData.num }}
+
+
+ {{welfareData.detail.attribute.form_type}}
+ -¥{{welfareData.detail.score}}
+
+
+
+
+
+
+
+
+ 请选择提交方式
+
+
+
+ {{ buyWay.platformCp[buyWay.platIndex].name }}
+
+
+
+
+
+
+
+
+
+
+ {{ welfareData.addressSee.name }}{{ welfareData.addressSee.mobile }}
+
+ {{ welfareData.addressSee.all_address }}
+
+
+
+
+
+ 添加收货地址
+
+
+
+
+
+ 快递运费
+ ¥{{ welfareData.freight }}
+
+
+
+
+
+
+
+
+
+
+ 购买前请仔细阅读使用须知、内容介绍
+
+
+
+
+ 内容介绍
+
+
+
+
+
+
+
+
+
+
+ 共:{{ welfareData.num }}件商品
+ 实付:¥{{ welfareData.total }}
+
+
+
+
+
+
+
+ 请选择收货地址
+ 新增收货地址
+
+
+
+
+
+
+
+
+
diff --git a/本时生活H5/static/icon/Check.png b/本时生活H5/static/icon/Check.png
new file mode 100644
index 0000000..414ff3b
Binary files /dev/null and b/本时生活H5/static/icon/Check.png differ
diff --git a/本时生活H5/static/icon/Point_icon.png b/本时生活H5/static/icon/Point_icon.png
new file mode 100644
index 0000000..7eee5a3
Binary files /dev/null and b/本时生活H5/static/icon/Point_icon.png differ
diff --git a/本时生活H5/static/icon/activity_icon.png b/本时生活H5/static/icon/activity_icon.png
new file mode 100644
index 0000000..6d54870
Binary files /dev/null and b/本时生活H5/static/icon/activity_icon.png differ
diff --git a/本时生活H5/static/icon/add.png b/本时生活H5/static/icon/add.png
new file mode 100644
index 0000000..ad2ed18
Binary files /dev/null and b/本时生活H5/static/icon/add.png differ
diff --git a/本时生活H5/static/icon/address_icon.png b/本时生活H5/static/icon/address_icon.png
new file mode 100644
index 0000000..70ca205
Binary files /dev/null and b/本时生活H5/static/icon/address_icon.png differ
diff --git a/本时生活H5/static/icon/arrow_down.png b/本时生活H5/static/icon/arrow_down.png
new file mode 100644
index 0000000..8731b7a
Binary files /dev/null and b/本时生活H5/static/icon/arrow_down.png differ
diff --git a/本时生活H5/static/icon/arrow_left.png b/本时生活H5/static/icon/arrow_left.png
new file mode 100644
index 0000000..94a76ab
Binary files /dev/null and b/本时生活H5/static/icon/arrow_left.png differ
diff --git a/本时生活H5/static/icon/arrow_right.png b/本时生活H5/static/icon/arrow_right.png
new file mode 100644
index 0000000..d965a47
Binary files /dev/null and b/本时生活H5/static/icon/arrow_right.png differ
diff --git a/本时生活H5/static/icon/arrow_right_black.png b/本时生活H5/static/icon/arrow_right_black.png
new file mode 100644
index 0000000..ca0d51d
Binary files /dev/null and b/本时生活H5/static/icon/arrow_right_black.png differ
diff --git a/本时生活H5/static/icon/arrow_tips.png b/本时生活H5/static/icon/arrow_tips.png
new file mode 100644
index 0000000..d42d882
Binary files /dev/null and b/本时生活H5/static/icon/arrow_tips.png differ
diff --git a/本时生活H5/static/icon/choice.png b/本时生活H5/static/icon/choice.png
new file mode 100644
index 0000000..18d62fa
Binary files /dev/null and b/本时生活H5/static/icon/choice.png differ
diff --git a/本时生活H5/static/icon/contentCard_icon.png b/本时生活H5/static/icon/contentCard_icon.png
new file mode 100644
index 0000000..917c502
Binary files /dev/null and b/本时生活H5/static/icon/contentCard_icon.png differ
diff --git a/本时生活H5/static/icon/frozen_arrow.png b/本时生活H5/static/icon/frozen_arrow.png
new file mode 100644
index 0000000..91e443d
Binary files /dev/null and b/本时生活H5/static/icon/frozen_arrow.png differ
diff --git a/本时生活H5/static/icon/giftPack-icon-yellow.png b/本时生活H5/static/icon/giftPack-icon-yellow.png
new file mode 100644
index 0000000..af41ee7
Binary files /dev/null and b/本时生活H5/static/icon/giftPack-icon-yellow.png differ
diff --git a/本时生活H5/static/icon/giftPack-icon.png b/本时生活H5/static/icon/giftPack-icon.png
new file mode 100644
index 0000000..083a730
Binary files /dev/null and b/本时生活H5/static/icon/giftPack-icon.png differ
diff --git a/本时生活H5/static/icon/indexSite.png b/本时生活H5/static/icon/indexSite.png
new file mode 100644
index 0000000..11d5a8b
Binary files /dev/null and b/本时生活H5/static/icon/indexSite.png differ
diff --git a/本时生活H5/static/icon/integra_icon00.png b/本时生活H5/static/icon/integra_icon00.png
new file mode 100644
index 0000000..969f039
Binary files /dev/null and b/本时生活H5/static/icon/integra_icon00.png differ
diff --git a/本时生活H5/static/icon/integra_icon01.png b/本时生活H5/static/icon/integra_icon01.png
new file mode 100644
index 0000000..18f25e8
Binary files /dev/null and b/本时生活H5/static/icon/integra_icon01.png differ
diff --git a/本时生活H5/static/icon/location.png b/本时生活H5/static/icon/location.png
new file mode 100644
index 0000000..186b0e4
Binary files /dev/null and b/本时生活H5/static/icon/location.png differ
diff --git a/本时生活H5/static/icon/navFooter_icon_00.png b/本时生活H5/static/icon/navFooter_icon_00.png
new file mode 100644
index 0000000..5969817
Binary files /dev/null and b/本时生活H5/static/icon/navFooter_icon_00.png differ
diff --git a/本时生活H5/static/icon/navFooter_icon_01_active.png b/本时生活H5/static/icon/navFooter_icon_01_active.png
new file mode 100644
index 0000000..3f1f757
Binary files /dev/null and b/本时生活H5/static/icon/navFooter_icon_01_active.png differ
diff --git a/本时生活H5/static/icon/news_icon.png b/本时生活H5/static/icon/news_icon.png
new file mode 100644
index 0000000..2e4c687
Binary files /dev/null and b/本时生活H5/static/icon/news_icon.png differ
diff --git a/本时生活H5/static/icon/notice_icon.png b/本时生活H5/static/icon/notice_icon.png
new file mode 100644
index 0000000..0975820
Binary files /dev/null and b/本时生活H5/static/icon/notice_icon.png differ
diff --git a/本时生活H5/static/icon/orderIcon_00.png b/本时生活H5/static/icon/orderIcon_00.png
new file mode 100644
index 0000000..6c5bae8
Binary files /dev/null and b/本时生活H5/static/icon/orderIcon_00.png differ
diff --git a/本时生活H5/static/icon/orderIcon_01.png b/本时生活H5/static/icon/orderIcon_01.png
new file mode 100644
index 0000000..f2f3f06
Binary files /dev/null and b/本时生活H5/static/icon/orderIcon_01.png differ
diff --git a/本时生活H5/static/icon/order_icon_00.png b/本时生活H5/static/icon/order_icon_00.png
new file mode 100644
index 0000000..b1e0d85
Binary files /dev/null and b/本时生活H5/static/icon/order_icon_00.png differ
diff --git a/本时生活H5/static/icon/order_icon_01.png b/本时生活H5/static/icon/order_icon_01.png
new file mode 100644
index 0000000..70b7f9b
Binary files /dev/null and b/本时生活H5/static/icon/order_icon_01.png differ
diff --git a/本时生活H5/static/icon/order_icon_02.png b/本时生活H5/static/icon/order_icon_02.png
new file mode 100644
index 0000000..b70aedd
Binary files /dev/null and b/本时生活H5/static/icon/order_icon_02.png differ
diff --git a/本时生活H5/static/icon/refresh_loding.gif b/本时生活H5/static/icon/refresh_loding.gif
new file mode 100644
index 0000000..5bb90fd
Binary files /dev/null and b/本时生活H5/static/icon/refresh_loding.gif differ
diff --git a/本时生活H5/static/icon/rightsArrow.png b/本时生活H5/static/icon/rightsArrow.png
new file mode 100644
index 0000000..80006e1
Binary files /dev/null and b/本时生活H5/static/icon/rightsArrow.png differ
diff --git a/本时生活H5/static/icon/secrch_icon.png b/本时生活H5/static/icon/secrch_icon.png
new file mode 100644
index 0000000..edd6bd6
Binary files /dev/null and b/本时生活H5/static/icon/secrch_icon.png differ
diff --git a/本时生活H5/static/icon/select.png b/本时生活H5/static/icon/select.png
new file mode 100644
index 0000000..96b56f1
Binary files /dev/null and b/本时生活H5/static/icon/select.png differ
diff --git a/本时生活H5/static/icon/select_avtive.png b/本时生活H5/static/icon/select_avtive.png
new file mode 100644
index 0000000..dc76782
Binary files /dev/null and b/本时生活H5/static/icon/select_avtive.png differ
diff --git a/本时生活H5/static/icon/site_icon.png b/本时生活H5/static/icon/site_icon.png
new file mode 100644
index 0000000..94eb9a4
Binary files /dev/null and b/本时生活H5/static/icon/site_icon.png differ
diff --git a/本时生活H5/static/icon/storeArrow.png b/本时生活H5/static/icon/storeArrow.png
new file mode 100644
index 0000000..4afb92b
Binary files /dev/null and b/本时生活H5/static/icon/storeArrow.png differ
diff --git a/本时生活H5/static/icon/switch.png b/本时生活H5/static/icon/switch.png
new file mode 100644
index 0000000..1d8d0ea
Binary files /dev/null and b/本时生活H5/static/icon/switch.png differ
diff --git a/本时生活H5/static/icon/tel.png b/本时生活H5/static/icon/tel.png
new file mode 100644
index 0000000..744f34e
Binary files /dev/null and b/本时生活H5/static/icon/tel.png differ
diff --git a/本时生活H5/static/icon/time_icon.png b/本时生活H5/static/icon/time_icon.png
new file mode 100644
index 0000000..8e1f37f
Binary files /dev/null and b/本时生活H5/static/icon/time_icon.png differ
diff --git a/本时生活H5/static/img/accountsIcon_00.png b/本时生活H5/static/img/accountsIcon_00.png
new file mode 100644
index 0000000..ad7569c
Binary files /dev/null and b/本时生活H5/static/img/accountsIcon_00.png differ
diff --git a/本时生活H5/static/img/accountsIcon_01.png b/本时生活H5/static/img/accountsIcon_01.png
new file mode 100644
index 0000000..68dac83
Binary files /dev/null and b/本时生活H5/static/img/accountsIcon_01.png differ
diff --git a/本时生活H5/static/img/address_back.png b/本时生活H5/static/img/address_back.png
new file mode 100644
index 0000000..9f10b85
Binary files /dev/null and b/本时生活H5/static/img/address_back.png differ
diff --git a/本时生活H5/static/img/arrow.png b/本时生活H5/static/img/arrow.png
new file mode 100644
index 0000000..b34fba0
Binary files /dev/null and b/本时生活H5/static/img/arrow.png differ
diff --git a/本时生活H5/static/img/balance-icon-00.png b/本时生活H5/static/img/balance-icon-00.png
new file mode 100644
index 0000000..8fa7345
Binary files /dev/null and b/本时生活H5/static/img/balance-icon-00.png differ
diff --git a/本时生活H5/static/img/balance-icon-01.png b/本时生活H5/static/img/balance-icon-01.png
new file mode 100644
index 0000000..daa157d
Binary files /dev/null and b/本时生活H5/static/img/balance-icon-01.png differ
diff --git a/本时生活H5/static/img/balance-icon-02.png b/本时生活H5/static/img/balance-icon-02.png
new file mode 100644
index 0000000..27002c2
Binary files /dev/null and b/本时生活H5/static/img/balance-icon-02.png differ
diff --git a/本时生活H5/static/img/balance-icon-03.png b/本时生活H5/static/img/balance-icon-03.png
new file mode 100644
index 0000000..b1d9cad
Binary files /dev/null and b/本时生活H5/static/img/balance-icon-03.png differ
diff --git a/本时生活H5/static/img/balance-icon-row.png b/本时生活H5/static/img/balance-icon-row.png
new file mode 100644
index 0000000..b03691e
Binary files /dev/null and b/本时生活H5/static/img/balance-icon-row.png differ
diff --git a/本时生活H5/static/img/campusCoupon_img.png b/本时生活H5/static/img/campusCoupon_img.png
new file mode 100644
index 0000000..56a950d
Binary files /dev/null and b/本时生活H5/static/img/campusCoupon_img.png differ
diff --git a/本时生活H5/static/img/campusCoupon_user - 副本.png b/本时生活H5/static/img/campusCoupon_user - 副本.png
new file mode 100644
index 0000000..7a64628
Binary files /dev/null and b/本时生活H5/static/img/campusCoupon_user - 副本.png differ
diff --git a/本时生活H5/static/img/campusIdx_back.png b/本时生活H5/static/img/campusIdx_back.png
new file mode 100644
index 0000000..24314ca
Binary files /dev/null and b/本时生活H5/static/img/campusIdx_back.png differ
diff --git a/本时生活H5/static/img/campusIdx_icon_00.png b/本时生活H5/static/img/campusIdx_icon_00.png
new file mode 100644
index 0000000..81bf120
Binary files /dev/null and b/本时生活H5/static/img/campusIdx_icon_00.png differ
diff --git a/本时生活H5/static/img/campusIdx_icon_01.png b/本时生活H5/static/img/campusIdx_icon_01.png
new file mode 100644
index 0000000..dcf828b
Binary files /dev/null and b/本时生活H5/static/img/campusIdx_icon_01.png differ
diff --git a/本时生活H5/static/img/campusIdx_icon_02.png b/本时生活H5/static/img/campusIdx_icon_02.png
new file mode 100644
index 0000000..ef158ff
Binary files /dev/null and b/本时生活H5/static/img/campusIdx_icon_02.png differ
diff --git a/本时生活H5/static/img/campusIdx_icon_03.png b/本时生活H5/static/img/campusIdx_icon_03.png
new file mode 100644
index 0000000..fb4c7fb
Binary files /dev/null and b/本时生活H5/static/img/campusIdx_icon_03.png differ
diff --git a/本时生活H5/static/img/campusLogin_back.png b/本时生活H5/static/img/campusLogin_back.png
new file mode 100644
index 0000000..957179f
Binary files /dev/null and b/本时生活H5/static/img/campusLogin_back.png differ
diff --git a/本时生活H5/static/img/campusLogin_back_01.png b/本时生活H5/static/img/campusLogin_back_01.png
new file mode 100644
index 0000000..4693c45
Binary files /dev/null and b/本时生活H5/static/img/campusLogin_back_01.png differ
diff --git a/本时生活H5/static/img/campusLogin_logo.png b/本时生活H5/static/img/campusLogin_logo.png
new file mode 100644
index 0000000..57c317c
Binary files /dev/null and b/本时生活H5/static/img/campusLogin_logo.png differ
diff --git a/本时生活H5/static/img/campus_details_back.png b/本时生活H5/static/img/campus_details_back.png
new file mode 100644
index 0000000..cc0d705
Binary files /dev/null and b/本时生活H5/static/img/campus_details_back.png differ
diff --git a/本时生活H5/static/img/campus_login_00.png b/本时生活H5/static/img/campus_login_00.png
new file mode 100644
index 0000000..eee3f3a
Binary files /dev/null and b/本时生活H5/static/img/campus_login_00.png differ
diff --git a/本时生活H5/static/img/campus_login_01.png b/本时生活H5/static/img/campus_login_01.png
new file mode 100644
index 0000000..820d751
Binary files /dev/null and b/本时生活H5/static/img/campus_login_01.png differ
diff --git a/本时生活H5/static/img/campus_login_02.png b/本时生活H5/static/img/campus_login_02.png
new file mode 100644
index 0000000..10ccbdc
Binary files /dev/null and b/本时生活H5/static/img/campus_login_02.png differ
diff --git a/本时生活H5/static/img/campus_login_03.png b/本时生活H5/static/img/campus_login_03.png
new file mode 100644
index 0000000..54ebe0a
Binary files /dev/null and b/本时生活H5/static/img/campus_login_03.png differ
diff --git a/本时生活H5/static/img/campus_logo.jpg b/本时生活H5/static/img/campus_logo.jpg
new file mode 100644
index 0000000..b14ee63
Binary files /dev/null and b/本时生活H5/static/img/campus_logo.jpg differ
diff --git a/本时生活H5/static/img/cashierTips_icon.png b/本时生活H5/static/img/cashierTips_icon.png
new file mode 100644
index 0000000..2431c93
Binary files /dev/null and b/本时生活H5/static/img/cashierTips_icon.png differ
diff --git a/本时生活H5/static/img/draw-title.png b/本时生活H5/static/img/draw-title.png
new file mode 100644
index 0000000..3831aea
Binary files /dev/null and b/本时生活H5/static/img/draw-title.png differ
diff --git a/本时生活H5/static/img/draw_choose.png b/本时生活H5/static/img/draw_choose.png
new file mode 100644
index 0000000..ec509d9
Binary files /dev/null and b/本时生活H5/static/img/draw_choose.png differ
diff --git a/本时生活H5/static/img/draw_coupon.png b/本时生活H5/static/img/draw_coupon.png
new file mode 100644
index 0000000..559a50f
Binary files /dev/null and b/本时生活H5/static/img/draw_coupon.png differ
diff --git a/本时生活H5/static/img/draw_coupon_active.png b/本时生活H5/static/img/draw_coupon_active.png
new file mode 100644
index 0000000..79fddfe
Binary files /dev/null and b/本时生活H5/static/img/draw_coupon_active.png differ
diff --git a/本时生活H5/static/img/draw_login_02.png b/本时生活H5/static/img/draw_login_02.png
new file mode 100644
index 0000000..a04af93
Binary files /dev/null and b/本时生活H5/static/img/draw_login_02.png differ
diff --git a/本时生活H5/static/img/draw_login_03.png b/本时生活H5/static/img/draw_login_03.png
new file mode 100644
index 0000000..5f7c24b
Binary files /dev/null and b/本时生活H5/static/img/draw_login_03.png differ
diff --git a/本时生活H5/static/img/draw_login_04.png b/本时生活H5/static/img/draw_login_04.png
new file mode 100644
index 0000000..b3e82a4
Binary files /dev/null and b/本时生活H5/static/img/draw_login_04.png differ
diff --git a/本时生活H5/static/img/draw_order.png b/本时生活H5/static/img/draw_order.png
new file mode 100644
index 0000000..c9eaf3d
Binary files /dev/null and b/本时生活H5/static/img/draw_order.png differ
diff --git a/本时生活H5/static/img/giftPack-img01.png b/本时生活H5/static/img/giftPack-img01.png
new file mode 100644
index 0000000..8150cb8
Binary files /dev/null and b/本时生活H5/static/img/giftPack-img01.png differ
diff --git a/本时生活H5/static/img/giftPack-img02.png b/本时生活H5/static/img/giftPack-img02.png
new file mode 100644
index 0000000..61d2068
Binary files /dev/null and b/本时生活H5/static/img/giftPack-img02.png differ
diff --git a/本时生活H5/static/img/giftPack-img03.png b/本时生活H5/static/img/giftPack-img03.png
new file mode 100644
index 0000000..8680409
Binary files /dev/null and b/本时生活H5/static/img/giftPack-img03.png differ
diff --git a/本时生活H5/static/img/giftPack-img04.png b/本时生活H5/static/img/giftPack-img04.png
new file mode 100644
index 0000000..d97c468
Binary files /dev/null and b/本时生活H5/static/img/giftPack-img04.png differ
diff --git a/本时生活H5/static/img/giftPack-img05.png b/本时生活H5/static/img/giftPack-img05.png
new file mode 100644
index 0000000..294c089
Binary files /dev/null and b/本时生活H5/static/img/giftPack-img05.png differ
diff --git a/本时生活H5/static/img/giftPack-img06.png b/本时生活H5/static/img/giftPack-img06.png
new file mode 100644
index 0000000..08cb9d1
Binary files /dev/null and b/本时生活H5/static/img/giftPack-img06.png differ
diff --git a/本时生活H5/static/img/giftPack-img07.png b/本时生活H5/static/img/giftPack-img07.png
new file mode 100644
index 0000000..a2df7b4
Binary files /dev/null and b/本时生活H5/static/img/giftPack-img07.png differ
diff --git a/本时生活H5/static/img/giftPack-img08.png b/本时生活H5/static/img/giftPack-img08.png
new file mode 100644
index 0000000..6d524e0
Binary files /dev/null and b/本时生活H5/static/img/giftPack-img08.png differ
diff --git a/本时生活H5/static/img/giftPack-img09.png b/本时生活H5/static/img/giftPack-img09.png
new file mode 100644
index 0000000..c46ca9e
Binary files /dev/null and b/本时生活H5/static/img/giftPack-img09.png differ
diff --git a/本时生活H5/static/img/giftPack-null.png b/本时生活H5/static/img/giftPack-null.png
new file mode 100644
index 0000000..073f39d
Binary files /dev/null and b/本时生活H5/static/img/giftPack-null.png differ
diff --git a/本时生活H5/static/img/giftPack-user00.png b/本时生活H5/static/img/giftPack-user00.png
new file mode 100644
index 0000000..71734fd
Binary files /dev/null and b/本时生活H5/static/img/giftPack-user00.png differ
diff --git a/本时生活H5/static/img/giftPack-user00_active.png b/本时生活H5/static/img/giftPack-user00_active.png
new file mode 100644
index 0000000..8dbb522
Binary files /dev/null and b/本时生活H5/static/img/giftPack-user00_active.png differ
diff --git a/本时生活H5/static/img/giftPack-user01.png b/本时生活H5/static/img/giftPack-user01.png
new file mode 100644
index 0000000..a4da1a5
Binary files /dev/null and b/本时生活H5/static/img/giftPack-user01.png differ
diff --git a/本时生活H5/static/img/giftPack-user01_active.png b/本时生活H5/static/img/giftPack-user01_active.png
new file mode 100644
index 0000000..55a2dc3
Binary files /dev/null and b/本时生活H5/static/img/giftPack-user01_active.png differ
diff --git a/本时生活H5/static/img/giftPackCoupon_user.png b/本时生活H5/static/img/giftPackCoupon_user.png
new file mode 100644
index 0000000..a3b962e
Binary files /dev/null and b/本时生活H5/static/img/giftPackCoupon_user.png differ
diff --git a/本时生活H5/static/img/gift_box.png b/本时生活H5/static/img/gift_box.png
new file mode 100644
index 0000000..eed5968
Binary files /dev/null and b/本时生活H5/static/img/gift_box.png differ
diff --git a/本时生活H5/static/img/goodsCode_white.png b/本时生活H5/static/img/goodsCode_white.png
new file mode 100644
index 0000000..68ffd6b
Binary files /dev/null and b/本时生活H5/static/img/goodsCode_white.png differ
diff --git a/本时生活H5/static/img/grant_icon.png b/本时生活H5/static/img/grant_icon.png
new file mode 100644
index 0000000..72c945d
Binary files /dev/null and b/本时生活H5/static/img/grant_icon.png differ
diff --git a/本时生活H5/static/img/healthy_img00.png b/本时生活H5/static/img/healthy_img00.png
new file mode 100644
index 0000000..5fdd6f4
Binary files /dev/null and b/本时生活H5/static/img/healthy_img00.png differ
diff --git a/本时生活H5/static/img/healthy_img01.png b/本时生活H5/static/img/healthy_img01.png
new file mode 100644
index 0000000..1895d76
Binary files /dev/null and b/本时生活H5/static/img/healthy_img01.png differ
diff --git a/本时生活H5/static/img/healthy_img02.png b/本时生活H5/static/img/healthy_img02.png
new file mode 100644
index 0000000..89c6e60
Binary files /dev/null and b/本时生活H5/static/img/healthy_img02.png differ
diff --git a/本时生活H5/static/img/healthy_img03.png b/本时生活H5/static/img/healthy_img03.png
new file mode 100644
index 0000000..f871bab
Binary files /dev/null and b/本时生活H5/static/img/healthy_img03.png differ
diff --git a/本时生活H5/static/img/legal_tips.png b/本时生活H5/static/img/legal_tips.png
new file mode 100644
index 0000000..7bb436f
Binary files /dev/null and b/本时生活H5/static/img/legal_tips.png differ
diff --git a/本时生活H5/static/img/login_back.png b/本时生活H5/static/img/login_back.png
new file mode 100644
index 0000000..d4e8c09
Binary files /dev/null and b/本时生活H5/static/img/login_back.png differ
diff --git a/本时生活H5/static/img/logo.png b/本时生活H5/static/img/logo.png
new file mode 100644
index 0000000..3203e2f
Binary files /dev/null and b/本时生活H5/static/img/logo.png differ
diff --git a/本时生活H5/static/img/luckClose.png b/本时生活H5/static/img/luckClose.png
new file mode 100644
index 0000000..64f0a6e
Binary files /dev/null and b/本时生活H5/static/img/luckClose.png differ
diff --git a/本时生活H5/static/img/makeForm_price_back.png b/本时生活H5/static/img/makeForm_price_back.png
new file mode 100644
index 0000000..d001603
Binary files /dev/null and b/本时生活H5/static/img/makeForm_price_back.png differ
diff --git a/本时生活H5/static/img/makeForm_price_back_active.png b/本时生活H5/static/img/makeForm_price_back_active.png
new file mode 100644
index 0000000..a070a88
Binary files /dev/null and b/本时生活H5/static/img/makeForm_price_back_active.png differ
diff --git a/本时生活H5/static/img/null_icon.png b/本时生活H5/static/img/null_icon.png
new file mode 100644
index 0000000..ca299cb
Binary files /dev/null and b/本时生活H5/static/img/null_icon.png differ
diff --git a/本时生活H5/static/img/oilCoupon_img.png b/本时生活H5/static/img/oilCoupon_img.png
new file mode 100644
index 0000000..4783a5a
Binary files /dev/null and b/本时生活H5/static/img/oilCoupon_img.png differ
diff --git a/本时生活H5/static/img/oilIdx_back.png b/本时生活H5/static/img/oilIdx_back.png
new file mode 100644
index 0000000..ce2f998
Binary files /dev/null and b/本时生活H5/static/img/oilIdx_back.png differ
diff --git a/本时生活H5/static/img/packetText_icon.png b/本时生活H5/static/img/packetText_icon.png
new file mode 100644
index 0000000..893418f
Binary files /dev/null and b/本时生活H5/static/img/packetText_icon.png differ
diff --git a/本时生活H5/static/img/packet_arr.png b/本时生活H5/static/img/packet_arr.png
new file mode 100644
index 0000000..4134220
Binary files /dev/null and b/本时生活H5/static/img/packet_arr.png differ
diff --git a/本时生活H5/static/img/pointMore-up.png b/本时生活H5/static/img/pointMore-up.png
new file mode 100644
index 0000000..646061d
Binary files /dev/null and b/本时生活H5/static/img/pointMore-up.png differ
diff --git a/本时生活H5/static/img/pointMore.png b/本时生活H5/static/img/pointMore.png
new file mode 100644
index 0000000..4c9b807
Binary files /dev/null and b/本时生活H5/static/img/pointMore.png differ
diff --git a/本时生活H5/static/img/profigLabel_row.png b/本时生活H5/static/img/profigLabel_row.png
new file mode 100644
index 0000000..190c650
Binary files /dev/null and b/本时生活H5/static/img/profigLabel_row.png differ
diff --git a/本时生活H5/static/img/profig_billie_icon.png b/本时生活H5/static/img/profig_billie_icon.png
new file mode 100644
index 0000000..1cb3ec0
Binary files /dev/null and b/本时生活H5/static/img/profig_billie_icon.png differ
diff --git a/本时生活H5/static/img/profig_billie_icon_active.png b/本时生活H5/static/img/profig_billie_icon_active.png
new file mode 100644
index 0000000..20f040a
Binary files /dev/null and b/本时生活H5/static/img/profig_billie_icon_active.png differ
diff --git a/本时生活H5/static/img/refresh_loding.gif b/本时生活H5/static/img/refresh_loding.gif
new file mode 100644
index 0000000..5bb90fd
Binary files /dev/null and b/本时生活H5/static/img/refresh_loding.gif differ
diff --git a/本时生活H5/static/img/rights_back_02.png b/本时生活H5/static/img/rights_back_02.png
new file mode 100644
index 0000000..c6d7960
Binary files /dev/null and b/本时生活H5/static/img/rights_back_02.png differ
diff --git a/本时生活H5/static/img/shareTitle.png b/本时生活H5/static/img/shareTitle.png
new file mode 100644
index 0000000..5c1488f
Binary files /dev/null and b/本时生活H5/static/img/shareTitle.png differ
diff --git a/本时生活H5/static/img/staff_null.png b/本时生活H5/static/img/staff_null.png
new file mode 100644
index 0000000..2f98c33
Binary files /dev/null and b/本时生活H5/static/img/staff_null.png differ
diff --git a/本时生活H5/static/img/storedCode.png b/本时生活H5/static/img/storedCode.png
new file mode 100644
index 0000000..6906bb6
Binary files /dev/null and b/本时生活H5/static/img/storedCode.png differ
diff --git a/本时生活H5/static/img/subscribe.jpg b/本时生活H5/static/img/subscribe.jpg
new file mode 100644
index 0000000..38ce635
Binary files /dev/null and b/本时生活H5/static/img/subscribe.jpg differ
diff --git a/本时生活H5/static/img/subscribe_gzh.png b/本时生活H5/static/img/subscribe_gzh.png
new file mode 100644
index 0000000..9d54fd8
Binary files /dev/null and b/本时生活H5/static/img/subscribe_gzh.png differ
diff --git a/本时生活H5/static/img/unicomIdx_back.png b/本时生活H5/static/img/unicomIdx_back.png
new file mode 100644
index 0000000..94e5b9b
Binary files /dev/null and b/本时生活H5/static/img/unicomIdx_back.png differ
diff --git a/本时生活H5/static/img/unicom_back.png b/本时生活H5/static/img/unicom_back.png
new file mode 100644
index 0000000..bdafe11
Binary files /dev/null and b/本时生活H5/static/img/unicom_back.png differ
diff --git a/本时生活H5/static/img/unicom_img.png b/本时生活H5/static/img/unicom_img.png
new file mode 100644
index 0000000..704bd0a
Binary files /dev/null and b/本时生活H5/static/img/unicom_img.png differ
diff --git a/本时生活H5/static/img/unicom_logo.png b/本时生活H5/static/img/unicom_logo.png
new file mode 100644
index 0000000..c52ab3b
Binary files /dev/null and b/本时生活H5/static/img/unicom_logo.png differ
diff --git a/本时生活H5/static/img/user-codeImg-down.png b/本时生活H5/static/img/user-codeImg-down.png
new file mode 100644
index 0000000..f522e14
Binary files /dev/null and b/本时生活H5/static/img/user-codeImg-down.png differ
diff --git a/本时生活H5/static/img/user-storedCode-down.png b/本时生活H5/static/img/user-storedCode-down.png
new file mode 100644
index 0000000..36d535b
Binary files /dev/null and b/本时生活H5/static/img/user-storedCode-down.png differ
diff --git a/本时生活H5/static/img/userCoupon.png b/本时生活H5/static/img/userCoupon.png
new file mode 100644
index 0000000..ce5220b
Binary files /dev/null and b/本时生活H5/static/img/userCoupon.png differ
diff --git a/本时生活H5/static/img/userGoods_icon.png b/本时生活H5/static/img/userGoods_icon.png
new file mode 100644
index 0000000..2fe8d86
Binary files /dev/null and b/本时生活H5/static/img/userGoods_icon.png differ
diff --git a/本时生活H5/static/img/userOrder_00.png b/本时生活H5/static/img/userOrder_00.png
new file mode 100644
index 0000000..c24b234
Binary files /dev/null and b/本时生活H5/static/img/userOrder_00.png differ
diff --git a/本时生活H5/static/img/userOrder_01.png b/本时生活H5/static/img/userOrder_01.png
new file mode 100644
index 0000000..0d0ca72
Binary files /dev/null and b/本时生活H5/static/img/userOrder_01.png differ
diff --git a/本时生活H5/static/img/userOrder_02.png b/本时生活H5/static/img/userOrder_02.png
new file mode 100644
index 0000000..9950970
Binary files /dev/null and b/本时生活H5/static/img/userOrder_02.png differ
diff --git a/本时生活H5/static/img/userOrder_03.png b/本时生活H5/static/img/userOrder_03.png
new file mode 100644
index 0000000..91a105e
Binary files /dev/null and b/本时生活H5/static/img/userOrder_03.png differ
diff --git a/本时生活H5/static/img/userOrder_04.png b/本时生活H5/static/img/userOrder_04.png
new file mode 100644
index 0000000..4e5b8f6
Binary files /dev/null and b/本时生活H5/static/img/userOrder_04.png differ
diff --git a/本时生活H5/static/img/userOrder_05.png b/本时生活H5/static/img/userOrder_05.png
new file mode 100644
index 0000000..bc3794e
Binary files /dev/null and b/本时生活H5/static/img/userOrder_05.png differ
diff --git a/本时生活H5/static/img/userOrder_06.png b/本时生活H5/static/img/userOrder_06.png
new file mode 100644
index 0000000..6678f49
Binary files /dev/null and b/本时生活H5/static/img/userOrder_06.png differ
diff --git a/本时生活H5/static/img/userOrder_07.png b/本时生活H5/static/img/userOrder_07.png
new file mode 100644
index 0000000..7617dd2
Binary files /dev/null and b/本时生活H5/static/img/userOrder_07.png differ
diff --git a/本时生活H5/static/img/userOrder_08.png b/本时生活H5/static/img/userOrder_08.png
new file mode 100644
index 0000000..23ff6b0
Binary files /dev/null and b/本时生活H5/static/img/userOrder_08.png differ
diff --git a/本时生活H5/static/img/userOrder_09.png b/本时生活H5/static/img/userOrder_09.png
new file mode 100644
index 0000000..f7f8dc1
Binary files /dev/null and b/本时生活H5/static/img/userOrder_09.png differ
diff --git a/本时生活H5/static/img/userOrder_10.png b/本时生活H5/static/img/userOrder_10.png
new file mode 100644
index 0000000..9f5773d
Binary files /dev/null and b/本时生活H5/static/img/userOrder_10.png differ
diff --git a/本时生活H5/static/img/userOrder_11.png b/本时生活H5/static/img/userOrder_11.png
new file mode 100644
index 0000000..9c3de30
Binary files /dev/null and b/本时生活H5/static/img/userOrder_11.png differ
diff --git a/本时生活H5/static/img/userSite.png b/本时生活H5/static/img/userSite.png
new file mode 100644
index 0000000..6902bab
Binary files /dev/null and b/本时生活H5/static/img/userSite.png differ
diff --git a/本时生活H5/static/img/user_identity_00.png b/本时生活H5/static/img/user_identity_00.png
new file mode 100644
index 0000000..e9e0876
Binary files /dev/null and b/本时生活H5/static/img/user_identity_00.png differ
diff --git a/本时生活H5/static/img/user_identity_01.png b/本时生活H5/static/img/user_identity_01.png
new file mode 100644
index 0000000..35260a2
Binary files /dev/null and b/本时生活H5/static/img/user_identity_01.png differ
diff --git a/本时生活H5/static/img/wqb.jpg b/本时生活H5/static/img/wqb.jpg
new file mode 100644
index 0000000..6c92cef
Binary files /dev/null and b/本时生活H5/static/img/wqb.jpg differ
diff --git a/本时生活H5/static/img/wx.jpg b/本时生活H5/static/img/wx.jpg
new file mode 100644
index 0000000..fcb00a1
Binary files /dev/null and b/本时生活H5/static/img/wx.jpg differ
diff --git a/本时生活H5/static/logo.png b/本时生活H5/static/logo.png
new file mode 100644
index 0000000..b5771e2
Binary files /dev/null and b/本时生活H5/static/logo.png differ
diff --git a/本时生活H5/static/tabBarIcon/00.png b/本时生活H5/static/tabBarIcon/00.png
new file mode 100644
index 0000000..ab1675c
Binary files /dev/null and b/本时生活H5/static/tabBarIcon/00.png differ
diff --git a/本时生活H5/static/tabBarIcon/00_active.png b/本时生活H5/static/tabBarIcon/00_active.png
new file mode 100644
index 0000000..0519763
Binary files /dev/null and b/本时生活H5/static/tabBarIcon/00_active.png differ
diff --git a/本时生活H5/static/tabBarIcon/01.png b/本时生活H5/static/tabBarIcon/01.png
new file mode 100644
index 0000000..2f8d049
Binary files /dev/null and b/本时生活H5/static/tabBarIcon/01.png differ
diff --git a/本时生活H5/static/tabBarIcon/01_active.png b/本时生活H5/static/tabBarIcon/01_active.png
new file mode 100644
index 0000000..d4ec6b3
Binary files /dev/null and b/本时生活H5/static/tabBarIcon/01_active.png differ
diff --git a/本时生活H5/store/index.js b/本时生活H5/store/index.js
new file mode 100644
index 0000000..777e480
--- /dev/null
+++ b/本时生活H5/store/index.js
@@ -0,0 +1,24 @@
+import Vue from "vue"
+import Vuex from 'vuex'
+
+Vue.use(Vuex)
+
+export default new Vuex.Store({
+ state: {
+ token: uni.getStorageSync('token') || ''
+ },
+ getters: {
+ getToken: state => {
+ return state.token
+ }
+ },
+ mutations: {
+ setToken(state, tokenString) {
+ state.token = tokenString
+ uni.setStorageSync('token', tokenString)
+ }
+ },
+ medules: {
+
+ }
+})
\ No newline at end of file
diff --git a/本时生活H5/uni.scss b/本时生活H5/uni.scss
new file mode 100644
index 0000000..845142d
--- /dev/null
+++ b/本时生活H5/uni.scss
@@ -0,0 +1,76 @@
+/**
+ * 这里是uni-app内置的常用样式变量
+ *
+ * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
+ * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
+ *
+ */
+
+/**
+ * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
+ *
+ * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
+ */
+
+/* 颜色变量 */
+
+/* 行为相关颜色 */
+$uni-color-primary: #007aff;
+$uni-color-success: #4cd964;
+$uni-color-warning: #f0ad4e;
+$uni-color-error: #dd524d;
+
+/* 文字基本颜色 */
+$uni-text-color:#333;//基本色
+$uni-text-color-inverse:#fff;//反色
+$uni-text-color-grey:#999;//辅助灰色,如加载更多的提示信息
+$uni-text-color-placeholder: #808080;
+$uni-text-color-disable:#c0c0c0;
+
+/* 背景颜色 */
+$uni-bg-color:#ffffff;
+$uni-bg-color-grey:#f8f8f8;
+$uni-bg-color-hover:#f1f1f1;//点击状态颜色
+$uni-bg-color-mask:rgba(0, 0, 0, 0.4);//遮罩颜色
+
+/* 边框颜色 */
+$uni-border-color:#c8c7cc;
+
+/* 尺寸变量 */
+
+/* 文字尺寸 */
+$uni-font-size-sm:24rpx;
+$uni-font-size-base:28rpx;
+$uni-font-size-lg:32rpx;
+
+/* 图片尺寸 */
+$uni-img-size-sm:40rpx;
+$uni-img-size-base:52rpx;
+$uni-img-size-lg:80rpx;
+
+/* Border Radius */
+$uni-border-radius-sm: 4rpx;
+$uni-border-radius-base: 6rpx;
+$uni-border-radius-lg: 12rpx;
+$uni-border-radius-circle: 50%;
+
+/* 水平间距 */
+$uni-spacing-row-sm: 10px;
+$uni-spacing-row-base: 20rpx;
+$uni-spacing-row-lg: 30rpx;
+
+/* 垂直间距 */
+$uni-spacing-col-sm: 8rpx;
+$uni-spacing-col-base: 16rpx;
+$uni-spacing-col-lg: 24rpx;
+
+/* 透明度 */
+$uni-opacity-disabled: 0.3; // 组件禁用态的透明度
+
+/* 文章场景相关 */
+$uni-color-title: #2C405A; // 文章标题颜色
+$uni-font-size-title:40rpx;
+$uni-color-subtitle: #555555; // 二级标题颜色
+$uni-font-size-subtitle:36rpx;
+$uni-color-paragraph: #3F536E; // 文章段落颜色
+$uni-font-size-paragraph:30rpx;
\ No newline at end of file
diff --git a/本时生活H5/uni_modules/uni-icons/changelog.md b/本时生活H5/uni_modules/uni-icons/changelog.md
new file mode 100644
index 0000000..204f31b
--- /dev/null
+++ b/本时生活H5/uni_modules/uni-icons/changelog.md
@@ -0,0 +1,4 @@
+## 1.1.5(2021-05-12)
+- 新增 组件示例地址
+## 1.1.4(2021-02-05)
+- 调整为uni_modules目录规范
diff --git a/本时生活H5/uni_modules/uni-icons/components/uni-icons/icons.js b/本时生活H5/uni_modules/uni-icons/components/uni-icons/icons.js
new file mode 100644
index 0000000..60b7332
--- /dev/null
+++ b/本时生活H5/uni_modules/uni-icons/components/uni-icons/icons.js
@@ -0,0 +1,132 @@
+export default {
+ "pulldown": "\ue588",
+ "refreshempty": "\ue461",
+ "back": "\ue471",
+ "forward": "\ue470",
+ "more": "\ue507",
+ "more-filled": "\ue537",
+ "scan": "\ue612",
+ "qq": "\ue264",
+ "weibo": "\ue260",
+ "weixin": "\ue261",
+ "pengyouquan": "\ue262",
+ "loop": "\ue565",
+ "refresh": "\ue407",
+ "refresh-filled": "\ue437",
+ "arrowthindown": "\ue585",
+ "arrowthinleft": "\ue586",
+ "arrowthinright": "\ue587",
+ "arrowthinup": "\ue584",
+ "undo-filled": "\ue7d6",
+ "undo": "\ue406",
+ "redo": "\ue405",
+ "redo-filled": "\ue7d9",
+ "bars": "\ue563",
+ "chatboxes": "\ue203",
+ "camera": "\ue301",
+ "chatboxes-filled": "\ue233",
+ "camera-filled": "\ue7ef",
+ "cart-filled": "\ue7f4",
+ "cart": "\ue7f5",
+ "checkbox-filled": "\ue442",
+ "checkbox": "\ue7fa",
+ "arrowleft": "\ue582",
+ "arrowdown": "\ue581",
+ "arrowright": "\ue583",
+ "smallcircle-filled": "\ue801",
+ "arrowup": "\ue580",
+ "circle": "\ue411",
+ "eye-filled": "\ue568",
+ "eye-slash-filled": "\ue822",
+ "eye-slash": "\ue823",
+ "eye": "\ue824",
+ "flag-filled": "\ue825",
+ "flag": "\ue508",
+ "gear-filled": "\ue532",
+ "reload": "\ue462",
+ "gear": "\ue502",
+ "hand-thumbsdown-filled": "\ue83b",
+ "hand-thumbsdown": "\ue83c",
+ "hand-thumbsup-filled": "\ue83d",
+ "heart-filled": "\ue83e",
+ "hand-thumbsup": "\ue83f",
+ "heart": "\ue840",
+ "home": "\ue500",
+ "info": "\ue504",
+ "home-filled": "\ue530",
+ "info-filled": "\ue534",
+ "circle-filled": "\ue441",
+ "chat-filled": "\ue847",
+ "chat": "\ue263",
+ "mail-open-filled": "\ue84d",
+ "email-filled": "\ue231",
+ "mail-open": "\ue84e",
+ "email": "\ue201",
+ "checkmarkempty": "\ue472",
+ "list": "\ue562",
+ "locked-filled": "\ue856",
+ "locked": "\ue506",
+ "map-filled": "\ue85c",
+ "map-pin": "\ue85e",
+ "map-pin-ellipse": "\ue864",
+ "map": "\ue364",
+ "minus-filled": "\ue440",
+ "mic-filled": "\ue332",
+ "minus": "\ue410",
+ "micoff": "\ue360",
+ "mic": "\ue302",
+ "clear": "\ue434",
+ "smallcircle": "\ue868",
+ "close": "\ue404",
+ "closeempty": "\ue460",
+ "paperclip": "\ue567",
+ "paperplane": "\ue503",
+ "paperplane-filled": "\ue86e",
+ "person-filled": "\ue131",
+ "contact-filled": "\ue130",
+ "person": "\ue101",
+ "contact": "\ue100",
+ "images-filled": "\ue87a",
+ "phone": "\ue200",
+ "images": "\ue87b",
+ "image": "\ue363",
+ "image-filled": "\ue877",
+ "location-filled": "\ue333",
+ "location": "\ue303",
+ "plus-filled": "\ue439",
+ "plus": "\ue409",
+ "plusempty": "\ue468",
+ "help-filled": "\ue535",
+ "help": "\ue505",
+ "navigate-filled": "\ue884",
+ "navigate": "\ue501",
+ "mic-slash-filled": "\ue892",
+ "search": "\ue466",
+ "settings": "\ue560",
+ "sound": "\ue590",
+ "sound-filled": "\ue8a1",
+ "spinner-cycle": "\ue465",
+ "download-filled": "\ue8a4",
+ "personadd-filled": "\ue132",
+ "videocam-filled": "\ue8af",
+ "personadd": "\ue102",
+ "upload": "\ue402",
+ "upload-filled": "\ue8b1",
+ "starhalf": "\ue463",
+ "star-filled": "\ue438",
+ "star": "\ue408",
+ "trash": "\ue401",
+ "phone-filled": "\ue230",
+ "compose": "\ue400",
+ "videocam": "\ue300",
+ "trash-filled": "\ue8dc",
+ "download": "\ue403",
+ "chatbubble-filled": "\ue232",
+ "chatbubble": "\ue202",
+ "cloud-download": "\ue8e4",
+ "cloud-upload-filled": "\ue8e5",
+ "cloud-upload": "\ue8e6",
+ "cloud-download-filled": "\ue8e9",
+ "headphones":"\ue8bf",
+ "shop":"\ue609"
+}
diff --git a/本时生活H5/uni_modules/uni-icons/components/uni-icons/uni-icons.vue b/本时生活H5/uni_modules/uni-icons/components/uni-icons/uni-icons.vue
new file mode 100644
index 0000000..6319565
--- /dev/null
+++ b/本时生活H5/uni_modules/uni-icons/components/uni-icons/uni-icons.vue
@@ -0,0 +1,71 @@
+
+ {{icons[type]}}
+
+
+
+
+
diff --git a/本时生活H5/uni_modules/uni-icons/components/uni-icons/uni.ttf b/本时生活H5/uni_modules/uni-icons/components/uni-icons/uni.ttf
new file mode 100644
index 0000000..60a1968
Binary files /dev/null and b/本时生活H5/uni_modules/uni-icons/components/uni-icons/uni.ttf differ
diff --git a/本时生活H5/uni_modules/uni-icons/package.json b/本时生活H5/uni_modules/uni-icons/package.json
new file mode 100644
index 0000000..c8e1224
--- /dev/null
+++ b/本时生活H5/uni_modules/uni-icons/package.json
@@ -0,0 +1,82 @@
+{
+ "id": "uni-icons",
+ "displayName": "uni-icons 图标",
+ "version": "1.1.5",
+ "description": "图标组件,用于展示移动端常见的图标,可自定义颜色、大小。",
+ "keywords": [
+ "uni-ui",
+ "uniui",
+ "icon",
+ "图标"
+],
+ "repository": "https://github.com/dcloudio/uni-ui",
+ "engines": {
+ "HBuilderX": ""
+ },
+ "directories": {
+ "example": "../../temps/example_temps"
+ },
+ "dcloudext": {
+ "category": [
+ "前端组件",
+ "通用组件"
+ ],
+ "sale": {
+ "regular": {
+ "price": "0.00"
+ },
+ "sourcecode": {
+ "price": "0.00"
+ }
+ },
+ "contact": {
+ "qq": ""
+ },
+ "declaration": {
+ "ads": "无",
+ "data": "无",
+ "permissions": "无"
+ },
+ "npmurl": "https://www.npmjs.com/package/@dcloudio/uni-ui"
+ },
+ "uni_modules": {
+ "dependencies": [],
+ "encrypt": [],
+ "platforms": {
+ "cloud": {
+ "tcb": "y",
+ "aliyun": "y"
+ },
+ "client": {
+ "App": {
+ "app-vue": "y",
+ "app-nvue": "y"
+ },
+ "H5-mobile": {
+ "Safari": "y",
+ "Android Browser": "y",
+ "微信浏览器(Android)": "y",
+ "QQ浏览器(Android)": "y"
+ },
+ "H5-pc": {
+ "Chrome": "y",
+ "IE": "y",
+ "Edge": "y",
+ "Firefox": "y",
+ "Safari": "y"
+ },
+ "小程序": {
+ "微信": "y",
+ "阿里": "y",
+ "百度": "y",
+ "字节跳动": "y",
+ "QQ": "y"
+ },
+ "快应用": {
+ "华为": "u",
+ "联盟": "u"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/本时生活H5/uni_modules/uni-icons/readme.md b/本时生活H5/uni_modules/uni-icons/readme.md
new file mode 100644
index 0000000..8d56f42
--- /dev/null
+++ b/本时生活H5/uni_modules/uni-icons/readme.md
@@ -0,0 +1,46 @@
+
+
+## Icons 图标
+> **组件名:uni-icons**
+> 代码块: `uIcons`
+
+
+用于展示 icons 图标 。
+
+### 安装方式
+
+本组件符合[easycom](https://uniapp.dcloud.io/collocation/pages?id=easycom)规范,`HBuilderX 2.5.5`起,只需将本组件导入项目,在页面`template`中即可直接使用,无需在页面中`import`和注册`components`。
+
+如需通过`npm`方式使用`uni-ui`组件,另见文档:[https://ext.dcloud.net.cn/plugin?id=55](https://ext.dcloud.net.cn/plugin?id=55)
+
+### 基本用法
+
+在 ``template`` 中使用组件
+
+```html
+
+```
+
+
+
+## API
+
+### Icons Props
+
+|属性名 |类型 |默认值 |说明 |
+|:-: |:-: |:-: |:-: |
+|size |Number |24 |图标大小 |
+|type |String |- |图标图案,参考示例 |
+|color |String |- |图标颜色 |
+
+
+### Icons Events
+|事件名 |说明 |返回值|
+|:-: |:-: |:-: |
+|@click|点击 Icon 触发事件|- |
+
+
+
+## 组件示例
+
+点击查看:[https://hellouniapp.dcloud.net.cn/pages/extUI/icons/icons](https://hellouniapp.dcloud.net.cn/pages/extUI/icons/icons)
\ No newline at end of file
diff --git a/本时生活H5/unpackage/debug/.roid.ins b/本时生活H5/unpackage/debug/.roid.ins
new file mode 100644
index 0000000..3856a44
--- /dev/null
+++ b/本时生活H5/unpackage/debug/.roid.ins
@@ -0,0 +1 @@
+installed
\ No newline at end of file
diff --git a/本时生活H5/unpackage/debug/android_debug.apk b/本时生活H5/unpackage/debug/android_debug.apk
new file mode 100644
index 0000000..69642d3
Binary files /dev/null and b/本时生活H5/unpackage/debug/android_debug.apk differ
diff --git a/本时生活H5/unpackage/dist/build/.automator/app-plus/.automator.json b/本时生活H5/unpackage/dist/build/.automator/app-plus/.automator.json
new file mode 100644
index 0000000..e69de29
diff --git a/本时生活H5/unpackage/dist/build/.automator/h5/.automator.json b/本时生活H5/unpackage/dist/build/.automator/h5/.automator.json
new file mode 100644
index 0000000..e69de29
diff --git a/本时生活H5/unpackage/dist/build/app-plus/__uniappchooselocation.js b/本时生活H5/unpackage/dist/build/app-plus/__uniappchooselocation.js
new file mode 100644
index 0000000..7103f06
--- /dev/null
+++ b/本时生活H5/unpackage/dist/build/app-plus/__uniappchooselocation.js
@@ -0,0 +1 @@
+!function(e){var t={};function A(a){if(t[a])return t[a].exports;var i=t[a]={i:a,l:!1,exports:{}};return e[a].call(i.exports,i,i.exports,A),i.l=!0,i.exports}A.m=e,A.c=t,A.d=function(e,t,a){A.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:a})},A.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},A.t=function(e,t){if(1&t&&(e=A(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var a=Object.create(null);if(A.r(a),Object.defineProperty(a,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)A.d(a,i,function(t){return e[t]}.bind(null,i));return a},A.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return A.d(t,"a",t),t},A.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},A.p="",A(A.s=41)}([function(e,t){e.exports={}},function(e,t,A){"use strict";function a(e,t,A,a,i,n,o,s,r,c){var l,d="function"==typeof e?e.options:e;if(r){d.components||(d.components={});var u=Object.prototype.hasOwnProperty;for(var h in r)u.call(r,h)&&!u.call(d.components,h)&&(d.components[h]=r[h])}if(c&&((c.beforeCreate||(c.beforeCreate=[])).unshift((function(){this[c.__module]=this})),(d.mixins||(d.mixins=[])).push(c)),t&&(d.render=t,d.staticRenderFns=A,d._compiled=!0),a&&(d.functional=!0),n&&(d._scopeId="data-v-"+n),o?(l=function(e){(e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),i&&i.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(o)},d._ssrRegister=l):i&&(l=s?function(){i.call(this,this.$root.$options.shadowRoot)}:i),l)if(d.functional){d._injectStyles=l;var f=d.render;d.render=function(e,t){return l.call(t),f(e,t)}}else{var g=d.beforeCreate;d.beforeCreate=g?[].concat(g,l):[l]}return{exports:e,options:d}}A.d(t,"a",(function(){return a}))},function(e,t,A){"use strict";var a;Object.defineProperty(t,"__esModule",{value:!0}),t.weexPlus=t.default=void 0,a="function"==typeof getUni?getUni:function(){var e=function(e){return"function"==typeof e},t=function(e){return e.then((function(e){return[null,e]})).catch((function(e){return[e]}))},A=/^\$|^on|^create|Sync$|Manager$|^pause/,a=["os","getCurrentSubNVue","getSubNVueById","stopRecord","stopVoice","stopBackgroundAudio","stopPullDownRefresh","hideKeyboard","hideToast","hideLoading","showNavigationBarLoading","hideNavigationBarLoading","canIUse","navigateBack","closeSocket","pageScrollTo","drawCanvas"],n=function(e){return(!A.test(e)||"createBLEConnection"===e)&&!~a.indexOf(e)},o=function(A){return function(){for(var a=arguments.length,i=Array(a>1?a-1:0),n=1;n0&&void 0!==arguments[0]?arguments[0]:{};return e(o.success)||e(o.fail)||e(o.complete)?A.apply(void 0,[o].concat(i)):t(new Promise((function(e,t){A.apply(void 0,[Object.assign({},o,{success:e,fail:t})].concat(i)),Promise.prototype.finally=function(e){var t=this.constructor;return this.then((function(A){return t.resolve(e()).then((function(){return A}))}),(function(A){return t.resolve(e()).then((function(){throw A}))}))}})))}},s=[],r=void 0;function c(e){s.forEach((function(t){return t({origin:r,data:e})}))}var l=i.webview.currentWebview().id,d=new BroadcastChannel("UNI-APP-SUBNVUE");function u(e){var t=i.webview.getWebviewById(e);return t&&!t.$processed&&function(e){e.$processed=!0;var t=i.webview.currentWebview().id===e.id,A="uniNView"===e.__uniapp_origin_type&&e.__uniapp_origin_id,a=e.id;if(e.postMessage=function(e){A?d.postMessage({data:e,to:t?A:a}):w({type:"UniAppSubNVue",data:e})},e.onMessage=function(e){s.push(e)},e.__uniapp_mask_id){r=e.__uniapp_host;var n=e.__uniapp_mask,o=i.webview.getWebviewById(e.__uniapp_mask_id);o=o.parent()||o;var c=e.show,l=e.hide,u=e.close,h=function(){o.setStyle({mask:n})},f=function(){o.setStyle({mask:"none"})};e.show=function(){h();for(var t=arguments.length,A=Array(t),a=0;a1&&void 0!==arguments[1]?arguments[1]:"GET",A=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"application/x-www-form-urlencoded";return"object"===(void 0===e?"undefined":j(e))?"POST"===t.toUpperCase()&&"application/json"===A.toLowerCase()?JSON.stringify(e):Object.keys(e).map((function(t){return encodeURIComponent(t)+"="+encodeURIComponent(e[t])})).join("&"):e},G=weex.requireModule("plusstorage"),T=weex.requireModule("clipboard"),Q=function(){if("function"==typeof getUniEmitter)return getUniEmitter;var e={$on:function(){console.warn("uni.$on failed")},$off:function(){console.warn("uni.$off failed")},$once:function(){console.warn("uni.$once failed")},$emit:function(){console.warn("uni.$emit failed")}};return function(){return e}}();function U(e,t,A){return e[t].apply(e,A)}var F=Object.freeze({loadFontFace:function(t){var A=t.family,a=t.source,i=(t.desc,t.success),n=(t.fail,t.complete);E.addRule("fontFace",{fontFamily:A,src:a.replace(/"/g,"'")});var o={errMsg:"loadFontFace:ok",status:"loaded"};e(i)&&i(o),e(n)&&n(o)},ready:N,request:function(t){var A=t.url,a=t.data,i=t.header,n=t.method,o=void 0===n?"GET":n,s=t.dataType,r=void 0===s?"json":s,c=(t.responseType,t.success),l=t.fail,d=t.complete,u=!1,h=!1,f={};if(i)for(var g in i)h||"content-type"!==g.toLowerCase()?f[g]=i[g]:(h=!0,f["Content-Type"]=i[g]);return"GET"===o&&a&&(A=A+(~A.indexOf("?")?"&"===A.substr(-1)||"?"===A.substr(-1)?"":"&":"?")+P(a)),O.fetch({url:A,method:o,headers:f,type:"json"===r?"json":"text",body:"GET"!==o?P(a,o,f["Content-Type"]):""},(function(t){var A=t.status,a=(t.ok,t.statusText,t.data),i=t.headers,n={};!A||-1===A||u?(n.errMsg="request:fail",e(l)&&l(n)):(n.data=a,n.statusCode=A,n.header=i,e(c)&&c(n)),e(d)&&d(n)})),{abort:function(){u=!0}}},getStorage:function(t){var A=t.key,a=(t.data,t.success),i=t.fail,n=t.complete;G.getItem(A+"__TYPE",(function(t){if("success"===t.result){var o=t.data;G.getItem(A,(function(t){if("success"===t.result){var A=t.data;o&&A?("String"!==o&&(A=JSON.parse(A)),e(a)&&a({errMsg:"getStorage:ok",data:A})):(t.errMsg="setStorage:fail",e(i)&&i(t))}else t.errMsg="setStorage:fail",e(i)&&i(t);e(n)&&n(t)}))}else t.errMsg="setStorage:fail",e(i)&&i(t),e(n)&&n(t)}))},setStorage:function(t){var A=t.key,a=t.data,i=t.success,n=t.fail,o=t.complete,s="String";"object"===(void 0===a?"undefined":j(a))&&(s="Object",a=JSON.stringify(a)),G.setItem(A,a,(function(t){"success"===t.result?G.setItem(A+"__TYPE",s,(function(t){"success"===t.result?e(i)&&i({errMsg:"setStorage:ok"}):(t.errMsg="setStorage:fail",e(n)&&n(t))})):(t.errMsg="setStorage:fail",e(n)&&n(t)),e(o)&&o(t)}))},removeStorage:function(t){var A=t.key,a=(t.data,t.success),i=t.fail,n=t.complete;G.removeItem(A,(function(t){"success"===t.result?e(a)&&a({errMsg:"removeStorage:ok"}):(t.errMsg="removeStorage:fail",e(i)&&i(t)),e(n)&&n(t)})),G.removeItem(A+"__TYPE")},clearStorage:function(e){e.key,e.data,e.success,e.fail,e.complete},getClipboardData:function(t){var A=t.success,a=(t.fail,t.complete);T.getString((function(t){var i={errMsg:"getClipboardData:ok",data:t.data};e(A)&&A(i),e(a)&&a(i)}))},setClipboardData:function(t){var A=t.data,a=t.success,i=(t.fail,t.complete),n={errMsg:"setClipboardData:ok"};T.setString(A),e(a)&&a(n),e(i)&&i(n)},onSubNVueMessage:c,getSubNVueById:u,getCurrentSubNVue:function(){return u(i.webview.currentWebview().id)},$on:function(){return U(Q(),"$on",[].concat(Array.prototype.slice.call(arguments)))},$off:function(){return U(Q(),"$off",[].concat(Array.prototype.slice.call(arguments)))},$once:function(){return U(Q(),"$once",[].concat(Array.prototype.slice.call(arguments)))},$emit:function(){return U(Q(),"$emit",[].concat(Array.prototype.slice.call(arguments)))}}),R={os:{nvue:!0}},V={};return"undefined"!=typeof Proxy?V=new Proxy({},{get:function(e,t){if("os"===t)return{nvue:!0};if("postMessage"===t)return w;if("requireNativePlugin"===t)return I;if("onNavigationBarButtonTap"===t)return S;if("onNavigationBarSearchInputChanged"===t)return C;if("onNavigationBarSearchInputConfirmed"===t)return D;if("onNavigationBarSearchInputClicked"===t)return L;var A=F[t];return A||(A=b(t)),n(t)?o(A):A}}):(Object.keys(R).forEach((function(e){V[e]=R[e]})),V.postMessage=w,V.requireNativePlugin=I,V.onNavigationBarButtonTap=S,V.onNavigationBarSearchInputChanged=C,V.onNavigationBarSearchInputConfirmed=D,V.onNavigationBarSearchInputClicked=L,Object.keys({uploadFile:!0,downloadFile:!0,chooseImage:!0,previewImage:!0,getImageInfo:!0,saveImageToPhotosAlbum:!0,chooseVideo:!0,saveVideoToPhotosAlbum:!0,saveFile:!0,getSavedFileList:!0,getSavedFileInfo:!0,removeSavedFile:!0,openDocument:!0,setStorage:!0,getStorage:!0,getStorageInfo:!0,removeStorage:!0,clearStorage:!0,getLocation:!0,chooseLocation:!0,openLocation:!0,getSystemInfo:!0,getNetworkType:!0,makePhoneCall:!0,scanCode:!0,setScreenBrightness:!0,getScreenBrightness:!0,setKeepScreenOn:!0,vibrateLong:!0,vibrateShort:!0,addPhoneContact:!0,showToast:!0,showLoading:!0,hideToast:!0,hideLoading:!0,showModal:!0,showActionSheet:!0,setNavigationBarTitle:!0,setNavigationBarColor:!0,navigateTo:!0,redirectTo:!0,reLaunch:!0,switchTab:!0,navigateBack:!0,getProvider:!0,login:!0,getUserInfo:!0,share:!0,requestPayment:!0,subscribePush:!0,unsubscribePush:!0,onPush:!0,offPush:!0}).forEach((function(e){var t=F[e];t||(t=b(e)),n(e)?V[e]=o(t):V[e]=t}))),V};var i=new WeexPlus(weex);t.weexPlus=i;var n=a(weex,i,BroadcastChannel);t.default=n},function(e,t,A){Vue.prototype.__$appStyle__={},Vue.prototype.__merge_style&&Vue.prototype.__merge_style(A(4).default,Vue.prototype.__$appStyle__)},function(e,t,A){"use strict";A.r(t);var a=A(0),i=A.n(a);for(var n in a)"default"!==n&&function(e){A.d(t,e,(function(){return a[e]}))}(n);t.default=i.a},function(e,t,A){"use strict";(function(e){Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var A={onLoad:function(){this.initMessage()},methods:{initMessage:function(){var t=this,A=e.webview.currentWebview().extras||{},a=A.from,i=(A.callback,A.runtime),n=A.data,o=void 0===n?{}:n,s=A.useGlobalEvent;this.__from=a,this.__runtime=i,this.__page=e.webview.currentWebview().id,this.__useGlobalEvent=s,this.data=JSON.parse(JSON.stringify(o)),e.key.addEventListener("backbutton",(function(){"function"==typeof t.onClose?t.onClose():e.webview.currentWebview().close("auto")}));var r=this,c=function(e){var t=e.data&&e.data.__message;t&&r.__onMessageCallback&&r.__onMessageCallback(t.data)};this.__useGlobalEvent?weex.requireModule("globalEvent").addEventListener("plusMessage",c):new BroadcastChannel(this.__page).onmessage=c},postMessage:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},A=arguments.length>1&&void 0!==arguments[1]&&arguments[1],a=JSON.parse(JSON.stringify({__message:{__page:this.__page,data:t,keep:A}})),i=this.__from;if("v8"===this.__runtime)if(this.__useGlobalEvent)e.webview.postMessageToUniNView(a,i);else{var n=new BroadcastChannel(i);n.postMessage(a)}else{var o=e.webview.getWebviewById(i);o&&o.evalJS("__plusMessage&&__plusMessage(".concat(JSON.stringify({data:a}),")"))}},onMessage:function(e){this.__onMessageCallback=e}}};t.default=A}).call(this,A(2).weexPlus)},function(e,t,A){"use strict";(function(e){Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var A={data:function(){return{locale:"en",fallbackLocale:"en",localization:{en:{done:"OK",cancel:"Cancel"},zh:{done:"完成",cancel:"取消"},"zh-hans":{},"zh-hant":{},messages:{}}}},onLoad:function(){this.initLocale()},created:function(){this.initLocale()},methods:{initLocale:function(){if(!this.__initLocale){this.__initLocale=!0;var t=(e.webview.currentWebview().extras||{}).data||{};if(t.messages&&(this.localization.messages=t.messages),t.locale)this.locale=t.locale.toLowerCase();else{var A=e.os.language.toLowerCase().split("/")[0].replace("_","-").split("-"),a=A[1];a&&(A[1]={chs:"hans",cn:"hans",sg:"hans",cht:"hant",tw:"hant",hk:"hant",mo:"hant"}[a]||a),A.length=A.length>2?2:A.length,this.locale=A.join("-")}}},localize:function(e){var t=this.locale,A=t.split("-")[0],a=this.fallbackLocale,i=this.localization;function n(e){return i[e]||{}}return n("messages")[e]||n(t)[e]||n(A)[e]||n(a)[e]||e}}};t.default=A}).call(this,A(2).weexPlus)},function(e,t,A){"use strict";var a=A(29),i=A(12),n=A(1);var o=Object(n.a)(i.default,a.b,a.c,!1,null,null,"14d2bcf2",!1,a.a,void 0);(function(e){this.options.style||(this.options.style={}),Vue.prototype.__merge_style&&Vue.prototype.__$appStyle__&&Vue.prototype.__merge_style(Vue.prototype.__$appStyle__,this.options.style),Vue.prototype.__merge_style?Vue.prototype.__merge_style(A(36).default,this.options.style):Object.assign(this.options.style,A(36).default)}).call(o),t.default=o.exports},,,,,function(e,t,A){"use strict";var a=A(13),i=A.n(a);t.default=i.a},function(e,t,A){"use strict";(function(e,a){Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var i=o(A(5)),n=o(A(6));function o(e){return e&&e.__esModule?e:{default:e}}function s(e,t){var A=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),A.push.apply(A,a)}return A}function r(e,t,A){return t in e?Object.defineProperty(e,t,{value:A,enumerable:!0,configurable:!0,writable:!0}):e[t]=A,e}weex.requireModule("dom").addRule("fontFace",{fontFamily:"unichooselocation",src:"url('data:font/truetype;charset=utf-8;base64,AAEAAAALAIAAAwAwR1NVQrD+s+0AAAE4AAAAQk9TLzI8gE4kAAABfAAAAFZjbWFw4nGd6QAAAegAAAGyZ2x5Zn61L/EAAAOoAAACJGhlYWQXJ/zZAAAA4AAAADZoaGVhB94DhgAAALwAAAAkaG10eBQAAAAAAAHUAAAAFGxvY2EBUAGyAAADnAAAAAxtYXhwARMAZgAAARgAAAAgbmFtZWs+cdAAAAXMAAAC2XBvc3SV1XYLAAAIqAAAAE4AAQAAA4D/gABcBAAAAAAABAAAAQAAAAAAAAAAAAAAAAAAAAUAAQAAAAEAAFP+qyxfDzz1AAsEAAAAAADaBFxuAAAAANoEXG4AAP+gBAADYAAAAAgAAgAAAAAAAAABAAAABQBaAAQAAAAAAAIAAAAKAAoAAAD/AAAAAAAAAAEAAAAKAB4ALAABREZMVAAIAAQAAAAAAAAAAQAAAAFsaWdhAAgAAAABAAAAAQAEAAQAAAABAAgAAQAGAAAAAQAAAAAAAQQAAZAABQAIAokCzAAAAI8CiQLMAAAB6wAyAQgAAAIABQMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUGZFZABA5grsMgOA/4AAXAOAAIAAAAABAAAAAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAFAAAAAwAAACwAAAAEAAABcgABAAAAAABsAAMAAQAAACwAAwAKAAABcgAEAEAAAAAKAAgAAgAC5grmHOZR7DL//wAA5grmHOZR7DL//wAAAAAAAAAAAAEACgAKAAoACgAAAAQAAwACAAEAAAEGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAEAAAAAAAAAABAAA5goAAOYKAAAABAAA5hwAAOYcAAAAAwAA5lEAAOZRAAAAAgAA7DIAAOwyAAAAAQAAAAAAAAB+AKAA0gESAAQAAP+gA+ADYAAAAAkAMQBZAAABIx4BMjY0JiIGBSMuASc1NCYiBh0BDgEHIyIGFBY7AR4BFxUUFjI2PQE+ATczMjY0JgE1NCYiBh0BLgEnMzI2NCYrAT4BNxUUFjI2PQEeARcjIgYUFjsBDgECAFABLUQtLUQtAg8iD9OcEhwSnNMPIg4SEg4iD9OcEhwSnNMPIg4SEv5SEhwSga8OPg4SEg4+Dq+BEhwSga8OPg4SEg4+Dq8BgCItLUQtLQKc0w8iDhISDiIP05wSHBKc0w8iDhISDiIP05wSHBL+gj4OEhIOPg6vgRIcEoGvDj4OEhIOPg6vgRIcEoGvAAEAAAAAA4ECgQAQAAABPgEeAQcBDgEvASY0NhYfAQM2DCIbAgz+TA0kDfcMGiIN1wJyDQIZIg3+IQ4BDf4NIhoBDd0AAQAAAAADAgKCAB0AAAE3PgEuAgYPAScmIgYUHwEHBhQWMj8BFxYyNjQnAjy4CAYGEBcWCLe3DSIaDLi4DBkjDbe3DSMZDAGAtwgWFxAGBgi4uAwaIg23tw0jGQy4uAwZIw0AAAIAAP/fA6EDHgAVACYAACUnPgE3LgEnDgEHHgEXMjY3FxYyNjQlBiIuAjQ+AjIeAhQOAQOX2CcsAQTCkpLCAwPCkj5uLdkJGRH+ijV0Z08rK09ndGdPLCxPE9MtckGSwgQEwpKSwgMoJdQIEhi3FixOaHNnTywsT2dzaE4AAAAAAAASAN4AAQAAAAAAAAAVAAAAAQAAAAAAAQARABUAAQAAAAAAAgAHACYAAQAAAAAAAwARAC0AAQAAAAAABAARAD4AAQAAAAAABQALAE8AAQAAAAAABgARAFoAAQAAAAAACgArAGsAAQAAAAAACwATAJYAAwABBAkAAAAqAKkAAwABBAkAAQAiANMAAwABBAkAAgAOAPUAAwABBAkAAwAiAQMAAwABBAkABAAiASUAAwABBAkABQAWAUcAAwABBAkABgAiAV0AAwABBAkACgBWAX8AAwABBAkACwAmAdUKQ3JlYXRlZCBieSBpY29uZm9udAp1bmljaG9vc2Vsb2NhdGlvblJlZ3VsYXJ1bmljaG9vc2Vsb2NhdGlvbnVuaWNob29zZWxvY2F0aW9uVmVyc2lvbiAxLjB1bmljaG9vc2Vsb2NhdGlvbkdlbmVyYXRlZCBieSBzdmcydHRmIGZyb20gRm9udGVsbG8gcHJvamVjdC5odHRwOi8vZm9udGVsbG8uY29tAAoAQwByAGUAYQB0AGUAZAAgAGIAeQAgAGkAYwBvAG4AZgBvAG4AdAAKAHUAbgBpAGMAaABvAG8AcwBlAGwAbwBjAGEAdABpAG8AbgBSAGUAZwB1AGwAYQByAHUAbgBpAGMAaABvAG8AcwBlAGwAbwBjAGEAdABpAG8AbgB1AG4AaQBjAGgAbwBvAHMAZQBsAG8AYwBhAHQAaQBvAG4AVgBlAHIAcwBpAG8AbgAgADEALgAwAHUAbgBpAGMAaABvAG8AcwBlAGwAbwBjAGEAdABpAG8AbgBHAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAHMAdgBnADIAdAB0AGYAIABmAHIAbwBtACAARgBvAG4AdABlAGwAbABvACAAcAByAG8AagBlAGMAdAAuAGgAdAB0AHAAOgAvAC8AZgBvAG4AdABlAGwAbABvAC4AYwBvAG0AAAAAAgAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAQIBAwEEAQUBBgAKbXlsb2NhdGlvbgZ4dWFuemUFY2xvc2UGc291c3VvAAAAAA==')"});var c=weex.requireModule("mapSearch"),l="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAACcCAMAAAC3Fl5oAAAB3VBMVEVMaXH/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/EhL/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/Dw//AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/GRn/NTX/Dw//Fhb/AAD/AAD/AAD/GRn/GRn/Y2P/AAD/AAD/ExP/Ghr/AAD/AAD/MzP/GRn/AAD/Hh7/AAD/RUX/AAD/AAD/AAD/AAD/AAD/AAD/Dg7/AAD/HR3/Dw//FRX/SUn/AAD/////kJD/DQ3/Zmb/+/v/wMD/mJj/6en/vb3/1NT//Pz/ODj/+fn/3Nz/nJz/j4//9/f/7e3/9vb/7Oz/2Nj/x8f/Ozv/+Pj/3d3/nZ3/2dn//f3/6Oj/2tr/v7//09P/vr7/mZn/l5cdSvP3AAAAe3RSTlMAAhLiZgTb/vztB/JMRhlp6lQW86g8mQ4KFPs3UCH5U8huwlesWtTYGI7RsdVeJGfTW5rxnutLsvXWF8vQNdo6qQbuz7D4hgVIx2xtw8GC1TtZaIw0i84P98tU0/fsj7PKaAgiZZxeVfo8Z52eg1P0nESrENnjXVPUgw/uuSmDAAADsUlEQVR42u3aZ3cTRxgF4GtbYleSLdnGcsENG2ODjbExEHrvhAQCIb1Bem+QdkeuuFMNBBJIfmuOckzZI8/srHYmH3Lm+QNXK632LTvQ03Tu/IWeU/tTGTKT2n+q58L5c00wpXJd47DHEt5w47pKxLbhdLdPKb/7dBYxVLxw1GcI/2h1BcpzKNFHLX2JQ4gumaiitqpEEhEdOMJI9h5AFC3feYzI+7IF2tpSLEOqDXpObPRYFm/jCWho/4Ble7MdoT7fzhhq9yHEz28wltU1UPrJZ0wd66HwicfYvEFIfePTAP8tSLTupBHvtGJFH9bSkNrNWEHzERrT34xSH9Ogr1CijkbVAUH1KRqVqkdQAw07iIAaGlcTqI+/0LjeJJ5J0IIEnkpXMdzs4sTtW9dnZq7fuj2xOMtwVWk88RHDjBYejYvnjD8qjOpfQsUqhvj7oSjxcJIhVj3pyKqpNjYvVjQ/RrXq5YABKi3MCYm5BSrtWO5v11DlmlC4RpU1WRS9SJU7QukOVbpQ9JLu549+Dd0AUOlTbkGEuk85vxLAK5QbuytC3R2j3HoAjZSbFxrmKTcCoJdSk0LLJKV6gSaPMqNTQsvUKGW8JrxKqUWhaZFSeWyh1LTQNE2pHF6mzOy40DQ+S5mLimJcENoKlOnBWsr8KbRNUGYt5LXgd6HtD3lNQIoyN4S2G5RJIUOZm0LbTcqsBqVmhLYZSlkPsP4VWf+Rrd+m1v9o9h8Vv5p42C1R5qL1x7WRglOgVN52yfwNOBu76P+lLPoYidu23KPciIHGa07ZeIW1jvcNtI7q5vexCPGYCmf+m/Y9a3sAwQ5bI9T7ukPgPcn9GToEao+xk1OixJT+GIsvNAbx6eAgPq0xiF+KtkpYKhRXCQ8eFFcJhSWGu3rZ8jJkCM8kz9K4TUnrC6mAgzTsB9tLwQ2W15qfosQ2GrQNpZr7aczbzVjBZsvLcaC1g0bsbIVEnU8DOr6H1KDH2LwtUBi0/JII6Dxm9zUXkH+XMWzfh1Dte1i2Pe3QkC77Zel7aehpO8wyHG6Dtt0NjKxhN6I4uSli/TqJiJJDUQ4NDCURXTrXRy1XcumyD24M+AzhD1RXIIZsl/LoyZmurJHDM7s8lvB2FQ/PmPJ6PseAXP5HGMYAAC7ABbgAF+ACXIALcAEuwAW4ABfgAlyAC3ABLsAFuID/d8Cx4NEt8/byOf0wLnis8zjMq9/Kp7bWw4JOj8u8TlhRl+G/Mp2wpOX48GffvvZ1CyL4B53LAS6zb08EAAAAAElFTkSuQmCC";var d={mixins:[i.default,n.default],data:function(){return{positionIcon:l,mapScale:16,userKeyword:"",showLocation:!0,latitude:39.908692,longitude:116.397477,nearList:[],nearSelectedIndex:-1,nearLoading:!1,nearLoadingEnd:!1,noNearData:!1,isUserLocation:!1,statusBarHeight:20,mapHeight:250,markers:[{id:"location",latitude:39.908692,longitude:116.397477,zIndex:"1",iconPath:l,width:26,height:36}],showSearch:!1,searchList:[],searchSelectedIndex:-1,searchLoading:!1,searchEnd:!1,noSearchData:!1,localization:{en:{search_tips:"Search for a place",no_found:"No results found",nearby:"Nearby",more:"More"},zh:{search_tips:"搜索地点",no_found:"对不起,没有搜索到相关数据",nearby:"附近",more:"更多"}},searchNearFlag:!0,searchMethod:"poiSearchNearBy"}},computed:{disableOK:function(){return this.nearSelectedIndex<0&&this.searchSelectedIndex<0},searchMethods:function(){return[{title:this.localize("nearby"),method:"poiSearchNearBy"},{title:this.localize("more"),method:"poiKeywordsSearch"}]}},filters:{distance:function(e){return e>100?"".concat(e>1e3?(e/1e3).toFixed(1)+"k":e.toFixed(0),"m | "):e>0?"100m内 | ":""}},watch:{searchMethod:function(){this._searchPageIndex=1,this.searchEnd=!1,this.searchList=[],this._searchKeyword&&this.search()}},onLoad:function(){this.statusBarHeight=e.navigator.getStatusbarHeight(),this.mapHeight=e.screen.resolutionHeight/2;var t=this.data;this.userKeyword=t.keyword||"",this._searchInputTimer=null,this._searchPageIndex=1,this._searchKeyword="",this._nearPageIndex=1,this._hasUserLocation=!1,this._userLatitude=0,this._userLongitude=0},onReady:function(){this.mapContext=this.$refs.map1,this.data.latitude&&this.data.longitude?(this._hasUserLocation=!0,this.moveToCenter({latitude:this.data.latitude,longitude:this.data.longitude})):this.getUserLocation()},onUnload:function(){this.clearSearchTimer()},methods:{cancelClick:function(){this.postMessage({event:"cancel"})},doneClick:function(){if(!this.disableOK){var e=this.showSearch&&this.searchSelectedIndex>=0?this.searchList[this.searchSelectedIndex]:this.nearList[this.nearSelectedIndex],t={name:e.name,address:e.address,latitude:e.location.latitude,longitude:e.location.longitude};this.postMessage({event:"selected",detail:t})}},getUserLocation:function(){var t=this;e.geolocation.getCurrentPosition((function(e){var A=e.coordsType,a=e.coords;"wgs84"===A.toLowerCase()?t.wgs84togcjo2(a,(function(e){t.getUserLocationSuccess(e)})):t.getUserLocationSuccess(a)}),(function(e){t._hasUserLocation=!0,a("log","Gelocation Error: code - "+e.code+"; message - "+e.message," at template/__uniappchooselocation.nvue:292")}),{geocode:!1})},getUserLocationSuccess:function(e){this._userLatitude=e.latitude,this._userLongitude=e.longitude,this._hasUserLocation=!0,this.moveToCenter({latitude:e.latitude,longitude:e.longitude})},searchclick:function(t){this.showSearch=t,!1===t&&e.key.hideSoftKeybord()},showSearchView:function(){this.searchList=[],this.showSearch=!0},hideSearchView:function(){this.showSearch=!1,e.key.hideSoftKeybord(),this.noSearchData=!1,this.searchSelectedIndex=-1,this._searchKeyword=""},onregionchange:function(e){var t=this,A=e.detail,a=A.type||e.type;"drag"===(A.causedBy||e.causedBy)&&"end"===a&&this.mapContext.getCenterLocation((function(e){t.searchNearFlag?t.moveToCenter({latitude:e.latitude,longitude:e.longitude}):t.searchNearFlag=!t.searchNearFlag}))},onItemClick:function(e,t){this.searchNearFlag=!1,t.stopPropagation&&t.stopPropagation(),this.nearSelectedIndex!==e&&(this.nearSelectedIndex=e),this.moveToLocation(this.nearList[e]&&this.nearList[e].location)},moveToCenter:function(e){this.latitude===e.latitude&&this.longitude===e.longitude||(this.latitude=e.latitude,this.longitude=e.longitude,this.updateCenter(e),this.moveToLocation(e),this.isUserLocation=this._userLatitude===e.latitude&&this._userLongitude===e.longitude)},updateCenter:function(e){var t=this;this.nearSelectedIndex=-1,this.nearList=[],this._hasUserLocation&&(this._nearPageIndex=1,this.nearLoadingEnd=!1,this.reverseGeocode(e),this.searchNearByPoint(e),this.onItemClick(0,{stopPropagation:function(){t.searchNearFlag=!0}}),this.$refs.nearListLoadmore.resetLoadmore())},searchNear:function(){this.nearLoadingEnd||this.searchNearByPoint({latitude:this.latitude,longitude:this.longitude})},searchNearByPoint:function(e){var t=this;this.noNearData=!1,this.nearLoading=!0,c.poiSearchNearBy({point:{latitude:e.latitude,longitude:e.longitude},key:this.userKeyword,index:this._nearPageIndex,radius:1e3},(function(e){t.nearLoading=!1,t._nearPageIndex=e.pageIndex+1,t.nearLoadingEnd=e.pageIndex===e.pageNumber,e.poiList&&e.poiList.length?(t.fixPois(e.poiList),t.nearList=t.nearList.concat(e.poiList),t.fixNearList()):t.noNearData=0===t.nearList.length}))},moveToLocation:function(e){e&&this.mapContext.moveToLocation(function(e){for(var t=1;t=2&&"地图位置"===e[0].name){var t=this.getAddressStart(e[1]),A=e[0].address;A.startsWith(t)&&(e[0].name=A.substring(t.length))}},onsearchinput:function(e){var t=this,A=e.detail.value.replace(/^\s+|\s+$/g,"");this.clearSearchTimer(),this._searchInputTimer=setTimeout((function(){clearTimeout(t._searchInputTimer),t._searchPageIndex=1,t.searchEnd=!1,t._searchKeyword=A,t.searchList=[],t.search()}),300)},clearSearchTimer:function(){this._searchInputTimer&&clearTimeout(this._searchInputTimer)},search:function(){var e=this;0===this._searchKeyword.length||this._searchEnd||this.searchLoading||(this.searchLoading=!0,this.noSearchData=!1,c[this.searchMethod]({point:{latitude:this.latitude,longitude:this.longitude},key:this._searchKeyword,index:this._searchPageIndex,radius:5e4},(function(t){e.searchLoading=!1,e._searchPageIndex=t.pageIndex+1,e.searchEnd=t.pageIndex===t.pageNumber,t.poiList&&t.poiList.length?(e.fixPois(t.poiList),e.searchList=e.searchList.concat(t.poiList)):e.noSearchData=0===e.searchList.length})))},onSearchListTouchStart:function(){e.key.hideSoftKeybord()},onSearchItemClick:function(e,t){t.stopPropagation(),this.searchSelectedIndex!==e&&(this.searchSelectedIndex=e),this.moveToLocation(this.searchList[e]&&this.searchList[e].location)},getAddressStart:function(e){var t=e.addressOrigin||e.address;return e.province+(e.province===e.city?"":e.city)+(/^\d+$/.test(e.district)?"":t.startsWith(e.district)?"":e.district)},fixPois:function(e){for(var t=0;t1?t-1:0),a=1;a1){var r=o.pop();s=o.join("---COMMA---"),0===r.indexOf(" at ")?s+=r:s+="---COMMA---"+r}else s=o[0];console[n](s)}},function(e,t,A){"use strict";A.r(t);var a=A(14),i=A.n(a);for(var n in a)"default"!==n&&function(e){A.d(t,e,(function(){return a[e]}))}(n);t.default=i.a},,,,,function(e,t,A){"use strict";A.r(t);A(3);var a=A(7);a.default.mpType="page",a.default.route="template/__uniappchooselocation",a.default.el="#root",new Vue(a.default)}]);
\ No newline at end of file
diff --git a/本时生活H5/unpackage/dist/build/app-plus/__uniappes6.js b/本时生活H5/unpackage/dist/build/app-plus/__uniappes6.js
new file mode 100644
index 0000000..d4018e8
--- /dev/null
+++ b/本时生活H5/unpackage/dist/build/app-plus/__uniappes6.js
@@ -0,0 +1 @@
+!function(t){"use strict";!function(t){var r={};function n(e){if(r[e])return r[e].exports;var o=r[e]={i:e,l:!1,exports:{}};return t[e].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=t,n.c=r,n.d=function(t,r,e){n.o(t,r)||Object.defineProperty(t,r,{enumerable:!0,get:e})},n.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.t=function(t,r){if(1&r&&(t=n(t)),8&r)return t;if(4&r&&"object"==typeof t&&t&&t.__esModule)return t;var e=Object.create(null);if(n.r(e),Object.defineProperty(e,"default",{enumerable:!0,value:t}),2&r&&"string"!=typeof t)for(var o in t)n.d(e,o,function(r){return t[r]}.bind(null,o));return e},n.n=function(t){var r=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(r,"a",r),r},n.o=function(t,r){return Object.prototype.hasOwnProperty.call(t,r)},n.p="",n(n.s=0)}([function(t,r,n){n(1),n(54),n(61),n(66),n(68),n(69),n(70),n(71),n(73),n(74),n(76),n(84),n(85),n(86),n(95),n(96),n(98),n(99),n(100),n(102),n(103),n(104),n(105),n(106),n(107),n(109),n(110),n(111),n(112),n(121),n(124),n(125),n(127),n(129),n(130),n(131),n(132),n(133),n(135),n(137),n(140),n(141),n(143),n(145),n(146),n(147),n(148),n(150),n(151),n(152),n(153),n(154),n(156),n(157),n(159),n(160),n(161),n(162),n(163),n(164),n(165),n(166),n(167),n(168),n(170),n(171),n(172),n(174),n(178),n(179),n(180),n(181),n(187),n(189),n(192),n(193),n(194),n(195),n(196),n(197),n(198),n(199),n(201),n(202),n(203),n(206),n(207),n(208),n(209),n(210),n(211),n(212),n(213),n(214),n(215),n(216),t.exports=n(217)},function(r,n,e){var o=e(2),i=e(6),u=e(45),c=e(14),a=e(46),f=e(39),s=e(47),l=e(48),p=e(51),g=e(49),v=e(52),h=g("isConcatSpreadable"),d=v>=51||!i(function(){var t=[];return t[h]=!1,t.concat()[0]!==t}),x=p("concat"),y=function(r){if(!c(r))return!1;var n=r[h];return n!==t?!!n:u(r)};o({target:"Array",proto:!0,forced:!d||!x},{concat:function(t){var r,n,e,o,i,u=a(this),c=l(u,0),p=0;for(r=-1,e=arguments.length;r9007199254740991)throw TypeError("Maximum allowed index exceeded");for(n=0;n=9007199254740991)throw TypeError("Maximum allowed index exceeded");s(c,p++,i)}return c.length=p,c}})},function(r,n,e){var o=e(3),i=e(4).f,u=e(18),c=e(21),a=e(25),f=e(32),s=e(44);r.exports=function(r,n){var e,l,p,g,v,h=r.target,d=r.global,x=r.stat;if(e=d?o:x?o[h]||a(h,{}):(o[h]||{}).prototype)for(l in n){if(g=n[l],p=r.noTargetGet?(v=i(e,l))&&v.value:e[l],!s(d?l:h+(x?".":"#")+l,r.forced)&&p!==t){if(typeof g==typeof p)continue;f(g,p)}(r.sham||p&&p.sham)&&u(g,"sham",!0),c(e,l,g,r)}}},function(t,r){var n=function(t){return t&&t.Math==Math&&t};t.exports=n("object"==typeof globalThis&&globalThis)||n("object"==typeof window&&window)||n("object"==typeof self&&self)||n("object"==typeof global&&global)||Function("return this")()},function(t,r,n){var e=n(5),o=n(7),i=n(8),u=n(9),c=n(13),a=n(15),f=n(16),s=Object.getOwnPropertyDescriptor;r.f=e?s:function(t,r){if(t=u(t),r=c(r,!0),f)try{return s(t,r)}catch(t){}if(a(t,r))return i(!o.f.call(t,r),t[r])}},function(t,r,n){var e=n(6);t.exports=!e(function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a})},function(t,r){t.exports=function(t){try{return!!t()}catch(t){return!0}}},function(t,r,n){var e={}.propertyIsEnumerable,o=Object.getOwnPropertyDescriptor,i=o&&!e.call({1:2},1);r.f=i?function(t){var r=o(this,t);return!!r&&r.enumerable}:e},function(t,r){t.exports=function(t,r){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:r}}},function(t,r,n){var e=n(10),o=n(12);t.exports=function(t){return e(o(t))}},function(t,r,n){var e=n(6),o=n(11),i="".split;t.exports=e(function(){return!Object("z").propertyIsEnumerable(0)})?function(t){return"String"==o(t)?i.call(t,""):Object(t)}:Object},function(t,r){var n={}.toString;t.exports=function(t){return n.call(t).slice(8,-1)}},function(r,n){r.exports=function(r){if(r==t)throw TypeError("Can't call method on "+r);return r}},function(t,r,n){var e=n(14);t.exports=function(t,r){if(!e(t))return t;var n,o;if(r&&"function"==typeof(n=t.toString)&&!e(o=n.call(t)))return o;if("function"==typeof(n=t.valueOf)&&!e(o=n.call(t)))return o;if(!r&&"function"==typeof(n=t.toString)&&!e(o=n.call(t)))return o;throw TypeError("Can't convert object to primitive value")}},function(t,r){t.exports=function(t){return"object"==typeof t?null!==t:"function"==typeof t}},function(t,r){var n={}.hasOwnProperty;t.exports=function(t,r){return n.call(t,r)}},function(t,r,n){var e=n(5),o=n(6),i=n(17);t.exports=!e&&!o(function(){return 7!=Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a})},function(t,r,n){var e=n(3),o=n(14),i=e.document,u=o(i)&&o(i.createElement);t.exports=function(t){return u?i.createElement(t):{}}},function(t,r,n){var e=n(5),o=n(19),i=n(8);t.exports=e?function(t,r,n){return o.f(t,r,i(1,n))}:function(t,r,n){return t[r]=n,t}},function(t,r,n){var e=n(5),o=n(16),i=n(20),u=n(13),c=Object.defineProperty;r.f=e?c:function(t,r,n){if(i(t),r=u(r,!0),i(n),o)try{return c(t,r,n)}catch(t){}if("get"in n||"set"in n)throw TypeError("Accessors not supported");return"value"in n&&(t[r]=n.value),t}},function(t,r,n){var e=n(14);t.exports=function(t){if(!e(t))throw TypeError(String(t)+" is not an object");return t}},function(t,r,n){var e=n(3),o=n(22),i=n(18),u=n(15),c=n(25),a=n(26),f=n(27),s=f.get,l=f.enforce,p=String(a).split("toString");o("inspectSource",function(t){return a.call(t)}),(t.exports=function(t,r,n,o){var a=!!o&&!!o.unsafe,f=!!o&&!!o.enumerable,s=!!o&&!!o.noTargetGet;"function"==typeof n&&("string"!=typeof r||u(n,"name")||i(n,"name",r),l(n).source=p.join("string"==typeof r?r:"")),t!==e?(a?!s&&t[r]&&(f=!0):delete t[r],f?t[r]=n:i(t,r,n)):f?t[r]=n:c(r,n)})(Function.prototype,"toString",function(){return"function"==typeof this&&s(this).source||a.call(this)})},function(r,n,e){var o=e(23),i=e(24);(r.exports=function(r,n){return i[r]||(i[r]=n!==t?n:{})})("versions",[]).push({version:"3.3.6",mode:o?"pure":"global",copyright:"© 2019 Denis Pushkarev (zloirock.ru)"})},function(t,r){t.exports=!1},function(t,r,n){var e=n(3),o=n(25),i=e["__core-js_shared__"]||o("__core-js_shared__",{});t.exports=i},function(t,r,n){var e=n(3),o=n(18);t.exports=function(t,r){try{o(e,t,r)}catch(n){e[t]=r}return r}},function(t,r,n){var e=n(22);t.exports=e("native-function-to-string",Function.toString)},function(t,r,n){var e,o,i,u=n(28),c=n(3),a=n(14),f=n(18),s=n(15),l=n(29),p=n(31),g=c.WeakMap;if(u){var v=new g,h=v.get,d=v.has,x=v.set;e=function(t,r){return x.call(v,t,r),r},o=function(t){return h.call(v,t)||{}},i=function(t){return d.call(v,t)}}else{var y=l("state");p[y]=!0,e=function(t,r){return f(t,y,r),r},o=function(t){return s(t,y)?t[y]:{}},i=function(t){return s(t,y)}}t.exports={set:e,get:o,has:i,enforce:function(t){return i(t)?o(t):e(t,{})},getterFor:function(t){return function(r){var n;if(!a(r)||(n=o(r)).type!==t)throw TypeError("Incompatible receiver, "+t+" required");return n}}}},function(t,r,n){var e=n(3),o=n(26),i=e.WeakMap;t.exports="function"==typeof i&&/native code/.test(o.call(i))},function(t,r,n){var e=n(22),o=n(30),i=e("keys");t.exports=function(t){return i[t]||(i[t]=o(t))}},function(r,n){var e=0,o=Math.random();r.exports=function(r){return"Symbol("+String(r===t?"":r)+")_"+(++e+o).toString(36)}},function(t,r){t.exports={}},function(t,r,n){var e=n(15),o=n(33),i=n(4),u=n(19);t.exports=function(t,r){for(var n=o(r),c=u.f,a=i.f,f=0;fa;)e(c,n=r[a++])&&(~i(f,n)||f.push(n));return f}},function(t,r,n){var e=n(9),o=n(39),i=n(41),u=function(t){return function(r,n,u){var c,a=e(r),f=o(a.length),s=i(u,f);if(t&&n!=n){for(;f>s;)if((c=a[s++])!=c)return!0}else for(;f>s;s++)if((t||s in a)&&a[s]===n)return t||s||0;return!t&&-1}};t.exports={includes:u(!0),indexOf:u(!1)}},function(t,r,n){var e=n(40),o=Math.min;t.exports=function(t){return t>0?o(e(t),9007199254740991):0}},function(t,r){var n=Math.ceil,e=Math.floor;t.exports=function(t){return isNaN(t=+t)?0:(t>0?e:n)(t)}},function(t,r,n){var e=n(40),o=Math.max,i=Math.min;t.exports=function(t,r){var n=e(t);return n<0?o(n+r,0):i(n,r)}},function(t,r){t.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},function(t,r){r.f=Object.getOwnPropertySymbols},function(t,r,n){var e=n(6),o=/#|\.prototype\./,i=function(t,r){var n=c[u(t)];return n==f||n!=a&&("function"==typeof r?e(r):!!r)},u=i.normalize=function(t){return String(t).replace(o,".").toLowerCase()},c=i.data={},a=i.NATIVE="N",f=i.POLYFILL="P";t.exports=i},function(t,r,n){var e=n(11);t.exports=Array.isArray||function(t){return"Array"==e(t)}},function(t,r,n){var e=n(12);t.exports=function(t){return Object(e(t))}},function(t,r,n){var e=n(13),o=n(19),i=n(8);t.exports=function(t,r,n){var u=e(r);u in t?o.f(t,u,i(0,n)):t[u]=n}},function(r,n,e){var o=e(14),i=e(45),u=e(49)("species");r.exports=function(r,n){var e;return i(r)&&("function"!=typeof(e=r.constructor)||e!==Array&&!i(e.prototype)?o(e)&&null===(e=e[u])&&(e=t):e=t),new(e===t?Array:e)(0===n?0:n)}},function(t,r,n){var e=n(3),o=n(22),i=n(30),u=n(50),c=e.Symbol,a=o("wks");t.exports=function(t){return a[t]||(a[t]=u&&c[t]||(u?c:i)("Symbol."+t))}},function(t,r,n){var e=n(6);t.exports=!!Object.getOwnPropertySymbols&&!e(function(){return!String(Symbol())})},function(t,r,n){var e=n(6),o=n(49),i=n(52),u=o("species");t.exports=function(t){return i>=51||!e(function(){var r=[];return(r.constructor={})[u]=function(){return{foo:1}},1!==r[t](Boolean).foo})}},function(t,r,n){var e,o,i=n(3),u=n(53),c=i.process,a=c&&c.versions,f=a&&a.v8;f?o=(e=f.split("."))[0]+e[1]:u&&(!(e=u.match(/Edge\/(\d+)/))||e[1]>=74)&&(e=u.match(/Chrome\/(\d+)/))&&(o=e[1]),t.exports=o&&+o},function(t,r,n){var e=n(34);t.exports=e("navigator","userAgent")||""},function(t,r,n){var e=n(2),o=n(55),i=n(56);e({target:"Array",proto:!0},{copyWithin:o}),i("copyWithin")},function(r,n,e){var o=e(46),i=e(41),u=e(39),c=Math.min;r.exports=[].copyWithin||function(r,n){var e=o(this),a=u(e.length),f=i(r,a),s=i(n,a),l=arguments.length>2?arguments[2]:t,p=c((l===t?a:i(l,a))-s,a-f),g=1;for(s0;)s in e?e[f]=e[s]:delete e[f],f+=g,s+=g;return e}},function(r,n,e){var o=e(49),i=e(57),u=e(18),c=o("unscopables"),a=Array.prototype;a[c]==t&&u(a,c,i(null)),r.exports=function(t){a[c][t]=!0}},function(r,n,e){var o=e(20),i=e(58),u=e(42),c=e(31),a=e(60),f=e(17),s=e(29)("IE_PROTO"),l=function(){},p=function(){var t,r=f("iframe"),n=u.length;for(r.style.display="none",a.appendChild(r),r.src=String("javascript:"),(t=r.contentWindow.document).open(),t.write("
+ View
+
+
+
+
+
+
+
+
+
+
+