From 04102f7237efefa744090ed7c25f7b5d0807b679 Mon Sep 17 00:00:00 2001
From: quanwei <419654421@qq.com>
Date: Thu, 05 Feb 2026 18:11:57 +0800
Subject: [PATCH] 完成运营中心提现和运营中心权限管理
---
mobile/pages/branch/activity/detail/popup/reg.vue | 10 ++++++----
1 files changed, 6 insertions(+), 4 deletions(-)
diff --git a/mobile/pages/branch/activity/detail/popup/reg.vue b/mobile/pages/branch/activity/detail/popup/reg.vue
index 64711e8..839f23b 100644
--- a/mobile/pages/branch/activity/detail/popup/reg.vue
+++ b/mobile/pages/branch/activity/detail/popup/reg.vue
@@ -14,9 +14,9 @@
<view class="tips f28 p20 radius12 friend" v-if="is_friend"><text class="iconfont icon-gantanhao mr10"></text>您正在帮朋友报名,以下信息请填写您朋友的信息</view> -->
<view class="common-form">报名信息</view>
<view class="item d-s-c">
- <view class="item-name">走访活动编号</view>
- <input type="text" maxlength="30" class="flex-1 f28" placeholder="请输入走访活动编号"
- v-model="formData.real_name" placeholder-class="placeholder" />
+ <view class="item-name">活动编号</view>
+ <input type="text" maxlength="30" class="flex-1 f28" placeholder="请输入活动编号"
+ v-model="formData.activity_number" placeholder-class="placeholder" />
</view>
<view class="item d-s-c">
<view class="item-name">真实姓名</view>
@@ -190,6 +190,7 @@
province_id: 0,
city_id: 0,
region_id: 0,
+ activity_number:''
},
/*尺寸比例*/
ratio: 1,
@@ -264,7 +265,7 @@
},
getRegistrationInformation() {
let self = this;
- self._get('branch.activity/getRegistrationInformation', {}, function(res) {
+ self._get('branch.activity/getRegistrationInformation', {activity_id:self.activityData.activity_id}, function(res) {
if (res.data.registrationInformation) {
let data=res.data.registrationInformation;
self.formData.province_id = data.province_id;
@@ -276,6 +277,7 @@
self.formData.mobile = data.mobile;
self.formData.branch_id = data.branch_id;
self.formData.company = data.company;
+ self.formData.activity_number = data.activity_number;
self.selectCity = res.data.registrationInformation.region;
if (res.data.registrationInformation.branch_name) {
self.branch_name = res.data.registrationInformation.branch_name;
--
Gitblit v1.9.2