'优化'
@ -1,16 +1,21 @@
|
||||
{ // launch.json 配置了启动调试时相关设置,configurations下节点名称可为 app-plus/h5/mp-weixin/mp-baidu/mp-alipay/mp-qq/mp-toutiao/mp-360/
|
||||
// launchtype项可配置值为local或remote, local代表前端连本地云函数,remote代表前端连云端云函数
|
||||
"version": "0.0",
|
||||
"configurations": [{
|
||||
"default" :
|
||||
{
|
||||
"launchtype" : "local"
|
||||
},
|
||||
"mp-weixin" :
|
||||
{
|
||||
"launchtype" : "local"
|
||||
},
|
||||
"type" : "uniCloud"
|
||||
}
|
||||
]
|
||||
}
|
||||
{
|
||||
// launch.json 配置了启动调试时相关设置,configurations下节点名称可为 app-plus/h5/mp-weixin/mp-baidu/mp-alipay/mp-qq/mp-toutiao/mp-360/
|
||||
// launchtype项可配置值为local或remote, local代表前端连本地云函数,remote代表前端连云端云函数
|
||||
"version" : "0.0",
|
||||
"configurations" : [
|
||||
{
|
||||
"default" : {
|
||||
"launchtype" : "local"
|
||||
},
|
||||
"mp-weixin" : {
|
||||
"launchtype" : "local"
|
||||
},
|
||||
"type" : "uniCloud"
|
||||
},
|
||||
{
|
||||
"customPlaygroundType" : "device",
|
||||
"playground" : "standard",
|
||||
"type" : "uni-app:app-android"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
1
App.vue
@ -1,6 +1,7 @@
|
||||
<script>
|
||||
export default {
|
||||
onLaunch: function() {
|
||||
uni.setStorageSync('loginIndex', 0);
|
||||
// var token = uni.getStorageSync('userToken');
|
||||
// console.log(token,'--------')
|
||||
// if(!token){
|
||||
|
||||
@ -43,13 +43,14 @@ const util = {
|
||||
latitude: 32.202905
|
||||
})
|
||||
/* #endif */
|
||||
console.log('+++++++++++++++++111')
|
||||
var that = this
|
||||
uni.getLocation({
|
||||
type: 'wgs84',
|
||||
geocode: true,
|
||||
// geocode: true,
|
||||
success: function(res) {
|
||||
console.log('当前位置的经度:' + res.longitude,res);
|
||||
console.log('当前位置的纬度:' + res.latitude);
|
||||
console.log('当前位置的经度-:' + res.longitude,res);
|
||||
console.log('当前位置的纬度-:' + res.latitude);
|
||||
that.longitude = res.longitude
|
||||
that.latitude = res.latitude
|
||||
let location = {
|
||||
|
||||
@ -43,7 +43,8 @@
|
||||
yuyue_time:[],
|
||||
dateShow: false,
|
||||
leftIndex: 0,
|
||||
rightList: []
|
||||
rightList: [],
|
||||
leftData: []
|
||||
}
|
||||
},
|
||||
onShow() {
|
||||
@ -97,8 +98,19 @@
|
||||
// date:this.yuyue_time[0][this.leftIndex],
|
||||
// time: this.rightList[index]
|
||||
// })
|
||||
this.$emit('checkTime',this.yuyue_time[0][this.leftIndex]+'-'+this.rightList[index])
|
||||
this.dateShow = false
|
||||
// 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
|
||||
}
|
||||
|
||||
},
|
||||
userDefaultaddress() {
|
||||
this.$api.userDefaultAddress({}, res => {
|
||||
@ -148,6 +160,8 @@
|
||||
}
|
||||
this.$api.typeinit(data,res=>{
|
||||
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.rightList = res.data.yuyue_time[1]
|
||||
this.typeinfo= res.data.typeinfo
|
||||
|
||||
@ -84,7 +84,7 @@
|
||||
|
||||
data() {
|
||||
return {
|
||||
statusBarHeight: this.statusBarHeight,
|
||||
statusBarHeight: 0,//this.statusBarHeight,
|
||||
ImgUrl: this.ImgUrl,
|
||||
letter: [],
|
||||
selectLetter: '',
|
||||
@ -115,7 +115,7 @@
|
||||
});
|
||||
//获取定位 经度纬度
|
||||
that.getWarpweft(function(res){
|
||||
that.back_city({'cityName':res})
|
||||
// that.back_city({'cityName':res})
|
||||
})
|
||||
//获取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',
|
||||
@ -241,7 +241,7 @@
|
||||
longitude: res.longitude,
|
||||
latitude: res.latitude
|
||||
}
|
||||
console.log(location,'fffffff')
|
||||
// console.log(location,'fffffff')
|
||||
const qqmapsdk = new QQMapWX({
|
||||
key: 'EO2BZ-YGE33-NHJ3S-RCRUJ-WT47J-5DB3I'
|
||||
})
|
||||
|
||||
@ -20,11 +20,20 @@ const post = (url, data, returndata) => {
|
||||
title: result.msg,
|
||||
icon: 'none'
|
||||
})
|
||||
setTimeout(function() {
|
||||
uni.navigateTo({
|
||||
url: '/pages/login/login'
|
||||
})
|
||||
}, 1000)
|
||||
const loginIndex = uni.getStorageSync('loginIndex');
|
||||
if(!loginIndex){
|
||||
setTimeout(function() {
|
||||
uni.navigateTo({
|
||||
url: '/pages/login/login'
|
||||
})
|
||||
}, 1000)
|
||||
}
|
||||
uni.setStorageSync('loginIndex', 1);
|
||||
// setTimeout(function() {
|
||||
// uni.navigateTo({
|
||||
// url: '/pages/login/login'
|
||||
// })
|
||||
// }, 1000)
|
||||
}
|
||||
returndata(result);
|
||||
},
|
||||
|
||||
@ -30,6 +30,7 @@
|
||||
"<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\"/>",
|
||||
@ -37,6 +38,8 @@
|
||||
"<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\"/>"
|
||||
]
|
||||
},
|
||||
@ -45,7 +48,41 @@
|
||||
"dSYMs" : false
|
||||
},
|
||||
/* 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"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
/* 快应用特有相关 */
|
||||
|
||||
@ -20,7 +20,7 @@
|
||||
<input v-model="phoneNum" type="text" style="font-size: 28rpx;flex:1;text-align: right;" placeholder="请输入手机号" />
|
||||
</view>
|
||||
<view class="commitBtn flex-center" @click="feedback">提交</view>
|
||||
<view class="tip">您的反馈我们会尽快解决,但无法保证每一条都能及时反馈,如果有紧急咨询,请直接拨打客服电话:400-000-000</view>
|
||||
<view class="tip">您的反馈我们会尽快解决,但无法保证每一条都能及时反馈,如果有紧急咨询,请直接拨打客服电话:{{servicePhone}}</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
@ -32,11 +32,12 @@
|
||||
fileList1: [],
|
||||
notesText: '',
|
||||
imgList: [],
|
||||
phoneNum: ''
|
||||
phoneNum: '',
|
||||
servicePhone: ''
|
||||
}
|
||||
},
|
||||
onLoad() {
|
||||
|
||||
this.servicePhone = uni.getStorageSync('servicePhone')
|
||||
|
||||
},
|
||||
onReachBottom (){
|
||||
|
||||
@ -12,7 +12,10 @@
|
||||
: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'"
|
||||
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}}
|
||||
</view>
|
||||
</view>
|
||||
@ -51,35 +54,36 @@
|
||||
cancleType: '',
|
||||
cancleList: [{
|
||||
id: 1,
|
||||
name: '时间冲突'
|
||||
name: '用户暂时不打算卖了'
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
name: '多次联系不上'
|
||||
name: ' 时间冲突'
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
name: '操作失误'
|
||||
name: '多次联系不上用户'
|
||||
},
|
||||
{
|
||||
id: 4,
|
||||
name: '不符合回收标准'
|
||||
name: '操作不当误下单'
|
||||
},
|
||||
{
|
||||
id: 5,
|
||||
name: '地址错误'
|
||||
name: '价格不合适'
|
||||
},
|
||||
{
|
||||
id: 6,
|
||||
name: '超出服务范围'
|
||||
name: '品类不同、信息有误'
|
||||
},
|
||||
{
|
||||
id: 7,
|
||||
name: '其他'
|
||||
name: '不符合回收标准'
|
||||
}
|
||||
],
|
||||
imgList: [],
|
||||
reasonName: ''
|
||||
reasonName: '',
|
||||
path: this.path
|
||||
}
|
||||
},
|
||||
onShow() {
|
||||
@ -94,6 +98,10 @@
|
||||
},
|
||||
onReachBottom() {},
|
||||
methods: {
|
||||
reset(){
|
||||
this.cancleType = '';
|
||||
this.reasonName = ''
|
||||
},
|
||||
conform2(){
|
||||
let data = {
|
||||
id: this.cancleType,
|
||||
|
||||
@ -65,7 +65,7 @@
|
||||
</view>
|
||||
<view class="flex-between goodsWrap">
|
||||
<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 class="goodsText1">回收品类</view>
|
||||
<view class="goodsText2">{{item.type_name}}</view>
|
||||
@ -76,7 +76,7 @@
|
||||
<view class="goodsText2">X{{item.quantity}}</view>
|
||||
</view>
|
||||
<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="priceIcon">¥</view>
|
||||
<view class="priceNum">{{item.price}}</view>
|
||||
@ -139,7 +139,7 @@
|
||||
<view class="goodsText2">X{{item.quantity}}</view>
|
||||
</view>
|
||||
<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="priceIcon">¥</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>
|
||||
<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 v-show="item.status==7" class="userBtn flex-center" @click.stop="selectTime(item.id)">
|
||||
@ -258,7 +258,7 @@
|
||||
<view class="popBoxOne">
|
||||
<image :src="path+'/assets/img/icon/star1.png'" class="popOneImg"></image>
|
||||
<text class="popOneText1">上门签到成功!</text>
|
||||
<text class="popOneText2">上门服务请仔细核对回收货物</text>
|
||||
<text class="popOneText2">上门服务请仔细核对回收的{{nowOrder.type_name}}</text>
|
||||
<text class="popOneText3">祝您与用户合作愉快~</text>
|
||||
<view class="popOneBtn flex-center" @click="signInShow = false">好的</view>
|
||||
</view>
|
||||
@ -345,7 +345,7 @@
|
||||
</view>
|
||||
</view>
|
||||
</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" />
|
||||
|
||||
<!-- <u-popup :show="showCity"> -->
|
||||
@ -381,6 +381,9 @@
|
||||
typelist: [],
|
||||
showType: false,
|
||||
distanceArr: [{
|
||||
name: '不限',
|
||||
value: ''
|
||||
},{
|
||||
name: '1km',
|
||||
value: 1
|
||||
},{
|
||||
@ -470,11 +473,12 @@
|
||||
tipText: '',
|
||||
typeText: '',
|
||||
distanceText: {
|
||||
name: '1km',
|
||||
value: 1
|
||||
name: '不限',
|
||||
value: ''
|
||||
},
|
||||
open_door_title: '',
|
||||
open_door_content: ''
|
||||
open_door_content: '',
|
||||
nowOrder: {}
|
||||
}
|
||||
},
|
||||
components: {
|
||||
@ -535,6 +539,7 @@
|
||||
// this.recycleOrderList()
|
||||
this.getdata()
|
||||
this.indexInfo()
|
||||
this.getPhone()
|
||||
// this.getquestion()
|
||||
// this.recycleOrderList()
|
||||
// this.qiangdanlist()
|
||||
@ -577,6 +582,17 @@
|
||||
}
|
||||
},
|
||||
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(){
|
||||
var _this = this;
|
||||
this.$api.indexInfo({
|
||||
@ -627,6 +643,7 @@
|
||||
this.$set(this.moreShow, id, this.moreShow[id]?false:true)
|
||||
},
|
||||
callPhone(phoneNumber) {
|
||||
console.log(phoneNumber)
|
||||
uni.makePhoneCall({
|
||||
phoneNumber: phoneNumber, // 必需,电话号码字符串
|
||||
success: (res) => {
|
||||
@ -641,12 +658,15 @@
|
||||
let _this = this;
|
||||
this.recycleList = []
|
||||
this.qiangdanArr = []
|
||||
if(this.longitude){
|
||||
console.log('------------111--',this.longitude)
|
||||
if(!this.longitude){
|
||||
console.log('------------222')
|
||||
util.getAddress(function(res){
|
||||
_this.cityText = res.city;
|
||||
_this.longitude = res.longitude;
|
||||
_this.latitude = res.latitude;
|
||||
console.log(res,'kkkkkkkkk+++')
|
||||
console.log(res,'kkkkkkkkk+++')
|
||||
_this.qiangdanlist()
|
||||
// uni.setStorageSync('city_name',res.city)
|
||||
})
|
||||
@ -720,7 +740,7 @@
|
||||
console.log(data,'jjjjjjjjj')
|
||||
this.$api.cancelorder(data,res=>{
|
||||
if(res.code == '1'){
|
||||
uni.showToast({ title: this.statusToast , icon: 'success' })
|
||||
uni.showToast({ title: res.msg, icon: 'success' })
|
||||
// this.recycleOrderList()
|
||||
this.initFun();
|
||||
this.cancleShow = false
|
||||
@ -733,8 +753,9 @@
|
||||
}
|
||||
})
|
||||
},
|
||||
signIn2(id){
|
||||
this.orderId = id
|
||||
signIn2(item){
|
||||
this.orderId = item.id
|
||||
this.nowOrder = item
|
||||
this.pop3Show = true
|
||||
},
|
||||
signIn(id){
|
||||
@ -744,6 +765,9 @@
|
||||
status: 3,
|
||||
order_id: id
|
||||
}
|
||||
uni.showLoading({
|
||||
title: '签到中'
|
||||
});
|
||||
console.log('bbbbbb')
|
||||
uni.getLocation({
|
||||
type: 'wgs84',
|
||||
@ -755,12 +779,13 @@
|
||||
data.checkin_latitude = res.latitude
|
||||
data.checkin_longitude = res.longitude
|
||||
_this.$api.setorder(data,res=>{
|
||||
uni.hideLoading();
|
||||
if(res.code == '1'){
|
||||
_this.tabCur = 3;
|
||||
// uni.showToast({ title: '签到成功' , icon: 'success' })
|
||||
// _this.recycleOrderList()
|
||||
this.signInShow = true;
|
||||
this.initFun();
|
||||
_this.signInShow = true;
|
||||
_this.initFun();
|
||||
setTimeout(()=>{
|
||||
_this.menuNum = 2
|
||||
},2000)
|
||||
@ -768,6 +793,9 @@
|
||||
uni.showToast({ title: res.msg , icon: 'none' })
|
||||
}
|
||||
})
|
||||
},
|
||||
fail: function (res) {
|
||||
uni.hideLoading();
|
||||
}
|
||||
});
|
||||
/* #ifdef H5 */
|
||||
@ -874,6 +902,7 @@
|
||||
})
|
||||
},
|
||||
cancleClickOrder(id){
|
||||
this.$refs.cancleOrder.reset()
|
||||
this.orderId = id
|
||||
this.cancleShow = true
|
||||
// this.moreShow = false
|
||||
|
||||
@ -43,7 +43,11 @@
|
||||
back_city(e) {
|
||||
if(e){
|
||||
// this.selectedCity = e.cityName;
|
||||
uni.setStorageSync('city',e.cityName+'市')
|
||||
if(e.cityName.slice(-1) == '市'){
|
||||
uni.setStorageSync('city',e.cityName)
|
||||
}else{
|
||||
uni.setStorageSync('city',e.cityName+'市')
|
||||
}
|
||||
}
|
||||
uni.navigateBack({
|
||||
delta: 1
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
<view class="content">
|
||||
<view class="topStatus"></view>
|
||||
<view class="headBox flex-center" @click="getAddress">
|
||||
口袋快收
|
||||
绿兜蜂
|
||||
</view>
|
||||
<image :src="path+'/assets/img/icon/bg2.png'" class="bgImg" mode="widthFix"></image>
|
||||
<!-- <view class="login">
|
||||
@ -30,7 +30,7 @@
|
||||
</view>
|
||||
<button class="loginBtn flex-center" @click="loginEn">登录</button>
|
||||
</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">
|
||||
<button class="auth-btn refuse" @click="handleRefuse">拒绝</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 {
|
||||
data() {
|
||||
return {
|
||||
mobile:'15655350912',
|
||||
password:'123456',
|
||||
mobile: '', //'15655350912',
|
||||
password: '', //'123456',
|
||||
login_type:0,
|
||||
logoImage: '/static/img/t2.png',
|
||||
open_id: '',
|
||||
|
||||
@ -114,7 +114,7 @@
|
||||
</view>
|
||||
<view class="flex-center">
|
||||
<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>
|
||||
<button class="fsz32 flex-between listBox" open-type="contact">
|
||||
@ -331,7 +331,8 @@
|
||||
chargeShow: false,
|
||||
chargeNum: '',
|
||||
pop2Show: false,
|
||||
userPhone: ''
|
||||
userPhone: '',
|
||||
servicePhone: ''
|
||||
}
|
||||
},
|
||||
components:{
|
||||
@ -339,7 +340,7 @@
|
||||
CustomTabBar
|
||||
},
|
||||
onLoad() {
|
||||
|
||||
this.servicePhone = uni.getStorageSync('servicePhone')
|
||||
var token = uni.getStorageSync('userToken');
|
||||
if (!token) {
|
||||
this.headflag = false
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
<view class="content">
|
||||
<view class="topBox">
|
||||
<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 class="orderInfoBox" style="overflow: hidden;">
|
||||
<view class="viewBox">
|
||||
@ -44,7 +44,7 @@
|
||||
</view>
|
||||
|
||||
<view class="countBox">
|
||||
<view class="text1">合计</view>
|
||||
<view class="text1">{{priceLable}}</view>
|
||||
<view style="margin-top: 0rpx;">
|
||||
<text class="textIcon">¥</text>
|
||||
<text class="textNum">{{orderInfo.price}}</text>
|
||||
@ -88,7 +88,7 @@
|
||||
</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>
|
||||
预约上门时间
|
||||
@ -131,7 +131,7 @@
|
||||
</view>
|
||||
<view class="detailBox">
|
||||
<view>订单信息</view>
|
||||
<view class="detailText">下单时间:{{orderInfo.order_time}}</view>
|
||||
<view class="detailText">下单时间:{{orderInfo.createtime}}</view>
|
||||
<view class="detailText">订单编号:{{orderInfo.order_no}}</view>
|
||||
</view>
|
||||
|
||||
@ -227,10 +227,10 @@
|
||||
</view> -->
|
||||
<view style="height:120px"></view>
|
||||
</view>
|
||||
<view class="button-bottom" v-if="orderInfo.status==1 || orderInfo.status==2 || orderInfo.status==3">
|
||||
<view class="tipBox">请先与客户确认上门服务时间哦~</view>
|
||||
<view class="button-bottom" v-if="orderInfo.status==2 || orderInfo.status==3">
|
||||
<view class="tipBox">请规范作业,安全操作!</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" v-if="orderInfo.status == 3" @click="toPay(orderInfo)">去付款</view>
|
||||
</view>
|
||||
@ -269,11 +269,13 @@
|
||||
</view>
|
||||
</u-popup>
|
||||
<appointTime ref="timeRef" @checkTime="checkTime"></appointTime>
|
||||
<cancleOrder @cancleReason="cancleReason" :cancleShow="cancleShow" @closeCancle="cancleShow=false"></cancleOrder>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import util from '../../common/util';
|
||||
import util from '../../common/util';
|
||||
import cancleOrder from '../index/cancleOrder.vue';
|
||||
import appointTime from '@/components/appointTime.vue';
|
||||
export default {
|
||||
data() {
|
||||
@ -286,7 +288,9 @@ export default {
|
||||
signInShow: false,
|
||||
pop3Show:false,
|
||||
open_door_title: '',
|
||||
open_door_content: ''
|
||||
open_door_content: '',
|
||||
cancleShow:false,
|
||||
priceLable: ''
|
||||
};
|
||||
},
|
||||
onShow() {
|
||||
@ -298,7 +302,8 @@ export default {
|
||||
this.indexInfo()
|
||||
},
|
||||
components: {
|
||||
appointTime
|
||||
appointTime,
|
||||
cancleOrder
|
||||
},
|
||||
methods: {
|
||||
indexInfo(){
|
||||
@ -331,39 +336,49 @@ export default {
|
||||
status: 3,
|
||||
order_id: this.order_id
|
||||
}
|
||||
uni.showLoading({
|
||||
title: '签到中'
|
||||
});
|
||||
uni.getLocation({
|
||||
type: 'wgs84',
|
||||
geocode: true,
|
||||
success: function (res) {
|
||||
// uni.showToast({ title: 'success' , icon: 'none' })
|
||||
console.log('当前位置的经度:' + JSON.stringify(res));
|
||||
console.log('当前位置的经度:' + res.longitude);
|
||||
console.log('当前位置的纬度:' + res.latitude);
|
||||
data.checkin_latitude = res.latitude
|
||||
data.checkin_longitude = res.longitude
|
||||
_this.$api.setorder(data,res=>{
|
||||
uni.hideLoading();
|
||||
if(res.code == '1'){
|
||||
_this.tabCur = 3;
|
||||
// uni.showToast({ title: '签到成功' , icon: 'success' })
|
||||
this.signInShow = true;
|
||||
_this.signInShow = true;
|
||||
setTimeout(()=>{
|
||||
this.getOrderDetail()
|
||||
_this.getOrderDetail()
|
||||
},2000)
|
||||
}else{
|
||||
uni.showToast({ title: res.msg , icon: 'none' })
|
||||
}
|
||||
})
|
||||
},
|
||||
fail: function (res) {
|
||||
uni.hideLoading();
|
||||
uni.showToast({ title: 'fail' , icon: 'none' })
|
||||
}
|
||||
});
|
||||
/* #ifdef H5 */
|
||||
// this.signInShow = true;
|
||||
data.checkin_latitude = 32.202905;
|
||||
data.checkin_longitude = 118.710193;
|
||||
_this.$api.setorder(data,res=>{
|
||||
if(res.code == '1'){
|
||||
_this.tabCur = 3;
|
||||
// uni.showToast({ title: '签到成功' , icon: 'success' })
|
||||
this.signInShow = true;
|
||||
_this.signInShow = true;
|
||||
setTimeout(()=>{
|
||||
this.getOrderDetail()
|
||||
_this.getOrderDetail()
|
||||
},2000)
|
||||
}else{
|
||||
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() {
|
||||
let _this = this
|
||||
let data = {
|
||||
@ -529,6 +570,7 @@ export default {
|
||||
let data = res.data.info
|
||||
_this.orderInfo = data;
|
||||
_this.order_person_time = data.order_person_time;
|
||||
_this.priceLable = data.price_mode == 'fixed'?'一口价':'预估价'
|
||||
} else {
|
||||
uni.showToast({ title: res.msg , icon: 'none' })
|
||||
}
|
||||
|
||||
@ -22,7 +22,7 @@
|
||||
</view>
|
||||
<view class="moduleBox">
|
||||
<view class="moduleLabel">
|
||||
支付方式
|
||||
支付凭证
|
||||
<text class="text2">请上传支付记录截图或照片</text>
|
||||
</view>
|
||||
<view style="margin-top: 35rpx;">
|
||||
@ -41,11 +41,18 @@
|
||||
</view>
|
||||
<view class="text3" style="margin-top: 46rpx;">实际结算费用</view>
|
||||
<view class="flex-between" style="margin-top: 36rpx;">
|
||||
<view>
|
||||
<text class="text6">¥</text>
|
||||
<text class="text7">{{actual_amount}}</text>
|
||||
<view class="flex-between" style="width: 100%;" v-if="!isEdit">
|
||||
<view>
|
||||
<text class="text6">¥</text>
|
||||
<text class="text7">{{actual_amount}}</text>
|
||||
</view>
|
||||
<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>
|
||||
<image :src="path+'/assets/img/icon/edit2.png'" class="img2"></image>
|
||||
</view>
|
||||
</view>
|
||||
<view class="payLable">
|
||||
@ -63,21 +70,44 @@
|
||||
<commonUpload @imgList="goodsList"></commonUpload>
|
||||
</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 class="footer">
|
||||
<view class="protBox">
|
||||
<!-- <view class="protBox">
|
||||
<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>
|
||||
<text>我已阅读并同意</text>
|
||||
<text class="protText" @click="linkDetail">《用户回收协议》</text>
|
||||
</view>
|
||||
</view> -->
|
||||
<!-- <view class="fsz28" @click="toshow()">
|
||||
<view>下单即同意</view>
|
||||
<view style="color: #31b977;">《回收协议》</view>
|
||||
</view> -->
|
||||
<view>
|
||||
<view class="evalueBox">
|
||||
<text class="text1">合计预估</text>
|
||||
<text class="text1">应付金额</text>
|
||||
<text class="text2">结算金额以实际为准</text>
|
||||
</view>
|
||||
<view class="priceBox" :style="{opacity: actual_amount?1:0}">
|
||||
@ -85,7 +115,10 @@
|
||||
<text class="text2">{{actual_amount}}</text>
|
||||
</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>
|
||||
|
||||
<lvv-popup position="bottom" ref="lvvpopref">
|
||||
@ -110,6 +143,7 @@
|
||||
</lvv-popup>
|
||||
</view>
|
||||
<pay-keyboard :show_key="show_key" @hideFun="hideFun" @getPassword="getPassword"></pay-keyboard>
|
||||
<cancleOrder @cancleReason="cancleReason" :cancleShow="cancleShow" @closeCancle="cancleShow=false"></cancleOrder>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
@ -117,8 +151,9 @@
|
||||
import commonUpload from '@/components/commonUpload.vue'
|
||||
import util from '../../common/util.js'
|
||||
import payKeyboard from '../../components/keyboard.vue'
|
||||
import cancleOrder from '../index/cancleOrder.vue';
|
||||
export default {
|
||||
components: { commonUpload, payKeyboard },
|
||||
components: { commonUpload, payKeyboard, cancleOrder },
|
||||
data() {
|
||||
return {
|
||||
isRead: false,
|
||||
@ -132,7 +167,11 @@
|
||||
goods_images: [],
|
||||
pay_password: '',
|
||||
show_key: false,
|
||||
path: this.path
|
||||
path: this.path,
|
||||
isEdit: false,
|
||||
editPrice: '',
|
||||
cancleShow: false,
|
||||
notesText: ''
|
||||
}
|
||||
},
|
||||
onShow() {
|
||||
@ -142,8 +181,9 @@
|
||||
},
|
||||
onLoad(options) {
|
||||
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.editPrice = this.orderDetail.total_amount;
|
||||
this.id = options.id;
|
||||
if(options.id){
|
||||
this.orderId = options.id;
|
||||
@ -153,6 +193,37 @@
|
||||
|
||||
},
|
||||
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(){
|
||||
uni.navigateTo({
|
||||
url: '/pages/mine/detail?type=recycleProt'
|
||||
@ -180,11 +251,16 @@
|
||||
this.isRead = !this.isRead
|
||||
},
|
||||
createOrder(){
|
||||
if(this.isRead){
|
||||
this.show_key = true
|
||||
}else{
|
||||
uni.showToast({ title: '请勾选用户回收协议' , icon: 'none' })
|
||||
if(this.isEdit){
|
||||
uni.showToast({ title: '请确定修改结算金额' , icon: 'none' })
|
||||
return
|
||||
}
|
||||
this.show_key = true
|
||||
// if(this.isRead){
|
||||
// this.show_key = true
|
||||
// }else{
|
||||
// uni.showToast({ title: '请勾选用户回收协议' , icon: 'none' })
|
||||
// }
|
||||
},
|
||||
createPayment(){
|
||||
let data = {
|
||||
@ -193,7 +269,8 @@
|
||||
"payment_method": this.radioType,
|
||||
"payment_vouchers": this.payment_vouchers,
|
||||
"goods_images": this.goods_images,
|
||||
"pay_password": this.pay_password
|
||||
"pay_password": this.pay_password,
|
||||
"remark": this.notesText
|
||||
}
|
||||
console.log(data);
|
||||
this.$api.createPayment(data,res=>{
|
||||
@ -409,4 +486,39 @@
|
||||
color: #FF9526;
|
||||
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>
|
||||
@ -86,7 +86,8 @@
|
||||
this.list = list;
|
||||
},
|
||||
getdata(){
|
||||
let data={page:this.page}
|
||||
let data={page:this.page}
|
||||
data.platform = 'app'
|
||||
this.$api.question_list(data,res=>{
|
||||
if(res.code == '1'){
|
||||
this.list= this.list.concat(res.data.list.data)
|
||||
|
||||
BIN
static/logo.png
Normal file
|
After Width: | Height: | Size: 59 KiB |
BIN
unpackage/cache/apk/__UNI__0B7E65B_cm.apk
vendored
2
unpackage/cache/apk/apkurl
vendored
@ -1 +1 @@
|
||||
https://app.liuyingyong.cn/build/download/94aa2ea0-b6b5-11f0-869f-eb9cecd816f4
|
||||
https://app.liuyingyong.cn/build/download/ecdf33e0-cf7e-11f0-9449-0df017a47cd6
|
||||
2
unpackage/cache/apk/cmManifestCache.json
vendored
BIN
unpackage/cache/wgt/__UNI__0B7E65B/.manifest/icon-android-hdpi.png
vendored
Normal file
|
After Width: | Height: | Size: 4.1 KiB |
BIN
unpackage/cache/wgt/__UNI__0B7E65B/.manifest/icon-android-xhdpi.png
vendored
Normal file
|
After Width: | Height: | Size: 5.6 KiB |
BIN
unpackage/cache/wgt/__UNI__0B7E65B/.manifest/icon-android-xxhdpi.png
vendored
Normal file
|
After Width: | Height: | Size: 9.0 KiB |
BIN
unpackage/cache/wgt/__UNI__0B7E65B/.manifest/icon-android-xxxhdpi.png
vendored
Normal file
|
After Width: | Height: | Size: 12 KiB |
@ -1,8 +1,8 @@
|
||||
|
||||
var isReady=false;var onReadyCallbacks=[];
|
||||
var isServiceReady=false;var onServiceReadyCallbacks=[];
|
||||
var __uniConfig = {"pages":["pages/index/index","pages/mine/mine","pages/mine/edituser","pages/type/type","pages/login/authorize","pages/login/login","pages/address/list","pages/address/detail","pages/about/about","pages/person/add","pages/person/edit","pages/person/orderlist","pages/person/qiangdan","pages/person/orderinfo","pages/order/order","pages/order/detail","pages/exchange/createorder","pages/exchange/orderdetail","pages/exchange/orderlist","pages/exchange/goodslist","pages/exchange/goodsdetail","pages/mine/point_list","pages/question/index","pages/mine/orderConfig","pages/mine/priceRecord","pages/mine/apply","pages/feedback/index","pages/mine/editInfo","pages/order/pay","pages/poster/sharePoster"],"window":{"navigationBarTextStyle":"black","navigationBarTitleText":"uni-app1","navigationBarBackgroundColor":"#fff","backgroundColor":"#fff"},"tabBar":{"color":"#333333","selectedColor":"#00a73b","backgroundColor":"#ffffff","list":[{"pagePath":"pages/index/index","text":"首页","iconPath":"static/img/home.png","selectedIconPath":"static/img/home_select.png"},{"pagePath":"pages/order/order","text":"订单","iconPath":"static/img/order.png","selectedIconPath":"static/img/order_select.png"},{"pagePath":"pages/mine/mine","text":"我的","iconPath":"static/img/mine.png","selectedIconPath":"static/img/mine1.png"}]},"darkmode":false,"nvueCompiler":"uni-app","nvueStyleCompiler":"uni-app","renderer":"auto","splashscreen":{"alwaysShowBeforeRender":true,"autoclose":false},"appname":"回收小程序","compilerVersion":"4.76","entryPagePath":"pages/index/index","networkTimeout":{"request":60000,"connectSocket":60000,"uploadFile":60000,"downloadFile":60000}};
|
||||
var __uniRoutes = [{"path":"/pages/index/index","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"","enablePullDownRefresh":true,"navigationStyle":"custom"}},{"path":"/pages/mine/mine","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"我的","navigationStyle":"custom"}},{"path":"/pages/mine/edituser","meta":{},"window":{"navigationBarTitleText":"用户信息","enablePullDownRefresh":false}},{"path":"/pages/type/type","meta":{},"window":{"navigationBarTitleText":"回收预约","enablePullDownRefresh":false}},{"path":"/pages/login/authorize","meta":{},"window":{"navigationBarTitleText":"登录","enablePullDownRefresh":false}},{"path":"/pages/login/login","meta":{},"window":{"navigationBarTitleText":"登录","enablePullDownRefresh":false,"navigationStyle":"custom"}},{"path":"/pages/address/list","meta":{},"window":{"navigationBarTitleText":"地址管理"}},{"path":"/pages/address/detail","meta":{},"window":{"navigationBarTitleText":"修改地址"}},{"path":"/pages/about/about","meta":{},"window":{"navigationBarTitleText":"关于我们"}},{"path":"/pages/person/add","meta":{},"window":{"navigationBarTitleText":"成为回收员"}},{"path":"/pages/person/edit","meta":{},"window":{"navigationBarTitleText":"回收员信息"}},{"path":"/pages/person/orderlist","meta":{},"window":{"navigationBarTitleText":"回收员订单"}},{"path":"/pages/person/qiangdan","meta":{},"window":{"navigationBarTitleText":"抢单大厅","enablePullDownRefresh":false}},{"path":"/pages/person/orderinfo","meta":{},"window":{"navigationBarTitleText":"订单详情","enablePullDownRefresh":false}},{"path":"/pages/order/order","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"用户订单","enablePullDownRefresh":false}},{"path":"/pages/order/detail","meta":{},"window":{"navigationBarTitleText":"订单详情","enablePullDownRefresh":false}},{"path":"/pages/exchange/createorder","meta":{},"window":{"navigationBarTitleText":"兑换订单","enablePullDownRefresh":false}},{"path":"/pages/exchange/orderdetail","meta":{},"window":{"navigationBarTitleText":"订单详情","enablePullDownRefresh":false}},{"path":"/pages/exchange/orderlist","meta":{},"window":{"navigationBarTitleText":"订单列表","enablePullDownRefresh":false}},{"path":"/pages/exchange/goodslist","meta":{},"window":{"navigationBarTitleText":"","enablePullDownRefresh":false}},{"path":"/pages/exchange/goodsdetail","meta":{},"window":{"navigationBarTitleText":"详情","enablePullDownRefresh":false}},{"path":"/pages/mine/point_list","meta":{},"window":{"navigationBarTitleText":"积分明细","enablePullDownRefresh":false}},{"path":"/pages/question/index","meta":{},"window":{"navigationBarTitleText":"常见问题","enablePullDownRefresh":false}},{"path":"/pages/mine/orderConfig","meta":{},"window":{"navigationBarTitleText":"接单设置","enablePullDownRefresh":false}},{"path":"/pages/mine/priceRecord","meta":{},"window":{"navigationBarTitleText":"资金记录","enablePullDownRefresh":false}},{"path":"/pages/mine/apply","meta":{},"window":{"navigationBarTitleText":"代理加盟","enablePullDownRefresh":false}},{"path":"/pages/feedback/index","meta":{},"window":{"navigationBarTitleText":"意见反馈","enablePullDownRefresh":false}},{"path":"/pages/mine/editInfo","meta":{},"window":{"navigationBarTitleText":"信息编辑","enablePullDownRefresh":false}},{"path":"/pages/order/pay","meta":{},"window":{"navigationBarTitleText":"支付订单","enablePullDownRefresh":false}},{"path":"/pages/poster/sharePoster","meta":{},"window":{"navigationBarTitleText":"推广二维码","enablePullDownRefresh":false}}];
|
||||
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/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.onServiceReady=function(callback){if(__uniConfig.serviceReady){callback()}else{onServiceReadyCallbacks.push(callback)}};Object.defineProperty(__uniConfig,"serviceReady",{get:function(){return isServiceReady},set:function(val){isServiceReady=val;if(!isServiceReady){return}const callbacks=onServiceReadyCallbacks.slice(0);onServiceReadyCallbacks.length=0;callbacks.forEach(function(callback){callback()})}});
|
||||
service.register("uni-app-config",{create(a,b,c){if(!__uniConfig.viewport){var d=b.weex.config.env.scale,e=b.weex.config.env.deviceWidth,f=Math.ceil(e/d);Object.assign(__uniConfig,{viewport:f,defaultFontSize:Math.round(f/20)})}return{instance:{__uniConfig:__uniConfig,__uniRoutes:__uniRoutes,global:void 0,window:void 0,document:void 0,frames:void 0,self:void 0,location:void 0,navigator:void 0,localStorage:void 0,history:void 0,Caches:void 0,screen:void 0,alert:void 0,confirm:void 0,prompt:void 0,fetch:void 0,XMLHttpRequest:void 0,WebSocket:void 0,webkit:void 0,print:void 0}}}});
|
||||
|
||||
@ -1 +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"}}
|
||||
BIN
unpackage/cache/wgt/__UNI__0B7E65B/static/logo.png
vendored
Normal file
|
After Width: | Height: | Size: 59 KiB |
2
unpackage/cache/wgt/__UNI__0B7E65B/view.css
vendored
@ -1,8 +1,8 @@
|
||||
|
||||
var isReady=false;var onReadyCallbacks=[];
|
||||
var isServiceReady=false;var onServiceReadyCallbacks=[];
|
||||
var __uniConfig = {"pages":["pages/index/index","pages/mine/mine","pages/mine/edituser","pages/type/type","pages/login/authorize","pages/login/login","pages/address/list","pages/address/detail","pages/about/about","pages/person/add","pages/person/edit","pages/person/orderlist","pages/person/qiangdan","pages/person/orderinfo","pages/order/order","pages/order/detail","pages/exchange/createorder","pages/exchange/orderdetail","pages/exchange/orderlist","pages/exchange/goodslist","pages/exchange/goodsdetail","pages/mine/point_list","pages/question/index","pages/mine/orderConfig","pages/mine/priceRecord","pages/mine/apply","pages/feedback/index","pages/mine/editInfo","pages/order/pay","pages/poster/sharePoster"],"window":{"navigationBarTextStyle":"black","navigationBarTitleText":"uni-app1","navigationBarBackgroundColor":"#fff","backgroundColor":"#fff"},"tabBar":{"color":"#333333","selectedColor":"#00a73b","backgroundColor":"#ffffff","list":[{"pagePath":"pages/index/index","text":"首页","iconPath":"static/img/home.png","selectedIconPath":"static/img/home_select.png"},{"pagePath":"pages/order/order","text":"订单","iconPath":"static/img/order.png","selectedIconPath":"static/img/order_select.png"},{"pagePath":"pages/mine/mine","text":"我的","iconPath":"static/img/mine.png","selectedIconPath":"static/img/mine1.png"}]},"darkmode":false,"nvueCompiler":"uni-app","nvueStyleCompiler":"uni-app","renderer":"auto","splashscreen":{"alwaysShowBeforeRender":true,"autoclose":false},"appname":"回收小程序","compilerVersion":"4.76","entryPagePath":"pages/index/index","networkTimeout":{"request":60000,"connectSocket":60000,"uploadFile":60000,"downloadFile":60000}};
|
||||
var __uniRoutes = [{"path":"/pages/index/index","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"","enablePullDownRefresh":true,"navigationStyle":"custom"}},{"path":"/pages/mine/mine","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"我的","navigationStyle":"custom"}},{"path":"/pages/mine/edituser","meta":{},"window":{"navigationBarTitleText":"用户信息","enablePullDownRefresh":false}},{"path":"/pages/type/type","meta":{},"window":{"navigationBarTitleText":"回收预约","enablePullDownRefresh":false}},{"path":"/pages/login/authorize","meta":{},"window":{"navigationBarTitleText":"登录","enablePullDownRefresh":false}},{"path":"/pages/login/login","meta":{},"window":{"navigationBarTitleText":"登录","enablePullDownRefresh":false,"navigationStyle":"custom"}},{"path":"/pages/address/list","meta":{},"window":{"navigationBarTitleText":"地址管理"}},{"path":"/pages/address/detail","meta":{},"window":{"navigationBarTitleText":"修改地址"}},{"path":"/pages/about/about","meta":{},"window":{"navigationBarTitleText":"关于我们"}},{"path":"/pages/person/add","meta":{},"window":{"navigationBarTitleText":"成为回收员"}},{"path":"/pages/person/edit","meta":{},"window":{"navigationBarTitleText":"回收员信息"}},{"path":"/pages/person/orderlist","meta":{},"window":{"navigationBarTitleText":"回收员订单"}},{"path":"/pages/person/qiangdan","meta":{},"window":{"navigationBarTitleText":"抢单大厅","enablePullDownRefresh":false}},{"path":"/pages/person/orderinfo","meta":{},"window":{"navigationBarTitleText":"订单详情","enablePullDownRefresh":false}},{"path":"/pages/order/order","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"用户订单","enablePullDownRefresh":false}},{"path":"/pages/order/detail","meta":{},"window":{"navigationBarTitleText":"订单详情","enablePullDownRefresh":false}},{"path":"/pages/exchange/createorder","meta":{},"window":{"navigationBarTitleText":"兑换订单","enablePullDownRefresh":false}},{"path":"/pages/exchange/orderdetail","meta":{},"window":{"navigationBarTitleText":"订单详情","enablePullDownRefresh":false}},{"path":"/pages/exchange/orderlist","meta":{},"window":{"navigationBarTitleText":"订单列表","enablePullDownRefresh":false}},{"path":"/pages/exchange/goodslist","meta":{},"window":{"navigationBarTitleText":"","enablePullDownRefresh":false}},{"path":"/pages/exchange/goodsdetail","meta":{},"window":{"navigationBarTitleText":"详情","enablePullDownRefresh":false}},{"path":"/pages/mine/point_list","meta":{},"window":{"navigationBarTitleText":"积分明细","enablePullDownRefresh":false}},{"path":"/pages/question/index","meta":{},"window":{"navigationBarTitleText":"常见问题","enablePullDownRefresh":false}},{"path":"/pages/mine/orderConfig","meta":{},"window":{"navigationBarTitleText":"接单设置","enablePullDownRefresh":false}},{"path":"/pages/mine/priceRecord","meta":{},"window":{"navigationBarTitleText":"资金记录","enablePullDownRefresh":false}},{"path":"/pages/mine/apply","meta":{},"window":{"navigationBarTitleText":"代理加盟","enablePullDownRefresh":false}},{"path":"/pages/feedback/index","meta":{},"window":{"navigationBarTitleText":"意见反馈","enablePullDownRefresh":false}},{"path":"/pages/mine/editInfo","meta":{},"window":{"navigationBarTitleText":"信息编辑","enablePullDownRefresh":false}},{"path":"/pages/order/pay","meta":{},"window":{"navigationBarTitleText":"支付订单","enablePullDownRefresh":false}},{"path":"/pages/poster/sharePoster","meta":{},"window":{"navigationBarTitleText":"推广二维码","enablePullDownRefresh":false}}];
|
||||
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/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.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}}}});
|
||||
|
||||
10
unpackage/dist/build/app-plus/app-service.js
vendored
2
unpackage/dist/build/app-plus/app-view.js
vendored
2
unpackage/dist/build/app-plus/manifest.json
vendored
@ -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"}}
|
||||
BIN
unpackage/dist/build/app-plus/static/logo.png
vendored
Normal file
|
After Width: | Height: | Size: 59 KiB |
2
unpackage/dist/build/app-plus/view.css
vendored
@ -1,8 +1,8 @@
|
||||
|
||||
var isReady=false;var onReadyCallbacks=[];
|
||||
var isServiceReady=false;var onServiceReadyCallbacks=[];
|
||||
var __uniConfig = {"pages":["pages/index/index","pages/mine/mine","pages/mine/edituser","pages/type/type","pages/login/authorize","pages/login/login","pages/address/list","pages/address/detail","pages/about/about","pages/person/add","pages/person/edit","pages/person/orderlist","pages/person/qiangdan","pages/person/orderinfo","pages/order/order","pages/order/detail","pages/exchange/createorder","pages/exchange/orderdetail","pages/exchange/orderlist","pages/exchange/goodslist","pages/exchange/goodsdetail","pages/mine/point_list","pages/question/index","pages/mine/orderConfig","pages/mine/priceRecord","pages/mine/apply","pages/feedback/index","pages/mine/editInfo","pages/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 __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 __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/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.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}}}});
|
||||
|
||||
3499
unpackage/dist/dev/app-plus/app-service.js
vendored
3429
unpackage/dist/dev/app-plus/app-view.js
vendored
2
unpackage/dist/dev/app-plus/manifest.json
vendored
@ -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"}}
|
||||
BIN
unpackage/dist/dev/app-plus/static/logo.png
vendored
Normal file
|
After Width: | Height: | Size: 59 KiB |
2
unpackage/dist/dev/app-plus/view.css
vendored
4
unpackage/dist/dev/app-plus/view.umd.min.js
vendored
BIN
unpackage/release/apk/__UNI__0B7E65B__20251119145339.apk
Normal file
BIN
unpackage/release/apk/__UNI__0B7E65B__20251201125450.apk
Normal file
BIN
unpackage/release/apk/__UNI__0B7E65B__20251202105018.apk
Normal file
BIN
unpackage/release/apk/__UNI__0B7E65B__20251202210049.apk
Normal file
BIN
unpackage/release/apk/__UNI__0B7E65B__20251203201000.apk
Normal file
BIN
unpackage/release/apk/__UNI__0B7E65B__20251204100348.apk
Normal file
BIN
unpackage/release/apk/__UNI__0B7E65B__20251205170340.apk
Normal file
BIN
unpackage/res/icons/1024x1024.png
Normal file
|
After Width: | Height: | Size: 71 KiB |
BIN
unpackage/res/icons/120x120.png
Normal file
|
After Width: | Height: | Size: 7.3 KiB |
BIN
unpackage/res/icons/144x144.png
Normal file
|
After Width: | Height: | Size: 9.0 KiB |
BIN
unpackage/res/icons/152x152.png
Normal file
|
After Width: | Height: | Size: 9.4 KiB |
BIN
unpackage/res/icons/167x167.png
Normal file
|
After Width: | Height: | Size: 10 KiB |
BIN
unpackage/res/icons/180x180.png
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
unpackage/res/icons/192x192.png
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
unpackage/res/icons/20x20.png
Normal file
|
After Width: | Height: | Size: 878 B |
BIN
unpackage/res/icons/29x29.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
unpackage/res/icons/40x40.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
unpackage/res/icons/58x58.png
Normal file
|
After Width: | Height: | Size: 3.2 KiB |
BIN
unpackage/res/icons/60x60.png
Normal file
|
After Width: | Height: | Size: 3.3 KiB |
BIN
unpackage/res/icons/72x72.png
Normal file
|
After Width: | Height: | Size: 4.1 KiB |
BIN
unpackage/res/icons/76x76.png
Normal file
|
After Width: | Height: | Size: 4.4 KiB |
BIN
unpackage/res/icons/80x80.png
Normal file
|
After Width: | Height: | Size: 4.6 KiB |
BIN
unpackage/res/icons/87x87.png
Normal file
|
After Width: | Height: | Size: 5.1 KiB |
BIN
unpackage/res/icons/96x96.png
Normal file
|
After Width: | Height: | Size: 5.6 KiB |