MicroCommunityWeb/public/components/community/cityAreaTree/cityAreaTree.html
2025-03-08 11:54:49 +08:00

18 lines
903 B
HTML

<div class="bg-white margin-top-xs padding border-radius">
<div class=" ">
<button type="button" v-if="cityAreaTreeInfo.curCityArea.areaLevel != '303'" class="btn btn-white btn-sm" v-on:click="_openAddCityAreaModal()" >
添加
</button>
<button type="button" class="btn btn-white btn-sm" v-if="cityAreaTreeInfo.curCityArea.areaCode != '0'" v-on:click="_openEditCityAreaTreeModel()" >
修改
</button>
<button type="button" class="btn btn-white btn-sm" v-if="cityAreaTreeInfo.curCityArea.areaCode != '0'" v-on:click="_openDeleteCityAreaTreeModel()" >
删除
</button>
</div>
<div id="jstree_org" class="margin-top">
</div>
<vc:create path="community/addCityArea"></vc:create>
<vc:create path="community/editCityArea"></vc:create>
<vc:create path="community/deleteCityArea"></vc:create>
</div>