فهرست منبع

团队职能恢复自定义功能

htc 4 روز پیش
والد
کامیت
2f919a9ec5
1فایلهای تغییر یافته به همراه9 افزوده شده و 4 حذف شده
  1. 9 4
      pagesPublish/teamTypeMultiple.vue

+ 9 - 4
pagesPublish/teamTypeMultiple.vue

@@ -11,13 +11,13 @@
 					<view class="tip">{{item.remark}}</view>
 				</view>
 			</view>
-			<!-- <div class="list-item adfac" @click="show=true">
+			<view class="list-item adfac" @click="show=true" v-if="znShow">
 				<image :src="imgBase+'dx_not_select.png'"></image>
 				<view class="list-item-info adffc">
-					<view>自定义</view>
+					<view>其他</view>
 					<view class="tip">支持用户自定义</view>
 				</view>
-			</div> -->
+			</view>
 		</view>
 		<view class="zt_btn" @click="confirm">确定</view>
 		<div class="dialog adffc" v-if="show">
@@ -42,6 +42,7 @@
 	export default {
 		data(){
 			return {
+				znShow:false,
 				show:false,
 				type:'',
 				title:'选择团队职能类型',
@@ -52,8 +53,12 @@
 		},
 		onLoad(options) {
 			this.type = options.type;
-			if(this.type==='function') this.getTeamFunctionList()
+			if(this.type==='function'){
+				this.znShow = true;
+				this.getTeamFunctionList()
+			} 
 			else if(this.type==='architecture'){
+				this.znShow = false;
 				this.title = '选择团队模式类型';
 				this.getTeamArchitecturelist()
 			}