f6e7f935 by lttnew

文案更改

1 parent c554bd67
...@@ -394,7 +394,7 @@ export function getHistoryByRelateId(rId) { ...@@ -394,7 +394,7 @@ export function getHistoryByRelateId(rId) {
394 method: 'get', 394 method: 'get',
395 }) 395 })
396 } 396 }
397 // 查询团体会员信息列表 397 // 查询单位会员信息列表
398 export function getGroupVipList(query) { 398 export function getGroupVipList(query) {
399 return request({ 399 return request({
400 url: '/member/info/selectPageList', 400 url: '/member/info/selectPageList',
...@@ -402,7 +402,7 @@ export function getGroupVipList(query) { ...@@ -402,7 +402,7 @@ export function getGroupVipList(query) {
402 params: query 402 params: query
403 }) 403 })
404 } 404 }
405 // 查询团体会员 全部会员数,有效会员数 405 // 查询单位会员 全部会员数,有效会员数
406 export function getMemberCountInfo(query) { 406 export function getMemberCountInfo(query) {
407 return request({ 407 return request({
408 url: '/member/info/getMemberCountInfo', 408 url: '/member/info/getMemberCountInfo',
...@@ -456,7 +456,7 @@ export function getTransferList(data) { ...@@ -456,7 +456,7 @@ export function getTransferList(data) {
456 params: data 456 params: data
457 }) 457 })
458 } 458 }
459 // 查询团体会员信息列表 459 // 查询单位会员信息列表
460 export function getGroupList(params) { 460 export function getGroupList(params) {
461 return request({ 461 return request({
462 url: `/member/certified/verifyList`, 462 url: `/member/certified/verifyList`,
...@@ -1296,7 +1296,7 @@ export function checkPersonByPersonId(perId) { ...@@ -1296,7 +1296,7 @@ export function checkPersonByPersonId(perId) {
1296 method: 'get' 1296 method: 'get'
1297 }) 1297 })
1298 } 1298 }
1299 // 获取团体会员优惠政策 1299 // 获取单位会员优惠政策
1300 export function canUseDiscount(params) { 1300 export function canUseDiscount(params) {
1301 return request({ 1301 return request({
1302 url: `/system/certifiedNew/canUseDiscount`, 1302 url: `/system/certifiedNew/canUseDiscount`,
...@@ -1304,7 +1304,7 @@ export function canUseDiscount(params) { ...@@ -1304,7 +1304,7 @@ export function canUseDiscount(params) {
1304 params 1304 params
1305 }) 1305 })
1306 } 1306 }
1307 // 获取团体会员一年缴费价格 1307 // 获取单位会员一年缴费价格
1308 export function getMyMemberCertUnitFee(params) { 1308 export function getMyMemberCertUnitFee(params) {
1309 return request({ 1309 return request({
1310 url: `/system/certifiedNew/getMyMemberCertUnitFee`, 1310 url: `/system/certifiedNew/getMyMemberCertUnitFee`,
...@@ -1320,7 +1320,7 @@ export function checkBusinessLicense(data) { ...@@ -1320,7 +1320,7 @@ export function checkBusinessLicense(data) {
1320 }) 1320 })
1321 } 1321 }
1322 1322
1323 // 生成团体订单renewYear 1323 // 生成单位订单renewYear
1324 export function certifiedNew(renewYear) { 1324 export function certifiedNew(renewYear) {
1325 return request({ 1325 return request({
1326 url: `/system/certifiedNew/commit?renewYear=${renewYear}`, 1326 url: `/system/certifiedNew/commit?renewYear=${renewYear}`,
......
...@@ -9,12 +9,12 @@ ...@@ -9,12 +9,12 @@
9 <view style="width: 70%;"> 9 <view style="width: 70%;">
10 <view>{{n.memberName}} 10 <view>{{n.memberName}}
11 <view class="date"> 11 <view class="date">
12 团体类型: 12 单位类型:
13 <text v-if="n.deptType == 2">一级协会</text> 13 <text v-if="n.deptType == 2">一级协会</text>
14 <text v-if="n.deptType == 3">直属协会</text> 14 <text v-if="n.deptType == 3">直属协会</text>
15 <text v-if="n.deptType == 4">二级协会</text> 15 <text v-if="n.deptType == 4">二级协会</text>
16 <text v-if="n.deptType == 5">三级协会</text> 16 <text v-if="n.deptType == 5">三级协会</text>
17 <text v-if="n.deptType == 6">职业性团体会员</text> 17 <text v-if="n.deptType == 6">职业性单位会员</text>
18 18
19 </view> 19 </view>
20 <view class="date">原有效期:<text>{{n.validityTime?.slice(0,10)}}</text></view> 20 <view class="date">原有效期:<text>{{n.validityTime?.slice(0,10)}}</text></view>
......
...@@ -36,7 +36,7 @@ ...@@ -36,7 +36,7 @@
36 <text v-if="n.deptType==3">直属协会</text> 36 <text v-if="n.deptType==3">直属协会</text>
37 <text v-if="n.deptType==4">二级协会</text> 37 <text v-if="n.deptType==4">二级协会</text>
38 <text v-if="n.deptType==5">三级协会</text> 38 <text v-if="n.deptType==5">三级协会</text>
39 <text v-if="n.deptType==6">职业性团体会员</text> 39 <text v-if="n.deptType==6">职业性单位会员</text>
40 </view> 40 </view>
41 <view class="flexbox" style="background-color: rgba(244, 249, 253, 1);padding:10rpx;"> 41 <view class="flexbox" style="background-color: rgba(244, 249, 253, 1);padding:10rpx;">
42 <view> 42 <view>
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
6 </uni-easyinput> 6 </uni-easyinput>
7 </view> 7 </view>
8 <view class="vipData"> 8 <view class="vipData">
9 <view>变更团体数合计: <text>{{statistical.personCount}}</text></view> 9 <view>变更单位数合计: <text>{{statistical.personCount}}</text></view>
10 </view> 10 </view>
11 <view class="appList"> 11 <view class="appList">
12 <view class="appItem" v-for="(item,index) in list" :key="index"> 12 <view class="appItem" v-for="(item,index) in list" :key="index">
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
25 </view> 25 </view>
26 <view class="flexbox" @click="goDetail(item)"> 26 <view class="flexbox" @click="goDetail(item)">
27 <view> 27 <view>
28 变更团体 28 变更单位
29 <view> 29 <view>
30 <text class="text-danger">{{item.count}}</text> 30 <text class="text-danger">{{item.count}}</text>
31 </view> 31 </view>
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
3 3
4 <view class="searchbar"> 4 <view class="searchbar">
5 <uni-easyinput placeholderStyle="font-size:30rpx" :input-border="false" prefixIcon="search" 5 <uni-easyinput placeholderStyle="font-size:30rpx" :input-border="false" prefixIcon="search"
6 v-model="query.name" placeholder="搜索团体会员名称" @blur="getSonList" @clear="getSonList"> 6 v-model="query.name" placeholder="搜索单位会员名称" @blur="getSonList" @clear="getSonList">
7 </uni-easyinput> 7 </uni-easyinput>
8 <view class="invertedbtn-red" @click="getSonList">搜索</view> 8 <view class="invertedbtn-red" @click="getSonList">搜索</view>
9 </view> 9 </view>
...@@ -20,12 +20,12 @@ ...@@ -20,12 +20,12 @@
20 <text v-if="n.validityDate">{{n.validityDate?.slice(0,10)}}</text> 20 <text v-if="n.validityDate">{{n.validityDate?.slice(0,10)}}</text>
21 <text v-else>--</text> 21 <text v-else>--</text>
22 </view> 22 </view>
23 <view class="date w50">团体类型 23 <view class="date w50">单位类型
24 <text v-if="n.deptType == 2">一级协会</text> 24 <text v-if="n.deptType == 2">一级协会</text>
25 <text v-if="n.deptType == 3">直属协会</text> 25 <text v-if="n.deptType == 3">直属协会</text>
26 <text v-if="n.deptType == 4">二级协会</text> 26 <text v-if="n.deptType == 4">二级协会</text>
27 <text v-if="n.deptType == 5">三级协会</text> 27 <text v-if="n.deptType == 5">三级协会</text>
28 <text v-if="n.deptType == 6">职业性团体会员</text> 28 <text v-if="n.deptType == 6">职业性单位会员</text>
29 </view> 29 </view>
30 </view> 30 </view>
31 </view> 31 </view>
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
8 <text>{{n.memCode}}</text> 8 <text>{{n.memCode}}</text>
9 </view> 9 </view>
10 <view> 10 <view>
11 <label>团体会员名称:</label> 11 <label>单位会员名称:</label>
12 <view> 12 <view>
13 {{n.oldName}} 13 {{n.oldName}}
14 <text class="text-primary" v-if="n.oldName!=n.newName">变更为 </text> 14 <text class="text-primary" v-if="n.oldName!=n.newName">变更为 </text>
......
...@@ -78,7 +78,7 @@ ...@@ -78,7 +78,7 @@
78 onLoad(() => { 78 onLoad(() => {
79 userType.value = app.globalData.userType 79 userType.value = app.globalData.userType
80 deptType.value = app.globalData.deptType 80 deptType.value = app.globalData.deptType
81 // 部门类型 1:中跆协 2:省 3:直属 4:市 5:区 6: 团体 81 // 部门类型 1:中跆协 2:省 3:直属 4:市 5:区 6: 单位
82 if (deptType.value == 2 || deptType.value == 3) { 82 if (deptType.value == 2 || deptType.value == 3) {
83 // navs.value = ['道馆', '三级协会', '二级协会'] 83 // navs.value = ['道馆', '三级协会', '二级协会']
84 navs.value = ['道馆', '二级协会'] 84 navs.value = ['道馆', '二级协会']
......
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
17 {{n.memCode}} 17 {{n.memCode}}
18 </view> 18 </view>
19 <view> 19 <view>
20 <label>团体会员名称:</label> 20 <label>单位会员名称:</label>
21 {{n.oldName}} 21 {{n.oldName}}
22 <text class="text-primary" @click="handleChange(n,'newName')">变更 </text> 22 <text class="text-primary" @click="handleChange(n,'newName')">变更 </text>
23 <text class="text-danger" v-if="n.oldName!=n.newName">{{ n.newName }}</text> 23 <text class="text-danger" v-if="n.oldName!=n.newName">{{ n.newName }}</text>
...@@ -63,7 +63,7 @@ ...@@ -63,7 +63,7 @@
63 <view class="h3 text-center mb30">信息变更</view> 63 <view class="h3 text-center mb30">信息变更</view>
64 <uni-forms class="mt30" label-width="100"> 64 <uni-forms class="mt30" label-width="100">
65 <view style="min-height: 30vh"> 65 <view style="min-height: 30vh">
66 <uni-forms-item label="团体会员名称:" v-show="type=='newName'"> 66 <uni-forms-item label="单位会员名称:" v-show="type=='newName'">
67 <uni-easyinput v-model="form.newName" placeholder="请输入" /> 67 <uni-easyinput v-model="form.newName" placeholder="请输入" />
68 </uni-forms-item> 68 </uni-forms-item>
69 </view> 69 </view>
...@@ -80,7 +80,7 @@ ...@@ -80,7 +80,7 @@
80 <view class="popBody"> 80 <view class="popBody">
81 <view class="searchbar"> 81 <view class="searchbar">
82 <uni-easyinput placeholderStyle="font-size:30rpx" :input-border="false" prefixIcon="search" 82 <uni-easyinput placeholderStyle="font-size:30rpx" :input-border="false" prefixIcon="search"
83 v-model="query.name" placeholder="搜索团体会员名称" @blur="getSonList" @clear="getSonList"> 83 v-model="query.name" placeholder="搜索单位会员名称" @blur="getSonList" @clear="getSonList">
84 </uni-easyinput> 84 </uni-easyinput>
85 <view class="invertedbtn-red" @click="getSonList">搜索</view> 85 <view class="invertedbtn-red" @click="getSonList">搜索</view>
86 </view> 86 </view>
...@@ -100,12 +100,12 @@ ...@@ -100,12 +100,12 @@
100 <view class="date" v-if="n.validityDate">到期时间 100 <view class="date" v-if="n.validityDate">到期时间
101 <text>{{n.validityDate?.slice(0,10)}}</text> 101 <text>{{n.validityDate?.slice(0,10)}}</text>
102 </view> 102 </view>
103 <view class="date">团体类型 103 <view class="date">单位类型
104 <text v-if="n.deptType == 2">一级协会</text> 104 <text v-if="n.deptType == 2">一级协会</text>
105 <text v-if="n.deptType == 3">直属协会</text> 105 <text v-if="n.deptType == 3">直属协会</text>
106 <text v-if="n.deptType == 4">二级协会</text> 106 <text v-if="n.deptType == 4">二级协会</text>
107 <text v-if="n.deptType == 5">三级协会</text> 107 <text v-if="n.deptType == 5">三级协会</text>
108 <text v-if="n.deptType == 6">职业性团体会员</text> 108 <text v-if="n.deptType == 6">职业性单位会员</text>
109 </view> 109 </view>
110 </view> 110 </view>
111 </view> 111 </view>
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
2 <view class="hasfixedbottom"> 2 <view class="hasfixedbottom">
3 <view class="searchbar"> 3 <view class="searchbar">
4 <uni-easyinput placeholderStyle="font-size:30rpx" :input-border="false" prefixIcon="search" 4 <uni-easyinput placeholderStyle="font-size:30rpx" :input-border="false" prefixIcon="search"
5 v-model="queryParams.name" placeholder="团体会员名称" @blur="getList()" @clear="getList()"> 5 v-model="queryParams.name" placeholder="单位会员名称" @blur="getList()" @clear="getList()">
6 </uni-easyinput> 6 </uni-easyinput>
7 </view> 7 </view>
8 <view class="indexboxre"> 8 <view class="indexboxre">
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
22 <text v-if="n.deptType == 3">直属协会</text> 22 <text v-if="n.deptType == 3">直属协会</text>
23 <text v-if="n.deptType == 4">二级协会</text> 23 <text v-if="n.deptType == 4">二级协会</text>
24 <text v-if="n.deptType == 5">三级协会</text> 24 <text v-if="n.deptType == 5">三级协会</text>
25 <text v-if="n.deptType == 6">职业性团体会员</text> 25 <text v-if="n.deptType == 6">职业性单位会员</text>
26 </view> 26 </view>
27 <view class="date">到期时间:{{n.validityDate?.slice(0,10)}}</view> 27 <view class="date">到期时间:{{n.validityDate?.slice(0,10)}}</view>
28 </view> 28 </view>
...@@ -95,7 +95,7 @@ ...@@ -95,7 +95,7 @@
95 } 95 }
96 if (arr.length == 0) { 96 if (arr.length == 0) {
97 uni.showToast({ 97 uni.showToast({
98 title: "请选择团体", 98 title: "请选择单位",
99 icon: "none" 99 icon: "none"
100 }) 100 })
101 return 101 return
......
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
15 </view> 15 </view>
16 <view class="name">{{n.realName}}</view> 16 <view class="name">{{n.realName}}</view>
17 <view class="date"> 17 <view class="date">
18 所属团体: {{n.memName}} 18 所属单位: {{n.memName}}
19 </view> 19 </view>
20 20
21 <view class="flexbox mtb30"> 21 <view class="flexbox mtb30">
......
...@@ -409,7 +409,7 @@ ...@@ -409,7 +409,7 @@
409 function payTheFees() { 409 function payTheFees() {
410 if (!form.value.name) { 410 if (!form.value.name) {
411 uni.showToast({ 411 uni.showToast({
412 title: `请先完善团体信息`, 412 title: `请先完善单位信息`,
413 icon: 'none' 413 icon: 'none'
414 }); 414 });
415 return; // 新增:防止无名称时跳转 415 return; // 新增:防止无名称时跳转
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
11 </view> 11 </view>
12 <view class="rMainBox"> 12 <view class="rMainBox">
13 <uni-list :border="false" class="myList"> 13 <uni-list :border="false" class="myList">
14 <uni-list-item thumb="/static/user_icon01.png" title="团体信息" showArrow clickable @click="goPath('/myCenter/teamInfo')"> 14 <uni-list-item thumb="/static/user_icon01.png" title="单位信息" showArrow clickable @click="goPath('/myCenter/teamInfo')">
15 </uni-list-item> 15 </uni-list-item>
16 16
17 <uni-list-item thumb="/static/user_icon02.png" title="会员认证" showArrow clickable @click="goPath('/myCenter/auth')"> 17 <uni-list-item thumb="/static/user_icon02.png" title="会员认证" showArrow clickable @click="goPath('/myCenter/auth')">
......
...@@ -530,7 +530,7 @@ ...@@ -530,7 +530,7 @@
530 }, { 530 }, {
531 "path": "apply/applyDetail", 531 "path": "apply/applyDetail",
532 "style": { 532 "style": {
533 "navigationBarTitleText": "团体会员审核详情", 533 "navigationBarTitleText": "单位会员审核详情",
534 "enablePullDownRefresh": false 534 "enablePullDownRefresh": false
535 } 535 }
536 536
...@@ -544,7 +544,7 @@ ...@@ -544,7 +544,7 @@
544 }, { 544 }, {
545 "path": "list", 545 "path": "list",
546 "style": { 546 "style": {
547 "navigationBarTitleText": "团体会员", 547 "navigationBarTitleText": "单位会员",
548 "enablePullDownRefresh": false 548 "enablePullDownRefresh": false
549 } 549 }
550 550
...@@ -558,7 +558,7 @@ ...@@ -558,7 +558,7 @@
558 }, { 558 }, {
559 "path": "feeBill", 559 "path": "feeBill",
560 "style": { 560 "style": {
561 "navigationBarTitleText": "团体会员缴费单", 561 "navigationBarTitleText": "单位会员缴费单",
562 "enablePullDownRefresh": false 562 "enablePullDownRefresh": false
563 } 563 }
564 }, { 564 }, {
...@@ -571,7 +571,7 @@ ...@@ -571,7 +571,7 @@
571 }, { 571 }, {
572 "path": "apply/applyList", 572 "path": "apply/applyList",
573 "style": { 573 "style": {
574 "navigationBarTitleText": "团体会员审核", 574 "navigationBarTitleText": "单位会员审核",
575 "enablePullDownRefresh": false 575 "enablePullDownRefresh": false
576 } 576 }
577 577
...@@ -585,28 +585,28 @@ ...@@ -585,28 +585,28 @@
585 { 585 {
586 "path": "changeGroupInfo", 586 "path": "changeGroupInfo",
587 "style": { 587 "style": {
588 "navigationBarTitleText": "团体会员信息修改", 588 "navigationBarTitleText": "单位会员信息修改",
589 "enablePullDownRefresh": false 589 "enablePullDownRefresh": false
590 } 590 }
591 }, 591 },
592 { 592 {
593 "path": "changeGroupAudit", 593 "path": "changeGroupAudit",
594 "style": { 594 "style": {
595 "navigationBarTitleText": "团体信息变更审核", 595 "navigationBarTitleText": "单位信息变更审核",
596 "enablePullDownRefresh": false 596 "enablePullDownRefresh": false
597 } 597 }
598 }, 598 },
599 { 599 {
600 "path": "changeGroupDetail", 600 "path": "changeGroupDetail",
601 "style": { 601 "style": {
602 "navigationBarTitleText": "团体信息变更详情", 602 "navigationBarTitleText": "单位信息变更详情",
603 "enablePullDownRefresh": false 603 "enablePullDownRefresh": false
604 } 604 }
605 }, 605 },
606 { 606 {
607 "path": "newChange", 607 "path": "newChange",
608 "style": { 608 "style": {
609 "navigationBarTitleText": "新建团体信息变更", 609 "navigationBarTitleText": "新建单位信息变更",
610 "enablePullDownRefresh": false 610 "enablePullDownRefresh": false
611 } 611 }
612 }, 612 },
...@@ -757,7 +757,7 @@ ...@@ -757,7 +757,7 @@
757 { 757 {
758 "path": "teamInfo", 758 "path": "teamInfo",
759 "style": { 759 "style": {
760 "navigationBarTitleText": "团体信息", 760 "navigationBarTitleText": "单位信息",
761 "enablePullDownRefresh": false 761 "enablePullDownRefresh": false
762 } 762 }
763 }, 763 },
...@@ -799,7 +799,7 @@ ...@@ -799,7 +799,7 @@
799 { 799 {
800 "path": "perfect", 800 "path": "perfect",
801 "style": { 801 "style": {
802 "navigationBarTitleText": "团体会员缴费", 802 "navigationBarTitleText": "单位会员缴费",
803 "enablePullDownRefresh": false 803 "enablePullDownRefresh": false
804 } 804 }
805 }, 805 },
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
22 </view> 22 </view>
23 <view class="girdBox" v-if="userType=='2'"> 23 <view class="girdBox" v-if="userType=='2'">
24 <view @click="goPath('/group/feeBill')"> 24 <view @click="goPath('/group/feeBill')">
25 <image :src="config.baseUrl_api+'/fs/static/icon/17.png'" />团体会员缴费单 25 <image :src="config.baseUrl_api+'/fs/static/icon/17.png'" />单位会员缴费单
26 </view> 26 </view>
27 <view @click="goPath('/level/approval')"> 27 <view @click="goPath('/level/approval')">
28 <image :src="config.baseUrl_api+'/fs/static/icon/3.png'" />级位考试审核 28 <image :src="config.baseUrl_api+'/fs/static/icon/3.png'" />级位考试审核
......
...@@ -51,7 +51,7 @@ ...@@ -51,7 +51,7 @@
51 <uni-list-item title="会员编号" :rightText="form.perCode" /> 51 <uni-list-item title="会员编号" :rightText="form.perCode" />
52 <uni-list-item title="所属一级协会" :rightText="form.topAssName" /> 52 <uni-list-item title="所属一级协会" :rightText="form.topAssName" />
53 <uni-list-item title="所属地区协会" :rightText="form.areaAssName" /> 53 <uni-list-item title="所属地区协会" :rightText="form.areaAssName" />
54 <uni-list-item title="注册团体会员" :rightText="form.memName" /> 54 <uni-list-item title="注册单位会员" :rightText="form.memName" />
55 <uni-list-item title="缴费日期" :rightText="form.payDate||'--'" /> 55 <uni-list-item title="缴费日期" :rightText="form.payDate||'--'" />
56 <uni-list-item title="出生日期" :rightText="form.birth?.slice(0,10)" /> 56 <uni-list-item title="出生日期" :rightText="form.birth?.slice(0,10)" />
57 <uni-list-item title="手机号码" :rightText="form.phone" /> 57 <uni-list-item title="手机号码" :rightText="form.phone" />
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!