抖火法律首页调整
This commit is contained in:
@@ -38,6 +38,8 @@
|
||||
<text v-if="can.pay_status == 2">审核中</text>
|
||||
<text v-if="can.pay_status == 3">被驳回</text>
|
||||
</button>
|
||||
<!-- 线上支付被驳回 -->
|
||||
<button class="btn-cancel" v-if="status.value == 5" @click="onPayTurn(no)">原因</button>
|
||||
<button class="btn-cancel" v-if="can.diff_price" @click="onDiff(no)">补差价</button>
|
||||
<button class="btn-sign" @click="onInfo(no)">查看</button>
|
||||
</view>
|
||||
@@ -129,6 +131,10 @@
|
||||
// 取消订单
|
||||
onCancel(id){
|
||||
this.$emit('cancel', id)
|
||||
},
|
||||
// 线上支付被驳回
|
||||
onPayTurn(id){
|
||||
this.$emit('payTurn', id)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6,8 +6,8 @@
|
||||
<view class="order-block-content">
|
||||
<view class="order-user">{{user.nickname}}<text>{{user.username}}</text></view>
|
||||
<view class="order-content">
|
||||
<view class="order-content-type" v-if="can.lawyer_status != 0">
|
||||
<label>服务律师</label>
|
||||
<view class="order-content-type" v-if="can.lawyer_status && can.lawyer_status != 0 ">
|
||||
<label>服务律师</label> -->
|
||||
<view class="nowrap" v-if="can.lawyer_status === 2">{{ lawyer.name || '-' }}</view>
|
||||
<view class="nowrap" style="color: #FFAB3F;" v-else>待匹配律师</view>
|
||||
</view>
|
||||
@@ -71,6 +71,12 @@
|
||||
isSelf: {
|
||||
type : Boolean,
|
||||
default : false
|
||||
},
|
||||
can : {
|
||||
type : Object,
|
||||
default : () => {
|
||||
return { }
|
||||
}
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
@@ -78,8 +84,6 @@
|
||||
this.$emit('info', id)
|
||||
},
|
||||
onPhone(mobile){
|
||||
console.log(mobile)
|
||||
|
||||
this.$emit('callPhone', mobile)
|
||||
},
|
||||
onSing(id){
|
||||
|
||||
Reference in New Issue
Block a user