submit
This commit is contained in:
parent
8521092326
commit
288051964a
@ -12,38 +12,38 @@
|
|||||||
<view class="info-right">
|
<view class="info-right">
|
||||||
<view class="info-right-item">
|
<view class="info-right-item">
|
||||||
<view class="title">画作编号</view>
|
<view class="title">画作编号</view>
|
||||||
<view class="content">12313123</view>
|
<view class="content">{{info.artworkNum}}</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="info-right-item">
|
<view class="info-right-item">
|
||||||
<view class="title">画作名称</view>
|
<view class="title">画作名称</view>
|
||||||
<view class="content">12313123</view>
|
<view class="content">{{info.artworkName}}</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="info-right-item">
|
<view class="info-right-item">
|
||||||
<view class="title">画家名称</view>
|
<view class="title">画家名称</view>
|
||||||
<view class="content">12313123</view>
|
<view class="content">{{info.artistName}}</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="info-right-item">
|
<view class="info-right-item">
|
||||||
<view class="title">画作平尺数</view>
|
<view class="title">画作平尺数</view>
|
||||||
<view class="content">12313123</view>
|
<view class="content">{{info.artworkSize}}</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="order-info">
|
<view class="order-info">
|
||||||
<view class="info-right-item">
|
<view class="info-right-item">
|
||||||
<view class="title">订单编号</view>
|
<view class="title">订单编号</view>
|
||||||
<view class="content">12313123</view>
|
<view class="content">{{info.artworkNum}}</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="info-right-item">
|
<view class="info-right-item">
|
||||||
<view class="title">寄存地址</view>
|
<view class="title">寄存地址</view>
|
||||||
<view class="content">12313123</view>
|
<view class="content">{{info.warehouseName}}</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="info-right-item">
|
<view class="info-right-item">
|
||||||
<view class="title">寄存时限</view>
|
<view class="title">寄存时限</view>
|
||||||
<view class="content">12313123</view>
|
<view class="content">{{info.cycleName}}</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="info-right-item">
|
<view class="info-right-item">
|
||||||
<view class="title">付款金额</view>
|
<view class="title">付款金额</view>
|
||||||
<view class="content">12313123</view>
|
<view class="content">{{info.money}}</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="tips">*请携带您的画作在时限之前到达寄存地</view>
|
<view class="tips">*请携带您的画作在时限之前到达寄存地</view>
|
||||||
@ -59,19 +59,24 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import {postDataByParams} from "../../http/service";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name:'paySuccess',
|
name:'paySuccess',
|
||||||
data(){
|
data(){
|
||||||
return{
|
return{
|
||||||
|
info:{}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
mounted(){
|
mounted(){
|
||||||
this.getData()
|
this.getData()
|
||||||
},
|
},
|
||||||
methods:{
|
methods:{
|
||||||
getData(){
|
async getData(){
|
||||||
|
const data1={
|
||||||
|
ID:Number(this.$mp.query.ID)
|
||||||
|
}
|
||||||
|
const res1 = await postDataByParams('/api/warehouse/detail',data1)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user