From 2d4ca873930d066c05ee5cfeb9d934a04ce19f59 Mon Sep 17 00:00:00 2001 From: KKSU <15274802129@163.com> Date: Fri, 06 Sep 2024 11:04:09 +0800 Subject: [PATCH] 云众医疗 增加经办人 --- src/main/java/cc/mrbird/febs/mall/entity/MallShopApply.java | 5 +++++ src/main/java/cc/mrbird/febs/mall/dto/ShopApplyDto.java | 3 +++ src/main/resources/templates/febs/views/modules/mallMember/shopApplyInfo.html | 7 +++++++ src/main/resources/templates/febs/views/modules/mallMember/shopApply.html | 3 ++- 4 files changed, 17 insertions(+), 1 deletions(-) diff --git a/src/main/java/cc/mrbird/febs/mall/dto/ShopApplyDto.java b/src/main/java/cc/mrbird/febs/mall/dto/ShopApplyDto.java index 19c3ef0..2ebeafc 100644 --- a/src/main/java/cc/mrbird/febs/mall/dto/ShopApplyDto.java +++ b/src/main/java/cc/mrbird/febs/mall/dto/ShopApplyDto.java @@ -14,6 +14,9 @@ @ApiModel(value = "ShopApplyDto", description = "申请通道接口参数接收类") public class ShopApplyDto { + @ApiModelProperty(value = "经办人", example = "123") + private String workMan; + @ApiModelProperty(value = "姓名", example = "123") private String name; diff --git a/src/main/java/cc/mrbird/febs/mall/entity/MallShopApply.java b/src/main/java/cc/mrbird/febs/mall/entity/MallShopApply.java index bbf8d7d..f2cbeb3 100644 --- a/src/main/java/cc/mrbird/febs/mall/entity/MallShopApply.java +++ b/src/main/java/cc/mrbird/febs/mall/entity/MallShopApply.java @@ -20,6 +20,11 @@ private Long memberId; /** + * 经办人 + */ + private String workMan; + + /** * 姓名 */ private String name; diff --git a/src/main/resources/templates/febs/views/modules/mallMember/shopApply.html b/src/main/resources/templates/febs/views/modules/mallMember/shopApply.html index 4c2e331..d7edf53 100644 --- a/src/main/resources/templates/febs/views/modules/mallMember/shopApply.html +++ b/src/main/resources/templates/febs/views/modules/mallMember/shopApply.html @@ -130,7 +130,8 @@ url: ctx + 'admin/mallMember/shopApplyList', cols: [[ {field: 'vipName', title: '会员名称', minWidth: 100}, - {field: 'inviteId', title: '邀请码', minWidth: 100}, + // {field: 'inviteId', title: '邀请码', minWidth: 100}, + {field: 'workMan', title: '经办人', minWidth: 100}, {field: 'name', title: '姓名', minWidth: 100}, {field: 'phone', title: '电话', minWidth: 100}, {field: 'shopName', title: '店铺名称', minWidth: 100}, diff --git a/src/main/resources/templates/febs/views/modules/mallMember/shopApplyInfo.html b/src/main/resources/templates/febs/views/modules/mallMember/shopApplyInfo.html index 70dcd83..0fc6bef 100644 --- a/src/main/resources/templates/febs/views/modules/mallMember/shopApplyInfo.html +++ b/src/main/resources/templates/febs/views/modules/mallMember/shopApplyInfo.html @@ -26,6 +26,12 @@ </div> </div> <div class="layui-form-item"> + <label class="layui-form-label febs-form-item-require">经办人:</label> + <div class="layui-input-block"> + <input type="text" name="workMan" data-th-id="${apply.workMan}" autocomplete="off" class="layui-input" readonly> + </div> + </div> + <div class="layui-form-item"> <label class="layui-form-label febs-form-item-require">姓名:</label> <div class="layui-input-block"> <input type="text" name="name" data-th-id="${apply.name}" autocomplete="off" class="layui-input" readonly> @@ -94,6 +100,7 @@ initUserValue(); function initUserValue() { form.val("shop-apply-detail-form", { + "workMan": apply.workMan, "name": apply.name, "phone": apply.phone, "shopName": apply.shopName, -- Gitblit v1.9.1