From 8a99ea72de8c40d0c9871a0d6559920fcc929a54 Mon Sep 17 00:00:00 2001 From: Helius <wangdoubleone@gmail.com> Date: Wed, 23 Dec 2020 20:48:35 +0800 Subject: [PATCH] modify --- zq-erp/src/main/resources/templates/views/admin/hive/beautySalon/vip.html | 16 +++++++++++++++- 1 files changed, 15 insertions(+), 1 deletions(-) diff --git a/zq-erp/src/main/resources/templates/views/admin/hive/beautySalon/vip.html b/zq-erp/src/main/resources/templates/views/admin/hive/beautySalon/vip.html index 001b3c0..52b161d 100644 --- a/zq-erp/src/main/resources/templates/views/admin/hive/beautySalon/vip.html +++ b/zq-erp/src/main/resources/templates/views/admin/hive/beautySalon/vip.html @@ -95,6 +95,14 @@ .el-autocomplete { display: block !important; } + + .vip-info { + padding: 30px 20px; + } + + .vip-info p { + line-height: 30px; + } </style> </head> @@ -182,7 +190,7 @@ <el-main style="background-color: white; margin-right: 15px; padding: 20px 30px;"> <el-tabs v-model="activeName" type="card" @tab-click="tabHandleClick"> <el-tab-pane label="会员信息" name="vipInfo"> - <el-row> + <el-row class="vip-info"> <el-col :span="10"> <p>生日 : {{vipInfo.birthday1}}</p> <p>会员状态 : {{vipInfo.vipState}}</p> @@ -734,6 +742,9 @@ // 请求会员信息 vipInfoFn(key) { let _this = this; + if (!key) { + key = _this.vipInfo.phone; + } // 请求用户信息 $.AjaxProxy({ p: { @@ -763,6 +774,9 @@ _this.tags.tags = data.labels; _this.projTableQueryFn(); + _this.serviceOrderTableQueryFn(); + _this.orderTableDataQueryFn(); + _this.skinCheckTableDataQueryFn(); }); }, addLabelFn(key) { -- Gitblit v1.9.1