'抢单列表'
@ -1,4 +1,54 @@
|
||||
var QQMapWX = require('@/common/qqmap-wx-jssdk.min.js')
|
||||
const util = {
|
||||
getAddress(callBack) {
|
||||
console.log('+++++++++++++++++')
|
||||
/* #ifdef H5 */
|
||||
callBack({
|
||||
city: '南京市',
|
||||
longitude: 118.710193,
|
||||
latitude: 32.202905
|
||||
})
|
||||
/* #endif */
|
||||
var that = this
|
||||
uni.getLocation({
|
||||
type: 'wgs84',
|
||||
geocode: true,
|
||||
success: function(res) {
|
||||
console.log('当前位置的经度:' + res.longitude,res);
|
||||
console.log('当前位置的纬度:' + res.latitude);
|
||||
that.longitude = res.longitude
|
||||
that.latitude = res.latitude
|
||||
let location = {
|
||||
longitude: res.longitude,
|
||||
latitude: res.latitude
|
||||
}
|
||||
console.log(location,'fffffff')
|
||||
const qqmapsdk = new QQMapWX({
|
||||
key: 'GHNBZ-LUALS-RGKO2-6YTHN-PRVDV-D4BDT'
|
||||
})
|
||||
qqmapsdk.reverseGeocoder({
|
||||
location,
|
||||
success: function(res){
|
||||
console.log(res,res.result.address,'9999')
|
||||
that.position = res.result.address_component.city
|
||||
if(callBack){
|
||||
callBack({
|
||||
city: that.position,
|
||||
longitude: location.longitude,
|
||||
latitude: location.latitude
|
||||
})
|
||||
}
|
||||
}
|
||||
})
|
||||
},
|
||||
fail(res) {
|
||||
console.log('dddddddd---',res)
|
||||
},
|
||||
complete(res) {
|
||||
console.log('getLocaltion===+++---',res)
|
||||
}
|
||||
})
|
||||
},
|
||||
delRepeat(arr,key){ //去重
|
||||
let resArr = []
|
||||
arr.some(function(item,index){
|
||||
|
||||
@ -41,7 +41,9 @@
|
||||
]
|
||||
},
|
||||
/* ios打包配置 */
|
||||
"ios" : {},
|
||||
"ios" : {
|
||||
"dSYMs" : false
|
||||
},
|
||||
/* SDK配置 */
|
||||
"sdkConfigs" : {}
|
||||
}
|
||||
|
||||
@ -351,6 +351,7 @@
|
||||
import cancleOrder from './cancleOrder.vue';
|
||||
import appointTime from '@/components/appointTime.vue';
|
||||
import citySelect from '@/components/linzq-citySelect/linzq-citySelect.vue';
|
||||
import util from '../../common/util.js'
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
@ -425,6 +426,8 @@
|
||||
statusToast: '',
|
||||
showCity: false,
|
||||
cityText: '',
|
||||
longitude: '',
|
||||
latitude: '',
|
||||
page1: 1,
|
||||
page2: 1,
|
||||
lastPage1: '',
|
||||
@ -472,6 +475,14 @@
|
||||
},
|
||||
onLoad() {
|
||||
this.getauth()
|
||||
let _this = this;
|
||||
util.getAddress(function(res){
|
||||
_this.cityText = res.city;
|
||||
_this.longitude = res.longitude;
|
||||
_this.latitude = res.latitude;
|
||||
console.log(res,'kkkkkkkkk+++')
|
||||
// uni.setStorageSync('city_name',res.city)
|
||||
})
|
||||
// this.getdata()
|
||||
// this.getquestion()
|
||||
// this.recycleOrderList()
|
||||
@ -515,6 +526,9 @@
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
open(){
|
||||
|
||||
},
|
||||
centerClick(val){
|
||||
console.log(val,'fff')
|
||||
this.pop2Show = true;
|
||||
@ -525,7 +539,9 @@
|
||||
if(res.code == '1'){
|
||||
_this.userinfo = res.data.user
|
||||
_this.personInfo = res.data.person
|
||||
_this.cityText = res.data.person.city_ids_show
|
||||
// _this.cityText = res.data.person.city_ids_show
|
||||
|
||||
|
||||
}else{
|
||||
}
|
||||
})
|
||||
@ -607,6 +623,20 @@
|
||||
// }
|
||||
// })
|
||||
},
|
||||
getAddress(id){
|
||||
let _this = this;
|
||||
uni.getLocation({
|
||||
type: 'wgs84',
|
||||
geocode: true,
|
||||
success: function (res) {
|
||||
console.log('当前位置的经度:' + JSON.stringify(res));
|
||||
console.log('当前位置的经度:' + res.longitude);
|
||||
console.log('当前位置的纬度:' + res.latitude);
|
||||
_this.latitude = res.latitude
|
||||
_this.longitude = res.longitude
|
||||
}
|
||||
});
|
||||
},
|
||||
updateTime(id){
|
||||
this.statusToast = '修改预约成功'
|
||||
this.orderId = id
|
||||
@ -679,8 +709,11 @@
|
||||
let data = {
|
||||
type_id: this.tabCur,
|
||||
page: this.page1,
|
||||
limit: this.limit
|
||||
limit: this.limit,
|
||||
// longitude: this.longitude,
|
||||
// latitude: this.latitude
|
||||
}
|
||||
console.log(data,'mmmmmmmmmm---')
|
||||
this.$api.qiangdanlist(data,res=>{
|
||||
if(res.code == '1'){
|
||||
this.qiangdanArr = this.qiangdanArr.concat(res.data.list.data)
|
||||
|
||||
@ -46,7 +46,7 @@ var QQMapWX = require('@/common/qqmap-wx-jssdk.min.js')
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
mobile:'17712855555',
|
||||
mobile:'15653535658',
|
||||
password:'123456',
|
||||
login_type:0,
|
||||
logoImage: '/static/img/t2.png',
|
||||
@ -121,7 +121,7 @@ export default {
|
||||
url:'/pages/index/index'
|
||||
})
|
||||
}else{
|
||||
|
||||
uni.showToast({ title: res.msg , icon: 'none'})
|
||||
}
|
||||
})
|
||||
},
|
||||
|
||||
BIN
unpackage/cache/apk/__UNI__0B7E65B_cm.apk
vendored
Normal file
1
unpackage/cache/apk/apkurl
vendored
Normal file
@ -0,0 +1 @@
|
||||
https://app.liuyingyong.cn/build/download/94aa2ea0-b6b5-11f0-869f-eb9cecd816f4
|
||||
1
unpackage/cache/apk/cmManifestCache.json
vendored
Normal file
@ -0,0 +1 @@
|
||||
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
|
||||
4
unpackage/cache/certdata
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
andrCertfile=D:/software/HBuilderX.4.76.2025082103/HBuilderX/plugins/app-safe-pack/Test.keystore
|
||||
andrCertAlias=android
|
||||
andrCertPass=ep/Tdjka4Y7WYqDB6/S7dw==
|
||||
storePassword=ep/Tdjka4Y7WYqDB6/S7dw==
|
||||
4
unpackage/cache/cloudcertificate/certini
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
[General]
|
||||
andrCertfile=package.keystore
|
||||
andrCertAlias=__UNI__0B7E65B
|
||||
andrCertPass="2Mpr6mOPsh9W3+6mdQLlwg=="
|
||||
BIN
unpackage/cache/cloudcertificate/package.keystore
vendored
Normal file
1
unpackage/cache/wgt/__UNI__0B7E65B/__uniappchooselocation.js
vendored
Normal file
BIN
unpackage/cache/wgt/__UNI__0B7E65B/__uniapperror.png
vendored
Normal file
|
After Width: | Height: | Size: 5.7 KiB |
1
unpackage/cache/wgt/__UNI__0B7E65B/__uniappes6.js
vendored
Normal file
1
unpackage/cache/wgt/__UNI__0B7E65B/__uniappopenlocation.js
vendored
Normal file
1
unpackage/cache/wgt/__UNI__0B7E65B/__uniapppicker.js
vendored
Normal file
8
unpackage/cache/wgt/__UNI__0B7E65B/__uniappquill.js
vendored
Normal file
1
unpackage/cache/wgt/__UNI__0B7E65B/__uniappquillimageresize.js
vendored
Normal file
1
unpackage/cache/wgt/__UNI__0B7E65B/__uniappscan.js
vendored
Normal file
BIN
unpackage/cache/wgt/__UNI__0B7E65B/__uniappsuccess.png
vendored
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
25
unpackage/cache/wgt/__UNI__0B7E65B/__uniappview.html
vendored
Normal file
@ -0,0 +1,25 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="zh-CN">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<script>
|
||||
var __UniViewStartTime__ = Date.now();
|
||||
var coverSupport = 'CSS' in window && typeof CSS.supports === 'function' && (CSS.supports('top: env(a)') ||
|
||||
CSS.supports('top: constant(a)'))
|
||||
document.write(
|
||||
'<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0' +
|
||||
(coverSupport ? ', viewport-fit=cover' : '') + '" />')
|
||||
</script>
|
||||
<title>View</title>
|
||||
<link rel="stylesheet" href="view.css" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
<script src="__uniappes6.js"></script>
|
||||
<script src="view.umd.min.js"></script>
|
||||
<script src="app-view.js"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
8
unpackage/cache/wgt/__UNI__0B7E65B/app-config-service.js
vendored
Normal file
@ -0,0 +1,8 @@
|
||||
|
||||
var isReady=false;var onReadyCallbacks=[];
|
||||
var isServiceReady=false;var onServiceReadyCallbacks=[];
|
||||
var __uniConfig = {"pages":["pages/index/index","pages/mine/mine","pages/mine/edituser","pages/type/type","pages/login/authorize","pages/login/login","pages/address/list","pages/address/detail","pages/about/about","pages/person/add","pages/person/edit","pages/person/orderlist","pages/person/qiangdan","pages/person/orderinfo","pages/order/order","pages/order/detail","pages/exchange/createorder","pages/exchange/orderdetail","pages/exchange/orderlist","pages/exchange/goodslist","pages/exchange/goodsdetail","pages/mine/point_list","pages/question/index","pages/mine/orderConfig","pages/mine/priceRecord","pages/mine/apply","pages/feedback/index","pages/mine/editInfo","pages/order/pay","pages/poster/sharePoster"],"window":{"navigationBarTextStyle":"black","navigationBarTitleText":"uni-app1","navigationBarBackgroundColor":"#fff","backgroundColor":"#fff"},"tabBar":{"color":"#333333","selectedColor":"#00a73b","backgroundColor":"#ffffff","list":[{"pagePath":"pages/index/index","text":"首页","iconPath":"static/img/home.png","selectedIconPath":"static/img/home_select.png"},{"pagePath":"pages/order/order","text":"订单","iconPath":"static/img/order.png","selectedIconPath":"static/img/order_select.png"},{"pagePath":"pages/mine/mine","text":"我的","iconPath":"static/img/mine.png","selectedIconPath":"static/img/mine1.png"}]},"darkmode":false,"nvueCompiler":"uni-app","nvueStyleCompiler":"uni-app","renderer":"auto","splashscreen":{"alwaysShowBeforeRender":true,"autoclose":false},"appname":"回收小程序","compilerVersion":"4.76","entryPagePath":"pages/index/index","networkTimeout":{"request":60000,"connectSocket":60000,"uploadFile":60000,"downloadFile":60000}};
|
||||
var __uniRoutes = [{"path":"/pages/index/index","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"","enablePullDownRefresh":true,"navigationStyle":"custom"}},{"path":"/pages/mine/mine","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"我的","navigationStyle":"custom"}},{"path":"/pages/mine/edituser","meta":{},"window":{"navigationBarTitleText":"用户信息","enablePullDownRefresh":false}},{"path":"/pages/type/type","meta":{},"window":{"navigationBarTitleText":"回收预约","enablePullDownRefresh":false}},{"path":"/pages/login/authorize","meta":{},"window":{"navigationBarTitleText":"登录","enablePullDownRefresh":false}},{"path":"/pages/login/login","meta":{},"window":{"navigationBarTitleText":"登录","enablePullDownRefresh":false,"navigationStyle":"custom"}},{"path":"/pages/address/list","meta":{},"window":{"navigationBarTitleText":"地址管理"}},{"path":"/pages/address/detail","meta":{},"window":{"navigationBarTitleText":"修改地址"}},{"path":"/pages/about/about","meta":{},"window":{"navigationBarTitleText":"关于我们"}},{"path":"/pages/person/add","meta":{},"window":{"navigationBarTitleText":"成为回收员"}},{"path":"/pages/person/edit","meta":{},"window":{"navigationBarTitleText":"回收员信息"}},{"path":"/pages/person/orderlist","meta":{},"window":{"navigationBarTitleText":"回收员订单"}},{"path":"/pages/person/qiangdan","meta":{},"window":{"navigationBarTitleText":"抢单大厅","enablePullDownRefresh":false}},{"path":"/pages/person/orderinfo","meta":{},"window":{"navigationBarTitleText":"订单详情","enablePullDownRefresh":false}},{"path":"/pages/order/order","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"用户订单","enablePullDownRefresh":false}},{"path":"/pages/order/detail","meta":{},"window":{"navigationBarTitleText":"订单详情","enablePullDownRefresh":false}},{"path":"/pages/exchange/createorder","meta":{},"window":{"navigationBarTitleText":"兑换订单","enablePullDownRefresh":false}},{"path":"/pages/exchange/orderdetail","meta":{},"window":{"navigationBarTitleText":"订单详情","enablePullDownRefresh":false}},{"path":"/pages/exchange/orderlist","meta":{},"window":{"navigationBarTitleText":"订单列表","enablePullDownRefresh":false}},{"path":"/pages/exchange/goodslist","meta":{},"window":{"navigationBarTitleText":"","enablePullDownRefresh":false}},{"path":"/pages/exchange/goodsdetail","meta":{},"window":{"navigationBarTitleText":"详情","enablePullDownRefresh":false}},{"path":"/pages/mine/point_list","meta":{},"window":{"navigationBarTitleText":"积分明细","enablePullDownRefresh":false}},{"path":"/pages/question/index","meta":{},"window":{"navigationBarTitleText":"常见问题","enablePullDownRefresh":false}},{"path":"/pages/mine/orderConfig","meta":{},"window":{"navigationBarTitleText":"接单设置","enablePullDownRefresh":false}},{"path":"/pages/mine/priceRecord","meta":{},"window":{"navigationBarTitleText":"资金记录","enablePullDownRefresh":false}},{"path":"/pages/mine/apply","meta":{},"window":{"navigationBarTitleText":"代理加盟","enablePullDownRefresh":false}},{"path":"/pages/feedback/index","meta":{},"window":{"navigationBarTitleText":"意见反馈","enablePullDownRefresh":false}},{"path":"/pages/mine/editInfo","meta":{},"window":{"navigationBarTitleText":"信息编辑","enablePullDownRefresh":false}},{"path":"/pages/order/pay","meta":{},"window":{"navigationBarTitleText":"支付订单","enablePullDownRefresh":false}},{"path":"/pages/poster/sharePoster","meta":{},"window":{"navigationBarTitleText":"推广二维码","enablePullDownRefresh":false}}];
|
||||
__uniConfig.onReady=function(callback){if(__uniConfig.ready){callback()}else{onReadyCallbacks.push(callback)}};Object.defineProperty(__uniConfig,"ready",{get:function(){return isReady},set:function(val){isReady=val;if(!isReady){return}const callbacks=onReadyCallbacks.slice(0);onReadyCallbacks.length=0;callbacks.forEach(function(callback){callback()})}});
|
||||
__uniConfig.onServiceReady=function(callback){if(__uniConfig.serviceReady){callback()}else{onServiceReadyCallbacks.push(callback)}};Object.defineProperty(__uniConfig,"serviceReady",{get:function(){return isServiceReady},set:function(val){isServiceReady=val;if(!isServiceReady){return}const callbacks=onServiceReadyCallbacks.slice(0);onServiceReadyCallbacks.length=0;callbacks.forEach(function(callback){callback()})}});
|
||||
service.register("uni-app-config",{create(a,b,c){if(!__uniConfig.viewport){var d=b.weex.config.env.scale,e=b.weex.config.env.deviceWidth,f=Math.ceil(e/d);Object.assign(__uniConfig,{viewport:f,defaultFontSize:Math.round(f/20)})}return{instance:{__uniConfig:__uniConfig,__uniRoutes:__uniRoutes,global:void 0,window:void 0,document:void 0,frames:void 0,self:void 0,location:void 0,navigator:void 0,localStorage:void 0,history:void 0,Caches:void 0,screen:void 0,alert:void 0,confirm:void 0,prompt:void 0,fetch:void 0,XMLHttpRequest:void 0,WebSocket:void 0,webkit:void 0,print:void 0}}}});
|
||||
1
unpackage/cache/wgt/__UNI__0B7E65B/app-config.js
vendored
Normal file
@ -0,0 +1 @@
|
||||
(function(e){function r(r){for(var n,l,i=r[0],p=r[1],a=r[2],c=0,s=[];c<i.length;c++)l=i[c],Object.prototype.hasOwnProperty.call(o,l)&&o[l]&&s.push(o[l][0]),o[l]=0;for(n in p)Object.prototype.hasOwnProperty.call(p,n)&&(e[n]=p[n]);f&&f(r);while(s.length)s.shift()();return u.push.apply(u,a||[]),t()}function t(){for(var e,r=0;r<u.length;r++){for(var t=u[r],n=!0,i=1;i<t.length;i++){var p=t[i];0!==o[p]&&(n=!1)}n&&(u.splice(r--,1),e=l(l.s=t[0]))}return e}var n={},o={"app-config":0},u=[];function l(r){if(n[r])return n[r].exports;var t=n[r]={i:r,l:!1,exports:{}};return e[r].call(t.exports,t,t.exports,l),t.l=!0,t.exports}l.m=e,l.c=n,l.d=function(e,r,t){l.o(e,r)||Object.defineProperty(e,r,{enumerable:!0,get:t})},l.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},l.t=function(e,r){if(1&r&&(e=l(e)),8&r)return e;if(4&r&&"object"===typeof e&&e&&e.__esModule)return e;var t=Object.create(null);if(l.r(t),Object.defineProperty(t,"default",{enumerable:!0,value:e}),2&r&&"string"!=typeof e)for(var n in e)l.d(t,n,function(r){return e[r]}.bind(null,n));return t},l.n=function(e){var r=e&&e.__esModule?function(){return e["default"]}:function(){return e};return l.d(r,"a",r),r},l.o=function(e,r){return Object.prototype.hasOwnProperty.call(e,r)},l.p="/";var i=this["webpackJsonp"]=this["webpackJsonp"]||[],p=i.push.bind(i);i.push=r,i=i.slice();for(var a=0;a<i.length;a++)r(i[a]);var f=p;t()})([]);
|
||||
17
unpackage/cache/wgt/__UNI__0B7E65B/app-service.js
vendored
Normal file
1
unpackage/cache/wgt/__UNI__0B7E65B/app-view.js
vendored
Normal file
BIN
unpackage/cache/wgt/__UNI__0B7E65B/assets/uniicons.b6d3756e.ttf
vendored
Normal file
1
unpackage/cache/wgt/__UNI__0B7E65B/manifest.json
vendored
Normal file
@ -0,0 +1 @@
|
||||
{"@platforms":["android","iPhone","iPad"],"id":"__UNI__0B7E65B","name":"回收小程序","version":{"name":"1.0.0","code":"100"},"description":"","launch_path":"__uniappview.html","developer":{"name":"","email":"","url":""},"permissions":{"UniNView":{"description":"UniNView原生渲染"}},"plus":{"useragent":{"value":"uni-app","concatenate":true},"splashscreen":{"autoclose":true,"delay":0,"target":"id:1","waiting":true},"popGesture":"close","launchwebview":{"id":"1","kernel":"WKWebview"},"statusbar":{"immersed":"supportedDevice","style":"dark","background":"#fff"},"usingComponents":true,"nvueStyleCompiler":"uni-app","compilerVersion":3,"distribute":{"google":{"permissions":["<uses-permission android:name=\"android.permission.CHANGE_NETWORK_STATE\"/>","<uses-permission android:name=\"android.permission.MOUNT_UNMOUNT_FILESYSTEMS\"/>","<uses-permission android:name=\"android.permission.VIBRATE\"/>","<uses-permission android:name=\"android.permission.READ_LOGS\"/>","<uses-permission android:name=\"android.permission.ACCESS_WIFI_STATE\"/>","<uses-feature android:name=\"android.hardware.camera.autofocus\"/>","<uses-permission android:name=\"android.permission.ACCESS_NETWORK_STATE\"/>","<uses-permission android:name=\"android.permission.CAMERA\"/>","<uses-permission android:name=\"android.permission.GET_ACCOUNTS\"/>","<uses-permission android:name=\"android.permission.READ_PHONE_STATE\"/>","<uses-permission android:name=\"android.permission.CHANGE_WIFI_STATE\"/>","<uses-permission android:name=\"android.permission.WAKE_LOCK\"/>","<uses-permission android:name=\"android.permission.FLASHLIGHT\"/>","<uses-feature android:name=\"android.hardware.camera\"/>","<uses-permission android:name=\"android.permission.WRITE_SETTINGS\"/>"],"packagename":"uni.app.UNI0B7E65B","custompermissions":true},"apple":{"dSYMs":false,"devices":"universal"},"plugins":{"audio":{"mp3":{"description":"Android平台录音支持MP3格式文件"}}},"orientation":"portrait-primary"},"uniStatistics":{"enable":false},"allowsInlineMediaPlayback":true,"safearea":{"background":"#ffffff","bottom":{"offset":"auto"}},"uni-app":{"compilerVersion":"4.76","control":"uni-v3","nvueCompiler":"uni-app","renderer":"auto","nvue":{"flex-direction":"column"},"nvueLaunchMode":"normal"},"tabBar":{"color":"#333333","selectedColor":"#00a73b","backgroundColor":"#ffffff","list":[{"pagePath":"pages/index/index","text":"首页","iconPath":"static/img/home.png","selectedIconPath":"static/img/home_select.png"},{"pagePath":"pages/order/order","text":"订单","iconPath":"static/img/order.png","selectedIconPath":"static/img/order_select.png"},{"pagePath":"pages/mine/mine","text":"我的","iconPath":"static/img/mine.png","selectedIconPath":"static/img/mine1.png"}],"borderStyle":"rgba(0,0,0,0.4)","height":"50px","child":["lauchwebview"],"selected":0},"launch_path":"__uniappview.html","adid":"122038200402"}}
|
||||
BIN
unpackage/cache/wgt/__UNI__0B7E65B/static/back_img.png
vendored
Normal file
|
After Width: | Height: | Size: 3.9 KiB |
320
unpackage/cache/wgt/__UNI__0B7E65B/static/css/style.css
vendored
Normal file
@ -0,0 +1,320 @@
|
||||
body {
|
||||
background-color: #FFFFFF;
|
||||
font-size: 32upx;
|
||||
}
|
||||
view {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
image {
|
||||
background-size: 100% 100%;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
button {
|
||||
height: auto;
|
||||
border: none;
|
||||
line-height: 2.55555556;
|
||||
padding: 0 28upx;
|
||||
}
|
||||
|
||||
input {
|
||||
background: none;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
|
||||
.fsz24 {
|
||||
font-size: 24rpx !important;
|
||||
}
|
||||
|
||||
.fsz26 {
|
||||
font-size: 26rpx !important;
|
||||
}
|
||||
|
||||
.fsz28 {
|
||||
font-size: 28rpx !important;
|
||||
}
|
||||
|
||||
.fsz30 {
|
||||
font-size: 30rpx !important;
|
||||
}
|
||||
|
||||
.fsz32 {
|
||||
font-size: 32rpx !important;
|
||||
}
|
||||
|
||||
.fsz34 {
|
||||
font-size: 34rpx !important;
|
||||
}
|
||||
|
||||
.fsz36 {
|
||||
font-size: 36rpx !important;
|
||||
}
|
||||
|
||||
.fsz38 {
|
||||
font-size: 38rpx !important;
|
||||
}
|
||||
|
||||
.fsz50 {
|
||||
font-size: 50rpx !important;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.clearfix{
|
||||
overflow: hidden;
|
||||
}
|
||||
.fl{
|
||||
float: left;
|
||||
}
|
||||
.fr{
|
||||
float: right;
|
||||
}
|
||||
.overflow1{
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 1;
|
||||
-webkit-box-orient: vertical;
|
||||
}
|
||||
.overflow2{
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 2;
|
||||
-webkit-box-orient: vertical;
|
||||
}
|
||||
|
||||
.w1{
|
||||
width: 94%;
|
||||
margin: 0 auto;
|
||||
margin-top: 30rpx;
|
||||
}
|
||||
|
||||
.w{
|
||||
width: 94%;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.none{
|
||||
display: none;
|
||||
}
|
||||
.zanwu{
|
||||
text-align: center;
|
||||
font-size: 30rpx;
|
||||
margin-top: 50%;
|
||||
margin-bottom: 30%;
|
||||
}
|
||||
|
||||
.width{
|
||||
width: 30%;
|
||||
margin-right: 5%;
|
||||
}
|
||||
.width:nth-child(3n){
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.bglv{background-color: #46b45d;}
|
||||
.lv{color: #46b45d;}
|
||||
|
||||
|
||||
|
||||
|
||||
.icon {
|
||||
width: 50upx;
|
||||
height: 50upx;
|
||||
}
|
||||
.btn {
|
||||
display: inline-block;
|
||||
box-sizing: border-box;
|
||||
border-radius: 0;
|
||||
font-size: 28upx;
|
||||
transform: scale(1);
|
||||
transition: all .5s;
|
||||
}
|
||||
|
||||
|
||||
.btn::after {
|
||||
border: none;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.content-top {
|
||||
margin-bottom: 116upx;
|
||||
}.button-bottom {
|
||||
background-color: #fff;
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
height: 90upx;
|
||||
width: 100%;
|
||||
display: flex;
|
||||
z-index: 66;
|
||||
box-shadow: 0 0 10px #ccc;
|
||||
}
|
||||
|
||||
.button-bottom .btn {
|
||||
flex: 1;
|
||||
}.navbar {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
/* #ifdef H5 */
|
||||
top: 40px;
|
||||
/* #endif */
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 106rpx;
|
||||
background-color: #FFFFFF;
|
||||
z-index: 9; display: flex;
|
||||
justify-content: space-between;
|
||||
|
||||
display: flex;
|
||||
-webkit-box-lines: multiple;
|
||||
-moz-box-lines: multiple;
|
||||
-o-box-lines: multiple; line-height: 48px;
|
||||
justify-content: space-around;
|
||||
-webkit-justify-content: space-around;
|
||||
flex-wrap: wrap
|
||||
}
|
||||
.navbar .item {
|
||||
border-top: 5rpx solid transparent;
|
||||
border-bottom: 5rpx solid transparent;
|
||||
font-size: 30rpx;
|
||||
color: #999999;
|
||||
}
|
||||
.navbar .on {
|
||||
border-bottom-color: #E93323;
|
||||
color: #282828;
|
||||
}
|
||||
|
||||
.img-grids {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
.hs-di {
|
||||
position: relative;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.ro-text {
|
||||
position: relative;
|
||||
font-size: 24upx;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
.little-img {
|
||||
width: 140upx;
|
||||
height: 140upx;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
.zanwuimg{
|
||||
width: 100%;
|
||||
flex-direction: column;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
justify-items: center;
|
||||
height: 70vh;
|
||||
}
|
||||
.zanwuimg image{width: 200rpx!important;}
|
||||
.zanwuimg view{padding-bottom: 30rpx;
|
||||
padding-top: 20rpx;
|
||||
font-size: 28rpx;
|
||||
color: #999999;}
|
||||
.red-price {
|
||||
color: red !important;
|
||||
} .lidiv-ft {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.right-img .lidiv-ft {
|
||||
right: 8upx;
|
||||
height: 50upx;
|
||||
position: absolute;
|
||||
}.hs-fttext {
|
||||
font-size: 28upx;
|
||||
float: right;
|
||||
position: relative;
|
||||
line-height: 50upx;
|
||||
}
|
||||
.gongli{color:#00a73b}
|
||||
.hs_box {background-color: #fff;}
|
||||
.hs-row {
|
||||
padding: 20upx 26upx 20upx 0;
|
||||
width: 724upx;
|
||||
margin-left: 26upx;
|
||||
border-bottom: 2upx solid #f3f3f3;
|
||||
position: relative;
|
||||
background-color: #fff;
|
||||
color: #333;
|
||||
display: flex;
|
||||
min-height: 90upx;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
}
|
||||
.hs-row-hd {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
font-size: 28upx;
|
||||
position: relative;
|
||||
}.hs-row-bd {
|
||||
display: flex;
|
||||
margin-left: 20upx;
|
||||
min-height: 30upx;
|
||||
overflow: hidden;
|
||||
align-items: center;
|
||||
padding-right: 50upx;
|
||||
}.hs-hd-title {
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
}.hs-input {
|
||||
display: inline-block;
|
||||
float: left;
|
||||
font-size: 26upx;
|
||||
}
|
||||
.btn-primary{ color: #333;
|
||||
background-color: #fff;
|
||||
padding: 0rpx 40rpx;
|
||||
height: 90rpx;
|
||||
line-height: 90rpx;
|
||||
min-width: 150rpx;
|
||||
border: none !important;
|
||||
}
|
||||
|
||||
.fr {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.btn-default{
|
||||
border: 2rpx solid #949494;
|
||||
color: #888;
|
||||
background-color: #fff;
|
||||
padding: 0rpx 20rpx;
|
||||
height: 60rpx;
|
||||
line-height: 60rpx;
|
||||
min-width: 140rpx;margin-right: 10px;
|
||||
text-align: center;
|
||||
font-size: 22rpx;border-radius: 6px;}
|
||||
.margin20 {
|
||||
margin: 20upx 0;
|
||||
}
|
||||
.btn-success{
|
||||
background-color: #00a65c;
|
||||
color: #fff;
|
||||
padding: 0rpx 40rpx;
|
||||
height: 90rpx;
|
||||
line-height: 90rpx;
|
||||
min-width: 150rpx;
|
||||
border: none !important;
|
||||
}
|
||||
.flex{display:flex}.mr8{margin-top:16rpx}
|
||||
BIN
unpackage/cache/wgt/__UNI__0B7E65B/static/dingweis.png
vendored
Normal file
|
After Width: | Height: | Size: 9.2 KiB |
BIN
unpackage/cache/wgt/__UNI__0B7E65B/static/img/20.jpg
vendored
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
unpackage/cache/wgt/__UNI__0B7E65B/static/img/39.png
vendored
Normal file
|
After Width: | Height: | Size: 3.5 KiB |
BIN
unpackage/cache/wgt/__UNI__0B7E65B/static/img/40.png
vendored
Normal file
|
After Width: | Height: | Size: 2.6 KiB |
BIN
unpackage/cache/wgt/__UNI__0B7E65B/static/img/41.png
vendored
Normal file
|
After Width: | Height: | Size: 3.2 KiB |
BIN
unpackage/cache/wgt/__UNI__0B7E65B/static/img/43.png
vendored
Normal file
|
After Width: | Height: | Size: 3.0 KiB |
BIN
unpackage/cache/wgt/__UNI__0B7E65B/static/img/46.png
vendored
Normal file
|
After Width: | Height: | Size: 3.3 KiB |
BIN
unpackage/cache/wgt/__UNI__0B7E65B/static/img/47.png
vendored
Normal file
|
After Width: | Height: | Size: 3.7 KiB |
BIN
unpackage/cache/wgt/__UNI__0B7E65B/static/img/48.png
vendored
Normal file
|
After Width: | Height: | Size: 17 KiB |
BIN
unpackage/cache/wgt/__UNI__0B7E65B/static/img/49.png
vendored
Normal file
|
After Width: | Height: | Size: 3.7 KiB |
BIN
unpackage/cache/wgt/__UNI__0B7E65B/static/img/51.png
vendored
Normal file
|
After Width: | Height: | Size: 5.1 KiB |
BIN
unpackage/cache/wgt/__UNI__0B7E65B/static/img/52.png
vendored
Normal file
|
After Width: | Height: | Size: 3.3 KiB |
BIN
unpackage/cache/wgt/__UNI__0B7E65B/static/img/close.png
vendored
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
unpackage/cache/wgt/__UNI__0B7E65B/static/img/compile.png
vendored
Normal file
|
After Width: | Height: | Size: 730 B |
BIN
unpackage/cache/wgt/__UNI__0B7E65B/static/img/down.png
vendored
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
unpackage/cache/wgt/__UNI__0B7E65B/static/img/home.png
vendored
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
unpackage/cache/wgt/__UNI__0B7E65B/static/img/home_select.png
vendored
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
unpackage/cache/wgt/__UNI__0B7E65B/static/img/kefu.png
vendored
Normal file
|
After Width: | Height: | Size: 4.3 KiB |
BIN
unpackage/cache/wgt/__UNI__0B7E65B/static/img/left.png
vendored
Normal file
|
After Width: | Height: | Size: 528 B |
BIN
unpackage/cache/wgt/__UNI__0B7E65B/static/img/mine.png
vendored
Normal file
|
After Width: | Height: | Size: 3.8 KiB |
BIN
unpackage/cache/wgt/__UNI__0B7E65B/static/img/mine1.png
vendored
Normal file
|
After Width: | Height: | Size: 4.1 KiB |
BIN
unpackage/cache/wgt/__UNI__0B7E65B/static/img/news.png
vendored
Normal file
|
After Width: | Height: | Size: 3.5 KiB |
BIN
unpackage/cache/wgt/__UNI__0B7E65B/static/img/null.png
vendored
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
unpackage/cache/wgt/__UNI__0B7E65B/static/img/order.png
vendored
Normal file
|
After Width: | Height: | Size: 3.2 KiB |
BIN
unpackage/cache/wgt/__UNI__0B7E65B/static/img/order_select.png
vendored
Normal file
|
After Width: | Height: | Size: 3.5 KiB |
BIN
unpackage/cache/wgt/__UNI__0B7E65B/static/img/right.png
vendored
Normal file
|
After Width: | Height: | Size: 664 B |
BIN
unpackage/cache/wgt/__UNI__0B7E65B/static/img/t2.png
vendored
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
unpackage/cache/wgt/__UNI__0B7E65B/static/img/up.png
vendored
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
unpackage/cache/wgt/__UNI__0B7E65B/static/img/you.png
vendored
Normal file
|
After Width: | Height: | Size: 531 B |
1
unpackage/cache/wgt/__UNI__0B7E65B/view.css
vendored
Normal file
6
unpackage/cache/wgt/__UNI__0B7E65B/view.umd.min.js
vendored
Normal file
0
unpackage/dist/build/.automator/app-plus/.automator.json
vendored
Normal file
1
unpackage/dist/build/app-plus/__uniappchooselocation.js
vendored
Normal file
BIN
unpackage/dist/build/app-plus/__uniapperror.png
vendored
Normal file
|
After Width: | Height: | Size: 5.7 KiB |
1
unpackage/dist/build/app-plus/__uniappes6.js
vendored
Normal file
1
unpackage/dist/build/app-plus/__uniappopenlocation.js
vendored
Normal file
1
unpackage/dist/build/app-plus/__uniapppicker.js
vendored
Normal file
8
unpackage/dist/build/app-plus/__uniappquill.js
vendored
Normal file
1
unpackage/dist/build/app-plus/__uniappquillimageresize.js
vendored
Normal file
1
unpackage/dist/build/app-plus/__uniappscan.js
vendored
Normal file
BIN
unpackage/dist/build/app-plus/__uniappsuccess.png
vendored
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
25
unpackage/dist/build/app-plus/__uniappview.html
vendored
Normal file
@ -0,0 +1,25 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="zh-CN">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<script>
|
||||
var __UniViewStartTime__ = Date.now();
|
||||
var coverSupport = 'CSS' in window && typeof CSS.supports === 'function' && (CSS.supports('top: env(a)') ||
|
||||
CSS.supports('top: constant(a)'))
|
||||
document.write(
|
||||
'<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0' +
|
||||
(coverSupport ? ', viewport-fit=cover' : '') + '" />')
|
||||
</script>
|
||||
<title>View</title>
|
||||
<link rel="stylesheet" href="view.css" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
<script src="__uniappes6.js"></script>
|
||||
<script src="view.umd.min.js"></script>
|
||||
<script src="app-view.js"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
8
unpackage/dist/build/app-plus/app-config-service.js
vendored
Normal file
@ -0,0 +1,8 @@
|
||||
|
||||
var isReady=false;var onReadyCallbacks=[];
|
||||
var isServiceReady=false;var onServiceReadyCallbacks=[];
|
||||
var __uniConfig = {"pages":["pages/index/index","pages/mine/mine","pages/mine/edituser","pages/type/type","pages/login/authorize","pages/login/login","pages/address/list","pages/address/detail","pages/about/about","pages/person/add","pages/person/edit","pages/person/orderlist","pages/person/qiangdan","pages/person/orderinfo","pages/order/order","pages/order/detail","pages/exchange/createorder","pages/exchange/orderdetail","pages/exchange/orderlist","pages/exchange/goodslist","pages/exchange/goodsdetail","pages/mine/point_list","pages/question/index","pages/mine/orderConfig","pages/mine/priceRecord","pages/mine/apply","pages/feedback/index","pages/mine/editInfo","pages/order/pay","pages/poster/sharePoster"],"window":{"navigationBarTextStyle":"black","navigationBarTitleText":"uni-app1","navigationBarBackgroundColor":"#fff","backgroundColor":"#fff"},"tabBar":{"color":"#333333","selectedColor":"#00a73b","backgroundColor":"#ffffff","list":[{"pagePath":"pages/index/index","text":"首页","iconPath":"static/img/home.png","selectedIconPath":"static/img/home_select.png"},{"pagePath":"pages/order/order","text":"订单","iconPath":"static/img/order.png","selectedIconPath":"static/img/order_select.png"},{"pagePath":"pages/mine/mine","text":"我的","iconPath":"static/img/mine.png","selectedIconPath":"static/img/mine1.png"}]},"darkmode":false,"nvueCompiler":"uni-app","nvueStyleCompiler":"uni-app","renderer":"auto","splashscreen":{"alwaysShowBeforeRender":true,"autoclose":false},"appname":"回收小程序","compilerVersion":"4.76","entryPagePath":"pages/index/index","networkTimeout":{"request":60000,"connectSocket":60000,"uploadFile":60000,"downloadFile":60000}};
|
||||
var __uniRoutes = [{"path":"/pages/index/index","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"","enablePullDownRefresh":true,"navigationStyle":"custom"}},{"path":"/pages/mine/mine","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"我的","navigationStyle":"custom"}},{"path":"/pages/mine/edituser","meta":{},"window":{"navigationBarTitleText":"用户信息","enablePullDownRefresh":false}},{"path":"/pages/type/type","meta":{},"window":{"navigationBarTitleText":"回收预约","enablePullDownRefresh":false}},{"path":"/pages/login/authorize","meta":{},"window":{"navigationBarTitleText":"登录","enablePullDownRefresh":false}},{"path":"/pages/login/login","meta":{},"window":{"navigationBarTitleText":"登录","enablePullDownRefresh":false,"navigationStyle":"custom"}},{"path":"/pages/address/list","meta":{},"window":{"navigationBarTitleText":"地址管理"}},{"path":"/pages/address/detail","meta":{},"window":{"navigationBarTitleText":"修改地址"}},{"path":"/pages/about/about","meta":{},"window":{"navigationBarTitleText":"关于我们"}},{"path":"/pages/person/add","meta":{},"window":{"navigationBarTitleText":"成为回收员"}},{"path":"/pages/person/edit","meta":{},"window":{"navigationBarTitleText":"回收员信息"}},{"path":"/pages/person/orderlist","meta":{},"window":{"navigationBarTitleText":"回收员订单"}},{"path":"/pages/person/qiangdan","meta":{},"window":{"navigationBarTitleText":"抢单大厅","enablePullDownRefresh":false}},{"path":"/pages/person/orderinfo","meta":{},"window":{"navigationBarTitleText":"订单详情","enablePullDownRefresh":false}},{"path":"/pages/order/order","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"用户订单","enablePullDownRefresh":false}},{"path":"/pages/order/detail","meta":{},"window":{"navigationBarTitleText":"订单详情","enablePullDownRefresh":false}},{"path":"/pages/exchange/createorder","meta":{},"window":{"navigationBarTitleText":"兑换订单","enablePullDownRefresh":false}},{"path":"/pages/exchange/orderdetail","meta":{},"window":{"navigationBarTitleText":"订单详情","enablePullDownRefresh":false}},{"path":"/pages/exchange/orderlist","meta":{},"window":{"navigationBarTitleText":"订单列表","enablePullDownRefresh":false}},{"path":"/pages/exchange/goodslist","meta":{},"window":{"navigationBarTitleText":"","enablePullDownRefresh":false}},{"path":"/pages/exchange/goodsdetail","meta":{},"window":{"navigationBarTitleText":"详情","enablePullDownRefresh":false}},{"path":"/pages/mine/point_list","meta":{},"window":{"navigationBarTitleText":"积分明细","enablePullDownRefresh":false}},{"path":"/pages/question/index","meta":{},"window":{"navigationBarTitleText":"常见问题","enablePullDownRefresh":false}},{"path":"/pages/mine/orderConfig","meta":{},"window":{"navigationBarTitleText":"接单设置","enablePullDownRefresh":false}},{"path":"/pages/mine/priceRecord","meta":{},"window":{"navigationBarTitleText":"资金记录","enablePullDownRefresh":false}},{"path":"/pages/mine/apply","meta":{},"window":{"navigationBarTitleText":"代理加盟","enablePullDownRefresh":false}},{"path":"/pages/feedback/index","meta":{},"window":{"navigationBarTitleText":"意见反馈","enablePullDownRefresh":false}},{"path":"/pages/mine/editInfo","meta":{},"window":{"navigationBarTitleText":"信息编辑","enablePullDownRefresh":false}},{"path":"/pages/order/pay","meta":{},"window":{"navigationBarTitleText":"支付订单","enablePullDownRefresh":false}},{"path":"/pages/poster/sharePoster","meta":{},"window":{"navigationBarTitleText":"推广二维码","enablePullDownRefresh":false}}];
|
||||
__uniConfig.onReady=function(callback){if(__uniConfig.ready){callback()}else{onReadyCallbacks.push(callback)}};Object.defineProperty(__uniConfig,"ready",{get:function(){return isReady},set:function(val){isReady=val;if(!isReady){return}const callbacks=onReadyCallbacks.slice(0);onReadyCallbacks.length=0;callbacks.forEach(function(callback){callback()})}});
|
||||
__uniConfig.onServiceReady=function(callback){if(__uniConfig.serviceReady){callback()}else{onServiceReadyCallbacks.push(callback)}};Object.defineProperty(__uniConfig,"serviceReady",{get:function(){return isServiceReady},set:function(val){isServiceReady=val;if(!isServiceReady){return}const callbacks=onServiceReadyCallbacks.slice(0);onServiceReadyCallbacks.length=0;callbacks.forEach(function(callback){callback()})}});
|
||||
service.register("uni-app-config",{create(a,b,c){if(!__uniConfig.viewport){var d=b.weex.config.env.scale,e=b.weex.config.env.deviceWidth,f=Math.ceil(e/d);Object.assign(__uniConfig,{viewport:f,defaultFontSize:Math.round(f/20)})}return{instance:{__uniConfig:__uniConfig,__uniRoutes:__uniRoutes,global:void 0,window:void 0,document:void 0,frames:void 0,self:void 0,location:void 0,navigator:void 0,localStorage:void 0,history:void 0,Caches:void 0,screen:void 0,alert:void 0,confirm:void 0,prompt:void 0,fetch:void 0,XMLHttpRequest:void 0,WebSocket:void 0,webkit:void 0,print:void 0}}}});
|
||||
1
unpackage/dist/build/app-plus/app-config.js
vendored
Normal file
@ -0,0 +1 @@
|
||||
(function(e){function r(r){for(var n,l,i=r[0],p=r[1],a=r[2],c=0,s=[];c<i.length;c++)l=i[c],Object.prototype.hasOwnProperty.call(o,l)&&o[l]&&s.push(o[l][0]),o[l]=0;for(n in p)Object.prototype.hasOwnProperty.call(p,n)&&(e[n]=p[n]);f&&f(r);while(s.length)s.shift()();return u.push.apply(u,a||[]),t()}function t(){for(var e,r=0;r<u.length;r++){for(var t=u[r],n=!0,i=1;i<t.length;i++){var p=t[i];0!==o[p]&&(n=!1)}n&&(u.splice(r--,1),e=l(l.s=t[0]))}return e}var n={},o={"app-config":0},u=[];function l(r){if(n[r])return n[r].exports;var t=n[r]={i:r,l:!1,exports:{}};return e[r].call(t.exports,t,t.exports,l),t.l=!0,t.exports}l.m=e,l.c=n,l.d=function(e,r,t){l.o(e,r)||Object.defineProperty(e,r,{enumerable:!0,get:t})},l.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},l.t=function(e,r){if(1&r&&(e=l(e)),8&r)return e;if(4&r&&"object"===typeof e&&e&&e.__esModule)return e;var t=Object.create(null);if(l.r(t),Object.defineProperty(t,"default",{enumerable:!0,value:e}),2&r&&"string"!=typeof e)for(var n in e)l.d(t,n,function(r){return e[r]}.bind(null,n));return t},l.n=function(e){var r=e&&e.__esModule?function(){return e["default"]}:function(){return e};return l.d(r,"a",r),r},l.o=function(e,r){return Object.prototype.hasOwnProperty.call(e,r)},l.p="/";var i=this["webpackJsonp"]=this["webpackJsonp"]||[],p=i.push.bind(i);i.push=r,i=i.slice();for(var a=0;a<i.length;a++)r(i[a]);var f=p;t()})([]);
|
||||
17
unpackage/dist/build/app-plus/app-service.js
vendored
Normal file
1
unpackage/dist/build/app-plus/app-view.js
vendored
Normal file
BIN
unpackage/dist/build/app-plus/assets/uniicons.b6d3756e.ttf
vendored
Normal file
1
unpackage/dist/build/app-plus/manifest.json
vendored
Normal file
@ -0,0 +1 @@
|
||||
{"@platforms":["android","iPhone","iPad"],"id":"__UNI__0B7E65B","name":"回收小程序","version":{"name":"1.0.0","code":"100"},"description":"","launch_path":"__uniappview.html","developer":{"name":"","email":"","url":""},"permissions":{"UniNView":{"description":"UniNView原生渲染"}},"plus":{"useragent":{"value":"uni-app","concatenate":true},"splashscreen":{"target":"id:1","autoclose":true,"waiting":true,"delay":0},"popGesture":"close","launchwebview":{"id":"1","kernel":"WKWebview"},"statusbar":{"immersed":"supportedDevice","style":"dark","background":"#fff"},"usingComponents":true,"nvueStyleCompiler":"uni-app","compilerVersion":3,"distribute":{"google":{"permissions":["<uses-permission android:name=\"android.permission.CHANGE_NETWORK_STATE\"/>","<uses-permission android:name=\"android.permission.MOUNT_UNMOUNT_FILESYSTEMS\"/>","<uses-permission android:name=\"android.permission.VIBRATE\"/>","<uses-permission android:name=\"android.permission.READ_LOGS\"/>","<uses-permission android:name=\"android.permission.ACCESS_WIFI_STATE\"/>","<uses-feature android:name=\"android.hardware.camera.autofocus\"/>","<uses-permission android:name=\"android.permission.ACCESS_NETWORK_STATE\"/>","<uses-permission android:name=\"android.permission.CAMERA\"/>","<uses-permission android:name=\"android.permission.GET_ACCOUNTS\"/>","<uses-permission android:name=\"android.permission.READ_PHONE_STATE\"/>","<uses-permission android:name=\"android.permission.CHANGE_WIFI_STATE\"/>","<uses-permission android:name=\"android.permission.WAKE_LOCK\"/>","<uses-permission android:name=\"android.permission.FLASHLIGHT\"/>","<uses-feature android:name=\"android.hardware.camera\"/>","<uses-permission android:name=\"android.permission.WRITE_SETTINGS\"/>"]},"apple":{"dSYMs":false},"plugins":{"audio":{"mp3":{"description":"Android平台录音支持MP3格式文件"}}}},"uniStatistics":{"enable":false},"allowsInlineMediaPlayback":true,"safearea":{"background":"#ffffff","bottom":{"offset":"auto"}},"uni-app":{"compilerVersion":"4.76","control":"uni-v3","nvueCompiler":"uni-app","renderer":"auto","nvue":{"flex-direction":"column"},"nvueLaunchMode":"normal"},"tabBar":{"color":"#333333","selectedColor":"#00a73b","backgroundColor":"#ffffff","list":[{"pagePath":"pages/index/index","text":"首页","iconPath":"static/img/home.png","selectedIconPath":"static/img/home_select.png"},{"pagePath":"pages/order/order","text":"订单","iconPath":"static/img/order.png","selectedIconPath":"static/img/order_select.png"},{"pagePath":"pages/mine/mine","text":"我的","iconPath":"static/img/mine.png","selectedIconPath":"static/img/mine1.png"}],"borderStyle":"rgba(0,0,0,0.4)","height":"50px","child":["lauchwebview"],"selected":0},"launch_path":"__uniappview.html"}}
|
||||
BIN
unpackage/dist/build/app-plus/static/back_img.png
vendored
Normal file
|
After Width: | Height: | Size: 3.9 KiB |
320
unpackage/dist/build/app-plus/static/css/style.css
vendored
Normal file
@ -0,0 +1,320 @@
|
||||
body {
|
||||
background-color: #FFFFFF;
|
||||
font-size: 32upx;
|
||||
}
|
||||
view {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
image {
|
||||
background-size: 100% 100%;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
button {
|
||||
height: auto;
|
||||
border: none;
|
||||
line-height: 2.55555556;
|
||||
padding: 0 28upx;
|
||||
}
|
||||
|
||||
input {
|
||||
background: none;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
|
||||
.fsz24 {
|
||||
font-size: 24rpx !important;
|
||||
}
|
||||
|
||||
.fsz26 {
|
||||
font-size: 26rpx !important;
|
||||
}
|
||||
|
||||
.fsz28 {
|
||||
font-size: 28rpx !important;
|
||||
}
|
||||
|
||||
.fsz30 {
|
||||
font-size: 30rpx !important;
|
||||
}
|
||||
|
||||
.fsz32 {
|
||||
font-size: 32rpx !important;
|
||||
}
|
||||
|
||||
.fsz34 {
|
||||
font-size: 34rpx !important;
|
||||
}
|
||||
|
||||
.fsz36 {
|
||||
font-size: 36rpx !important;
|
||||
}
|
||||
|
||||
.fsz38 {
|
||||
font-size: 38rpx !important;
|
||||
}
|
||||
|
||||
.fsz50 {
|
||||
font-size: 50rpx !important;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.clearfix{
|
||||
overflow: hidden;
|
||||
}
|
||||
.fl{
|
||||
float: left;
|
||||
}
|
||||
.fr{
|
||||
float: right;
|
||||
}
|
||||
.overflow1{
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 1;
|
||||
-webkit-box-orient: vertical;
|
||||
}
|
||||
.overflow2{
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 2;
|
||||
-webkit-box-orient: vertical;
|
||||
}
|
||||
|
||||
.w1{
|
||||
width: 94%;
|
||||
margin: 0 auto;
|
||||
margin-top: 30rpx;
|
||||
}
|
||||
|
||||
.w{
|
||||
width: 94%;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.none{
|
||||
display: none;
|
||||
}
|
||||
.zanwu{
|
||||
text-align: center;
|
||||
font-size: 30rpx;
|
||||
margin-top: 50%;
|
||||
margin-bottom: 30%;
|
||||
}
|
||||
|
||||
.width{
|
||||
width: 30%;
|
||||
margin-right: 5%;
|
||||
}
|
||||
.width:nth-child(3n){
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.bglv{background-color: #46b45d;}
|
||||
.lv{color: #46b45d;}
|
||||
|
||||
|
||||
|
||||
|
||||
.icon {
|
||||
width: 50upx;
|
||||
height: 50upx;
|
||||
}
|
||||
.btn {
|
||||
display: inline-block;
|
||||
box-sizing: border-box;
|
||||
border-radius: 0;
|
||||
font-size: 28upx;
|
||||
transform: scale(1);
|
||||
transition: all .5s;
|
||||
}
|
||||
|
||||
|
||||
.btn::after {
|
||||
border: none;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.content-top {
|
||||
margin-bottom: 116upx;
|
||||
}.button-bottom {
|
||||
background-color: #fff;
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
height: 90upx;
|
||||
width: 100%;
|
||||
display: flex;
|
||||
z-index: 66;
|
||||
box-shadow: 0 0 10px #ccc;
|
||||
}
|
||||
|
||||
.button-bottom .btn {
|
||||
flex: 1;
|
||||
}.navbar {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
/* #ifdef H5 */
|
||||
top: 40px;
|
||||
/* #endif */
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 106rpx;
|
||||
background-color: #FFFFFF;
|
||||
z-index: 9; display: flex;
|
||||
justify-content: space-between;
|
||||
|
||||
display: flex;
|
||||
-webkit-box-lines: multiple;
|
||||
-moz-box-lines: multiple;
|
||||
-o-box-lines: multiple; line-height: 48px;
|
||||
justify-content: space-around;
|
||||
-webkit-justify-content: space-around;
|
||||
flex-wrap: wrap
|
||||
}
|
||||
.navbar .item {
|
||||
border-top: 5rpx solid transparent;
|
||||
border-bottom: 5rpx solid transparent;
|
||||
font-size: 30rpx;
|
||||
color: #999999;
|
||||
}
|
||||
.navbar .on {
|
||||
border-bottom-color: #E93323;
|
||||
color: #282828;
|
||||
}
|
||||
|
||||
.img-grids {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
.hs-di {
|
||||
position: relative;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.ro-text {
|
||||
position: relative;
|
||||
font-size: 24upx;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
.little-img {
|
||||
width: 140upx;
|
||||
height: 140upx;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
.zanwuimg{
|
||||
width: 100%;
|
||||
flex-direction: column;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
justify-items: center;
|
||||
height: 70vh;
|
||||
}
|
||||
.zanwuimg image{width: 200rpx!important;}
|
||||
.zanwuimg view{padding-bottom: 30rpx;
|
||||
padding-top: 20rpx;
|
||||
font-size: 28rpx;
|
||||
color: #999999;}
|
||||
.red-price {
|
||||
color: red !important;
|
||||
} .lidiv-ft {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.right-img .lidiv-ft {
|
||||
right: 8upx;
|
||||
height: 50upx;
|
||||
position: absolute;
|
||||
}.hs-fttext {
|
||||
font-size: 28upx;
|
||||
float: right;
|
||||
position: relative;
|
||||
line-height: 50upx;
|
||||
}
|
||||
.gongli{color:#00a73b}
|
||||
.hs_box {background-color: #fff;}
|
||||
.hs-row {
|
||||
padding: 20upx 26upx 20upx 0;
|
||||
width: 724upx;
|
||||
margin-left: 26upx;
|
||||
border-bottom: 2upx solid #f3f3f3;
|
||||
position: relative;
|
||||
background-color: #fff;
|
||||
color: #333;
|
||||
display: flex;
|
||||
min-height: 90upx;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
}
|
||||
.hs-row-hd {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
font-size: 28upx;
|
||||
position: relative;
|
||||
}.hs-row-bd {
|
||||
display: flex;
|
||||
margin-left: 20upx;
|
||||
min-height: 30upx;
|
||||
overflow: hidden;
|
||||
align-items: center;
|
||||
padding-right: 50upx;
|
||||
}.hs-hd-title {
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
}.hs-input {
|
||||
display: inline-block;
|
||||
float: left;
|
||||
font-size: 26upx;
|
||||
}
|
||||
.btn-primary{ color: #333;
|
||||
background-color: #fff;
|
||||
padding: 0rpx 40rpx;
|
||||
height: 90rpx;
|
||||
line-height: 90rpx;
|
||||
min-width: 150rpx;
|
||||
border: none !important;
|
||||
}
|
||||
|
||||
.fr {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.btn-default{
|
||||
border: 2rpx solid #949494;
|
||||
color: #888;
|
||||
background-color: #fff;
|
||||
padding: 0rpx 20rpx;
|
||||
height: 60rpx;
|
||||
line-height: 60rpx;
|
||||
min-width: 140rpx;margin-right: 10px;
|
||||
text-align: center;
|
||||
font-size: 22rpx;border-radius: 6px;}
|
||||
.margin20 {
|
||||
margin: 20upx 0;
|
||||
}
|
||||
.btn-success{
|
||||
background-color: #00a65c;
|
||||
color: #fff;
|
||||
padding: 0rpx 40rpx;
|
||||
height: 90rpx;
|
||||
line-height: 90rpx;
|
||||
min-width: 150rpx;
|
||||
border: none !important;
|
||||
}
|
||||
.flex{display:flex}.mr8{margin-top:16rpx}
|
||||
BIN
unpackage/dist/build/app-plus/static/dingweis.png
vendored
Normal file
|
After Width: | Height: | Size: 9.2 KiB |
BIN
unpackage/dist/build/app-plus/static/img/20.jpg
vendored
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
unpackage/dist/build/app-plus/static/img/39.png
vendored
Normal file
|
After Width: | Height: | Size: 3.5 KiB |
BIN
unpackage/dist/build/app-plus/static/img/40.png
vendored
Normal file
|
After Width: | Height: | Size: 2.6 KiB |
BIN
unpackage/dist/build/app-plus/static/img/41.png
vendored
Normal file
|
After Width: | Height: | Size: 3.2 KiB |
BIN
unpackage/dist/build/app-plus/static/img/43.png
vendored
Normal file
|
After Width: | Height: | Size: 3.0 KiB |
BIN
unpackage/dist/build/app-plus/static/img/46.png
vendored
Normal file
|
After Width: | Height: | Size: 3.3 KiB |
BIN
unpackage/dist/build/app-plus/static/img/47.png
vendored
Normal file
|
After Width: | Height: | Size: 3.7 KiB |
BIN
unpackage/dist/build/app-plus/static/img/48.png
vendored
Normal file
|
After Width: | Height: | Size: 17 KiB |
BIN
unpackage/dist/build/app-plus/static/img/49.png
vendored
Normal file
|
After Width: | Height: | Size: 3.7 KiB |
BIN
unpackage/dist/build/app-plus/static/img/51.png
vendored
Normal file
|
After Width: | Height: | Size: 5.1 KiB |
BIN
unpackage/dist/build/app-plus/static/img/52.png
vendored
Normal file
|
After Width: | Height: | Size: 3.3 KiB |
BIN
unpackage/dist/build/app-plus/static/img/close.png
vendored
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
unpackage/dist/build/app-plus/static/img/compile.png
vendored
Normal file
|
After Width: | Height: | Size: 730 B |
BIN
unpackage/dist/build/app-plus/static/img/down.png
vendored
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
unpackage/dist/build/app-plus/static/img/home.png
vendored
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
unpackage/dist/build/app-plus/static/img/home_select.png
vendored
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
unpackage/dist/build/app-plus/static/img/kefu.png
vendored
Normal file
|
After Width: | Height: | Size: 4.3 KiB |
BIN
unpackage/dist/build/app-plus/static/img/left.png
vendored
Normal file
|
After Width: | Height: | Size: 528 B |
BIN
unpackage/dist/build/app-plus/static/img/mine.png
vendored
Normal file
|
After Width: | Height: | Size: 3.8 KiB |
BIN
unpackage/dist/build/app-plus/static/img/mine1.png
vendored
Normal file
|
After Width: | Height: | Size: 4.1 KiB |
BIN
unpackage/dist/build/app-plus/static/img/news.png
vendored
Normal file
|
After Width: | Height: | Size: 3.5 KiB |