Commit 08fab624 authored by ly's avatar ly

修改bug

parent 7d23f0c2
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
"appid" : "__UNI__DE04B13", "appid" : "__UNI__DE04B13",
"description" : "", "description" : "",
"versionName" : "1.0.0", "versionName" : "1.0.0",
"versionCode" : 106, "versionCode" : 107,
"transformPx" : false, "transformPx" : false,
/* 5+App特有相关 */ /* 5+App特有相关 */
"app-plus" : { "app-plus" : {
......
...@@ -11,13 +11,13 @@ ...@@ -11,13 +11,13 @@
<view class='i-line' v-if=" IndexList&& IndexList.length>0"> <view class='i-line' v-if=" IndexList&& IndexList.length>0">
<view class="line-item" v-for="item in IndexList" :key="item.id"> <view class="line-item" v-for="item in IndexList" :key="item.id">
<view class='item-des'>{{item.content}}</view> <view class='item-des'>{{item.content}}</view>
<view class='item-time'>{{item.gmtCreated}}</view> <view class='item-time'>{{item.gmtModified}}</view>
</view> </view>
</view> </view>
<view v-else class="i-lins-null"> <view v-else class="i-lins-null">
暂时还没有数据哦,点击我要发布去发布一条吧 暂时还没有数据哦
</view> </view>
</scroll-view> </scroll-view>
<view class='my-n-footer'> <view class='my-n-footer'>
......
...@@ -20,13 +20,13 @@ ...@@ -20,13 +20,13 @@
<label class='l-text'>物品名称</label> <label class='l-text'>物品名称</label>
</view> </view>
<view class="line-r"> <view class="line-r">
<input class='r-val' @input="changeName($event)" placeholder-style="color:#9E9E9E" :value='categoryName' placeholder="请输入物品名称"/> <input class='r-val' @input="changeName($event)" maxlength="10" placeholder-style="color:#9E9E9E" :value='categoryName' placeholder="请输入物品名称"/>
</view> </view>
</view> </view>
<view class='cate-des'> <view class='cate-des'>
<view class='des-name'>物品描述</view> <view class='des-name'>物品描述</view>
<textarea class='des-contain' @input="desVal($event)" placeholder="请补充商品品牌、型号、购买渠道、购买时间、入手价格(如有),有助于更快完成鉴定"></textarea> <textarea class='des-contain' @input="desVal($event)" maxlength="100" placeholder="请补充商品品牌、型号、购买渠道、购买时间、入手价格(如有),有助于更快完成鉴定"></textarea>
</view> </view>
<view class='cate-upload'> <view class='cate-upload'>
...@@ -95,7 +95,7 @@ ...@@ -95,7 +95,7 @@
return false return false
} }
if(self.categoryName.length>10){ if(self.categoryName.length>10){
this.toast('不能超过10个字') self.toast('不能超过10个字')
return false return false
} }
if(self.desQuest==''){ if(self.desQuest==''){
...@@ -103,7 +103,7 @@ ...@@ -103,7 +103,7 @@
return false return false
} }
if(self.desQuest.length>100){ if(self.desQuest.length>100){
this.toast('不能超过100个字') self.toast('不能超过100个字')
return false return false
} }
if(self.newList.length==0){ if(self.newList.length==0){
...@@ -214,6 +214,7 @@ ...@@ -214,6 +214,7 @@
console.log(e.detail.value.length) console.log(e.detail.value.length)
if(e.detail.value.length>10){ if(e.detail.value.length>10){
this.toast('不能超过10个字') this.toast('不能超过10个字')
// this.categoryName=
return false return false
}else{ }else{
this.categoryName= e.detail.value this.categoryName= e.detail.value
......
No preview for this file type
.in-pages{ .in-pages{
width: 100%; width: 100%;
height: 100vh; height: 100vh;
min-height: 1624rpx; // min-height: 1624rpx;
background: #F7FAFF; background: #F7FAFF;
.in-header{ .in-header{
height: 605rpx; height: 605rpx;
...@@ -264,8 +264,8 @@ ...@@ -264,8 +264,8 @@
.in-footer{ .in-footer{
// height: 400rpx; // height: 400rpx;
.box-at-home{ .box-at-home{
// height:680rpx; // height:800rpx;
padding-bottom:120rpx; padding-bottom:220rpx;
.main-box{ .main-box{
display:flex; display:flex;
flex-wrap: wrap; flex-wrap: wrap;
...@@ -296,7 +296,7 @@ ...@@ -296,7 +296,7 @@
// position: sticky; // position: sticky;
top:0; top:0;
// right:0; // right:0;
margin-left: 216rpx; margin-left: 215rpx;
// z-index:99; // z-index:99;
display: inline-block; display: inline-block;
width:118rpx; width:118rpx;
......
...@@ -91,7 +91,7 @@ ...@@ -91,7 +91,7 @@
IndexList:[], IndexList:[],
bannerList:[], bannerList:[],
pageNum: 1, pageNum: 1,
pageSize: 10, pageSize: 60,
total: 0, total: 0,
hasNextText:'上拉加载更多', hasNextText:'上拉加载更多',
loadFlag:true, loadFlag:true,
...@@ -102,7 +102,7 @@ ...@@ -102,7 +102,7 @@
}, },
onPageScroll(e) { onPageScroll(e) {
// 页面滚动时设置isFixed和scrollTop // 页面滚动时设置isFixed和scrollTop
console.log(e,'876') // console.log(e,'876')
this.scrollTop = e.scrollTop; this.scrollTop = e.scrollTop;
if( e.scrollTop > 290){ if( e.scrollTop > 290){
this.isFixed = true; this.isFixed = true;
...@@ -114,6 +114,7 @@ ...@@ -114,6 +114,7 @@
const token=uni.getStorageSync('token') const token=uni.getStorageSync('token')
this.token=token this.token=token
this.init() this.init()
this.searchGood()
}, },
onReady() { onReady() {
const isAgree = uni.getStorageSync('m-agreement') const isAgree = uni.getStorageSync('m-agreement')
...@@ -132,25 +133,12 @@ ...@@ -132,25 +133,12 @@
if(bannerList){ if(bannerList){
self.bannerList=JSON.parse(bannerList) self.bannerList=JSON.parse(bannerList)
} }
const {current,total,size,data }=goodList
const hasNextPage=total-self.pageSize*self.pageNum>0?true:false //是否有下一页
if(self.loadFlag){
// console.log(33);
self.IndexList=self.IndexList.concat(data)
}else{
// console.log(34);
self.IndexList=data
}
self.hasNextPage=hasNextPage
self.loadFlag=false
}).catch(err=>{ }).catch(err=>{
console.log(err,'请求出错') console.log(err,'请求出错')
}) })
}, },
goDetail(item){ goDetail(item){
console.log(item,'8766') // console.log(item,'8766')
const params={ const params={
goodId:item.id goodId:item.id
} }
...@@ -164,24 +152,26 @@ ...@@ -164,24 +152,26 @@
if(val==0){ if(val==0){
//浏览量 //浏览量
if(this.showUP==false){ if(this.showUP==false){
this.sort='look_sum asc'
}else{
this.sort='look_sum desc' this.sort='look_sum desc'
}else{
this.sort='look_sum asc'
} }
}else{ }else{
//价格 //价格
if(this.showUP==false){ if(this.showUP==false){
//倒序
this.sort='goods_money asc'
}else{
this.sort='goods_money desc' this.sort='goods_money desc'
}else{
//倒序
this.sort='goods_money asc'
} }
} }
this.pageNum=1
// this.IndexList=[]
this.searchGood() this.searchGood()
}, },
// 查询商品 // 查询商品
...@@ -194,7 +184,7 @@ ...@@ -194,7 +184,7 @@
"size":pageSize, "size":pageSize,
"sort":sort "sort":sort
} }
console.log(params,'查询商品')
self.$request('/pawn/category/getGoodsPage','POST',params).then(res => { self.$request('/pawn/category/getGoodsPage','POST',params).then(res => {
const {current,total,size,records }=res.result const {current,total,size,records }=res.result
...@@ -244,6 +234,8 @@ ...@@ -244,6 +234,8 @@
this.sort='goods_money desc' this.sort='goods_money desc'
this.showUP=!this.showUP this.showUP=!this.showUP
} }
this.pageNum=1
// this.IndexList=[]
this.searchGood() this.searchGood()
}, },
toupperTop:function(e){ toupperTop:function(e){
...@@ -268,6 +260,7 @@ ...@@ -268,6 +260,7 @@
const token=uni.getStorageSync('token') const token=uni.getStorageSync('token')
this.token=token this.token=token
this.init() this.init()
this.searchGood()
} }
} }
</script> </script>
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
<view class='header-des'> <view class='header-des'>
<view class='des-name' v-if="userTel!=''">{{userTel}}</view> <view class='des-name' v-if="userTel!=''">{{userTel}}</view>
<view class='des-name' v-else @click='goLogin'>注册/登录</view> <view class='des-name' v-else @click='goLogin'>注册/登录</view>
<view class='des-text'>花承诺保护您的信息安全</view> <view class='des-text'>花承诺保护您的信息安全</view>
</view> </view>
</view> </view>
<view class="my-contain"> <view class="my-contain">
......
...@@ -38,6 +38,14 @@ ...@@ -38,6 +38,14 @@
methods: { methods: {
needSubmit(){ needSubmit(){
const self=this const self=this
if(self.mobileVal==''){
self.toast('内容不能为空')
return false
}
if(self.mobileVal==''){
self.toast('手机号不能为空')
return false
}
const params={ const params={
"cell": self.mobileVal, "cell": self.mobileVal,
"content": self.desQuest "content": self.desQuest
......
...@@ -25,8 +25,8 @@ ...@@ -25,8 +25,8 @@
<view class='p-footer'> <view class='p-footer'>
<view class='footer-l'> <view class='footer-l'>
<view class='l-attention' @click="Clickatten"> <view class='l-attention' @click="Clickatten">
<view :class="showAtten ?'a-icon-show':'a-icon' "></view> <view :class="follow ?'a-icon-show':'a-icon' "></view>
<view class='a-text' v-if="showAtten==false">关注</view> <view class='a-text' v-if="follow==false">关注</view>
<view class='a-texts' v-else>已关注</view> <view class='a-texts' v-else>已关注</view>
</view> </view>
<view class='l-tel' @click='callTel'> <view class='l-tel' @click='callTel'>
...@@ -72,7 +72,6 @@ ...@@ -72,7 +72,6 @@
export default { export default {
data() { data() {
return { return {
showAtten:false,
showback:false, showback:false,
quantity:1, quantity:1,
bannerList:[], bannerList:[],
...@@ -85,7 +84,8 @@ ...@@ -85,7 +84,8 @@
lookSum:0, lookSum:0,
goodsDesc:'', goodsDesc:'',
token:'', token:'',
mobileNum:'' mobileNum:'',
follow:false
} }
}, },
onLoad(options) { onLoad(options) {
...@@ -108,7 +108,7 @@ ...@@ -108,7 +108,7 @@
} }
self.$request('/pawn/category/getGoodsDetail','POST',params).then(res => { self.$request('/pawn/category/getGoodsDetail','POST',params).then(res => {
console.log(res.result,'index'); console.log(res.result,'index');
const { goodsImage,goodsDetailImages,goodsName,stock,lookSum,goodsMoney,goodsDesc}=res.result const { goodsImage,goodsDetailImages,goodsName,stock,lookSum,goodsMoney,goodsDesc,follow}=res.result
self.productInfo=res.result self.productInfo=res.result
self.goodsImage=goodsImage self.goodsImage=goodsImage
self.goodsMoney=goodsMoney self.goodsMoney=goodsMoney
...@@ -117,6 +117,7 @@ ...@@ -117,6 +117,7 @@
self.lookSum=lookSum self.lookSum=lookSum
self.goodsDesc=goodsDesc self.goodsDesc=goodsDesc
self.bannerList=JSON.parse(goodsDetailImages) self.bannerList=JSON.parse(goodsDetailImages)
self.follow=follow
}).catch(err=>{ }).catch(err=>{
console.log(err,'请求出错') console.log(err,'请求出错')
}) })
...@@ -137,6 +138,10 @@ ...@@ -137,6 +138,10 @@
if(this.token==''){ if(this.token==''){
this.Go('uni:/pages/login/login') this.Go('uni:/pages/login/login')
}else{ }else{
if(this.quantity==0){
this.toast('商品数量不能为0')
return false
}
this.Go('uni:/pages/detailResult/detailResult','redirect') this.Go('uni:/pages/detailResult/detailResult','redirect')
} }
}, },
...@@ -144,8 +149,8 @@ ...@@ -144,8 +149,8 @@
this.showback=true this.showback=true
}, },
addCount(){ addCount(){
console.log(this.quantity,'8888')
if(this.quantity>=self.stock){ if(this.quantity>=this.stock){
uni.showToast({ uni.showToast({
title: '超过库存量了', title: '超过库存量了',
icon: "none", icon: "none",
...@@ -186,7 +191,7 @@ ...@@ -186,7 +191,7 @@
if(this.token==''){ if(this.token==''){
this.Go('uni:/pages/login/login') this.Go('uni:/pages/login/login')
}else{ }else{
this.showAtten=!this.showAtten this.follow=!this.follow
const self=this const self=this
const params={ const params={
"goodId": self.goodId "goodId": self.goodId
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
<view class='box-contain'> <view class='box-contain'>
<view class='r-line'> <view class='r-line'>
<label class='line-text'>姓名</label> <label class='line-text'>姓名</label>
<input class='line-input' type="text" :value="nameVal" @input="changeName($event)" placeholder="请输入姓名" /> <input class='line-input' maxlength="4" type="text" :value="nameVal" @input="changeName($event)" placeholder="请输入姓名" />
</view> </view>
<view class='r-line'> <view class='r-line'>
<label class='line-text'>联系方式</label> <label class='line-text'>联系方式</label>
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
</view> </view>
<view class='r-line'> <view class='r-line'>
<label class='line-text'>擅长鉴定</label> <label class='line-text'>擅长鉴定</label>
<input class='line-inputs' :value="desVal" @input="changeDes($event)" placeholder="请输入您擅长鉴定的种类" /> <input class='line-inputs' :value="desVal" maxlength="10" @input="changeDes($event)" placeholder="请输入您擅长鉴定的种类" />
</view> </view>
</view> </view>
...@@ -79,7 +79,7 @@ ...@@ -79,7 +79,7 @@
const regex = /^1[3456789]\d{9}$/; const regex = /^1[3456789]\d{9}$/;
console.log(!regex.test(e.detail.value),'086') console.log(!regex.test(e.detail.value),'086')
if(!regex.test(e.detail.value)){ if(!regex.test(e.detail.value)){
this.toast('请输入正确的手机号22') this.toast('请输入正确的手机号')
return false return false
}else{ }else{
this.mobileVal= e.detail.value this.mobileVal= e.detail.value
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -756,7 +756,7 @@ if(false) {} ...@@ -756,7 +756,7 @@ if(false) {}
var ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/runtime/api.js */ 10); var ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../../../../Applications/HBuilderX.app/Contents/HBuilderX/plugins/uniapp-cli/node_modules/css-loader/dist/runtime/api.js */ 10);
exports = ___CSS_LOADER_API_IMPORT___(false); exports = ___CSS_LOADER_API_IMPORT___(false);
// Module // Module
exports.push([module.i, ".in-pages[data-v-563c1af2] {\n width: 100%;\n height: 100vh;\n min-height: 1624rpx;\n background: #F7FAFF;\n}\n.in-pages .in-header[data-v-563c1af2] {\n height: 605rpx;\n}\n.in-pages .in-header .header-top[data-v-563c1af2] {\n position: -webkit-sticky;\n position: sticky;\n top: 0;\n z-index: 99;\n width: 100%;\n height: 225rpx;\n background: url('https://ddh.yyhock.com/ddhMall/my-bg.png') 0 0 no-repeat;\n background-size: 100% 225rpx;\n}\n.in-pages .in-header .header-top .header-title[data-v-563c1af2] {\n padding-top: 108rpx;\n width: 100%;\n height: 98rpx;\n font-family: PingFangSC, PingFang SC;\n font-weight: 500;\n font-size: 36rpx;\n color: #333333;\n line-height: 50rpx;\n text-align: center;\n font-style: normal;\n}\n.in-pages .in-header .header-top .header-titles[data-v-563c1af2] {\n padding-top: 108rpx;\n width: 100%;\n height: 98rpx;\n background: #E9F2FD;\n font-family: PingFangSC, PingFang SC;\n font-weight: 500;\n font-size: 36rpx;\n color: #333333;\n line-height: 50rpx;\n text-align: center;\n font-style: normal;\n}\n.in-pages .in-header .h-banner[data-v-563c1af2] {\n margin: 10rpx 22rpx 32rpx;\n width: 706rpx;\n height: 359rpx;\n}\n.in-pages .in-header .h-banner .swiper-item-i[data-v-563c1af2] {\n width: 706rpx;\n height: 359rpx;\n}\n.in-pages .in-header .h-banner .swiper-item-i .banner-item[data-v-563c1af2] {\n width: 706rpx;\n height: 359rpx;\n background-size: 690rpx 359rpx;\n}\n.in-pages .in-header .in-list[data-v-563c1af2] {\n margin: 0 50rpx;\n display: flex;\n flex-wrap: wrap;\n}\n.in-pages .in-header .in-list .mian-item[data-v-563c1af2] {\n margin-right: 67rpx;\n}\n.in-pages .in-header .in-list .mian-item .item-img[data-v-563c1af2] {\n margin: 0 16rpx;\n width: 80rpx;\n height: 80rpx;\n background-size: 100%;\n}\n.in-pages .in-header .in-list .mian-item .item-text[data-v-563c1af2] {\n height: 40rpx;\n font-family: PingFangSC, PingFang SC;\n font-weight: 400;\n font-size: 28rpx;\n color: #333333;\n line-height: 40rpx;\n text-align: center;\n font-style: normal;\n}\n.in-pages .in-header .in-list .mian-item[data-v-563c1af2]:nth-of-type(4n) {\n margin-right: 0;\n}\n.in-pages .in-header .i-mall[data-v-563c1af2] {\n width: 100%;\n}\n.in-pages .in-header .i-mall .hot-tab[data-v-563c1af2] {\n margin: 50rpx 36rpx 16rpx;\n height: 86rpx;\n display: flex;\n align-items: center;\n font-size: 28rpx;\n line-height: 40rpx;\n}\n.in-pages .in-header .i-mall .hot-tab .hot-header-text[data-v-563c1af2] {\n width: 160rpx;\n display: flex;\n font-family: PingFangSC-Regular, PingFang SC;\n color: #999999;\n text-align: center;\n}\n.in-pages .in-header .i-mall .hot-tab .hot-header-text .hot-ative[data-v-563c1af2] {\n position: relative;\n z-index: 1;\n font-family: PingFangSC-Medium, PingFang SC;\n font-weight: 500;\n font-size: 30rpx;\n color: #333333;\n}\n.in-pages .in-header .i-mall .hot-tab .hot-header-text .hot-ative[data-v-563c1af2]::after {\n content: '';\n position: absolute;\n top: 30%;\n left: 0;\n width: 100%;\n height: 6px;\n /* 背景色的高度 */\n background-color: #CDE0FE;\n /* 背景色 */\n z-index: -1;\n}\n.in-pages .in-header .i-mall .hot-tab .hot-header-text .hot-icon-show[data-v-563c1af2] {\n margin-top: 10rpx;\n margin-left: 10rpx;\n width: 20rpx;\n height: 20rpx;\n background: url('https://ddh.yyhock.com/ddhMall/hot-active-show.png') 0 0 no-repeat;\n background-size: 100%;\n}\n.in-pages .in-header .i-mall .hot-tab .hot-header-text .hot-icon-show-down[data-v-563c1af2] {\n margin-top: 10rpx;\n margin-left: 10rpx;\n width: 20rpx;\n height: 20rpx;\n background: url('https://ddh.yyhock.com/ddhMall/hot-active-show-down.png') 0 0 no-repeat;\n background-size: 100%;\n}\n.in-pages .in-header .i-mall .hot-tab .hot-icon[data-v-563c1af2] {\n margin-top: 36rpx;\n margin-left: 10rpx;\n width: 20rpx;\n height: 20rpx;\n background: url('https://ddh.yyhock.com/ddhMall/hot-active.png') 0 0 no-repeat;\n background-size: 100%;\n}\n.in-pages .in-header .i-mall .hot-tab .hot-show[data-v-563c1af2] {\n width: 160rpx;\n display: flex;\n color: #999999;\n line-height: 90rpx;\n text-align: center;\n}\n.in-pages .in-header .i-mall .hot-fixed-show[data-v-563c1af2] {\n position: -webkit-sticky;\n position: sticky;\n top: 0;\n left: 0;\n width: 100%;\n z-index: 99;\n height: 86rpx;\n background: #E9F2FD;\n font-size: 28rpx;\n line-height: 40rpx;\n margin-bottom: 220rpx;\n}\n.in-pages .in-header .i-mall .hot-fixed-show .hot-text[data-v-563c1af2] {\n padding-top: 108rpx;\n width: 100%;\n height: 98rpx;\n background: #E9F2FD;\n font-family: PingFangSC, PingFang SC;\n font-weight: 500;\n font-size: 36rpx;\n color: #333333;\n line-height: 50rpx;\n text-align: center;\n font-style: normal;\n}\n.in-pages .in-header .i-mall .hot-fixed-show .hot-tab-fixed[data-v-563c1af2] {\n height: 86rpx;\n display: flex;\n align-items: center;\n background: #E9F2FD;\n font-size: 28rpx;\n line-height: 40rpx;\n}\n.in-pages .in-header .i-mall .hot-fixed-show .hot-tab-fixed .hot-text[data-v-563c1af2] {\n width: 100%;\n height: 98rpx;\n background: #E9F2FD;\n font-family: PingFangSC, PingFang SC;\n font-weight: 500;\n font-size: 36rpx;\n color: #333333;\n line-height: 50rpx;\n text-align: center;\n font-style: normal;\n}\n.in-pages .in-header .i-mall .hot-fixed-show .hot-tab-fixed .hot-header-text[data-v-563c1af2] {\n margin-left: 30rpx;\n width: 160rpx;\n display: flex;\n font-family: PingFangSC-Regular, PingFang SC;\n color: #999999;\n text-align: center;\n}\n.in-pages .in-header .i-mall .hot-fixed-show .hot-tab-fixed .hot-header-text .hot-ative[data-v-563c1af2] {\n position: relative;\n z-index: 1;\n font-family: PingFangSC-Medium, PingFang SC;\n font-weight: 500;\n font-size: 30rpx;\n color: #333333;\n}\n.in-pages .in-header .i-mall .hot-fixed-show .hot-tab-fixed .hot-header-text .hot-ative[data-v-563c1af2]::after {\n content: '';\n position: absolute;\n top: 30%;\n left: 0;\n width: 100%;\n height: 6px;\n /* 背景色的高度 */\n background-color: #CDE0FE;\n /* 背景色 */\n z-index: -1;\n}\n.in-pages .in-header .i-mall .hot-fixed-show .hot-tab-fixed .hot-header-text .hot-icon-show[data-v-563c1af2] {\n margin-top: 10rpx;\n margin-left: 10rpx;\n width: 20rpx;\n height: 20rpx;\n background: url('https://ddh.yyhock.com/ddhMall/hot-active-show.png') 0 0 no-repeat;\n background-size: 100%;\n}\n.in-pages .in-header .i-mall .hot-fixed-show .hot-tab-fixed .hot-header-text .hot-icon-show-down[data-v-563c1af2] {\n margin-top: 10rpx;\n margin-left: 10rpx;\n width: 20rpx;\n height: 20rpx;\n background: url('https://ddh.yyhock.com/ddhMall/hot-active-show-down.png') 0 0 no-repeat;\n background-size: 100%;\n}\n.in-pages .in-header .i-mall .hot-fixed-show .hot-tab-fixed .hot-icon[data-v-563c1af2] {\n margin-top: 36rpx;\n margin-left: 10rpx;\n width: 20rpx;\n height: 20rpx;\n background: url('https://ddh.yyhock.com/ddhMall/hot-active.png') 0 0 no-repeat;\n background-size: 100%;\n}\n.in-pages .in-header .i-mall .hot-fixed-show .hot-tab-fixed .hot-show[data-v-563c1af2] {\n margin-left: 36rpx;\n width: 160rpx;\n display: flex;\n color: #999999;\n line-height: 90rpx;\n text-align: center;\n}\n.in-pages .in-header .i-mall .in-footer .box-at-home[data-v-563c1af2] {\n padding-bottom: 120rpx;\n}\n.in-pages .in-header .i-mall .in-footer .box-at-home .main-box[data-v-563c1af2] {\n display: flex;\n flex-wrap: wrap;\n align-items: center;\n margin: 0 30rpx;\n}\n.in-pages .in-header .i-mall .in-footer .box-at-home .main-box .box-item[data-v-563c1af2] {\n margin-bottom: 24rpx;\n width: 333rpx;\n height: 426rpx;\n background: #FFFFFF;\n box-shadow: 0rpx 0rpx 10rpx 0rpx rgba(232, 232, 232, 0.49);\n border-radius: 10rpx;\n}\n.in-pages .in-header .i-mall .in-footer .box-at-home .main-box .box-item .item-top[data-v-563c1af2] {\n display: flex;\n width: 333rpx;\n height: 272rpx;\n position: relative;\n}\n.in-pages .in-header .i-mall .in-footer .box-at-home .main-box .box-item .item-top .top-img[data-v-563c1af2] {\n width: 333rpx;\n height: 272rpx;\n background-size: 333rpx 272rpx;\n border-radius: 10rpx;\n}\n.in-pages .in-header .i-mall .in-footer .box-at-home .main-box .box-item .item-top .top-icon[data-v-563c1af2] {\n position: absolute;\n top: 0;\n margin-left: 216rpx;\n display: inline-block;\n width: 118rpx;\n height: 110rpx;\n background: url('https://ddh.yyhock.com/ddhMall/goods-sale.png') 0 0 no-repeat;\n background-size: 118rpx 110rpx ;\n}\n.in-pages .in-header .i-mall .in-footer .box-at-home .main-box .box-item .item-footer[data-v-563c1af2] {\n margin: 0 16rpx 0 14rpx;\n}\n.in-pages .in-header .i-mall .in-footer .box-at-home .main-box .box-item .item-footer .footer-des[data-v-563c1af2] {\n margin: 9rpx 16rpx 21rpx 0;\n height: 37rpx;\n font-family: PingFangSC, PingFang SC;\n font-weight: 400;\n font-size: 26rpx;\n color: #333333;\n line-height: 37rpx;\n text-align: left;\n font-style: normal;\n white-space: nowrap;\n /* 确保文本在一行内显示 */\n overflow: hidden;\n /* 隐藏超出容器的内容 */\n text-overflow: ellipsis;\n /* 使用省略号表示被截断的文本 */\n word-break: break-all;\n /* 允许在单词内换行 */\n}\n.in-pages .in-header .i-mall .in-footer .box-at-home .main-box .box-item .item-footer .footer-box[data-v-563c1af2] {\n display: flex;\n}\n.in-pages .in-header .i-mall .in-footer .box-at-home .main-box .box-item .item-footer .footer-box .box-num[data-v-563c1af2] {\n display: flex;\n margin-top: 8rpx;\n margin-right: 30rpx;\n height: 37rpx;\n font-family: PingFangSC, PingFang SC;\n font-weight: 400;\n font-size: 28rpx;\n color: #FC4D3E;\n line-height: 28rpx;\n text-align: left;\n font-style: normal;\n}\n.in-pages .in-header .i-mall .in-footer .box-at-home .main-box .box-item .item-footer .footer-box .box-num .num-icon[data-v-563c1af2] {\n margin-top: 4rpx;\n font-size: 20rpx;\n}\n.in-pages .in-header .i-mall .in-footer .box-at-home .main-box .box-item .item-footer .footer-box .box-btn[data-v-563c1af2] {\n width: 76rpx;\n height: 38rpx;\n border-radius: 5rpx;\n border: 1rpx solid #2263E6;\n font-family: PingFangSC, PingFang SC;\n font-weight: 400;\n font-size: 20rpx;\n color: #2263E6;\n line-height: 38rpx;\n text-align: center;\n font-style: normal;\n}\n.in-pages .in-header .i-mall .in-footer .box-at-home .main-box .box-item .item-footer .box-last[data-v-563c1af2] {\n height: 28rpx;\n font-family: PingFangSC, PingFang SC;\n font-weight: 400;\n font-size: 20rpx;\n color: #999999;\n line-height: 28rpx;\n text-align: right;\n font-style: normal;\n}\n.in-pages .in-header .i-mall .in-footer .box-at-home .main-box[data-v-563c1af2] :nth-child(2n) {\n margin-left: 24rpx;\n}\n", ""]); exports.push([module.i, ".in-pages[data-v-563c1af2] {\n width: 100%;\n height: 100vh;\n background: #F7FAFF;\n}\n.in-pages .in-header[data-v-563c1af2] {\n height: 605rpx;\n}\n.in-pages .in-header .header-top[data-v-563c1af2] {\n position: -webkit-sticky;\n position: sticky;\n top: 0;\n z-index: 99;\n width: 100%;\n height: 225rpx;\n background: url('https://ddh.yyhock.com/ddhMall/my-bg.png') 0 0 no-repeat;\n background-size: 100% 225rpx;\n}\n.in-pages .in-header .header-top .header-title[data-v-563c1af2] {\n padding-top: 108rpx;\n width: 100%;\n height: 98rpx;\n font-family: PingFangSC, PingFang SC;\n font-weight: 500;\n font-size: 36rpx;\n color: #333333;\n line-height: 50rpx;\n text-align: center;\n font-style: normal;\n}\n.in-pages .in-header .header-top .header-titles[data-v-563c1af2] {\n padding-top: 108rpx;\n width: 100%;\n height: 98rpx;\n background: #E9F2FD;\n font-family: PingFangSC, PingFang SC;\n font-weight: 500;\n font-size: 36rpx;\n color: #333333;\n line-height: 50rpx;\n text-align: center;\n font-style: normal;\n}\n.in-pages .in-header .h-banner[data-v-563c1af2] {\n margin: 10rpx 22rpx 32rpx;\n width: 706rpx;\n height: 359rpx;\n}\n.in-pages .in-header .h-banner .swiper-item-i[data-v-563c1af2] {\n width: 706rpx;\n height: 359rpx;\n}\n.in-pages .in-header .h-banner .swiper-item-i .banner-item[data-v-563c1af2] {\n width: 706rpx;\n height: 359rpx;\n background-size: 690rpx 359rpx;\n}\n.in-pages .in-header .in-list[data-v-563c1af2] {\n margin: 0 50rpx;\n display: flex;\n flex-wrap: wrap;\n}\n.in-pages .in-header .in-list .mian-item[data-v-563c1af2] {\n margin-right: 67rpx;\n}\n.in-pages .in-header .in-list .mian-item .item-img[data-v-563c1af2] {\n margin: 0 16rpx;\n width: 80rpx;\n height: 80rpx;\n background-size: 100%;\n}\n.in-pages .in-header .in-list .mian-item .item-text[data-v-563c1af2] {\n height: 40rpx;\n font-family: PingFangSC, PingFang SC;\n font-weight: 400;\n font-size: 28rpx;\n color: #333333;\n line-height: 40rpx;\n text-align: center;\n font-style: normal;\n}\n.in-pages .in-header .in-list .mian-item[data-v-563c1af2]:nth-of-type(4n) {\n margin-right: 0;\n}\n.in-pages .in-header .i-mall[data-v-563c1af2] {\n width: 100%;\n}\n.in-pages .in-header .i-mall .hot-tab[data-v-563c1af2] {\n margin: 50rpx 36rpx 16rpx;\n height: 86rpx;\n display: flex;\n align-items: center;\n font-size: 28rpx;\n line-height: 40rpx;\n}\n.in-pages .in-header .i-mall .hot-tab .hot-header-text[data-v-563c1af2] {\n width: 160rpx;\n display: flex;\n font-family: PingFangSC-Regular, PingFang SC;\n color: #999999;\n text-align: center;\n}\n.in-pages .in-header .i-mall .hot-tab .hot-header-text .hot-ative[data-v-563c1af2] {\n position: relative;\n z-index: 1;\n font-family: PingFangSC-Medium, PingFang SC;\n font-weight: 500;\n font-size: 30rpx;\n color: #333333;\n}\n.in-pages .in-header .i-mall .hot-tab .hot-header-text .hot-ative[data-v-563c1af2]::after {\n content: '';\n position: absolute;\n top: 30%;\n left: 0;\n width: 100%;\n height: 6px;\n /* 背景色的高度 */\n background-color: #CDE0FE;\n /* 背景色 */\n z-index: -1;\n}\n.in-pages .in-header .i-mall .hot-tab .hot-header-text .hot-icon-show[data-v-563c1af2] {\n margin-top: 10rpx;\n margin-left: 10rpx;\n width: 20rpx;\n height: 20rpx;\n background: url('https://ddh.yyhock.com/ddhMall/hot-active-show.png') 0 0 no-repeat;\n background-size: 100%;\n}\n.in-pages .in-header .i-mall .hot-tab .hot-header-text .hot-icon-show-down[data-v-563c1af2] {\n margin-top: 10rpx;\n margin-left: 10rpx;\n width: 20rpx;\n height: 20rpx;\n background: url('https://ddh.yyhock.com/ddhMall/hot-active-show-down.png') 0 0 no-repeat;\n background-size: 100%;\n}\n.in-pages .in-header .i-mall .hot-tab .hot-icon[data-v-563c1af2] {\n margin-top: 36rpx;\n margin-left: 10rpx;\n width: 20rpx;\n height: 20rpx;\n background: url('https://ddh.yyhock.com/ddhMall/hot-active.png') 0 0 no-repeat;\n background-size: 100%;\n}\n.in-pages .in-header .i-mall .hot-tab .hot-show[data-v-563c1af2] {\n width: 160rpx;\n display: flex;\n color: #999999;\n line-height: 90rpx;\n text-align: center;\n}\n.in-pages .in-header .i-mall .hot-fixed-show[data-v-563c1af2] {\n position: -webkit-sticky;\n position: sticky;\n top: 0;\n left: 0;\n width: 100%;\n z-index: 99;\n height: 86rpx;\n background: #E9F2FD;\n font-size: 28rpx;\n line-height: 40rpx;\n margin-bottom: 220rpx;\n}\n.in-pages .in-header .i-mall .hot-fixed-show .hot-text[data-v-563c1af2] {\n padding-top: 108rpx;\n width: 100%;\n height: 98rpx;\n background: #E9F2FD;\n font-family: PingFangSC, PingFang SC;\n font-weight: 500;\n font-size: 36rpx;\n color: #333333;\n line-height: 50rpx;\n text-align: center;\n font-style: normal;\n}\n.in-pages .in-header .i-mall .hot-fixed-show .hot-tab-fixed[data-v-563c1af2] {\n height: 86rpx;\n display: flex;\n align-items: center;\n background: #E9F2FD;\n font-size: 28rpx;\n line-height: 40rpx;\n}\n.in-pages .in-header .i-mall .hot-fixed-show .hot-tab-fixed .hot-text[data-v-563c1af2] {\n width: 100%;\n height: 98rpx;\n background: #E9F2FD;\n font-family: PingFangSC, PingFang SC;\n font-weight: 500;\n font-size: 36rpx;\n color: #333333;\n line-height: 50rpx;\n text-align: center;\n font-style: normal;\n}\n.in-pages .in-header .i-mall .hot-fixed-show .hot-tab-fixed .hot-header-text[data-v-563c1af2] {\n margin-left: 30rpx;\n width: 160rpx;\n display: flex;\n font-family: PingFangSC-Regular, PingFang SC;\n color: #999999;\n text-align: center;\n}\n.in-pages .in-header .i-mall .hot-fixed-show .hot-tab-fixed .hot-header-text .hot-ative[data-v-563c1af2] {\n position: relative;\n z-index: 1;\n font-family: PingFangSC-Medium, PingFang SC;\n font-weight: 500;\n font-size: 30rpx;\n color: #333333;\n}\n.in-pages .in-header .i-mall .hot-fixed-show .hot-tab-fixed .hot-header-text .hot-ative[data-v-563c1af2]::after {\n content: '';\n position: absolute;\n top: 30%;\n left: 0;\n width: 100%;\n height: 6px;\n /* 背景色的高度 */\n background-color: #CDE0FE;\n /* 背景色 */\n z-index: -1;\n}\n.in-pages .in-header .i-mall .hot-fixed-show .hot-tab-fixed .hot-header-text .hot-icon-show[data-v-563c1af2] {\n margin-top: 10rpx;\n margin-left: 10rpx;\n width: 20rpx;\n height: 20rpx;\n background: url('https://ddh.yyhock.com/ddhMall/hot-active-show.png') 0 0 no-repeat;\n background-size: 100%;\n}\n.in-pages .in-header .i-mall .hot-fixed-show .hot-tab-fixed .hot-header-text .hot-icon-show-down[data-v-563c1af2] {\n margin-top: 10rpx;\n margin-left: 10rpx;\n width: 20rpx;\n height: 20rpx;\n background: url('https://ddh.yyhock.com/ddhMall/hot-active-show-down.png') 0 0 no-repeat;\n background-size: 100%;\n}\n.in-pages .in-header .i-mall .hot-fixed-show .hot-tab-fixed .hot-icon[data-v-563c1af2] {\n margin-top: 36rpx;\n margin-left: 10rpx;\n width: 20rpx;\n height: 20rpx;\n background: url('https://ddh.yyhock.com/ddhMall/hot-active.png') 0 0 no-repeat;\n background-size: 100%;\n}\n.in-pages .in-header .i-mall .hot-fixed-show .hot-tab-fixed .hot-show[data-v-563c1af2] {\n margin-left: 36rpx;\n width: 160rpx;\n display: flex;\n color: #999999;\n line-height: 90rpx;\n text-align: center;\n}\n.in-pages .in-header .i-mall .in-footer .box-at-home[data-v-563c1af2] {\n padding-bottom: 220rpx;\n}\n.in-pages .in-header .i-mall .in-footer .box-at-home .main-box[data-v-563c1af2] {\n display: flex;\n flex-wrap: wrap;\n align-items: center;\n margin: 0 30rpx;\n}\n.in-pages .in-header .i-mall .in-footer .box-at-home .main-box .box-item[data-v-563c1af2] {\n margin-bottom: 24rpx;\n width: 333rpx;\n height: 426rpx;\n background: #FFFFFF;\n box-shadow: 0rpx 0rpx 10rpx 0rpx rgba(232, 232, 232, 0.49);\n border-radius: 10rpx;\n}\n.in-pages .in-header .i-mall .in-footer .box-at-home .main-box .box-item .item-top[data-v-563c1af2] {\n display: flex;\n width: 333rpx;\n height: 272rpx;\n position: relative;\n}\n.in-pages .in-header .i-mall .in-footer .box-at-home .main-box .box-item .item-top .top-img[data-v-563c1af2] {\n width: 333rpx;\n height: 272rpx;\n background-size: 333rpx 272rpx;\n border-radius: 10rpx;\n}\n.in-pages .in-header .i-mall .in-footer .box-at-home .main-box .box-item .item-top .top-icon[data-v-563c1af2] {\n position: absolute;\n top: 0;\n margin-left: 215rpx;\n display: inline-block;\n width: 118rpx;\n height: 110rpx;\n background: url('https://ddh.yyhock.com/ddhMall/goods-sale.png') 0 0 no-repeat;\n background-size: 118rpx 110rpx ;\n}\n.in-pages .in-header .i-mall .in-footer .box-at-home .main-box .box-item .item-footer[data-v-563c1af2] {\n margin: 0 16rpx 0 14rpx;\n}\n.in-pages .in-header .i-mall .in-footer .box-at-home .main-box .box-item .item-footer .footer-des[data-v-563c1af2] {\n margin: 9rpx 16rpx 21rpx 0;\n height: 37rpx;\n font-family: PingFangSC, PingFang SC;\n font-weight: 400;\n font-size: 26rpx;\n color: #333333;\n line-height: 37rpx;\n text-align: left;\n font-style: normal;\n white-space: nowrap;\n /* 确保文本在一行内显示 */\n overflow: hidden;\n /* 隐藏超出容器的内容 */\n text-overflow: ellipsis;\n /* 使用省略号表示被截断的文本 */\n word-break: break-all;\n /* 允许在单词内换行 */\n}\n.in-pages .in-header .i-mall .in-footer .box-at-home .main-box .box-item .item-footer .footer-box[data-v-563c1af2] {\n display: flex;\n}\n.in-pages .in-header .i-mall .in-footer .box-at-home .main-box .box-item .item-footer .footer-box .box-num[data-v-563c1af2] {\n display: flex;\n margin-top: 8rpx;\n margin-right: 30rpx;\n height: 37rpx;\n font-family: PingFangSC, PingFang SC;\n font-weight: 400;\n font-size: 28rpx;\n color: #FC4D3E;\n line-height: 28rpx;\n text-align: left;\n font-style: normal;\n}\n.in-pages .in-header .i-mall .in-footer .box-at-home .main-box .box-item .item-footer .footer-box .box-num .num-icon[data-v-563c1af2] {\n margin-top: 4rpx;\n font-size: 20rpx;\n}\n.in-pages .in-header .i-mall .in-footer .box-at-home .main-box .box-item .item-footer .footer-box .box-btn[data-v-563c1af2] {\n width: 76rpx;\n height: 38rpx;\n border-radius: 5rpx;\n border: 1rpx solid #2263E6;\n font-family: PingFangSC, PingFang SC;\n font-weight: 400;\n font-size: 20rpx;\n color: #2263E6;\n line-height: 38rpx;\n text-align: center;\n font-style: normal;\n}\n.in-pages .in-header .i-mall .in-footer .box-at-home .main-box .box-item .item-footer .box-last[data-v-563c1af2] {\n height: 28rpx;\n font-family: PingFangSC, PingFang SC;\n font-weight: 400;\n font-size: 20rpx;\n color: #999999;\n line-height: 28rpx;\n text-align: right;\n font-style: normal;\n}\n.in-pages .in-header .i-mall .in-footer .box-at-home .main-box[data-v-563c1af2] :nth-child(2n) {\n margin-left: 24rpx;\n}\n", ""]);
// Exports // Exports
module.exports = exports; module.exports = exports;
...@@ -1729,7 +1729,7 @@ var render = function() { ...@@ -1729,7 +1729,7 @@ var render = function() {
_c( _c(
"uni-view", "uni-view",
{ staticClass: _vm._$g(7, "sc"), attrs: { _i: 7 } }, { staticClass: _vm._$g(7, "sc"), attrs: { _i: 7 } },
[_vm._v("多花承诺保护您的信息安全")] [_vm._v("多花承诺保护您的信息安全")]
) )
], ],
1 1
...@@ -2023,6 +2023,7 @@ var render = function() { ...@@ -2023,6 +2023,7 @@ var render = function() {
_c("v-uni-input", { _c("v-uni-input", {
staticClass: _vm._$g(5, "sc"), staticClass: _vm._$g(5, "sc"),
attrs: { attrs: {
maxlength: "4",
type: "text", type: "text",
value: _vm._$g(5, "a-value"), value: _vm._$g(5, "a-value"),
placeholder: "请输入姓名", placeholder: "请输入姓名",
...@@ -2077,6 +2078,7 @@ var render = function() { ...@@ -2077,6 +2078,7 @@ var render = function() {
staticClass: _vm._$g(11, "sc"), staticClass: _vm._$g(11, "sc"),
attrs: { attrs: {
value: _vm._$g(11, "a-value"), value: _vm._$g(11, "a-value"),
maxlength: "10",
placeholder: "请输入您擅长鉴定的种类", placeholder: "请输入您擅长鉴定的种类",
_i: 11 _i: 11
}, },
...@@ -2595,6 +2597,7 @@ var render = function() { ...@@ -2595,6 +2597,7 @@ var render = function() {
_c("v-uni-input", { _c("v-uni-input", {
staticClass: _vm._$g(15, "sc"), staticClass: _vm._$g(15, "sc"),
attrs: { attrs: {
maxlength: "10",
"placeholder-style": "color:#9E9E9E", "placeholder-style": "color:#9E9E9E",
value: _vm._$g(15, "a-value"), value: _vm._$g(15, "a-value"),
placeholder: "请输入物品名称", placeholder: "请输入物品名称",
...@@ -2624,6 +2627,7 @@ var render = function() { ...@@ -2624,6 +2627,7 @@ var render = function() {
_c("v-uni-textarea", { _c("v-uni-textarea", {
staticClass: _vm._$g(18, "sc"), staticClass: _vm._$g(18, "sc"),
attrs: { attrs: {
maxlength: "100",
placeholder: placeholder:
"请补充商品品牌、型号、购买渠道、购买时间、入手价格(如有),有助于更快完成鉴定", "请补充商品品牌、型号、购买渠道、购买时间、入手价格(如有),有助于更快完成鉴定",
_i: 18 _i: 18
...@@ -3583,7 +3587,7 @@ var render = function() { ...@@ -3583,7 +3587,7 @@ var render = function() {
: _c( : _c(
"uni-view", "uni-view",
{ staticClass: _vm._$g(6, "sc"), attrs: { _i: 6 } }, { staticClass: _vm._$g(6, "sc"), attrs: { _i: 6 } },
[_vm._v("暂时还没有数据哦,点击我要发布去发布一条吧")] [_vm._v("暂时还没有数据哦")]
) )
], ],
1 1
......
{"@platforms":["android","iPhone","iPad"],"id":"__UNI__DE04B13","name":"多典花","version":{"name":"1.0.0","code":106},"description":"","launch_path":"__uniappview.html","developer":{"name":"","email":"","url":""},"permissions":{"Geolocation":{},"Camera":{},"UniNView":{"description":"UniNView原生渲染"}},"plus":{"useragent":{"value":"uni-app","concatenate":true},"splashscreen":{"target":"id:1","autoclose":true,"waiting":true,"delay":0},"popGesture":"none","launchwebview":{"id":"1","kernel":"WKWebview"},"statusbar":{"immersed":"supportedDevice","style":"dark","background":"#FFFFFF"},"usingComponents":true,"nvueStyleCompiler":"uni-app","compilerVersion":3,"compatible":{"ignoreVersion":true},"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-feature android:name=\"android.hardware.camera\"/>","<uses-feature android:name=\"android.hardware.camera.autofocus\"/>","<uses-permission android:name=\"android.permission.ACCESS_COARSE_LOCATION\"/>","<uses-permission android:name=\"android.permission.ACCESS_FINE_LOCATION\"/>","<uses-permission android:name=\"android.permission.ACCESS_NETWORK_STATE\"/>","<uses-permission android:name=\"android.permission.ACCESS_WIFI_STATE\"/>","<uses-permission android:name=\"android.permission.CALL_PHONE\"/>","<uses-permission android:name=\"android.permission.CAMERA\"/>","<uses-permission android:name=\"android.permission.CHANGE_NETWORK_STATE\"/>","<uses-permission android:name=\"android.permission.CHANGE_WIFI_STATE\"/>","<uses-permission android:name=\"android.permission.FLASHLIGHT\"/>","<uses-permission android:name=\"android.permission.GET_ACCOUNTS\"/>","<uses-permission android:name=\"android.permission.INTERNET\"/>","<uses-permission android:name=\"android.permission.MODIFY_AUDIO_SETTINGS\"/>","<uses-permission android:name=\"android.permission.MOUNT_UNMOUNT_FILESYSTEMS\"/>","<uses-permission android:name=\"android.permission.READ_LOGS\"/>","<uses-permission android:name=\"android.permission.READ_PHONE_STATE\"/>","<uses-permission android:name=\"android.permission.RECORD_AUDIO\"/>","<uses-permission android:name=\"android.permission.VIBRATE\"/>","<uses-permission android:name=\"android.permission.WAKE_LOCK\"/>","<uses-permission android:name=\"android.permission.WRITE_CONTACTS\"/>","<uses-permission android:name=\"android.permission.WRITE_EXTERNAL_STORAGE\"/>","<uses-permission android:name=\"android.permission.WRITE_SETTINGS\"/>"]},"apple":{"dSYMs":false,"privacyDescription":{"NSLocationWhenInUseUsageDescription":"为保护您账户安全,便于为您提供所在区域专属产品和服务,请您开启定位权限","NSLocationAlwaysUsageDescription":"为保护您账户安全,便于为您提供所在区域专属产品和服务,请您开启定位权限","NSLocationAlwaysAndWhenInUseUsageDescription":"为保护您账户安全,便于为您提供所在区域专属产品和服务,请您开启定位权限","NSPhotoLibraryUsageDescription":"为了给您提供意见反馈服务,请允许访问您的相册信息"}},"plugins":{"ad":{},"geolocation":{"amap":{"__platform__":["ios","android"],"appkey_ios":"219171ea69d16fa01856326bfce37395","appkey_android":"d5eb8009720b7ef9e540d1869d3c5f15"}},"audio":{"mp3":{"description":"Android平台录音支持MP3格式文件"}}}},"uniStatistics":{"enable":false},"allowsInlineMediaPlayback":true,"safearea":{"background":"#FFFFFF","bottom":{"offset":"auto"}},"uni-app":{"compilerVersion":"3.6.4","control":"uni-v3","nvueCompiler":"uni-app","renderer":"auto","nvue":{"flex-direction":"column"},"nvueLaunchMode":"normal"},"tabBar":{"borderStyle":"rgba(255,255,255,0.4)","color":"#BBBBBB","selectedColor":"#2263E6","iconWidth":"24px","height":"52px","fontSize":"12px","list":[{"pagePath":"pages/index/indexs","iconPath":"static/tab/index-h.png","selectedIconPath":"static/tab/index.png","text":"首页"},{"pagePath":"pages/sort/index","iconPath":"static/tab/sort-h.png","selectedIconPath":"static/tab/sort.png","text":"分类"},{"pagePath":"pages/my/index","iconPath":"static/tab/my-h.png","selectedIconPath":"static/tab/my.png","text":"我的"}],"child":["lauchwebview"],"selected":0},"launch_path":"__uniappview.html"}} {"@platforms":["android","iPhone","iPad"],"id":"__UNI__DE04B13","name":"多典花","version":{"name":"1.0.0","code":107},"description":"","launch_path":"__uniappview.html","developer":{"name":"","email":"","url":""},"permissions":{"Geolocation":{},"Camera":{},"UniNView":{"description":"UniNView原生渲染"}},"plus":{"useragent":{"value":"uni-app","concatenate":true},"splashscreen":{"target":"id:1","autoclose":true,"waiting":true,"delay":0},"popGesture":"none","launchwebview":{"id":"1","kernel":"WKWebview"},"statusbar":{"immersed":"supportedDevice","style":"dark","background":"#FFFFFF"},"usingComponents":true,"nvueStyleCompiler":"uni-app","compilerVersion":3,"compatible":{"ignoreVersion":true},"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-feature android:name=\"android.hardware.camera\"/>","<uses-feature android:name=\"android.hardware.camera.autofocus\"/>","<uses-permission android:name=\"android.permission.ACCESS_COARSE_LOCATION\"/>","<uses-permission android:name=\"android.permission.ACCESS_FINE_LOCATION\"/>","<uses-permission android:name=\"android.permission.ACCESS_NETWORK_STATE\"/>","<uses-permission android:name=\"android.permission.ACCESS_WIFI_STATE\"/>","<uses-permission android:name=\"android.permission.CALL_PHONE\"/>","<uses-permission android:name=\"android.permission.CAMERA\"/>","<uses-permission android:name=\"android.permission.CHANGE_NETWORK_STATE\"/>","<uses-permission android:name=\"android.permission.CHANGE_WIFI_STATE\"/>","<uses-permission android:name=\"android.permission.FLASHLIGHT\"/>","<uses-permission android:name=\"android.permission.GET_ACCOUNTS\"/>","<uses-permission android:name=\"android.permission.INTERNET\"/>","<uses-permission android:name=\"android.permission.MODIFY_AUDIO_SETTINGS\"/>","<uses-permission android:name=\"android.permission.MOUNT_UNMOUNT_FILESYSTEMS\"/>","<uses-permission android:name=\"android.permission.READ_LOGS\"/>","<uses-permission android:name=\"android.permission.READ_PHONE_STATE\"/>","<uses-permission android:name=\"android.permission.RECORD_AUDIO\"/>","<uses-permission android:name=\"android.permission.VIBRATE\"/>","<uses-permission android:name=\"android.permission.WAKE_LOCK\"/>","<uses-permission android:name=\"android.permission.WRITE_CONTACTS\"/>","<uses-permission android:name=\"android.permission.WRITE_EXTERNAL_STORAGE\"/>","<uses-permission android:name=\"android.permission.WRITE_SETTINGS\"/>"]},"apple":{"dSYMs":false,"privacyDescription":{"NSLocationWhenInUseUsageDescription":"为保护您账户安全,便于为您提供所在区域专属产品和服务,请您开启定位权限","NSLocationAlwaysUsageDescription":"为保护您账户安全,便于为您提供所在区域专属产品和服务,请您开启定位权限","NSLocationAlwaysAndWhenInUseUsageDescription":"为保护您账户安全,便于为您提供所在区域专属产品和服务,请您开启定位权限","NSPhotoLibraryUsageDescription":"为了给您提供意见反馈服务,请允许访问您的相册信息"}},"plugins":{"ad":{},"geolocation":{"amap":{"__platform__":["ios","android"],"appkey_ios":"219171ea69d16fa01856326bfce37395","appkey_android":"d5eb8009720b7ef9e540d1869d3c5f15"}},"audio":{"mp3":{"description":"Android平台录音支持MP3格式文件"}}}},"uniStatistics":{"enable":false},"allowsInlineMediaPlayback":true,"safearea":{"background":"#FFFFFF","bottom":{"offset":"auto"}},"uni-app":{"compilerVersion":"3.6.4","control":"uni-v3","nvueCompiler":"uni-app","renderer":"auto","nvue":{"flex-direction":"column"},"nvueLaunchMode":"normal"},"tabBar":{"borderStyle":"rgba(255,255,255,0.4)","color":"#BBBBBB","selectedColor":"#2263E6","iconWidth":"24px","height":"52px","fontSize":"12px","list":[{"pagePath":"pages/index/indexs","iconPath":"static/tab/index-h.png","selectedIconPath":"static/tab/index.png","text":"首页"},{"pagePath":"pages/sort/index","iconPath":"static/tab/sort-h.png","selectedIconPath":"static/tab/sort.png","text":"分类"},{"pagePath":"pages/my/index","iconPath":"static/tab/my-h.png","selectedIconPath":"static/tab/my.png","text":"我的"}],"child":["lauchwebview"],"selected":0},"launch_path":"__uniappview.html"}}
\ No newline at end of file \ No newline at end of file
...@@ -12,7 +12,7 @@ const request=async(url,type,data)=>{ ...@@ -12,7 +12,7 @@ const request=async(url,type,data)=>{
rd = JSON.stringify(common) rd = JSON.stringify(common)
} }
console.log(baseUrl,url,'rd') console.log(rd,'rd')
return new Promise((resolve,reject)=>{ return new Promise((resolve,reject)=>{
const token=uni.getStorageSync('token') const token=uni.getStorageSync('token')
uni.request({ uni.request({
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment