|
@@ -12,7 +12,7 @@
|
|
<view class="view-type">{{ information.status | TextFormat }}</view>
|
|
<view class="view-type">{{ information.status | TextFormat }}</view>
|
|
<view class="status-visible"> {{ information.orderSeen == 2 ? '订单对机构不可见' : '订单对机构可见' }} </view>
|
|
<view class="status-visible"> {{ information.orderSeen == 2 ? '订单对机构不可见' : '订单对机构可见' }} </view>
|
|
<view class="Rebate " v-if="information.rebateFlag == 1">返佣</view>
|
|
<view class="Rebate " v-if="information.rebateFlag == 1">返佣</view>
|
|
- <text class="bage-name">【高琳琳】</text>
|
|
|
|
|
|
+ <text class="bage-name">【{{ information.serviceName ? information.serviceName : '' }}】</text>
|
|
<text class="bage-buss btn" v-if="information.orderSubmitType == 3 || information.orderSubmitType == 4"
|
|
<text class="bage-buss btn" v-if="information.orderSubmitType == 3 || information.orderSubmitType == 4"
|
|
>协销</text
|
|
>协销</text
|
|
>
|
|
>
|
|
@@ -54,7 +54,7 @@
|
|
<!-- 退款记录 -->
|
|
<!-- 退款记录 -->
|
|
<refund-record
|
|
<refund-record
|
|
ref="refund"
|
|
ref="refund"
|
|
- v-if="isRequest"
|
|
|
|
|
|
+ v-if="!isManage"
|
|
:returnedPurchaseList="returnedPurchaseList"
|
|
:returnedPurchaseList="returnedPurchaseList"
|
|
:returnedPurchaseFee="returnedPurchaseFee"
|
|
:returnedPurchaseFee="returnedPurchaseFee"
|
|
></refund-record>
|
|
></refund-record>
|
|
@@ -69,7 +69,7 @@
|
|
}}</label>
|
|
}}</label>
|
|
</view>
|
|
</view>
|
|
<!-- 底部button -->
|
|
<!-- 底部button -->
|
|
- <order-button
|
|
|
|
|
|
+<!-- <order-button
|
|
ref="orderButton"
|
|
ref="orderButton"
|
|
v-if="isRequest"
|
|
v-if="isRequest"
|
|
:status="btnStatus"
|
|
:status="btnStatus"
|
|
@@ -81,7 +81,7 @@
|
|
:secondHandOrderFlag="information.secondHandOrderFlag"
|
|
:secondHandOrderFlag="information.secondHandOrderFlag"
|
|
@buttonConfirm="handButtonConfirm"
|
|
@buttonConfirm="handButtonConfirm"
|
|
>
|
|
>
|
|
- </order-button>
|
|
|
|
|
|
+ </order-button> -->
|
|
</view>
|
|
</view>
|
|
<!-- 付款弹窗 -->
|
|
<!-- 付款弹窗 -->
|
|
<order-model
|
|
<order-model
|
|
@@ -118,8 +118,9 @@
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<script>
|
|
<script>
|
|
|
|
+import { mapState, mapMutations } from 'vuex'
|
|
import headerBack from '@/components/cm-module/headerNavbar/header-back' //自定义导航
|
|
import headerBack from '@/components/cm-module/headerNavbar/header-back' //自定义导航
|
|
-import orderAddress from '@/components/cm-module/orderDetails/orderAddress' //地址信息
|
|
|
|
|
|
+import orderAddress from '../components/cm-seller-address.vue' //地址信息
|
|
import goodsList from '@/components/cm-module/orderDetails/goodsList' //商品列表
|
|
import goodsList from '@/components/cm-module/orderDetails/goodsList' //商品列表
|
|
import invoiceTent from '@/components/cm-module/orderDetails/invoiceTent' //发票信息
|
|
import invoiceTent from '@/components/cm-module/orderDetails/invoiceTent' //发票信息
|
|
import orderInformation from '@/components/cm-module/orderDetails/orderInformation' //订单信息
|
|
import orderInformation from '@/components/cm-module/orderDetails/orderInformation' //订单信息
|
|
@@ -243,6 +244,9 @@ export default {
|
|
return HtmlText
|
|
return HtmlText
|
|
}
|
|
}
|
|
},
|
|
},
|
|
|
|
+ computed: {
|
|
|
|
+ ...mapState(['isManage'])
|
|
|
|
+ },
|
|
methods: {
|
|
methods: {
|
|
openclauseConten(id) {
|
|
openclauseConten(id) {
|
|
this.$api.navigateTo(`/pages/service/sellconten?clauseId=${id}`)
|
|
this.$api.navigateTo(`/pages/service/sellconten?clauseId=${id}`)
|