|
@@ -18,7 +18,7 @@
|
|
|
<el-col :span="24" style="text-align: center; margin-top: 15px">
|
|
|
<el-button type="primary" style="margin: 10px 0" @click="exam('-2')">已退货</el-button>
|
|
|
</el-col>
|
|
|
- <el-col :span="24" style="text-align: center; margin: 15px 0; font-size: 18px">买家{{ activit.shop.is_check || '暂无快递信息' }}</el-col>
|
|
|
+ <el-col :span="24" style="text-align: center; margin: 15px 0; font-size: 18px">买家{{ getCheck() || '暂无快递信息' }}</el-col>
|
|
|
<!-- <el-col :span="24">{{ activit.is_check || '暂无快递信息' }}</el-col>
|
|
|
<el-col :span="24">{{ transport.shop_transport_name || '暂无快递信息' }}: {{ activit.no || '暂无快递信息' }}</el-col>
|
|
|
<el-col :span="24">
|
|
@@ -48,10 +48,11 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
+const _ = require('lodash');
|
|
|
import { mapState, createNamespacedHelpers } from 'vuex';
|
|
|
export default {
|
|
|
name: 'steps-1',
|
|
|
- props: { active: { type: Number }, customer: { type: Array } },
|
|
|
+ props: { active: { type: Number }, customer: { type: Array }, activit: { type: Object } },
|
|
|
components: {},
|
|
|
data: function () {
|
|
|
return {
|
|
@@ -66,6 +67,9 @@ export default {
|
|
|
exam(status) {
|
|
|
this.$emit('exam', status);
|
|
|
},
|
|
|
+ getCheck() {
|
|
|
+ return _.get(this.activit, 'customer.is_check');
|
|
|
+ },
|
|
|
},
|
|
|
computed: {
|
|
|
...mapState(['user']),
|