Has always been the company in "seeking public traffic life safe, comfortable, environmental protection and convenient" under the guidance of the mission, constantly meet the demand of users, service global transportation business in the process of development, was named "national car" reputation, become the global influence of passenger car manufacturers, at the same time of harvest achievement and honor, also shoulder the carry forward the national brand, achieve industrial powers, feedback mission and responsibility of the society.
Business philosophy - thought to change the world, services to create value
Ideas change the world. To grasp the working train of thought of change consciousness and the innovation of enterprise development, and within the enterprise to carry forward the fighting spirit of constantly striving, pioneering spirit of innovation, the unity of the spirit of learning and help each other in the spirit of solidarity, the spirit of enterprise as an inexhaustible power to continue as a going concern.
Services to create value
With excellent product quality and perfect service system to create value for customers, to achieve customer satisfaction, the second is to customer satisfaction to the outside world continue to trust and attention to enterprise, promote the competitiveness of the enterprise brand, create value for the enterprise.
Market idea - and found that customer demand, to create customer value, to provide quality services
//tab plugins 插件
$(function () {
//选项卡鼠标滑过事件
$('#statetab .tabbtn li').mouseover(function () {
TabSelect("#statetab .tabbtn li", "#statetab .tabcon", "current", $(this))
});
$('#statetab .tabbtn li').eq(0).trigger("mouseover");
//选项卡鼠标滑过事件
$('#clicktab .tabbtn li').click(function () {
TabSelect("#clicktab .tabbtn li", "#clicktab .tabcon", "current", $(this))
});
$('#clicktab .tabbtn li').eq(0).trigger("click");
function TabSelect(tab, con, addClass, obj) {
var $_self = obj;
var $_nav = $(tab);
$_nav.removeClass(addClass),
$_self.addClass(addClass);
var $_index = $_nav.index($_self);
var $_con = $(con);
$_con.hide(),
$_con.eq($_index).show();
}
});