李德林:李嘉诚想挑战谁?
2020-09-30 09:00
浏览:818
ink rel="stylesheet" href="//ent.sina.com.cn/css/470/20120928/style_videolist.css" charset="GBK" />
视频加载中,请稍候...
play
李嘉诚想挑战谁?
向前
向后
cript type="text/javascript" charset="GBK" src="//www.sinaimg.cn/ty/sinaui/scrollpic/scrollpic2012070701.min.js">cript>
cript type="text/javascript" src="//www.sinaimg.cn/dy/js/jquery/jquery-1.7.2.min.js">cript>
cript type="text/javascript" charset="GBK" src="//news.sina.com.cn/js/792/2015-03-13/149/videolist-2.js">cript>
cript type="text/javascript">
var AUTOPLAY = 1;
var ConTIPLAY = 1;
(function() {
var Tool = CommonTool;
var chk = Tool.byId('J_Video_Autoplay');
var ua = navigator.userAgent.toLowerCase();
var isIOS = /\((iPhone|iPad|iPod)/i.test(ua);
if (isIOS) {
console.log(chk.parentNode.style.display);
chk.parentNode.style.display = 'none';
return;
}
chk.parentNode.style.display = '';
var clickcookie = function() {
Tool.bindEvent(chk, 'change',
function() {
var chked = chk.checked;
Tool.writecookie('ArtiVAuto', (chked ? 1 : 0), 24 * 365 * 10, '/', '.sina.com.cn');
});
}
var bycookie = function() {
var coo = Tool.readcookie('ArtiVAuto');
if (coo) {
if (parseInt(coo) == 0) {
chk.checked = false;
AUTOPLAY = 0;
}
}
};
clickcookie();
bycookie();
})();
var firstItem = CommonTool.byClass('J_Play_Item', 'J_Play_List')[0];
var fInfo = firstItem.getAttribute('play-data').split('-');
var fVid = fInfo[0];
var fPid = fInfo[1];
var sinaBokePlayerConfig_o = {
container: "J_Article_Player", //Div容器的id
width: 525,
height: 430,
playerWidth: 525, //宽
playerHeight: 430, //高
autoLoad: 1, //自动加载
autoPlay: AUTOPLAY, //自动播放
as: 0, //广告
pid: fPid,
tjAD: 0, //显示擎天柱广告
tj: 0, //片尾推荐
continuePlayer: 1, //连续播放
casualPlay: 1, //任意拖动视频
head: 0, //播放片头动画
logo: 0, //显示logo
share: 0,
thumbUrl: ""
};
cript>
cript src="//n.sinaimg.cn/finance/fe/player.js">cript>
cript type="text/javascript">
(function() {
var toggle = function(id, hide) {
var e = CommonTool.byId(id);
var par = e.parentNode;
if (hide) {
CommonTool.addClass(par, e.className + '_disabled');
} else {
CommonTool.removeClass(par, e.className + '_disabled');
}
}
var scroll = new ScrollPic();
scroll.scrollContId = "J_Play_List"; //内容容器ID
scroll.arrLeftId = "J_Player_Prev"; //左箭头ID
scroll.arrRightId = "J_Player_Next"; //右箭头ID
scroll.listEvent = "onclick"; //切换事件
scroll.frameWidth = 532; //显示框宽度 **显示框宽度必须是翻页宽度的倍数
scroll.pageWidth = 133 * 3; //翻页宽度
scroll.upright = false; //垂直滚动
scroll.speed = 10; //移动速度(单位毫秒,越小越快)
scroll.space = 15; //每次移动像素(单位px,越大越快)
scroll.autoPlay = false; //自动播放
scroll.autoPlayTime = 5; //自动播放间隔时间(秒)
scroll.circularly = false;
scroll._move = scroll.move;
scroll.move = function(num, quick) {
scroll._move(num, quick);
toggle(scroll.arrRightId, scroll.eof);
toggle(scroll.arrLeftId, scroll.bof);
};
scroll.initialize(); //初始化
toggle(scroll.arrLeftId, scroll.bof);
})();
cript>
cript>
var autoPlayCheck = $("#J_Video_Autoplay")[0].checked;
var autoPlayFlv = 0;
var autoPlayH5 = false;
if(autoPlayCheck){
autoPlayFlv = 1;
var autoPlayH5 = true;
}
var flashConfig = {
url: "", // flash播放器地址,
container : "J_Article_Player",
id: "myMovie",
width: 525,
height: 430,
params : {
allowNetworking : "all",
allowscr-iptaccess : "always",
wmode : "opaque",
allowFullScreen : "true",
quality : "high"
},
attributes: {},
flashvars: {
autoPlay: autoPlayFlv, //是否自动播放
loop: 0,
autoLoad: 1,
thumbUrl: '',
tj: 0,
as: 0
},
h5attr: {
autoPlay: autoPlayH5, //是否自动播放
controls: true, //是否显示控制条
loop: false,
poster: '', //视频加载前欲加载的图片地址,即播放器一开始显示的截图
preload: 'auto'
}
};
var videoList = [
{
video_id: 354833472,
pid:1,
url: 'https://video.sina.com.cn/p/finance/2020-09-28/detail-iivhuipp6991922.d.html',
title:'李嘉诚想挑战谁?'//,
//swfOutsideUrl:"http://you.video.sina.com.cn/api/sinawebApi/outplayrefer.php/video_id=354833472/s.swf"
},
]
cript>
cript>
(function($){
var Play = {
init: function(flashConfig, videoList){
this.flashConfig = flashConfig;
this.videoList = videoList;
this.playVideo = playVideo;
this.prev = this.current = 0;
this.length = this.videoList.length;
this.contNode = $("#J_Video_Autoplay");
this.titleNode = $("#J_Video_Source");
this.playListNode = $("#J_Play_List .J_Play_Item");
if(videoList.length!==1){
//显示小图
CommonTool.byId('J_Play_List_Wrap').style.display='';
}
if(videoList.length<5){
CommonTool.byId('J_Player_Prev').style.display='none';
CommonTool.byId('J_Player_Next').style.display='none';
}
this.initPlayer();
this.bind();
},
bind: function(){
var _this = this;
$("#J_Play_List").on("click", ".J_Play_Item a", function(e){
e.preventDefault();
_this.playCurrent($(this));
});
},
initPlayer: function(){
var _this = this;
this.player = this.playVideo(this.flashConfig);
this.player.init(this.videoList[this.prev]);
this.player.on("playCompleted", function(){
_this.playNext();
});
this.playListNode.eq(0).addClass("selected");
this.titleNode.html(this.videoList[0].title);
},
playCurrent: function($this){
this.prev = this.current;
this.current = $this.parents(".J_Play_Item").index();
this.play(this.prev, this.current);
},
playNext: function(){
if(!this.contNode[0].checked){
return;
}
this.prev = this.current;
if(this.current >= this.length - 1){
return;
}
this.current++;
this.play(this.prev, this.current);
},
play: function(prev, current){
this.player.playVideo(this.videoList[current]);
this.titleNode.html(this.videoList[current].title);
this.playListNode.eq(prev).removeClass("selected");
this.playListNode.eq(current).addClass("selected");
}
}
Play.init(flashConfig, videoList);
})(jQuery);
cript>
“封杀”我们?开玩笑。和记黄埔成都因为捂地、捂盘,成都高新区的金融机构接到禁令,不准给和记黄埔成都融资。现在监管已经对囤地忍无可忍,红头禁令再次将李嘉诚推到了风口浪尖。
无论是和记黄埔成都一番风轻云淡的说辞,还是长实集团对囤地的坚决否认,都没能让李嘉诚撕掉囤地的标签。深陷囤地质疑背后,成都土地只是李嘉诚游戏的冰山一角。
和记黄埔早在2004年就进入成都了,这是李嘉诚在大陆布局的第十四个城市。李嘉诚出手自然是大手笔,以21.35亿的价格在南城拿下1036.47亩土地,一举夺得当时的成都地王。作为和记黄埔在成都的第一号作品,李嘉诚可谓雄心勃勃,规划将项目分为8期建设。
16年过去了,杨过小龙女都重逢了,但和记黄埔成都的项目只开发了6期,地皮价格翻了快20倍。李嘉诚玩儿地产的惯用手法就是囤地。随着开发周期游戏规则的改变,李嘉诚他们囤地的策略其实很简单,就是不断修改所谓的规划设计方案,将项目一拖再拖。
其实,除了成都和记黄埔,北京顺义的一个项目,李嘉诚1993年就是大股东了,可是到2008年才开发第一期,到2018年才开发完,别墅价格已经从当年的每平米2000块涨价到40000块。广州黄埔区的一个项目更夸张,1995年拿地,2020年才拿到部分楼栋的预售证。
囤地捂盘没有金融机构的支持,李嘉诚的项目是不可能玩儿十多二十年的。当地方政府出手斩断金融链条时,李嘉诚早已溜之大吉。和记黄埔成都现在的股东名单已经没有李嘉诚的影子,就在政府出手前两个月,李嘉诚他们已经把项目卖给了他人。
除了成都和记黄埔,那些至今囤地捂盘25年的项目,难道不应该立即行动?
李嘉诚在成都项目中溜之大吉,留给接盘者一地鸡毛。现在问题的关键是,李嘉诚囤地游戏,严重破坏了房地产开发的公平游戏规则,可他的囤地游戏持续多年,为什么能够明目张胆玩儿,谁在支持他?
25年的囤地捂盘,已经不是挑战游戏规则,而是挑战监管的权威,挑战纲纪律法的底线。只有一视同仁的规则,才能推动中国商业文明的进步。面对李嘉诚的土地游戏,也许,老百姓会说:他是田沟里的蚂蟥,有血喝血,无血喝水。