123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- <div class="text-center"><img src="{php echo tomedia('headimg_'.$_W['account']['acid'].'.jpg')}?time={php echo time()}" class="head-logo"></div>
- <div class="text-center account-name">{$_W['account']['name']}</div>
-
- {if $_W['account']['type'] == ACCOUNT_TYPE_OFFCIAL_NORMAL || $_W['account']['type'] == ACCOUNT_TYPE_OFFCIAL_AUTH}
- <div class="text-center">
- {if $_W['account']['level'] == 1 || $_W['account']['level'] == 3}
- <span class="label label-primary">订阅号</span>
- {if $_W['account']['level'] == 3}
- <span class="label label-primary">已认证</span>
- {/if}
- {/if}
-
- {if $_W['account']['level'] == 2 || $_W['account']['level'] == 4}
- <span class="label label-primary">服务号</span>
- {if $_W['account']['level'] == 4}
- <span class="label label-primary">已认证</span>
- {/if}
- {/if}
-
- {if $_W['uniaccount']['isconnect'] == 0}
- <span class="label label-danger" data-toggle="popover">未接入</span>
- <script>
- $(function(){
- var url = "{url 'account/post' array('uniacid' => $_W['account']['uniacid'], 'acid' => $_W['acid'])}";
- $('[data-toggle="popover"]').popover({
- trigger: 'manual',
- html: true,
- placement: 'bottom',
- content: '<i class="wi wi-warning-sign"></i>未接入微信公众号' +
- '<a href="' +
- url +
- '">立即接入</a>'
- }).on("mouseenter", function() {
- var _this = this;
- $(this).popover("show");
- $(this).siblings(".popover").on("mouseleave", function() {
- $(_this).popover('hide');
- });
- }).on("mouseleave", function() {
- var _this = this;
- setTimeout(function() {
- if(!$(".popover:hover").length) {
- $(_this).popover("hide")
- }
- }, 100);
- });
- });
- </script>
- {/if}
- </div>
- <div class="text-center operate">
- <a href="{php echo url('utility/emulator');}" target="_blank">
- <i class="wi wi-iphone" data-toggle="tooltip" data-placement="bottom" title="模拟测试"></i>
- </a>
- {if uni_permission($_W['uid'], $_W['uniacid']) != ACCOUNT_MANAGE_NAME_OPERATOR}
- <a href="{php echo url('account/post', array('uniacid' => $_W['account']['uniacid'], 'acid' => $_W['acid'], 'account_type' => $_W['account']['type']))}" data-toggle="tooltip" data-placement="bottom" title="公众号设置">
- <i class="wi wi-appsetting"></i>
- </a>
- {/if}
- <a href="{php echo url('account/display', array('type' => 'all'))}" data-toggle="tooltip" data-placement="bottom" title="切换平台">
- <i class="wi wi-changing-over"></i>
- </a>
- </div>
-
- {elseif $_W['account']['type'] == ACCOUNT_TYPE_XZAPP_NORMAL || $_W['account']['type'] == ACCOUNT_TYPE_XZAPP_AUTH}
- <div class="text-center">
- {if $_W['account']['level'] == 1}
- <span class="label label-primary">个人</span>
- {elseif $_W['account']['level'] == 2}
- <span class="label label-primary">媒体</span>
- {elseif $_W['account']['level'] == 3}
- <span class="label label-primary">企业</span>
- {elseif $_W['account']['level'] == 4}
- <span class="label label-primary">政府</span>
- {elseif $_W['account']['level'] == 5}
- <span class="label label-primary">其他组织</span>
- {/if}
-
- {if $_W['uniaccount']['isconnect'] == 0}
- <span class="label label-danger" data-toggle="popover">未接入</span>
- <script>
- $(function(){
- var url = "{url 'account/post' array('uniacid' => $_W['account']['uniacid'], 'acid' => $_W['acid'], 'account_type' => ACCOUNT_TYPE_XZAPP_NORMAL)}";
- $('[data-toggle="popover"]').popover({
- trigger: 'manual',
- html: true,
- placement: 'bottom',
- content: '<i class="wi wi-warning-sign"></i>未接入熊掌号' +
- '<a href="' +
- url +
- '">立即接入</a>'
- }).on("mouseenter", function() {
- var _this = this;
- $(this).popover("show");
- $(this).siblings(".popover").on("mouseleave", function() {
- $(_this).popover('hide');
- });
- }).on("mouseleave", function() {
- var _this = this;
- setTimeout(function() {
- if(!$(".popover:hover").length) {
- $(_this).popover("hide")
- }
- }, 100);
- });
- });
- </script>
- {/if}
- </div>
-
- <div class="text-center operate">
- {if uni_permission($_W['uid'], $_W['uniacid']) != ACCOUNT_MANAGE_NAME_OPERATOR}
- <a href="{php echo url('account/post', array('uniacid' => $_W['account']['uniacid'], 'acid' => $_W['acid'], 'account_type' => ACCOUNT_TYPE_XZAPP_NORMAL))}" title="熊掌号设置">
- <i class="wi wi-appsetting"></i>
- </a>
- {/if}
-
- <a href="{php echo url('account/display', array('type' => 'all'))}" data-toggle="tooltip" data-placement="bottom" title="切换平台">
- <i class="wi wi-changing-over"></i>
- </a>
- </div>
-
- {/if}
|