Commit 7e603637 by 李宁

1

1 parent 29d9f600
......@@ -106,9 +106,13 @@
<p class="mt-2 text-neutral-700">{{ orderMemo || '--' }}</p>
</div>
<div v-if="orderAddress" class="col-span-2">
<label class="text-neutral-500 text-sm">联系地址</label>
<label class="text-neutral-500 text-sm">安装地址</label>
<p class="mt-2 text-neutral-700">{{ orderAddress || '--' }}</p>
</div>
<div v-if="companyName" class="col-span-2">
<label class="text-neutral-500 text-sm">集团名称</label>
<p class="mt-2 text-neutral-700">{{ companyName || '--' }}</p>
</div>
</div>
</el-card>
......@@ -491,6 +495,15 @@ const orderAddress = computed(() => {
return JSON.parse(p.orderContent).address
})
const companyName = computed(() => {
let p = props.order
if(!p.orderContent){
return ''
}
return JSON.parse(p.orderContent).companyName
})
// 方法
// 状态样式映射 - 使用浅色背景样式(与订单监控页保持一致)
......
......@@ -243,6 +243,7 @@
<el-option label="20 条/页" :value="20" />
<el-option label="50 条/页" :value="50" />
<el-option label="100 条/页" :value="100" />
<el-option label="200 条/页" :value="200" />
</el-select>
</div>
<el-pagination
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!