123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- <template>
- <view class="pages">
- <view class="top-img">
- <image :src="$getimg + 'offlineBuy-bg.png'" class="img" mode="widthFix"></image>
- </view>
- <view class="offline-content">
- <view class="step-wrap" v-if="applyStatus == 0||applyStatus == 1||applyStatus == 2||applyStatus == 3">
- <view class="step-item" data-text="步骤一" :class="applyStatus == 0?'active':''"></view>
- <view class="step-item" data-text="步骤二" :class="applyStatus == 1?'active':''"></view>
- <!-- <view class="step-item" data-text="步骤三" :class="applyStatus == 2?'active':''"></view> -->
- </view>
- <view class="step-text">
- <view class="step-text-item">
- <view class="step-text-item-cn">步骤一</view>
- <view class="step-text-item-en">Step 1</view>
- </view>
- <view class="step-text-item">
- <view class="step-text-item-cn">步骤二</view>
- <view class="step-text-item-en">Step 2</view>
- </view>
- <!-- <view class="step-text-item">
- <view class="step-text-item-cn">步骤三</view>
- <view class="step-text-item-en">Step 3</view>
- </view> -->
- </view>
- <!-- step end -->
- <view class="step-content" v-if="applyStatus == 0">
- <view class="til">
- <image :src="$getimg + 'icon-rengou.png'" class="til-img" mode="scaleToFill"></image>
- 步骤一
- </view>
- <view class="con">
- 说明:感谢您的认购,生态环境厅将收到您的申请,请尽快联系生态环境厅(联系电话:84546545)签订认购协议
- </view>
- </view>
- <view class="step-content" v-if="applyStatus == 1">
- <view class="til">
- <image :src="$getimg + 'icon-rengou.png'" class="til-img" mode="scaleToFill"></image>
- 步骤二
- </view>
- <view class="con">
- 说明:认购成功,订单已生成,请在2020年11月11日之前,打款完成后等待审核,如有疑问或需开具发票可联系08121212
- </view>
- </view>
- <!-- <view class="step-content" v-if="applyStatus == 2">
- <view class="til">
- <image :src="$getimg + 'icon-rengou.png'" class="til-img" mode="scaleToFill"></image>
- 步骤三
- </view>
- <view class="con">
- 说明:完成购买,如需开具发票可联系:{{phone03}}
- </view>
- </view> -->
-
- </view>
- <view class="bottom-btn-wrap">
- <view class="bottom-btn-wrap-bg">
- <view class="bottom-btn btn" v-if="applyStatus == 0" @click="callnumber(phone01)">
- 联系管理部门
- </view>
- <view class="bottom-btn btn" v-if="applyStatus == 1" @click="goOrderDetails(orderGuid)">
- 查看订单
- </view>
- <!-- <view class="bottom-btn btn" v-if="applyStatus == 2">
- 查看订单
- </view> -->
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- thetoken:'',
- guid:'',
- orderGuid:'',
- $getimg:this.$getimg,
- applyStatus:0,
- time:'2020年11月11日',
- bankAccount:'6210000000000009900',
- phone01:'08121224',
- phone01:'08121212',
- phone03:'84546545',
- }
- },
- onShow() {
-
- },
- onLoad(option) {
- this.guid = option.guid;
- this.thetoken = 'Bearer' + ' ' + this.$store.state.token;
- this.getDetails()
- },
- methods: {
- //打电话
- callnumber(number){
- if(!number){
- uni.showToast({
- icon:'none',
- mask:true,
- title:`手机号码为空`,
- duration: 2000
- });
- return;
- };
- uni.makePhoneCall({
- phoneNumber: number
- });
- },
- getDetails(){
- this.$api.http.get(this.config.apiBaseurl+'/carbon-h5/wap/apply/'+this.guid,{header: {Authorization:this.thetoken}}).then( res =>{
- console.log('this.applyStatus',res);
- this.applyStatus = res.data.data.applyStatus;
- this.orderGuid = res.data.data.orderGuid;
- console.log('this.applyStatus1',this.applyStatus)
- })
- },
- goOrderDetails(id){
- console.log(id)
- uni.navigateTo({
- url: '/pages/usercenter/orderList/orderdetails/orderdetails?orderid=' + id,
- fail:function(err){
- console.log('err',err)
-
- }
- });
- },
- }
- }
- </script>
- <style>
- @import url("./offlineBuy.css");
- </style>
|