This commit is contained in:
unknown 2025-12-05 20:43:44 +08:00
parent cdaafe1fb3
commit 92527f3872
69 changed files with 4154 additions and 3299 deletions

View File

@ -1,16 +1,21 @@
{ // launch.json configurations app-plus/h5/mp-weixin/mp-baidu/mp-alipay/mp-qq/mp-toutiao/mp-360/ {
// launch.json configurations app-plus/h5/mp-weixin/mp-baidu/mp-alipay/mp-qq/mp-toutiao/mp-360/
// launchtypelocalremote, localremote // launchtypelocalremote, localremote
"version": "0.0", "version" : "0.0",
"configurations": [{ "configurations" : [
"default" :
{ {
"default" : {
"launchtype" : "local" "launchtype" : "local"
}, },
"mp-weixin" : "mp-weixin" : {
{
"launchtype" : "local" "launchtype" : "local"
}, },
"type" : "uniCloud" "type" : "uniCloud"
},
{
"customPlaygroundType" : "device",
"playground" : "standard",
"type" : "uni-app:app-android"
} }
] ]
} }

View File

@ -1,6 +1,7 @@
<script> <script>
export default { export default {
onLaunch: function() { onLaunch: function() {
uni.setStorageSync('loginIndex', 0);
// var token = uni.getStorageSync('userToken'); // var token = uni.getStorageSync('userToken');
// console.log(token,'--------') // console.log(token,'--------')
// if(!token){ // if(!token){

View File

@ -43,13 +43,14 @@ const util = {
latitude: 32.202905 latitude: 32.202905
}) })
/* #endif */ /* #endif */
console.log('+++++++++++++++++111')
var that = this var that = this
uni.getLocation({ uni.getLocation({
type: 'wgs84', type: 'wgs84',
geocode: true, // geocode: true,
success: function(res) { success: function(res) {
console.log('当前位置的经度' + res.longitude,res); console.log('当前位置的经度-' + res.longitude,res);
console.log('当前位置的纬度' + res.latitude); console.log('当前位置的纬度-' + res.latitude);
that.longitude = res.longitude that.longitude = res.longitude
that.latitude = res.latitude that.latitude = res.latitude
let location = { let location = {

View File

@ -43,7 +43,8 @@
yuyue_time:[], yuyue_time:[],
dateShow: false, dateShow: false,
leftIndex: 0, leftIndex: 0,
rightList: [] rightList: [],
leftData: []
} }
}, },
onShow() { onShow() {
@ -97,8 +98,19 @@
// date:this.yuyue_time[0][this.leftIndex], // date:this.yuyue_time[0][this.leftIndex],
// time: this.rightList[index] // time: this.rightList[index]
// }) // })
this.$emit('checkTime',this.yuyue_time[0][this.leftIndex]+'-'+this.rightList[index]) // console.log(this.leftData[this.leftIndex])
// console.log(this.rightList[index].split('-'))
let timeArr = this.rightList[index].split('-')
let date = this.leftData[this.leftIndex] + ' ' + timeArr[0]+':00'
let nowTime = new Date().getTime()
let dateTime = new Date(date).getTime()
if(dateTime < nowTime){
uni.showToast({ icon: "none", title: '当前时间不在可预约范围内'})
}else{
this.$emit('checkTime',this.leftData[this.leftIndex]+'-'+this.rightList[index])
this.dateShow = false this.dateShow = false
}
}, },
userDefaultaddress() { userDefaultaddress() {
this.$api.userDefaultAddress({}, res => { this.$api.userDefaultAddress({}, res => {
@ -148,6 +160,8 @@
} }
this.$api.typeinit(data,res=>{ this.$api.typeinit(data,res=>{
if(res.code == '1'){ if(res.code == '1'){
this.leftData = res.data.yuyue_time[0]
res.data.yuyue_time[0] = res.data.yuyue_labels
this.yuyue_time = res.data.yuyue_time this.yuyue_time = res.data.yuyue_time
this.rightList = res.data.yuyue_time[1] this.rightList = res.data.yuyue_time[1]
this.typeinfo= res.data.typeinfo this.typeinfo= res.data.typeinfo

View File

@ -84,7 +84,7 @@
data() { data() {
return { return {
statusBarHeight: this.statusBarHeight, statusBarHeight: 0,//this.statusBarHeight,
ImgUrl: this.ImgUrl, ImgUrl: this.ImgUrl,
letter: [], letter: [],
selectLetter: '', selectLetter: '',
@ -115,7 +115,7 @@
}); });
// //
that.getWarpweft(function(res){ that.getWarpweft(function(res){
that.back_city({'cityName':res}) // that.back_city({'cityName':res})
}) })
//city.js //city.js
var mu = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'n', 'p', 'q', 'r', 's', 't', 'w', 'x', 'y', var mu = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'n', 'p', 'q', 'r', 's', 't', 'w', 'x', 'y',
@ -241,7 +241,7 @@
longitude: res.longitude, longitude: res.longitude,
latitude: res.latitude latitude: res.latitude
} }
console.log(location,'fffffff') // console.log(location,'fffffff')
const qqmapsdk = new QQMapWX({ const qqmapsdk = new QQMapWX({
key: 'EO2BZ-YGE33-NHJ3S-RCRUJ-WT47J-5DB3I' key: 'EO2BZ-YGE33-NHJ3S-RCRUJ-WT47J-5DB3I'
}) })

View File

@ -20,12 +20,21 @@ const post = (url, data, returndata) => {
title: result.msg, title: result.msg,
icon: 'none' icon: 'none'
}) })
const loginIndex = uni.getStorageSync('loginIndex');
if(!loginIndex){
setTimeout(function() { setTimeout(function() {
uni.navigateTo({ uni.navigateTo({
url: '/pages/login/login' url: '/pages/login/login'
}) })
}, 1000) }, 1000)
} }
uni.setStorageSync('loginIndex', 1);
// setTimeout(function() {
// uni.navigateTo({
// url: '/pages/login/login'
// })
// }, 1000)
}
returndata(result); returndata(result);
}, },
fail: (error) => { fail: (error) => {

View File

@ -30,6 +30,7 @@
"<uses-permission android:name=\"android.permission.ACCESS_WIFI_STATE\"/>", "<uses-permission android:name=\"android.permission.ACCESS_WIFI_STATE\"/>",
"<uses-feature android:name=\"android.hardware.camera.autofocus\"/>", "<uses-feature android:name=\"android.hardware.camera.autofocus\"/>",
"<uses-permission android:name=\"android.permission.ACCESS_NETWORK_STATE\"/>", "<uses-permission android:name=\"android.permission.ACCESS_NETWORK_STATE\"/>",
"<uses-permission android:name=\"android.permission.CALL_PHONE\"/>",
"<uses-permission android:name=\"android.permission.CAMERA\"/>", "<uses-permission android:name=\"android.permission.CAMERA\"/>",
"<uses-permission android:name=\"android.permission.GET_ACCOUNTS\"/>", "<uses-permission android:name=\"android.permission.GET_ACCOUNTS\"/>",
"<uses-permission android:name=\"android.permission.READ_PHONE_STATE\"/>", "<uses-permission android:name=\"android.permission.READ_PHONE_STATE\"/>",
@ -37,6 +38,8 @@
"<uses-permission android:name=\"android.permission.WAKE_LOCK\"/>", "<uses-permission android:name=\"android.permission.WAKE_LOCK\"/>",
"<uses-permission android:name=\"android.permission.FLASHLIGHT\"/>", "<uses-permission android:name=\"android.permission.FLASHLIGHT\"/>",
"<uses-feature android:name=\"android.hardware.camera\"/>", "<uses-feature android:name=\"android.hardware.camera\"/>",
"<uses-permission android:name=\"android.permission.ACCESS_COARSE_LOCATION\"/>",
"<uses-permission android:name=\"android.permission.ACCESS_FINE_LOCATION\"/>",
"<uses-permission android:name=\"android.permission.WRITE_SETTINGS\"/>" "<uses-permission android:name=\"android.permission.WRITE_SETTINGS\"/>"
] ]
}, },
@ -45,7 +48,41 @@
"dSYMs" : false "dSYMs" : false
}, },
/* SDK */ /* SDK */
"sdkConfigs" : {} "sdkConfigs" : {
"maps" : {}
},
"icons" : {
"android" : {
"hdpi" : "unpackage/res/icons/72x72.png",
"xhdpi" : "unpackage/res/icons/96x96.png",
"xxhdpi" : "unpackage/res/icons/144x144.png",
"xxxhdpi" : "unpackage/res/icons/192x192.png"
},
"ios" : {
"appstore" : "unpackage/res/icons/1024x1024.png",
"ipad" : {
"app" : "unpackage/res/icons/76x76.png",
"app@2x" : "unpackage/res/icons/152x152.png",
"notification" : "unpackage/res/icons/20x20.png",
"notification@2x" : "unpackage/res/icons/40x40.png",
"proapp@2x" : "unpackage/res/icons/167x167.png",
"settings" : "unpackage/res/icons/29x29.png",
"settings@2x" : "unpackage/res/icons/58x58.png",
"spotlight" : "unpackage/res/icons/40x40.png",
"spotlight@2x" : "unpackage/res/icons/80x80.png"
},
"iphone" : {
"app@2x" : "unpackage/res/icons/120x120.png",
"app@3x" : "unpackage/res/icons/180x180.png",
"notification@2x" : "unpackage/res/icons/40x40.png",
"notification@3x" : "unpackage/res/icons/60x60.png",
"settings@2x" : "unpackage/res/icons/58x58.png",
"settings@3x" : "unpackage/res/icons/87x87.png",
"spotlight@2x" : "unpackage/res/icons/80x80.png",
"spotlight@3x" : "unpackage/res/icons/120x120.png"
}
}
}
} }
}, },
/* */ /* */

View File

@ -20,7 +20,7 @@
<input v-model="phoneNum" type="text" style="font-size: 28rpx;flex:1;text-align: right;" placeholder="请输入手机号" /> <input v-model="phoneNum" type="text" style="font-size: 28rpx;flex:1;text-align: right;" placeholder="请输入手机号" />
</view> </view>
<view class="commitBtn flex-center" @click="feedback">提交</view> <view class="commitBtn flex-center" @click="feedback">提交</view>
<view class="tip">您的反馈我们会尽快解决但无法保证每一条都能及时反馈如果有紧急咨询请直接拨打客服电话:400-000-000</view> <view class="tip">您的反馈我们会尽快解决但无法保证每一条都能及时反馈如果有紧急咨询请直接拨打客服电话:{{servicePhone}}</view>
</view> </view>
</template> </template>
@ -32,11 +32,12 @@
fileList1: [], fileList1: [],
notesText: '', notesText: '',
imgList: [], imgList: [],
phoneNum: '' phoneNum: '',
servicePhone: ''
} }
}, },
onLoad() { onLoad() {
this.servicePhone = uni.getStorageSync('servicePhone')
}, },
onReachBottom (){ onReachBottom (){

View File

@ -12,7 +12,10 @@
:src="path+'/assets/img/icon/selected.png'" class="checkIcon"></image> :src="path+'/assets/img/icon/selected.png'" class="checkIcon"></image>
<image v-else @click="selecCancle(item.id,item.name)" :src="path+'/assets/img/icon/noSelected.png'" <image v-else @click="selecCancle(item.id,item.name)" :src="path+'/assets/img/icon/noSelected.png'"
class="checkIcon"></image> class="checkIcon"></image>
<view class="checkText" :class="{checkEle:cancleType==item.id}"> <view v-if="cancleType==item.id" @click="selecCancle(0)" class="checkText" :class="{checkEle:cancleType==item.id}">
{{item.name}}
</view>
<view v-else @click="selecCancle(item.id,item.name)" class="checkText" :class="{checkEle:cancleType==item.id}">
{{item.name}} {{item.name}}
</view> </view>
</view> </view>
@ -51,35 +54,36 @@
cancleType: '', cancleType: '',
cancleList: [{ cancleList: [{
id: 1, id: 1,
name: '时间冲突' name: '用户暂时不打算卖了'
}, },
{ {
id: 2, id: 2,
name: '多次联系不上' name: ' 时间冲突'
}, },
{ {
id: 3, id: 3,
name: '操作失误' name: '多次联系不上用户'
}, },
{ {
id: 4, id: 4,
name: '不符合回收标准' name: '操作不当误下单'
}, },
{ {
id: 5, id: 5,
name: '地址错误' name: '价格不合适'
}, },
{ {
id: 6, id: 6,
name: '超出服务范围' name: '品类不同、信息有误'
}, },
{ {
id: 7, id: 7,
name: '其他' name: '不符合回收标准'
} }
], ],
imgList: [], imgList: [],
reasonName: '' reasonName: '',
path: this.path
} }
}, },
onShow() { onShow() {
@ -94,6 +98,10 @@
}, },
onReachBottom() {}, onReachBottom() {},
methods: { methods: {
reset(){
this.cancleType = '';
this.reasonName = ''
},
conform2(){ conform2(){
let data = { let data = {
id: this.cancleType, id: this.cancleType,

View File

@ -65,7 +65,7 @@
</view> </view>
<view class="flex-between goodsWrap"> <view class="flex-between goodsWrap">
<view class="goodsBox1 flex-center" style="width: 40%;"> <view class="goodsBox1 flex-center" style="width: 40%;">
<image :src="path+item.type_image" class="goodsImg"></image> <image :src="item.type_image" class="goodsImg"></image>
<view> <view>
<view class="goodsText1">回收品类</view> <view class="goodsText1">回收品类</view>
<view class="goodsText2">{{item.type_name}}</view> <view class="goodsText2">{{item.type_name}}</view>
@ -76,7 +76,7 @@
<view class="goodsText2">X{{item.quantity}}</view> <view class="goodsText2">X{{item.quantity}}</view>
</view> </view>
<view class="goodsBox3 flex-column-center" style="width: 40%;"> <view class="goodsBox3 flex-column-center" style="width: 40%;">
<view class="goodsText1">预估价</view> <view class="goodsText1">{{item.price_mode == 'fixed'?'一口价':'预估价'}}</view>
<view class="flex-center"> <view class="flex-center">
<view class="priceIcon"></view> <view class="priceIcon"></view>
<view class="priceNum">{{item.price}}</view> <view class="priceNum">{{item.price}}</view>
@ -139,7 +139,7 @@
<view class="goodsText2">X{{item.quantity}}</view> <view class="goodsText2">X{{item.quantity}}</view>
</view> </view>
<view class="goodsBox3 flex-column-center" style="width: 40%;"> <view class="goodsBox3 flex-column-center" style="width: 40%;">
<view class="goodsText1">预估价</view> <view class="goodsText1">{{item.price_mode == 'fixed'?'一口价':'预估价'}}</view>
<view class="flex-center"> <view class="flex-center">
<view class="priceIcon"></view> <view class="priceIcon"></view>
<view class="priceNum">{{item.price}}</view> <view class="priceNum">{{item.price}}</view>
@ -176,7 +176,7 @@
<view @click.stop="updateTime(item.id)" v-show="item.status==2" class="userBtn2 flex-center"> <view @click.stop="updateTime(item.id)" v-show="item.status==2" class="userBtn2 flex-center">
修改预约 修改预约
</view> </view>
<view @click.stop="signIn2(item.id)" v-show="item.status==2" class="userBtn flex-center"> <view @click.stop="signIn2(item)" v-show="item.status==2" class="userBtn flex-center">
上门签到 上门签到
</view> </view>
<view v-show="item.status==7" class="userBtn flex-center" @click.stop="selectTime(item.id)"> <view v-show="item.status==7" class="userBtn flex-center" @click.stop="selectTime(item.id)">
@ -258,7 +258,7 @@
<view class="popBoxOne"> <view class="popBoxOne">
<image :src="path+'/assets/img/icon/star1.png'" class="popOneImg"></image> <image :src="path+'/assets/img/icon/star1.png'" class="popOneImg"></image>
<text class="popOneText1">上门签到成功</text> <text class="popOneText1">上门签到成功</text>
<text class="popOneText2">上门服务请仔细核对回收货物</text> <text class="popOneText2">上门服务请仔细核对回收{{nowOrder.type_name}}</text>
<text class="popOneText3">祝您与用户合作愉快~</text> <text class="popOneText3">祝您与用户合作愉快~</text>
<view class="popOneBtn flex-center" @click="signInShow = false">好的</view> <view class="popOneBtn flex-center" @click="signInShow = false">好的</view>
</view> </view>
@ -345,7 +345,7 @@
</view> </view>
</view> </view>
</u-popup> </u-popup>
<cancleOrder @cancleReason="cancleReason" :cancleShow="cancleShow" @closeCancle="cancleShow=false"></cancleOrder> <cancleOrder ref="cancleOrder" @cancleReason="cancleReason" :cancleShow="cancleShow" @closeCancle="cancleShow=false"></cancleOrder>
<custom-tab-bar :current-page="0" @centerClick="centerClick" /> <custom-tab-bar :current-page="0" @centerClick="centerClick" />
<!-- <u-popup :show="showCity"> --> <!-- <u-popup :show="showCity"> -->
@ -381,6 +381,9 @@
typelist: [], typelist: [],
showType: false, showType: false,
distanceArr: [{ distanceArr: [{
name: '不限',
value: ''
},{
name: '1km', name: '1km',
value: 1 value: 1
},{ },{
@ -470,11 +473,12 @@
tipText: '', tipText: '',
typeText: '', typeText: '',
distanceText: { distanceText: {
name: '1km', name: '不限',
value: 1 value: ''
}, },
open_door_title: '', open_door_title: '',
open_door_content: '' open_door_content: '',
nowOrder: {}
} }
}, },
components: { components: {
@ -535,6 +539,7 @@
// this.recycleOrderList() // this.recycleOrderList()
this.getdata() this.getdata()
this.indexInfo() this.indexInfo()
this.getPhone()
// this.getquestion() // this.getquestion()
// this.recycleOrderList() // this.recycleOrderList()
// this.qiangdanlist() // this.qiangdanlist()
@ -577,6 +582,17 @@
} }
}, },
methods: { methods: {
getPhone(){
let data = {
}
this.$api.indexInfo(data,res=>{
if(res.code == '1'){
let arr = res.data.example.list;
let phone = arr.find((item,index)=>item.name == 'app.feedback.phone').value
uni.setStorageSync('servicePhone', phone)
}
})
},
indexInfo(){ indexInfo(){
var _this = this; var _this = this;
this.$api.indexInfo({ this.$api.indexInfo({
@ -627,6 +643,7 @@
this.$set(this.moreShow, id, this.moreShow[id]?false:true) this.$set(this.moreShow, id, this.moreShow[id]?false:true)
}, },
callPhone(phoneNumber) { callPhone(phoneNumber) {
console.log(phoneNumber)
uni.makePhoneCall({ uni.makePhoneCall({
phoneNumber: phoneNumber, // phoneNumber: phoneNumber, //
success: (res) => { success: (res) => {
@ -641,12 +658,15 @@
let _this = this; let _this = this;
this.recycleList = [] this.recycleList = []
this.qiangdanArr = [] this.qiangdanArr = []
if(this.longitude){ console.log('------------111--',this.longitude)
if(!this.longitude){
console.log('------------222')
util.getAddress(function(res){ util.getAddress(function(res){
_this.cityText = res.city; _this.cityText = res.city;
_this.longitude = res.longitude; _this.longitude = res.longitude;
_this.latitude = res.latitude; _this.latitude = res.latitude;
console.log(res,'kkkkkkkkk+++') console.log(res,'kkkkkkkkk+++')
console.log(res,'kkkkkkkkk+++')
_this.qiangdanlist() _this.qiangdanlist()
// uni.setStorageSync('city_name',res.city) // uni.setStorageSync('city_name',res.city)
}) })
@ -720,7 +740,7 @@
console.log(data,'jjjjjjjjj') console.log(data,'jjjjjjjjj')
this.$api.cancelorder(data,res=>{ this.$api.cancelorder(data,res=>{
if(res.code == '1'){ if(res.code == '1'){
uni.showToast({ title: this.statusToast , icon: 'success' }) uni.showToast({ title: res.msg, icon: 'success' })
// this.recycleOrderList() // this.recycleOrderList()
this.initFun(); this.initFun();
this.cancleShow = false this.cancleShow = false
@ -733,8 +753,9 @@
} }
}) })
}, },
signIn2(id){ signIn2(item){
this.orderId = id this.orderId = item.id
this.nowOrder = item
this.pop3Show = true this.pop3Show = true
}, },
signIn(id){ signIn(id){
@ -744,6 +765,9 @@
status: 3, status: 3,
order_id: id order_id: id
} }
uni.showLoading({
title: '签到中'
});
console.log('bbbbbb') console.log('bbbbbb')
uni.getLocation({ uni.getLocation({
type: 'wgs84', type: 'wgs84',
@ -755,12 +779,13 @@
data.checkin_latitude = res.latitude data.checkin_latitude = res.latitude
data.checkin_longitude = res.longitude data.checkin_longitude = res.longitude
_this.$api.setorder(data,res=>{ _this.$api.setorder(data,res=>{
uni.hideLoading();
if(res.code == '1'){ if(res.code == '1'){
_this.tabCur = 3; _this.tabCur = 3;
// uni.showToast({ title: '' , icon: 'success' }) // uni.showToast({ title: '' , icon: 'success' })
// _this.recycleOrderList() // _this.recycleOrderList()
this.signInShow = true; _this.signInShow = true;
this.initFun(); _this.initFun();
setTimeout(()=>{ setTimeout(()=>{
_this.menuNum = 2 _this.menuNum = 2
},2000) },2000)
@ -768,6 +793,9 @@
uni.showToast({ title: res.msg , icon: 'none' }) uni.showToast({ title: res.msg , icon: 'none' })
} }
}) })
},
fail: function (res) {
uni.hideLoading();
} }
}); });
/* #ifdef H5 */ /* #ifdef H5 */
@ -874,6 +902,7 @@
}) })
}, },
cancleClickOrder(id){ cancleClickOrder(id){
this.$refs.cancleOrder.reset()
this.orderId = id this.orderId = id
this.cancleShow = true this.cancleShow = true
// this.moreShow = false // this.moreShow = false

View File

@ -43,8 +43,12 @@
back_city(e) { back_city(e) {
if(e){ if(e){
// this.selectedCity = e.cityName; // this.selectedCity = e.cityName;
if(e.cityName.slice(-1) == '市'){
uni.setStorageSync('city',e.cityName)
}else{
uni.setStorageSync('city',e.cityName+'市') uni.setStorageSync('city',e.cityName+'市')
} }
}
uni.navigateBack({ uni.navigateBack({
delta: 1 delta: 1
}) })

View File

@ -2,7 +2,7 @@
<view class="content"> <view class="content">
<view class="topStatus"></view> <view class="topStatus"></view>
<view class="headBox flex-center" @click="getAddress"> <view class="headBox flex-center" @click="getAddress">
口袋快收 绿兜蜂
</view> </view>
<image :src="path+'/assets/img/icon/bg2.png'" class="bgImg" mode="widthFix"></image> <image :src="path+'/assets/img/icon/bg2.png'" class="bgImg" mode="widthFix"></image>
<!-- <view class="login"> <!-- <view class="login">
@ -30,7 +30,7 @@
</view> </view>
<button class="loginBtn flex-center" @click="loginEn">登录</button> <button class="loginBtn flex-center" @click="loginEn">登录</button>
</view> </view>
<image :src="path+'/assets/img/icon/logo1.png'" class="loginImg" mode="widthFix"></image> <image :src="path+'/assets/img/icon/logo2.png'" class="loginImg" mode="widthFix"></image>
<!-- <view class="login-b"> <!-- <view class="login-b">
<button class="auth-btn refuse" @click="handleRefuse">拒绝</button> <button class="auth-btn refuse" @click="handleRefuse">拒绝</button>
<button class="auth-btn " @click="getUserProfile" v-if="login_type ==0">授权登录</button> <button class="auth-btn " @click="getUserProfile" v-if="login_type ==0">授权登录</button>
@ -46,8 +46,8 @@ var QQMapWX = require('@/common/qqmap-wx-jssdk.min.js')
export default { export default {
data() { data() {
return { return {
mobile:'15655350912', mobile: '', //'15655350912',
password:'123456', password: '', //'123456',
login_type:0, login_type:0,
logoImage: '/static/img/t2.png', logoImage: '/static/img/t2.png',
open_id: '', open_id: '',

View File

@ -114,7 +114,7 @@
</view> </view>
<view class="flex-center"> <view class="flex-center">
<image :src="path+'/assets/img/icon/phone.png'" class="listIcon"></image> <image :src="path+'/assets/img/icon/phone.png'" class="listIcon"></image>
<text class="phoneText" @click="callPhone('400-423-888')">400-423-888</text> <text class="phoneText" @click="callPhone(servicePhone)">{{servicePhone}}</text>
</view> </view>
</view> </view>
<button class="fsz32 flex-between listBox" open-type="contact"> <button class="fsz32 flex-between listBox" open-type="contact">
@ -331,7 +331,8 @@
chargeShow: false, chargeShow: false,
chargeNum: '', chargeNum: '',
pop2Show: false, pop2Show: false,
userPhone: '' userPhone: '',
servicePhone: ''
} }
}, },
components:{ components:{
@ -339,7 +340,7 @@
CustomTabBar CustomTabBar
}, },
onLoad() { onLoad() {
this.servicePhone = uni.getStorageSync('servicePhone')
var token = uni.getStorageSync('userToken'); var token = uni.getStorageSync('userToken');
if (!token) { if (!token) {
this.headflag = false this.headflag = false

View File

@ -2,7 +2,7 @@
<view class="content"> <view class="content">
<view class="topBox"> <view class="topBox">
<view class="statusText">{{orderInfo.status_name}}</view> <view class="statusText">{{orderInfo.status_name}}</view>
<view class="statusTip">{{orderInfo.order_status_content}}</view> <view class="statusTip">{{orderInfo.app_status_content}}</view>
</view> </view>
<view class="orderInfoBox" style="overflow: hidden;"> <view class="orderInfoBox" style="overflow: hidden;">
<view class="viewBox"> <view class="viewBox">
@ -44,7 +44,7 @@
</view> </view>
<view class="countBox"> <view class="countBox">
<view class="text1">合计</view> <view class="text1">{{priceLable}}</view>
<view style="margin-top: 0rpx;"> <view style="margin-top: 0rpx;">
<text class="textIcon"></text> <text class="textIcon"></text>
<text class="textNum">{{orderInfo.price}}</text> <text class="textNum">{{orderInfo.price}}</text>
@ -88,7 +88,7 @@
</view> </view>
</view> </view>
</view> </view>
<view class="infoWrap" style="border-radius: 30rpx;background: #fff;margin-top: 20rpx;"> <view v-if="orderInfo.status!==1" class="infoWrap" style="border-radius: 30rpx;background: #fff;margin-top: 20rpx;">
<view class="bgHead flex-between"> <view class="bgHead flex-between">
<view> <view>
预约上门时间 预约上门时间
@ -131,7 +131,7 @@
</view> </view>
<view class="detailBox"> <view class="detailBox">
<view>订单信息</view> <view>订单信息</view>
<view class="detailText">下单时间{{orderInfo.order_time}}</view> <view class="detailText">下单时间{{orderInfo.createtime}}</view>
<view class="detailText">订单编号{{orderInfo.order_no}}</view> <view class="detailText">订单编号{{orderInfo.order_no}}</view>
</view> </view>
@ -227,10 +227,10 @@
</view> --> </view> -->
<view style="height:120px"></view> <view style="height:120px"></view>
</view> </view>
<view class="button-bottom" v-if="orderInfo.status==1 || orderInfo.status==2 || orderInfo.status==3"> <view class="button-bottom" v-if="orderInfo.status==2 || orderInfo.status==3">
<view class="tipBox">先与客户确认上门服务时间哦~</view> <view class="tipBox">规范作业安全操作</view>
<view class="buttonEdit flex-center" @click="pop4Show = true" v-if="orderInfo.status == 2">改派</view> <view class="buttonEdit flex-center" @click="pop4Show = true" v-if="orderInfo.status == 2">改派</view>
<button class='btn flex-center' v-if="orderInfo.status == 1 || orderInfo.status == 2" @click="cancelOrder()">取消订单</button> <button class='btn flex-center' v-if="orderInfo.status == 2" @click="cancleShow = true">取消订单</button>
<view class="buttonType2 flex-center" @click.stop="signIn2()" v-if="orderInfo.status == 2">上门签到</view> <view class="buttonType2 flex-center" @click.stop="signIn2()" v-if="orderInfo.status == 2">上门签到</view>
<view class="buttonType2 flex-center" v-if="orderInfo.status == 3" @click="toPay(orderInfo)">去付款</view> <view class="buttonType2 flex-center" v-if="orderInfo.status == 3" @click="toPay(orderInfo)">去付款</view>
</view> </view>
@ -269,11 +269,13 @@
</view> </view>
</u-popup> </u-popup>
<appointTime ref="timeRef" @checkTime="checkTime"></appointTime> <appointTime ref="timeRef" @checkTime="checkTime"></appointTime>
<cancleOrder @cancleReason="cancleReason" :cancleShow="cancleShow" @closeCancle="cancleShow=false"></cancleOrder>
</view> </view>
</template> </template>
<script> <script>
import util from '../../common/util'; import util from '../../common/util';
import cancleOrder from '../index/cancleOrder.vue';
import appointTime from '@/components/appointTime.vue'; import appointTime from '@/components/appointTime.vue';
export default { export default {
data() { data() {
@ -286,7 +288,9 @@ export default {
signInShow: false, signInShow: false,
pop3Show:false, pop3Show:false,
open_door_title: '', open_door_title: '',
open_door_content: '' open_door_content: '',
cancleShow:false,
priceLable: ''
}; };
}, },
onShow() { onShow() {
@ -298,7 +302,8 @@ export default {
this.indexInfo() this.indexInfo()
}, },
components: { components: {
appointTime appointTime,
cancleOrder
}, },
methods: { methods: {
indexInfo(){ indexInfo(){
@ -331,39 +336,49 @@ export default {
status: 3, status: 3,
order_id: this.order_id order_id: this.order_id
} }
uni.showLoading({
title: '签到中'
});
uni.getLocation({ uni.getLocation({
type: 'wgs84', type: 'wgs84',
geocode: true, geocode: true,
success: function (res) { success: function (res) {
// uni.showToast({ title: 'success' , icon: 'none' })
console.log('当前位置的经度:' + JSON.stringify(res)); console.log('当前位置的经度:' + JSON.stringify(res));
console.log('当前位置的经度:' + res.longitude); console.log('当前位置的经度:' + res.longitude);
console.log('当前位置的纬度:' + res.latitude); console.log('当前位置的纬度:' + res.latitude);
data.checkin_latitude = res.latitude data.checkin_latitude = res.latitude
data.checkin_longitude = res.longitude data.checkin_longitude = res.longitude
_this.$api.setorder(data,res=>{ _this.$api.setorder(data,res=>{
uni.hideLoading();
if(res.code == '1'){ if(res.code == '1'){
_this.tabCur = 3; _this.tabCur = 3;
// uni.showToast({ title: '' , icon: 'success' }) // uni.showToast({ title: '' , icon: 'success' })
this.signInShow = true; _this.signInShow = true;
setTimeout(()=>{ setTimeout(()=>{
this.getOrderDetail() _this.getOrderDetail()
},2000) },2000)
}else{ }else{
uni.showToast({ title: res.msg , icon: 'none' }) uni.showToast({ title: res.msg , icon: 'none' })
} }
}) })
},
fail: function (res) {
uni.hideLoading();
uni.showToast({ title: 'fail' , icon: 'none' })
} }
}); });
/* #ifdef H5 */ /* #ifdef H5 */
// this.signInShow = true;
data.checkin_latitude = 32.202905; data.checkin_latitude = 32.202905;
data.checkin_longitude = 118.710193; data.checkin_longitude = 118.710193;
_this.$api.setorder(data,res=>{ _this.$api.setorder(data,res=>{
if(res.code == '1'){ if(res.code == '1'){
_this.tabCur = 3; _this.tabCur = 3;
// uni.showToast({ title: '' , icon: 'success' }) // uni.showToast({ title: '' , icon: 'success' })
this.signInShow = true; _this.signInShow = true;
setTimeout(()=>{ setTimeout(()=>{
this.getOrderDetail() _this.getOrderDetail()
},2000) },2000)
}else{ }else{
uni.showToast({ title: res.msg , icon: 'none' }) uni.showToast({ title: res.msg , icon: 'none' })
@ -519,6 +534,32 @@ export default {
} }
}) })
}, },
cancleReason(obj){
console.log('ddd')
let data = {
status: 6,
order_id: this.order_id,
cancel_reason: obj.name
}
if(obj.id == 4){
data.cancel_image = obj.list
}
console.log(data,'jjjjjjjjj')
this.$api.cancelorder(data,res=>{
if(res.code == '1'){
uni.showToast({ title: res.msg , icon: 'success' })
// this.recycleOrderList()
this.initFun();
this.cancleShow = false
setTimeout(()=>{
this.menuNum = 2
this.tabCur = 6;
},2000)
}else{
uni.showToast({ title: res.msg , icon: 'none' })
}
})
},
getOrderDetail() { getOrderDetail() {
let _this = this let _this = this
let data = { let data = {
@ -529,6 +570,7 @@ export default {
let data = res.data.info let data = res.data.info
_this.orderInfo = data; _this.orderInfo = data;
_this.order_person_time = data.order_person_time; _this.order_person_time = data.order_person_time;
_this.priceLable = data.price_mode == 'fixed'?'一口价':'预估价'
} else { } else {
uni.showToast({ title: res.msg , icon: 'none' }) uni.showToast({ title: res.msg , icon: 'none' })
} }

View File

@ -22,7 +22,7 @@
</view> </view>
<view class="moduleBox"> <view class="moduleBox">
<view class="moduleLabel"> <view class="moduleLabel">
支付方式 支付凭证
<text class="text2">请上传支付记录截图或照片</text> <text class="text2">请上传支付记录截图或照片</text>
</view> </view>
<view style="margin-top: 35rpx;"> <view style="margin-top: 35rpx;">
@ -41,11 +41,18 @@
</view> </view>
<view class="text3" style="margin-top: 46rpx;">实际结算费用</view> <view class="text3" style="margin-top: 46rpx;">实际结算费用</view>
<view class="flex-between" style="margin-top: 36rpx;"> <view class="flex-between" style="margin-top: 36rpx;">
<view class="flex-between" style="width: 100%;" v-if="!isEdit">
<view> <view>
<text class="text6"></text> <text class="text6"></text>
<text class="text7">{{actual_amount}}</text> <text class="text7">{{actual_amount}}</text>
</view> </view>
<image :src="path+'/assets/img/icon/edit2.png'" class="img2"></image> <view class="priceTip">需告知用户改价理由及金额</view>
<image @click="isEdit = true" :src="path+'/assets/img/icon/edit2.png'" class="img2"></image>
</view>
<view class="flex-between" v-else>
<input type="number" v-model="editPrice" style="border: 1rpx solid rgba(100,100,100,0.5);border-radius: 10rpx;width: 250rpx;padding: 5rpx 10rpx;" />
<view class="okBtn" @click="updatePrice">确定</view>
</view>
</view> </view>
</view> </view>
<view class="payLable"> <view class="payLable">
@ -63,21 +70,44 @@
<commonUpload @imgList="goodsList"></commonUpload> <commonUpload @imgList="goodsList"></commonUpload>
</view> </view>
</view> </view>
<view class="moduleBox">
<view class="moduleLabel" >
<view class="li-c-hd">
订单备注
</view>
<view class="textAreaBox" style="margin-top: 30rpx;font-size: 22rpx;">
<u--textarea v-model="notesText" placeholder="请输入您要留言的内容..." style="background: #F3F3F3;font-size: 22rpx;"></u--textarea>
</view>
</view>
</view>
<!-- <u-popup :show="pop4Show" @close="pop4Show = false" @open="open" mode="center" :round="30">
<view class="pop4Box">
<view class="flex-between" style="padding: 51rpx 55rpx 0;">
<text class="pop4Title">修改</text>
<u-icon @click="pop4Show = false" name="close" color="#333333" size="16" bold></u-icon>
</view>
<u--textarea v-model="notesText" placeholder="请填写改派原因" class="pop4Input" style="background: #EFEFEF;border: none"></u--textarea>
<view class="flex-center" style="margin-top: 55rpx;">
<view class="pop4Btn1" @click="pop4Show = false">取消改派</view>
<view class="pop4Btn2" @click="conformChangeOrder">确认改派</view>
</view>
</view>
</u-popup> -->
<view style="height:130px"></view> <view style="height:130px"></view>
<view class="footer"> <view class="footer">
<view class="protBox"> <!-- <view class="protBox">
<image v-if="!isRead" @click="selectRead" :src="path+'/assets/img/icon/noSelected.png'"></image> <image v-if="!isRead" @click="selectRead" :src="path+'/assets/img/icon/noSelected.png'"></image>
<image v-else @click="selectRead" :src="path+'/assets/img/icon/selected.png'"></image> <image v-else @click="selectRead" :src="path+'/assets/img/icon/selected.png'"></image>
<text>我已阅读并同意</text> <text>我已阅读并同意</text>
<text class="protText" @click="linkDetail">用户回收协议</text> <text class="protText" @click="linkDetail">用户回收协议</text>
</view> </view> -->
<!-- <view class="fsz28" @click="toshow()"> <!-- <view class="fsz28" @click="toshow()">
<view>下单即同意</view> <view>下单即同意</view>
<view style="color: #31b977;">回收协议</view> <view style="color: #31b977;">回收协议</view>
</view> --> </view> -->
<view> <view>
<view class="evalueBox"> <view class="evalueBox">
<text class="text1">合计预估</text> <text class="text1">应付金额</text>
<text class="text2">结算金额以实际为准</text> <text class="text2">结算金额以实际为准</text>
</view> </view>
<view class="priceBox" :style="{opacity: actual_amount?1:0}"> <view class="priceBox" :style="{opacity: actual_amount?1:0}">
@ -85,7 +115,10 @@
<text class="text2">{{actual_amount}}</text> <text class="text2">{{actual_amount}}</text>
</view> </view>
</view> </view>
<view class="btn btn-default" @click="createOrder()" >去下单</view> <view>
<view class="btn btn-default" style="width: 160rpx;" @click="cancleOrder()" >取消订单</view>
<view class="btn btn-default" @click="createOrder()" style="margin-left: 10rpx;width: 120rpx" >支付</view>
</view>
</view> </view>
<lvv-popup position="bottom" ref="lvvpopref"> <lvv-popup position="bottom" ref="lvvpopref">
@ -110,6 +143,7 @@
</lvv-popup> </lvv-popup>
</view> </view>
<pay-keyboard :show_key="show_key" @hideFun="hideFun" @getPassword="getPassword"></pay-keyboard> <pay-keyboard :show_key="show_key" @hideFun="hideFun" @getPassword="getPassword"></pay-keyboard>
<cancleOrder @cancleReason="cancleReason" :cancleShow="cancleShow" @closeCancle="cancleShow=false"></cancleOrder>
</view> </view>
</template> </template>
@ -117,8 +151,9 @@
import commonUpload from '@/components/commonUpload.vue' import commonUpload from '@/components/commonUpload.vue'
import util from '../../common/util.js' import util from '../../common/util.js'
import payKeyboard from '../../components/keyboard.vue' import payKeyboard from '../../components/keyboard.vue'
import cancleOrder from '../index/cancleOrder.vue';
export default { export default {
components: { commonUpload, payKeyboard }, components: { commonUpload, payKeyboard, cancleOrder },
data() { data() {
return { return {
isRead: false, isRead: false,
@ -132,7 +167,11 @@
goods_images: [], goods_images: [],
pay_password: '', pay_password: '',
show_key: false, show_key: false,
path: this.path path: this.path,
isEdit: false,
editPrice: '',
cancleShow: false,
notesText: ''
} }
}, },
onShow() { onShow() {
@ -142,8 +181,9 @@
}, },
onLoad(options) { onLoad(options) {
this.orderDetail = uni.getStorageSync('orderDetail'); this.orderDetail = uni.getStorageSync('orderDetail');
this.total_amount = this.orderDetail.total_amount; this.total_amount = this.orderDetail.price //total_amount;
this.actual_amount = this.orderDetail.total_amount; this.actual_amount = this.orderDetail.total_amount;
this.editPrice = this.orderDetail.total_amount;
this.id = options.id; this.id = options.id;
if(options.id){ if(options.id){
this.orderId = options.id; this.orderId = options.id;
@ -153,6 +193,37 @@
}, },
methods: { methods: {
cancleReason(obj){
console.log('ddd')
let data = {
status: 6,
order_id: this.orderId,
cancel_reason: obj.name
}
if(obj.id == 4){
data.cancel_image = obj.list
}
this.$api.cancelorder(data,res=>{
if(res.code == '1'){
uni.showToast({ title: res.msg , icon: 'success' })
this.cancleShow = false
setTimeout(()=>{
uni.navigateBack({
delta: 1
})
},2000)
}else{
uni.showToast({ title: res.msg , icon: 'none' })
}
})
},
cancleOrder(){
this.cancleShow = true
},
updatePrice() {
this.isEdit = false;
this.actual_amount = this.editPrice
},
linkDetail(){ linkDetail(){
uni.navigateTo({ uni.navigateTo({
url: '/pages/mine/detail?type=recycleProt' url: '/pages/mine/detail?type=recycleProt'
@ -180,11 +251,16 @@
this.isRead = !this.isRead this.isRead = !this.isRead
}, },
createOrder(){ createOrder(){
if(this.isRead){ if(this.isEdit){
this.show_key = true uni.showToast({ title: '请确定修改结算金额' , icon: 'none' })
}else{ return
uni.showToast({ title: '请勾选用户回收协议' , icon: 'none' })
} }
this.show_key = true
// if(this.isRead){
// this.show_key = true
// }else{
// uni.showToast({ title: '' , icon: 'none' })
// }
}, },
createPayment(){ createPayment(){
let data = { let data = {
@ -193,7 +269,8 @@
"payment_method": this.radioType, "payment_method": this.radioType,
"payment_vouchers": this.payment_vouchers, "payment_vouchers": this.payment_vouchers,
"goods_images": this.goods_images, "goods_images": this.goods_images,
"pay_password": this.pay_password "pay_password": this.pay_password,
"remark": this.notesText
} }
console.log(data); console.log(data);
this.$api.createPayment(data,res=>{ this.$api.createPayment(data,res=>{
@ -409,4 +486,39 @@
color: #FF9526; color: #FF9526;
padding: 33rpx; padding: 33rpx;
} }
.okBtn{
background-color: #fe5047;
color: #ffffff;
height: 60rpx;
line-height: 60rpx;
font-size: 28rpx;
// border: solid 1px #fe5047;width: 132px;
width: 150rpx;
background: linear-gradient(45deg, #FFAD38 0%, #FF9023 100%);
border-radius: 45rpx;
border: none;
text-align: center;
margin-left: 20rpx;
}
.priceTip{
font-weight: 400;
font-size: 24rpx;
color: #FF9526;
// padding: 33rpx;
}
.btn-default{
margin-right: 0;
// width: 150rpx!important;
}
.textAreaBox textarea{
width: 100%;
height: 200upx;
font-size: 26upx;
color: #333;
}
::v-deep .input-placeholder {
// color: #b2b2b2 !important;
font-size: 26rpx;
font-weight: 400;
}
</style> </style>

View File

@ -87,6 +87,7 @@
}, },
getdata(){ getdata(){
let data={page:this.page} let data={page:this.page}
data.platform = 'app'
this.$api.question_list(data,res=>{ this.$api.question_list(data,res=>{
if(res.code == '1'){ if(res.code == '1'){
this.list= this.list.concat(res.data.list.data) this.list= this.list.concat(res.data.list.data)

BIN
static/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 59 KiB

Binary file not shown.

View File

@ -1 +1 @@
https://app.liuyingyong.cn/build/download/94aa2ea0-b6b5-11f0-869f-eb9cecd816f4 https://app.liuyingyong.cn/build/download/ecdf33e0-cf7e-11f0-9449-0df017a47cd6

File diff suppressed because one or more lines are too long

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -1,8 +1,8 @@
var isReady=false;var onReadyCallbacks=[]; var isReady=false;var onReadyCallbacks=[];
var isServiceReady=false;var onServiceReadyCallbacks=[]; 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 __uniConfig = {"pages":["pages/index/index","pages/index/location","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/mine/detail","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.85","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}}]; var __uniRoutes = [{"path":"/pages/index/index","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"","enablePullDownRefresh":true,"navigationStyle":"custom"}},{"path":"/pages/index/location","meta":{},"window":{"navigationBarTitleText":"城市","enablePullDownRefresh":false}},{"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/mine/detail","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.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()})}}); __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}}}}); 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}}}});

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1 +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"}} {"@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":{"icons":{"android":{"hdpi":"icon-android-hdpi.png","xhdpi":"icon-android-xhdpi.png","xxhdpi":"icon-android-xxhdpi.png","xxxhdpi":"icon-android-xxxhdpi.png"},"ios":{"appstore":"unpackage/res/icons/1024x1024.png","ipad":{"app":"unpackage/res/icons/76x76.png","app@2x":"unpackage/res/icons/152x152.png","notification":"unpackage/res/icons/20x20.png","notification@2x":"unpackage/res/icons/40x40.png","proapp@2x":"unpackage/res/icons/167x167.png","settings":"unpackage/res/icons/29x29.png","settings@2x":"unpackage/res/icons/58x58.png","spotlight":"unpackage/res/icons/40x40.png","spotlight@2x":"unpackage/res/icons/80x80.png"},"iphone":{"app@2x":"unpackage/res/icons/120x120.png","app@3x":"unpackage/res/icons/180x180.png","notification@2x":"unpackage/res/icons/40x40.png","notification@3x":"unpackage/res/icons/60x60.png","settings@2x":"unpackage/res/icons/58x58.png","settings@3x":"unpackage/res/icons/87x87.png","spotlight@2x":"unpackage/res/icons/80x80.png","spotlight@3x":"unpackage/res/icons/120x120.png"},"prerendered":"false"}},"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.CALL_PHONE\"/>","<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.ACCESS_COARSE_LOCATION\"/>","<uses-permission android:name=\"android.permission.ACCESS_FINE_LOCATION\"/>","<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.85","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"}}

Binary file not shown.

After

Width:  |  Height:  |  Size: 59 KiB

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1,8 +1,8 @@
var isReady=false;var onReadyCallbacks=[]; var isReady=false;var onReadyCallbacks=[];
var isServiceReady=false;var onServiceReadyCallbacks=[]; 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 __uniConfig = {"pages":["pages/index/index","pages/index/location","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/mine/detail","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.85","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}}]; var __uniRoutes = [{"path":"/pages/index/index","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"","enablePullDownRefresh":true,"navigationStyle":"custom"}},{"path":"/pages/index/location","meta":{},"window":{"navigationBarTitleText":"城市","enablePullDownRefresh":false}},{"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/mine/detail","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.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()})}}); __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}}}}); 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}}}});

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1 +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"}} {"@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":{"icons":{"android":{"hdpi":"unpackage/res/icons/72x72.png","xhdpi":"unpackage/res/icons/96x96.png","xxhdpi":"unpackage/res/icons/144x144.png","xxxhdpi":"unpackage/res/icons/192x192.png"},"ios":{"appstore":"unpackage/res/icons/1024x1024.png","ipad":{"app":"unpackage/res/icons/76x76.png","app@2x":"unpackage/res/icons/152x152.png","notification":"unpackage/res/icons/20x20.png","notification@2x":"unpackage/res/icons/40x40.png","proapp@2x":"unpackage/res/icons/167x167.png","settings":"unpackage/res/icons/29x29.png","settings@2x":"unpackage/res/icons/58x58.png","spotlight":"unpackage/res/icons/40x40.png","spotlight@2x":"unpackage/res/icons/80x80.png"},"iphone":{"app@2x":"unpackage/res/icons/120x120.png","app@3x":"unpackage/res/icons/180x180.png","notification@2x":"unpackage/res/icons/40x40.png","notification@3x":"unpackage/res/icons/60x60.png","settings@2x":"unpackage/res/icons/58x58.png","settings@3x":"unpackage/res/icons/87x87.png","spotlight@2x":"unpackage/res/icons/80x80.png","spotlight@3x":"unpackage/res/icons/120x120.png"}}},"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.CALL_PHONE\"/>","<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.ACCESS_COARSE_LOCATION\"/>","<uses-permission android:name=\"android.permission.ACCESS_FINE_LOCATION\"/>","<uses-permission android:name=\"android.permission.WRITE_SETTINGS\"/>"]},"apple":{"dSYMs":false},"plugins":{"maps":{},"audio":{"mp3":{"description":"Android平台录音支持MP3格式文件"}}}},"uniStatistics":{"enable":false},"allowsInlineMediaPlayback":true,"safearea":{"background":"#ffffff","bottom":{"offset":"auto"}},"uni-app":{"compilerVersion":"4.85","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"}}

Binary file not shown.

After

Width:  |  Height:  |  Size: 59 KiB

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1,8 +1,8 @@
var isReady=false;var onReadyCallbacks=[]; var isReady=false;var onReadyCallbacks=[];
var isServiceReady=false;var onServiceReadyCallbacks=[]; 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/mine/detail","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 __uniConfig = {"pages":["pages/index/index","pages/index/location","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/mine/detail","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.85","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/mine/detail","meta":{},"window":{"navigationBarTitleText":"协议","enablePullDownRefresh":false}},{"path":"/pages/order/pay","meta":{},"window":{"navigationBarTitleText":"支付订单","enablePullDownRefresh":false}},{"path":"/pages/poster/sharePoster","meta":{},"window":{"navigationBarTitleText":"推广二维码","enablePullDownRefresh":false}}]; var __uniRoutes = [{"path":"/pages/index/index","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"","enablePullDownRefresh":true,"navigationStyle":"custom"}},{"path":"/pages/index/location","meta":{},"window":{"navigationBarTitleText":"城市","enablePullDownRefresh":false}},{"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/mine/detail","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.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()})}}); __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}}}}); 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}}}});

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1 +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"}} {"@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":{"icons":{"android":{"hdpi":"unpackage/res/icons/72x72.png","xhdpi":"unpackage/res/icons/96x96.png","xxhdpi":"unpackage/res/icons/144x144.png","xxxhdpi":"unpackage/res/icons/192x192.png"},"ios":{"appstore":"unpackage/res/icons/1024x1024.png","ipad":{"app":"unpackage/res/icons/76x76.png","app@2x":"unpackage/res/icons/152x152.png","notification":"unpackage/res/icons/20x20.png","notification@2x":"unpackage/res/icons/40x40.png","proapp@2x":"unpackage/res/icons/167x167.png","settings":"unpackage/res/icons/29x29.png","settings@2x":"unpackage/res/icons/58x58.png","spotlight":"unpackage/res/icons/40x40.png","spotlight@2x":"unpackage/res/icons/80x80.png"},"iphone":{"app@2x":"unpackage/res/icons/120x120.png","app@3x":"unpackage/res/icons/180x180.png","notification@2x":"unpackage/res/icons/40x40.png","notification@3x":"unpackage/res/icons/60x60.png","settings@2x":"unpackage/res/icons/58x58.png","settings@3x":"unpackage/res/icons/87x87.png","spotlight@2x":"unpackage/res/icons/80x80.png","spotlight@3x":"unpackage/res/icons/120x120.png"}}},"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.CALL_PHONE\"/>","<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.ACCESS_COARSE_LOCATION\"/>","<uses-permission android:name=\"android.permission.ACCESS_FINE_LOCATION\"/>","<uses-permission android:name=\"android.permission.WRITE_SETTINGS\"/>"]},"apple":{"dSYMs":false},"plugins":{"maps":{},"audio":{"mp3":{"description":"Android平台录音支持MP3格式文件"}}}},"uniStatistics":{"enable":false},"allowsInlineMediaPlayback":true,"safearea":{"background":"#ffffff","bottom":{"offset":"auto"}},"uni-app":{"compilerVersion":"4.85","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"}}

Binary file not shown.

After

Width:  |  Height:  |  Size: 59 KiB

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

Binary file not shown.

After

Width:  |  Height:  |  Size: 71 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 878 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB