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