xingyy
xingyy 1 year ago
parent 2e8d5a198d
commit 24f67d971f

@ -26,6 +26,9 @@ export default {
justify-content: center; justify-content: center;
align-items: center; align-items: center;
} }
.tm-poup-wk{
height: initial!important;
}
.u-upload__button{ .u-upload__button{
width: 404rpx!important; width: 404rpx!important;
height: 306rpx!important; height: 306rpx!important;

@ -153,8 +153,9 @@ export default {
console.log(this.orderingInfo,'orderingInfo') console.log(this.orderingInfo,'orderingInfo')
if (this.$mp.query.ID) { if (this.$mp.query.ID) {
this.ID=this.$mp.query.ID this.ID=this.$mp.query.ID
this.getData()
} }
this.getData()
uni.createSelectorQuery().select('.title-block').boundingClientRect(data => { uni.createSelectorQuery().select('.title-block').boundingClientRect(data => {
let res = uni.getSystemInfoSync(); let res = uni.getSystemInfoSync();
const distance = res.windowHeight - data.bottom; const distance = res.windowHeight - data.bottom;

@ -17,16 +17,22 @@
name="6" name="6"
multiple multiple
:maxCount="1" :maxCount="1"
width="250" width="404rpx"
height="150" height="306rpx"
> >
<image src="https://cdn.uviewui.com/uview/demo/upload/positive.png" <div style="width: 404rpx;height: 306rpx;background: #000;border-radius: 20rpx;display: flex;flex-direction: column;align-items: center;justify-content: center">
mode="widthFix" style="width: 404rpx;height: 306rpx;"></image> <div style="margin-bottom: 14rpx">
<image style="width: 38.32rpx;height: 38.2rpx" src="../../static/zu142@3x.png"></image>
</div>
<div style="font-size: 32rpx;color: #fff">上传画作图片</div>
</div>
<!-- <image src="https://cdn.uviewui.com/uview/demo/upload/positive.png"
mode="widthFix" style="width: 404rpx;height: 306rpx;"></image>-->
</u-upload> </u-upload>
<!-- <image :src="info.artworkImg"></image>--> <!-- <image :src="info.artworkImg"></image>-->
</div> </div>
<tm-poup height="700" v-model="show_2" position="bottom"> <tm-poup v-model="show_2" position="bottom">
<div class="poup1"> <div class="poup1" >
<div class="content1"> <div class="content1">
<div class="wrap1">更换您的寄存地址</div> <div class="wrap1">更换您的寄存地址</div>
<div @click="show_2=false" class="wrap2"> <div @click="show_2=false" class="wrap2">
@ -149,25 +155,25 @@
</div> </div>
<div class="content4"> <div class="content4">
<div class="wrap1"> <div class="wrap1">
<div class="wrap1_1"> <div class="wrap1_1" @click="show_2=true">
<div class="wrap1_1_1">寄存地址</div> <div class="wrap1_1_1">寄存地址</div>
<div class="wrap1_1_2"></div> <div class="wrap1_1_2"></div>
<div class="wrap1_1_3"> <div class="wrap1_1_3">
<input placeholder-style="color: #939393;font-size: 24rpx;" <input disabled placeholder-style="color: #939393;font-size: 24rpx;"
:placeholder="warehouseID?addressList.find(x=>x.ID===warehouseID).address:'寄存地址'"/> :placeholder="warehouseID?addressList.find(x=>x.ID===warehouseID).address:'寄存地址'"/>
</div> </div>
<div class="wrap1_1_4"></div> <div class="wrap1_1_4"></div>
<div @click="show_2=true" class="wrap1_1_5"> <div class="wrap1_1_5">
<image src="../../static/zu611@3x.png"></image> <image src="../../static/zu611@3x.png"></image>
</div> </div>
</div> </div>
<div class="wrap1_1"> <div class="wrap1_1" @click="show_1=true">
<div class="wrap1_1_1">寄存时限</div> <div class="wrap1_1_1">寄存时限</div>
<div class="wrap1_1_2"></div> <div class="wrap1_1_2"></div>
<div class="wrap1_1_3"> <div class="wrap1_1_3">
<input placeholder-style="color: #939393;font-size: 24rpx;" :placeholder="cycleId?cycleList.find(x=>x.ID===cycleId).name:'寄存时限'"/> <input disabled placeholder-style="color: #939393;font-size: 24rpx;" :placeholder="cycleId?cycleList.find(x=>x.ID===cycleId).name:'寄存时限'"/>
</div> </div>
<div @click="show_1=true" class="wrap1_1_5"> <div class="wrap1_1_5">
<image src="../../static/zu612@3x.png"></image> <image src="../../static/zu612@3x.png"></image>
</div> </div>
<div class="wrap1_1_4"> <div class="wrap1_1_4">
@ -231,11 +237,6 @@ export default {
url: ''//body url: ''//body
} }
}, },
onLoad(e) {
if (e) {
this.url = e.url
}
},
watch:{ watch:{
cycleId(newValue){ cycleId(newValue){
this.obtainAmount() this.obtainAmount()
@ -244,7 +245,8 @@ export default {
}, },
mounted() { mounted() {
this.getCycle() this.getCycle()
if (this.url){ if (this.$mp.query.url){
this.url=this.$mp.query.url
this.getDetailUrl() this.getDetailUrl()
} }
this.getAddress() this.getAddress()
@ -268,9 +270,8 @@ export default {
}); });
}) })
}, },
// deletePic() {
deletePic(event) { this.fileList1=[]
this[`fileList${event.name}`].splice(event.index, 1)
}, },
// //
async afterRead(event) { async afterRead(event) {
@ -297,7 +298,22 @@ export default {
} }
}, },
async signContract(){ async signContract(){
const checks = [{
value: this.warehouseID,
message: '请选择寄存地址'
}, {
value: this.cycleId,
message: '请选择寄存时限'
}]
for (const check of checks) {
if (!check.value) {
uni.showToast({
title: check.message,
icon: 'none'
})
return
}
}
const data={ const data={
cycleId:this.cycleId, cycleId:this.cycleId,
warehouseID:this.warehouseID, warehouseID:this.warehouseID,
@ -492,6 +508,7 @@ picker-view {
padding-top: 28rpx; padding-top: 28rpx;
padding-left: 30rpx; padding-left: 30rpx;
padding-right: 30rpx; padding-right: 30rpx;
margin-bottom: 72rpx;
& > .content6 { & > .content6 {
margin-top: 26rpx; margin-top: 26rpx;
@ -593,6 +610,7 @@ picker-view {
} }
.poup { .poup {
margin-bottom: 72rpx;
padding-top: 28rpx; padding-top: 28rpx;
padding-left: 30rpx; padding-left: 30rpx;
padding-right: 30rpx; padding-right: 30rpx;

@ -219,13 +219,22 @@ export default {
} }
}, },
touchMove(e, index) { touchMove(e, index) {
if (this.mainList[index].artworkStatus!==5){
return
}
this.mainList[index].distanceX = e.touches[0].clientX - this.startX; this.mainList[index].distanceX = e.touches[0].clientX - this.startX;
}, },
touchStart(e, index) { touchStart(e, index) {
if (this.mainList[index].artworkStatus!==5){
return
}
this.mainList[index].isRight = true this.mainList[index].isRight = true
this.startX = e.touches[0].clientX; this.startX = e.touches[0].clientX;
}, },
touchEnd(index) { touchEnd(index) {
if (this.mainList[index].artworkStatus!==5){
return
}
if (this.mainList[index].distanceX < -((144 / 750) * this.windowWidth)) { if (this.mainList[index].distanceX < -((144 / 750) * this.windowWidth)) {
this.mainList[index].distanceX = -((144 / 750) * this.windowWidth); this.mainList[index].distanceX = -((144 / 750) * this.windowWidth);
} else { } else {

@ -1,6 +1,6 @@
<template> <template>
<div class="order-details" > <div class="order-details" >
<title-block class="title-block" title="2订单库"> <title-block class="title-block" title="订单库">
<template #left> <template #left>
<div> <image style="width: 112rpx;height: 52rpx" src="https://cdns.fontree.cn/fonchain-main/prod/image/default/artwork/785cf885-c4c9-44b3-8155-4b39988c7ef8.png" @click="back"></image></div> <div> <image style="width: 112rpx;height: 52rpx" src="https://cdns.fontree.cn/fonchain-main/prod/image/default/artwork/785cf885-c4c9-44b3-8155-4b39988c7ef8.png" @click="back"></image></div>
</template> </template>
@ -8,7 +8,7 @@
<div :style="{height:`${distance}px`}" style="overflow-y: auto"> <div :style="{height:`${distance}px`}" style="overflow-y: auto">
<div style="padding-bottom: 128rpx"> <div style="padding-bottom: 128rpx">
<div class="content2"> <div class="content2">
<image src="../../static/zu709@3x.png"></image> <image :src="info.artworkImg"></image>
</div> </div>
<div class="content3"> <div class="content3">
<div class="wrap1"> <div class="wrap1">

@ -48,10 +48,10 @@
</view> </view>
<view class="tips">*请携带您的画作在时限之前到达寄存地</view> <view class="tips">*请携带您的画作在时限之前到达寄存地</view>
<view class="btns"> <view class="btns">
<view style="width: 280rpx;height:64rpx;border-radius: 40rpx;"> <view @click="goHome" style="width: 280rpx;height:64rpx;border-radius: 40rpx;">
<u-button text="返回首页" shape="circle" color="#626262"></u-button> <u-button text="返回首页" shape="circle" color="#626262"></u-button>
</view> </view>
<view style="width: 280rpx;height:64rpx;border-radius: 40rpx"> <view @click="goDetails" style="width: 280rpx;height:64rpx;border-radius: 40rpx">
<u-button text="查看订单详情" shape="circle" color="#699A70"></u-button> <u-button text="查看订单详情" shape="circle" color="#699A70"></u-button>
</view> </view>
</view> </view>
@ -72,6 +72,16 @@ export default {
this.getData() this.getData()
}, },
methods: { methods: {
goDetails(){
uni.navigateTo({
url: "/pages/order-goods/order-details",
});
},
goHome(){
uni.switchTab({
url: "/pages/home/index",
});
},
async getData() { async getData() {
const data1 = { const data1 = {
ID: Number(this.$mp.query.ID) ID: Number(this.$mp.query.ID)

Binary file not shown.

After

Width:  |  Height:  |  Size: 399 B

Loading…
Cancel
Save