From a3c5d24545f6c95775cbfda19b1d5601403405d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=A8=E6=99=93=E7=90=AA?= Date: Tue, 16 Aug 2022 18:06:53 +0800 Subject: [PATCH] =?UTF-8?q?app=20=E4=B8=80=E5=8D=A1=E9=80=9A=E6=B5=81?= =?UTF-8?q?=E6=B0=B4=20=E8=AF=A6=E6=83=85=E5=9B=9E=E6=98=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../pages/MealCardRunTab/list.vue | 109 ++++++++++++++++-- 1 file changed, 100 insertions(+), 9 deletions(-) diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/MealCardRunTab/list.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/MealCardRunTab/list.vue index bdcdaf117..ca019ddab 100644 --- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/MealCardRunTab/list.vue +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/MealCardRunTab/list.vue @@ -10,19 +10,93 @@ - - - {{item.bigGroup}} - + + + + + {{item.bigGroup}} + + + {{item.flowtype||"--"}} + + {{item.centralTm||"--"}} + + + + {{item.flowamount}} + + + + + 学生卡账号 + {{item.accountNo}} + + + 学生卡姓名 + {{item.accountName}} + + + 部门名称 + {{item.depName}} + + + 身份证号 + {{item.personId}} + + + 身份名称 + {{item.identiName}} + + + 流水类型 + {{item.flowtype}} + + + 交易金额 + {{item.flowamount}} + + + 余 额 + {{item.balance}} + + + 卡 号 + {{item.cardNo}} + + + 中心时间 + {{item.centralTm}} + + + 中心序号 + {{item.centralNo}} + + + 发生时间 + {{item.occurTime}} + + + 节点名称 + {{item.node}} + + + 营业大组名称 + {{item.bigGroup}} + + + 营业小组名称 + {{item.smallGroup}} + + + 营业餐次 + {{item.seg}} + - {{item.flowtype||"--"}} + Pos机序号 + {{item.pos}} - {{item.occurTime||"--"}} - - {{item.flowamount}} - @@ -174,6 +248,15 @@ this.isReset = false this.searchChange() }, + + itemClick(item){ + this.data = this.data.map(item1=>{ + if(item1.Id == item.Id){ + item.detailVisiable = true + } + return item1 + }) + } }, computed: { @@ -236,4 +319,12 @@ overflow: hidden; white-space: nowrap; } + + .detail{ + font-size: 12px; + .title{ + display: inline-block; + width: 100px; + } + }