mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-24 05:46:03 +08:00
jiaru caidanzu xuanze
This commit is contained in:
parent
cc65ee3330
commit
f3d4f3a756
@ -32,6 +32,7 @@
|
||||
<th class="text-center">组名称</th>
|
||||
<th class="text-center">icon</th>
|
||||
<th class="text-center">标签</th>
|
||||
<th class="text-center">归属商户</th>
|
||||
<th class="text-center">序列</th>
|
||||
<th class="text-center">描述</th>
|
||||
<th class="text-center">操作</th>
|
||||
@ -44,6 +45,7 @@
|
||||
<td class="text-center">{{menuGroup.name}}</td>
|
||||
<td class="text-center">{{menuGroup.icon}}</td>
|
||||
<td class="text-center">{{menuGroup.label}}</td>
|
||||
<td class="text-center">{{_getChooseStoreTypeName(menuGroup.storeType)}}</td>
|
||||
<td class="text-center">{{menuGroup.seq}}</td>
|
||||
<td class="text-center">{{menuGroup.description}}</td>
|
||||
|
||||
|
||||
@ -56,6 +56,30 @@
|
||||
},
|
||||
_refreshChooseMenuGroupInfo:function(){
|
||||
vc.component.chooseMenuGroupInfo._currentMenuGroupName = "";
|
||||
},
|
||||
_getChooseStoreTypeName: function (_storeTypeCd) {
|
||||
// <option value="800900000001">运营团队</option>
|
||||
// <option value="800900000002">代理商</option>
|
||||
// <option value="800900000003">物业</option>
|
||||
// <option value="800900000004">物流公司</option>
|
||||
// <option value="800900000005">商家</option>
|
||||
// <option value="800900000000">开发团队</option>
|
||||
|
||||
if (_storeTypeCd == '800900000001') {
|
||||
return "运营团队";
|
||||
} else if (_storeTypeCd == '800900000002') {
|
||||
return "代理商";
|
||||
} else if (_storeTypeCd == '800900000003') {
|
||||
return "物业";
|
||||
} else if (_storeTypeCd == '800900000004') {
|
||||
return "物流公司";
|
||||
} else if (_storeTypeCd == '800900000005') {
|
||||
return "商家";
|
||||
} else if (_storeTypeCd == '800900000000') {
|
||||
return "开发团队";
|
||||
} else {
|
||||
return "未知";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user