1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <template>
- <view class="bg vh100 pt-30 flex flex-column">
- <view class="u-flex-1">
- <view class="text-center ptb-100 mlr-30 radius-10 bg-white">
- <view class="size-50 red bold center">{{price}}<view class="size-30 ml-10">元</view></view>
- <view class="mt-20 size-26">订单总计</view>
- </view>
- <view class="mt-80 plr-36">
- <view class="mb-20">温馨提示</view>
- <view class="gray-2 size-28 mt-15">
- 1、线下结算产生的平台服务费,请在个人中心缴纳;
- </view>
- <view class="gray-2 size-28 mt-15">
- 2、欠缴的平台服务费达到平台设置的限额,将无法接单;
- </view>
- <view class="gray-2 size-28 mt-15">
- 3、请确认收到付款后进行确认操作,否则造成损失平台概不负责
- </view>
- </view>
- </view>
- <view @click="getMoney" class="bg-blue radius-10 ptb-25 center white bold mb-100" style="width: 90%;">确认收到付款</view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- price:'',
- id:''
- };
- },
- onLoad(option) {
- this.price = option.price
- this.id = option.id
- },
- methods:{
- getMoney(){
- this.$http('/addons/ddrive/order/offline', {
- order_id: this.id
- }, "POST").then(() => {
- uni.navigateBack({
-
- })
- })
- }
- }
- }
- </script>
- <style lang="scss">
- </style>
|