From f2aa6f75d70cc7df54bfd0cf33af46fe96401856 Mon Sep 17 00:00:00 2001 From: qingyiay <2386314947@qq.com> Date: 星期四, 12 十月 2023 15:33:04 +0800 Subject: [PATCH] 放空逻辑修改 提煤单状态显示字段修改 --- pages/customer-page/customer-index/customer-index.vue | 23 ++++++++++++++++++++++- 1 files changed, 22 insertions(+), 1 deletions(-) diff --git a/pages/customer-page/customer-index/customer-index.vue b/pages/customer-page/customer-index/customer-index.vue index ccfc926..36f1c8e 100644 --- a/pages/customer-page/customer-index/customer-index.vue +++ b/pages/customer-page/customer-index/customer-index.vue @@ -21,6 +21,8 @@ @click="cardBodyClick(item)"> <view class="first-line"> <view class="dispatch-receive"> + <view class="dispatch-dept">{{ item.deptName }}</view> + <view class="black-bar"></view> <view class="dispatch">{{ item.filedName }}</view> </view> <view class="point-number"> @@ -495,8 +497,27 @@ .dispatch-receive { width: 70%; display: flex; - justify-content: space-between; + justify-content: flex-start; align-items: center; + + .dispatch-dept { + + display: flex; + align-items: center; + } + + .black-bar { + width: 2rpx; + height: 30rpx; + background: #515151; + margin-left: vww(12); + } + + .dispatch { + margin-left: vww(12); + min-width: vww(50); + } + } .point-number { -- Gitblit v1.9.1