Commit ad733ee2 by liangjianmin

fix(OrderTrack): 修复goods.vue文件中的缩进问题,提升代码可读性

parent 6b4e97cd
Showing with 3 additions and 3 deletions
...@@ -191,7 +191,7 @@ ...@@ -191,7 +191,7 @@
<span :style="{ color: getStatusColor() }">{{ agreementStatus.status_name || '暂无状态' }}</span> <span :style="{ color: getStatusColor() }">{{ agreementStatus.status_name || '暂无状态' }}</span>
<!-- 审核中 --> <!-- 审核中 -->
<span v-if="agreementStatus.status === 0"> <span v-if="agreementStatus.status === 0">
若长时间未审核,可联系猎芯对接窗口 若长时间未审核,可联系猎芯对接窗口
</span> </span>
<!-- 审核不通过 --> <!-- 审核不通过 -->
<span v-if="agreementStatus.status === -1"> <span v-if="agreementStatus.status === -1">
...@@ -337,7 +337,7 @@ ...@@ -337,7 +337,7 @@
created() { created() {
this.formInline.inquiry_sn = this.$route.query.inquiry_sn || ''; this.formInline.inquiry_sn = this.$route.query.inquiry_sn || '';
this.formInline.quote_sn = this.$route.query.quote_sn || ''; this.formInline.quote_sn = this.$route.query.quote_sn || '';
this.formInline.purchase_sn = this.$route.query.purchase_sn || ''; this.formInline.purchase_sn = this.$route.query.purchase_sn || '';
this.getData(); this.getData();
}, },
watch: { watch: {
...@@ -345,7 +345,7 @@ ...@@ -345,7 +345,7 @@
if (to.path == '/orderTrackGoods') { if (to.path == '/orderTrackGoods') {
this.formInline.inquiry_sn = this.$route.query.inquiry_sn || ''; this.formInline.inquiry_sn = this.$route.query.inquiry_sn || '';
this.formInline.quote_sn = this.$route.query.quote_sn || ''; this.formInline.quote_sn = this.$route.query.quote_sn || '';
this.formInline.purchase_sn = this.$route.query.purchase_sn || ''; this.formInline.purchase_sn = this.$route.query.purchase_sn || '';
this.getData(); this.getData();
} }
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment