Commit 36ad5362 authored by 章建武's avatar 章建武

dep

parent 4590ac77
<?php
/**
* 就业岗位控制器
*/
namespace app\admin\controller;
use app\common\model\Attachment;
use app\common\model\JoinUs;
use think\Request;
use app\common\model\Join;
use app\common\validate\JoinValidate;
class JoinusController extends Controller
{
//列表
public function index(Request $request, JoinUs $model)
{
$param = $request->param();
$model = $model->scope('where', $param);
$where = ['status'=>0];
$data = $model->where($where)->paginate($this->admin['per_page'], false, ['query' => $request->get()]);
foreach ($data as &$v){
$v['language_type'] = $v['language_type'] === 1 ? '英语' : '中文';
$v['created_at'] = $v['created_at'] ? date('Y-m-d H:i:s',$v['created_at']) : '';
}
//关键词,排序等赋值
$this->assign($request->get());
$this->assign([
'data' => $data,
'page' => $data->render(),
'total' => $data->total(),
]);
return $this->fetch();
}
//添加
public function add(Request $request, JoinUs $model, JoinValidate $validate)
{
if ($request->isPost()) {
$param = $request->param();
$param['created_at'] = time();
$param['release_time'] = time();
$validate_result = $validate->scene('add')->check($param);
if (!$validate_result) {
return error($validate->getError());
}
$result = $model::create($param);
$url = URL_BACK;
if (isset($param['_create']) && $param['_create'] == 1) {
$url = URL_RELOAD;
}
return $result ? success('添加成功', $url) : error();
}
$data = $model::get(0);;
$this->assign([
'data'=> $data,
'language_type' => $model->language_type
]);
return $this->fetch();
}
//修改
public function edit($id, Request $request, JoinUs $model, JoinValidate $validate)
{
$data = $model::get($id);
if ($request->isPost()) {
$param = $request->param();
$validate_result = $validate->scene('edit')->check($param);
if (!$validate_result) {
return error($validate->getError());
}
$result = $data->save($param);
return $result ? success() : error();
}
$this->assign([
'data' => $data,
'language_type' => $model->language_type,
]);
return $this->fetch('add');
}
//删除
public function del($id, JoinUs $model)
{
if (count($model->noDeletionId) > 0) {
if (is_array($id)) {
if (array_intersect($model->noDeletionId, $id)) {
return error('ID为' . implode(',', $model->noDeletionId) . '的数据无法删除');
}
} else if (in_array($id, $model->noDeletionId)) {
return error('ID为' . $id . '的数据无法删除');
}
}
if ($model->softDelete) {
$result = $model->whereIn('id', $id)->update(['status'=>1]);
} else {
$result = $model->whereIn('id', $id)->update(['status'=>1]);
}
return $result ? success('操作成功', URL_RELOAD) : error();
}
}
{extend name='public/base' /}
{block name='content'}
{include file='public/content_header' /}
<section class="content">
<div class="row">
<div class="col-md-12">
<div class="box box-primary">
<!-- 表单头部 -->
<div class="box-header with-border">
<div class="btn-group">
<a class="btn flat btn-sm btn-default BackButton">
<i class="fa fa-arrow-left"></i>
返回
</a>
</div>
</div>
<!-- 表单 -->
<form id="dataForm" class="form-horizontal dataForm" action="" method="post"
enctype="multipart/form-data">
<!-- 表单字段区域 -->
<div class="box-body">
<div class="form-group">
<label for="language_type" class="col-sm-2 control-label">选择语言</label>
<div class="col-sm-10 col-md-4">
<select name="language_type" id="language_type" class="form-control select2">
{foreach name='language_type' item='item' }
<option value="{$key}" {if isset($data) && $data.language_type==$key}selected{/if}>
{$item}
</option>
{/foreach}
</select>
</div>
</div>
<script>
$('#language_type').select2();
</script>
<div class="form-group">
<label for="title" class="col-sm-2 control-label">就业岗位</label>
<div class="col-sm-10 col-md-4">
<input id="title" name="jobs" value="{$data.jobs|default=''}"
placeholder="请输入就业岗位" type="text" class="form-control field-text">
</div>
</div>
<div class="form-group">
<label for="source" class="col-sm-2 control-label">工作地点</label>
<div class="col-sm-10 col-md-4">
<input id="source" name="address" value="{$data.address|default=''}" placeholder="请输入工作地点"
type="tel" maxlength="110" class="form-control field-mobile">
</div>
</div>
<div class="form-group">
<label for="introduce" class="col-sm-2 control-label">招聘人数</label>
<div class="col-sm-10 col-md-4">
<input id="introduce" name="pople_num" value="{$data.pople_num|default=''}" placeholder="招聘人数"
type="tel" class="form-control field-mobile">
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label">内容:</label>
<div class="col-sm-10" style="width: 600px;">
<script id="container" name="content" type="text/plain">
<if condition="$data">
{:html_entity_decode($data.content)}
<else/>
</if>
</script>
</div>
</div>
</div>
<!-- 表单底部 -->
<div class="box-footer">
{:token()}
<div class="col-sm-2">
</div>
<div class="col-sm-10 col-md-4">
{if !isset($data)}
<div class="btn-group pull-right">
<label class="createContinue">
<input type="checkbox" value="1" id="_create" name="_create"
title="继续添加数据">继续添加</label>
</div>
{/if}
<div class="btn-group">
<button type="submit" class="btn flat btn-info dataFormSubmit">
保存
</button>
</div>
<div class="btn-group">
<button type="reset" class="btn flat btn-default dataFormReset">
重置
</button>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
</section>
<script>
// 实例化编辑器
UE.delEditor('container');
var ue = UE.getEditor('container');
/** 表单验证 **/
$('#dataForm').validate({
rules: {
'title': {
required: true,
},
'content': {
required: true,
},
'introduce': {
required: true,
}
},
messages: {
'user_level_id': {
required: "标题不能为空",
},
'username': {
required: "内容不能为空",
},
'mobile': {
required: "简介不能为空",
},
}
});
</script>
{/block}
\ No newline at end of file
{extend name="public/base" /}
{block name='content'}
{include file='public/content_header' /}
<!--数据列表页面-->
<section class="content">
<!--顶部搜索筛选-->
<div class="row">
<div class="col-md-12">
<div class="box">
<div class="box-body">
<form class="form-inline searchForm" id="searchForm" action="{:url('index')}" method="GET">
<div class="form-group">
<input value="{$_keywords ? $_keywords : '' ;}"
name="_keywords" id="_keywords" class="form-control input-sm"
placeholder="标题 来源">
</div>
<div class="form-group">
<select name="_by" id="_by" class="form-control input-sm index-order">
<option value="">排序方式</option>
<option value="desc" {if isset($_by) && $_by=='desc'}selected{/if}>倒序</option>
<option value="asc" {if isset($_by) && $_by=='asc'}selected{/if}>正序</option>
</select>
</div>
<script>
$('#_order').select2();
$('#_by').select2();
</script>
<script>
$('#_cat').select2();
</script>
<div class="form-group">
<button class="btn btn-sm btn-primary" type="submit"><i class="fa fa-search"></i> 查询
</button>
</div>
<div class="form-group">
<button onclick="clearSearchForm()" class="btn btn-sm btn-default" type="button"><i
class="fa fa-eraser"></i> 清空查询
</button>
</div>
</form>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="box">
<!--数据列表顶部-->
<div class="box-header">
<div>
<a title="添加" data-toggle="tooltip" class="btn btn-primary btn-sm " href="{:url('add')}">
<i class="fa fa-plus"></i> 添加
</a>
<a class="btn btn-danger btn-sm AjaxButton" data-toggle="tooltip" title="删除选中数据"
data-confirm-title="删除确认" data-confirm-content="您确定要删除选中的数据吗?" data-id="checked"
data-url="{:url('del')}">
<i class="fa fa-trash"></i> 删除
</a>
<!--<a class="btn btn-success btn-sm AjaxButton" data-toggle="tooltip" title="启用选中数据"-->
<!--data-confirm-title="启用确认" data-confirm-content="您确定要启用选中的数据吗?" data-id="checked"-->
<!--data-url="{:url('enable')}">-->
<!--<i class="fa fa-circle"></i> 启用-->
<!--</a>-->
<!--<a class="btn btn-warning btn-sm AjaxButton" data-toggle="tooltip" title="禁用选中数据"-->
<!--data-confirm-title="禁用确认" data-confirm-content="您确定要禁用选中的数据吗?" data-id="checked"-->
<!--data-url="{:url('disable')}">-->
<!--<i class="fa fa-circle"></i> 禁用-->
<!--</a>-->
<a class="btn btn-success btn-sm ReloadButton" data-toggle="tooltip" title="刷新">
<i class="fa fa-refresh"></i> 刷新
</a>
</div>
</div>
<div class="box-body table-responsive">
<table class="table table-hover table-bordered datatable" width="100%">
<thead>
<tr>
<th>
<input id="dataCheckAll" type="checkbox" onclick="checkAll(this)" class="checkbox"
placeholder="全选/取消">
</th>
<th>ID</th>
<th>就业岗位</th>
<th>工作地点</th>
<th>招聘人数</th>
<th>语言</th>
<th>创建时间</th>
<th>操作</th>
</tr>
</thead>
<tbody>
{foreach name="data" id="item"}
<tr>
<td>
<input type="checkbox" onclick="checkThis(this)" name="data-checkbox"
data-id="{$item.id}" class="checkbox data-list-check" value="{$item.id}"
placeholder="选择/取消">
</td>
<td>{$item.id}</td>
<td>{$item.jobs}</td>
<td>{$item.address|default=''}</td>
<td>{$item.pople_num}</td>
<td>{$item.language_type}</td>
<td>{$item.created_at}</td>
<td class="td-do">
<a href="{:url('edit',['id'=>$item.id])}"
class="btn btn-primary btn-xs" title="修改" data-toggle="tooltip">
<i class="fa fa-pencil"></i>
</a>
<a class="btn btn-danger btn-xs AjaxButton" data-toggle="tooltip" title="删除"
data-id="{$item.id}" data-confirm-title="删除确认"
data-confirm-content='您确定要删除ID为 <span class="text-red">{$item.id}</span> 的数据吗'
data-url="{:url('del')}">
<i class="fa fa-trash"></i>
</a>
<!--{if $item.status==1}-->
<!--<a class="btn btn-warning btn-xs AjaxButton" data-toggle="tooltip" title="禁用"-->
<!--data-id="{$item.id}" data-confirm-title="禁用确认"-->
<!--data-confirm-content='您确定要禁用ID为 <span class="text-red">{$item.id}</span> 的数据吗'-->
<!--data-url="{:url('disable')}">-->
<!--<i class="fa fa-circle"></i>-->
<!--</a>-->
<!--{else/}-->
<!--<a class="btn btn-success btn-xs AjaxButton" data-toggle="tooltip" title="启用"-->
<!--data-id="{$item.id}" data-confirm-title="启用确认"-->
<!--data-confirm-content='您确定要启用ID为 <span class="text-red">{$item.id}</span> 的数据吗'-->
<!--data-url="{:url('enable')}">-->
<!--<i class="fa fa-circle"></i>-->
<!--</a>-->
<!--{/if}-->
</td>
</tr>
{/foreach}
</tbody>
</table>
</div>
<!-- 数据列表底部 -->
<div class="box-footer">
{$page|raw}
<label class="control-label pull-right" style="margin-right: 10px; font-weight: 100;">
<small>共{$total}条记录</small>&nbsp;
<small>每页显示</small>
&nbsp;
<select class="input-sm" onchange="changePerPage(this)">
<option value="10" {if $admin.per_page==10}selected{/if}>10</option>
<option value="20" {if $admin.per_page==20}selected{/if}>20</option>
<option value="30" {if $admin.per_page==30}selected{/if}>30</option>
<option value="50" {if $admin.per_page==50}selected{/if}>50</option>
<option value="100" {if $admin.per_page==100}selected{/if}>100</option>
</select>
&nbsp;
<small>条记录</small>
</label>
</div>
</div>
</div>
</div>
</section>
{/block}
<?php
/**
* 就业岗位模型
*/
namespace app\common\model;
use think\model\concern\SoftDelete;
class JoinUs extends Model
{
use SoftDelete;
public $softDelete = true;
protected $autoWriteTimestamp = true;
//可搜索字段
protected $searchField = ['title', 'source','type'];
public $language_type = [
0 => '中文',
1 => '英语'
];
}
<?php
/**
* 就业岗位验证器
*/
namespace app\common\validate;
class JoinValidate extends Validate
{
protected $rule = [
'jobs|标题' => 'require',
'content|内容' => 'require',
'address|简介' => 'require',
'pople_num|招聘人数' => 'require',
];
protected $message = [
'jobs.require' => '就业岗位不能为空',
'content.require' => '内容不能为空',
'address.require' => '工作地址不能为空',
'pople_num.require' => '招聘人数不能为空',
];
protected $scene = [
'add' => ['require', 'content', 'address','language_type','pople_num'],
'edit' => ['require', 'content', 'address','language_type','pople_num'],
];
}
......@@ -9,12 +9,12 @@ try {
$.pjax.defaults.fragment = '#pjax-container';
//最大缓存长度(可选)
$.pjax.defaults.maxCacheLength = 0;
$(document).pjax('a:not(a[target="_blank"])', {
//存储容器id
container: '#pjax-container',
//目标id
fragment: '#pjax-container'
});
//$(document).pjax('a:not(a[target="_blank"])', {
// //存储容器id
// container: '#pjax-container',
// //目标id
// fragment: '#pjax-container'
//});
//ajax请求开始时执行
$(document).ajaxStart(function () {
//启动进度条
......
......@@ -2,6 +2,7 @@
namespace App\Http\Controllers\Index;
use App\Http\Controllers\Controller;
use Moell\LayuiAdmin\Models\IndexSetting;
use Illuminate\Support\Facades\DB;
class JoinUsController extends Controller
{
public function index()
......@@ -21,7 +22,21 @@ class JoinUsController extends Controller
public function job_social()
{
return view('index.join_us.job_social');
$url = url()->full();
$pathinfo = parse_url($url);
$path = $pathinfo['path'];
$en = substr($path,1,2);
if($en == 'en'){
$language_type = 1;
}else{
$language_type = 0;
}
$data = DB::table('join_us')
->where('status','=',0)
->where('language_type',$language_type)
->get()->toArray();
return view('index.join_us.job_social',compact('data'));
}
public function cooperation()
......@@ -29,4 +44,4 @@ class JoinUsController extends Controller
return view('index.join_us.cooperation');
}
}
\ No newline at end of file
}
......@@ -77,277 +77,37 @@
</div>
<div class="panel-group" id="accordion">
<div class="panel panel-default">
<div class="panel-heading">
<div class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#collapse1" class="">
@if($language_type == 1)
<div class="panel-tab-left">
<h3>Investment Promotion Specialist </h3>
</div>
<div class="panel-tab-center">
<h3> Workplace:<span>Shenzhen</span></h3>
</div>
<div class="panel-tab-center1">
<h3>Number of recruiters:<span>6</span></h3>
</div>
<div class="panel-tab-right">
<h3><em class=" icon-down-open-1"></em></h3>
</div>
@else
<div class="panel-tab-left">
<h3>招商专员 </h3>
</div>
<div class="panel-tab-center">
<h3> 工作地点:<span>深圳</span></h3>
</div>
<div class="panel-tab-center1">
<h3>招聘人数:<span>6</span></h3>
</div>
<div class="panel-tab-right">
<h3><em class=" icon-down-open-1"></em></h3>
</div>
@endif
</a>
</div>
</div>
<div id="collapse1" class="panel-collapse collapse in">
@if($language_type == 1)
<div class="panel-body">
<p><span style="font-size: 16px;">Job responsibilities:</span></p><p><span style="font-size: 16px;">1.Be responsible for the contact, planning and coordination of investment promotion related activities;</span></p><p><span style="font-size: 16px;">2.Responsible for the development and management of customers, record the information of merchants customers;</span></p><p><span style="font-size: 16px;">3.Collect market information and give feedback in time;&nbsp;</span></p><p><span style="font-size: 16px;">4.Establish customer information files and maintain a good relationship between owners and tenants;</span></p><p><span style="font-size: 16px;">5.Under the leadership of the investment manager, do a good job in project investment promotion, assist in completing sales tasks, and establish a good brand reputation;</span></p><p><span style="font-size: 16px;">6.Understand and regularly follow up the business market trends and complete relevant market tracking reports。<br/><br/></span></p><p><span style="font-size: 16px;">Job requirements:</span></p><p><span style="font-size: 16px;">1.College degree or above, major in real estate or marketing;</span></p><p><span style="font-size: 16px;">2.More than one year working experience in investment promotion, with rich investment channels preferred;</span></p><p><span style="font-size: 16px;">3.Familiar with investment process, investment skills, contract terms and market operation mode;</span></p><p><span style="font-size: 16px;">4.Excellent customer service awareness, strong business development and interpersonal communication skills;</span></p><p><span style="font-size: 16px;">5.Have certain customer negotiation skills, be able to handle emergencies, and independently solve problems encountered in the process of investment promotion。</span></p><p><span style="font-size: 16px;">6.Hardworking, hardworking, enthusiastic and responsible。</span></p><p><span style="font-size: 16px;">&nbsp;</span></p><h1><span style="font-size: 16px;">Working address</span></h1><p>Working address: Fashion Mego Commercial Plaza, Huaxin subway station, Futian District, Shenzhen</p><p><br/></p><p><strong>Resume delivery</strong></p><p><br/></p><p>hr@fashiongroup.com.cn</p>
</div>
<div class="panel-inner-b-btn">
<a href="http://company.zhaopin.com/%E6%B7%B1%E5%9C%B3%E6%97%B6%E5%B0%9A%E5%95%86%E4%B8%9A%E5%9C%B0%E4%BA%A7%E9%9B%86%E5%9B%A2%E8%82%A1%E4%BB%BD%E6%9C%89%E9%99%90%E5%85%AC%E5%8F%B8_CC120721323.htm" target="_blank">I want to apply<span></span></a>
</div>
@else
<div class="panel-body">
<p><span style="font-size: 16px;">岗位职责:</span></p><p><span style="font-size: 16px;">1.负责与招商相关活动的联系、策划和协调;</span></p><p><span style="font-size: 16px;">2.负责客户的开发和管理,记录招商客户信息;</span></p><p><span style="font-size: 16px;">3.收集市场信息,并及时反馈;&nbsp;</span></p><p><span style="font-size: 16px;">4.建立客户信息档案,并维护良好的业主租户关系;</span></p><p><span style="font-size: 16px;">5.在招商经理领导下做好项目招商工作,协助完成销售任务,树立良好的品牌信誉;</span></p><p><span style="font-size: 16px;">6.了解及定期跟踪商业市场的动态并完成有关的市场跟踪报告。<br/><br/></span></p><p><span style="font-size: 16px;">任职要求:</span></p><p><span style="font-size: 16px;">1.大专以上文化程度,房地产或市场营销等相关专业;</span></p><p><span style="font-size: 16px;">2.一年以上招商工作经验,有丰富招商渠道者优先;</span></p><p><span style="font-size: 16px;">3.熟悉招商流程、招商技巧、合同条款以及市场操作模式;</span></p><p><span style="font-size: 16px;">4.具有出色的客户服务意识、较强的业务拓展和人际交往沟通能力;</span></p><p><span style="font-size: 16px;">5.具有一定的客户谈判技巧,能处理突发事件,能独立解决招商过程中遇到的问题。</span></p><p><span style="font-size: 16px;">6.勤奋努力,吃苦耐劳,热情大方,工作认真负责。</span></p><p><span style="font-size: 16px;">&nbsp;</span></p><h1><span style="font-size: 16px;">工作地址</span></h1><p>深圳市福田区华新地铁站时尚mego商业广场</p><p><br/></p><p><strong>简历投递</strong></p><p><br/></p><p>hr@fashiongroup.com.cn</p>
</div>
<div class="panel-inner-b-btn">
<a href="http://company.zhaopin.com/%E6%B7%B1%E5%9C%B3%E6%97%B6%E5%B0%9A%E5%95%86%E4%B8%9A%E5%9C%B0%E4%BA%A7%E9%9B%86%E5%9B%A2%E8%82%A1%E4%BB%BD%E6%9C%89%E9%99%90%E5%85%AC%E5%8F%B8_CC120721323.htm" target="_blank">我要应聘<span></span></a>
</div>
@endif
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<div class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#collapse2" class="collapsed">
@if($language_type == 1)
<div class="panel-tab-left">
<h3>HR generalist </h3>
</div>
<div class="panel-tab-center">
<h3> Workplace:<span>Shenzhen</span></h3>
</div>
<div class="panel-tab-center1">
<h3>Number of recruiters:<span>1</span></h3>
</div>
<div class="panel-tab-right">
<h3><em class=" icon-down-open-1"></em></h3>
</div>
@else
<div class="panel-tab-left">
<h3>人力资源专员 </h3>
</div>
<div class="panel-tab-center">
<h3> 工作地点:<span>深圳</span></h3>
</div>
<div class="panel-tab-center1">
<h3>招聘人数:<span>1</span></h3>
</div>
<div class="panel-tab-right">
<h3><em class=" icon-down-open-1"></em></h3>
</div>
@endif
</a>
</div>
</div>
<div id="collapse2" class="panel-collapse collapse ">
@if($language_type == 1)
<div class="panel-body">
<p><span style="font-size: 16px;">Job responsibilities:</span></p><p><span style="font-size: 16px;">1. Under the leadership and supervision of the superior, regularly complete the quantitative work requirements, and be able to handle and solve the tasks independently;</span></p><p><span style="font-size: 16px;">2.&nbsp;Understand and master the employment needs of each department, and be good at analyzing and summarizing competency model;</span></p><p><span style="font-size: 16px;">3.&nbsp;Implement recruitment work, release recruitment position information, conduct resume screening, evaluate candidates and provide preliminary interview report;</span></p><p><span style="font-size: 16px;">4.&nbsp;Manage and develop recruitment channels;</span></p><p><span style="font-size: 16px;">5.&nbsp;Maintain talent pool and have good communication ability。</span></p><p><span style="font-size: 16px;">&nbsp;</span></p><p><span style="font-size: 16px;">Job requirements:</span></p><p><span style="font-size: 16px;">1.&nbsp;Bachelor degree or above in HR or related major;</span></p><p><span style="font-size: 16px;">2.&nbsp;More than one year relevant working experience, experience in other HR modules is preferred;</span></p><p><span style="font-size: 16px;">3.&nbsp;Practical experience in HR recruitment, familiar with relevant national laws and regulations;</span></p><p><span style="font-size: 16px;">4.&nbsp;Mild personality, patience, initiative, integrity, loyalty, rigorous work, good language and writing skills;</span></p><p><span style="font-size: 16px;">5.&nbsp;Familiar with office software。<span style="font-size: 16px; line-height: 1.5;">&nbsp;</span></span></p><p><br/></p><p><br/></p><h1><span style="font-size: 16px;">Working address</span></h1><h2><span style="font-size: 16px;">2301, west area, Greater China International Trade Plaza, Jintian South Road, Futian District, Shenzhen&nbsp;</span></h2><p><br/></p>
</div>
<div class="panel-inner-b-btn">
<a href="http://company.zhaopin.com/%E6%B7%B1%E5%9C%B3%E6%97%B6%E5%B0%9A%E5%95%86%E4%B8%9A%E5%9C%B0%E4%BA%A7%E9%9B%86%E5%9B%A2%E8%82%A1%E4%BB%BD%E6%9C%89%E9%99%90%E5%85%AC%E5%8F%B8_CC120721323.htm" target="_blank">I want to apply<span></span></a>
</div>
@else
<div class="panel-body">
<p><span style="font-size: 16px;">岗位职责:</span></p><p><span style="font-size: 16px;">1. 在上级的领导和监督下定期完成量化的工作要求,并能独立处理和解决所负责的任务;</span></p><p><span style="font-size: 16px;">2.&nbsp;了解掌握各部门的用人需求,善于分析和总结胜任力模型;</span></p><p><span style="font-size: 16px;">3.&nbsp;实施招聘工作,发布招聘职位信息、进行简历筛选、评估候选人并提供初步面试报告;</span></p><p><span style="font-size: 16px;">4.&nbsp;管理、开发招聘渠道;</span></p><p><span style="font-size: 16px;">5.&nbsp;维护人才储备库,有良好的沟通能力。</span></p><p><span style="font-size: 16px;">&nbsp;</span></p><p><span style="font-size: 16px;">任职要求:</span></p><p><span style="font-size: 16px;">1.&nbsp;人力资源或相关专业统招本科以上学历;</span></p><p><span style="font-size: 16px;">2.&nbsp;一年以上相关工作经验,有人力资源其他模块工作经验尤佳;</span></p><p><span style="font-size: 16px;">3.&nbsp;有人力资源招聘的实务操作经验,熟悉国家相关法律法规;</span></p><p><span style="font-size: 16px;">4.&nbsp;性格温和、有耐心、积极主动,为人正直,忠诚守信,工作严谨,具有很好的语言文字表达能力;</span></p><p><span style="font-size: 16px;">5.&nbsp;熟练使用办公软件。<span style="font-size: 16px; line-height: 1.5;">&nbsp;</span></span></p><p><br/></p><p><br/></p><h1><span style="font-size: 16px;">工作地址</span></h1><h2><span style="font-size: 16px;">深圳市福田区金田南路大中华国际交易广场西区2301&nbsp;</span></h2><p><br/></p>
</div>
<div class="panel-inner-b-btn">
<a href="http://company.zhaopin.com/%E6%B7%B1%E5%9C%B3%E6%97%B6%E5%B0%9A%E5%95%86%E4%B8%9A%E5%9C%B0%E4%BA%A7%E9%9B%86%E5%9B%A2%E8%82%A1%E4%BB%BD%E6%9C%89%E9%99%90%E5%85%AC%E5%8F%B8_CC120721323.htm" target="_blank">我要应聘<span></span></a>
</div>
@endif
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<div class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#collapse3" class="collapsed">
@if($language_type == 1)
<div class="panel-tab-left">
<h3>Accounting Manager / Supervisor </h3>
</div>
<div class="panel-tab-center">
<h3> Workplace:<span>Shenzhen</span></h3>
</div>
<div class="panel-tab-center1">
<h3>Number of recruiters:<span>1</span></h3>
</div>
<div class="panel-tab-right">
<h3><em class=" icon-down-open-1"></em></h3>
</div>
@else
<div class="panel-tab-left">
<h3>会计经理/主管 </h3>
</div>
<div class="panel-tab-center">
<h3> 工作地点:<span>深圳</span></h3>
</div>
<div class="panel-tab-center1">
<h3>招聘人数:<span>1</span></h3>
</div>
<div class="panel-tab-right">
<h3><em class=" icon-down-open-1"></em></h3>
</div>
@endif
</a>
</div>
</div>
<div id="collapse3" class="panel-collapse collapse ">
@if($language_type == 1)
<div class="panel-body">
<p><span style="font-size: 16px;">Job responsibilities:</span></p><p><br/></p><p><span style="font-size: 16px;">1. According to the national macro financial policies and the group's operation, prepare, adjust and implement the group's fund revenue and expenditure plan and credit plan;</span></p><p><span style="font-size: 16px;">2、Assist relevant departments of the group in strategic investment matters such as asset restructuring, merger and acquisition of the group;</span></p><p><span style="font-size: 16px;">3、Formulate financing plan and specific operation process, and establish daily financing business management and tracking system;</span></p><p><span style="font-size: 16px;">4、Reasonable allocation and use of funds among wholly-owned and holding subsidiaries of the group;</span></p><p><span style="font-size: 16px;">5、Be responsible for organizing the real-time monitoring and regular analysis of the group's cash flow situation, and establishing the early warning mechanism of fund situation;</span></p><p><span style="font-size: 16px;">6、Organize research in the field of financial investment and put forward corresponding plans;</span></p><p><span style="font-size: 16px;">7.Make statistics of the group's fund income and expenditure, prepare and report the fund plan, and reasonably analyze and allocate the fund;</span></p><p><span style="font-size: 16px;">8.Assist the department head to carry out post management for the financed projects, such as interest calculation, notice of accounts payable, etc;</span></p><p><span style="font-size: 16px;">9.Assist department head to sort out and prepare financing data, draft basic documents, etc;</span></p><p><span style="font-size: 16px;">10.Assist finance department to handle bank settlement business, basic accounting processing, expense voucher review, tax declaration, group annual budget preparation, etc。</span></p><p><span style="font-size: 16px;">Job requirements:</span></p><p><span style="font-size: 16px;">1、Bachelor degree in accounting (or related economy);<br/>2、More than 4 years working experience in accounting, 1 year working experience in the same position;<br/>3、Proficient in financial software and business software;<br/>4、Identify with corporate culture, work actively, have good logical thinking and communication ability, strong execution。</span></p><p><br/></p><h1><span style="font-size: 16px;">Working address</span></h1><h2><span style="font-size: 16px;">2301, west area, Greater China International Trade Plaza, Jintian South Road, Futian District, Shenzhen&nbsp;</span></h2><p><br/></p>
</div>
<div class="panel-inner-b-btn">
<a href="http://company.zhaopin.com/%E6%B7%B1%E5%9C%B3%E6%97%B6%E5%B0%9A%E5%95%86%E4%B8%9A%E5%9C%B0%E4%BA%A7%E9%9B%86%E5%9B%A2%E8%82%A1%E4%BB%BD%E6%9C%89%E9%99%90%E5%85%AC%E5%8F%B8_CC120721323.htm" target="_blank">I want to apply<span></span></a>
</div>
@else
<div class="panel-body">
<p><span style="font-size: 16px;">岗位职责:</span></p><p><br/></p><p><span style="font-size: 16px;">1. 根据国家宏观金融政策及集团经营情况,编制、调整集团资金收支计划和信贷计划并负责实施;</span></p><p><span style="font-size: 16px;">2、协助集团相关部门,做好集团资产重组、 购并等战略投资事宜;</span></p><p><span style="font-size: 16px;">3、制定融资计划及具体的操作流程,建立日常融资业务管理及跟踪体系;</span></p><p><span style="font-size: 16px;">4、在集团全资及控股子公司之间合理调配、使用资金等;</span></p><p><span style="font-size: 16px;">5、负责组织对集团的现金流量情况进行实时监控和定期分析,建立资金状况预警机制;</span></p><p><span style="font-size: 16px;">6、组织对金融投资领域的研究并提出相应方案;</span></p><p><span style="font-size: 16px;">7.统计集团资金收支情况,编报资金计划,合理进行资金分析和调配;</span></p><p><span style="font-size: 16px;">8.协助部门主管对已融资项目进行后期管理,如利息计算,应付款项通知等;</span></p><p><span style="font-size: 16px;">9.协助部门主管进行融资资料的整理、准备,基础文件起草等;</span></p><p><span style="font-size: 16px;">10.协助财务部工作,办理银行结算业务,基础账务处理、费用凭证审核、税务申报、编制集团年度预算等。</span></p><p><span style="font-size: 16px;">任职要求:</span></p><p><span style="font-size: 16px;">1、财会(或相关经济类)本科学历;<br/>2、4年以上会计工作经历,1年相同岗位工作经历;<br/>3、熟练操作财务软件及商业软件;<br/>4、认同企业文化,工作积极主动,有良好的逻辑思维及沟通能力,执行力强。</span></p><p><br/></p><h1><span style="font-size: 16px;">工作地址</span></h1><h2><span style="font-size: 16px;">深圳市福田区金田南路大中华国际交易广场西区2301&nbsp;</span></h2><p><br/></p>
@foreach($data as $v)
<div class="panel panel-default">
<div class="panel-heading">
<div class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#collapse{{$loop->iteration}}">
<div class="panel-tab-left">
<h3>{{$v->jobs}}</h3>
</div>
<div class="panel-tab-center">
<h3> 工作地点:<span>{{$v->address}}</span></h3>
</div>
<div class="panel-tab-center1">
<h3>招聘人数:<span>{{$v->pople_num}}</span></h3>
</div>
<div class="panel-tab-right">
<h3><em class=" icon-down-open-1"></em></h3>
</div>
</a>
</div>
<div class="panel-inner-b-btn">
<a href="http://company.zhaopin.com/%E6%B7%B1%E5%9C%B3%E6%97%B6%E5%B0%9A%E5%95%86%E4%B8%9A%E5%9C%B0%E4%BA%A7%E9%9B%86%E5%9B%A2%E8%82%A1%E4%BB%BD%E6%9C%89%E9%99%90%E5%85%AC%E5%8F%B8_CC120721323.htm" target="_blank">我要应聘<span></span></a>
</div>
@endif
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<div class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#collapse4" class="collapsed">
@if($language_type == 1)
<div class="panel-tab-left">
<h3>Head of tax </h3>
</div>
<div class="panel-tab-center">
<h3> Workplace:<span>Shenzhen</span></h3>
</div>
<div class="panel-tab-center1">
<h3>Number of recruiters:<span>1</span></h3>
</div>
<div class="panel-tab-right">
<h3><em class=" icon-down-open-1"></em></h3>
</div>
@else
<div class="panel-tab-left">
<h3>税务主管 </h3>
</div>
<div class="panel-tab-center">
<h3> 工作地点:<span>深圳</span></h3>
</div>
<div class="panel-tab-center1">
<h3>招聘人数:<span>1</span></h3>
</div>
<div class="panel-tab-right">
<h3><em class=" icon-down-open-1"></em></h3>
</div>
@endif
</a>
</div>
</div>
<div id="collapse4" class="panel-collapse collapse ">
@if($language_type == 1)
<div class="panel-body">
<p><span style="font-size: 16px;">Job responsibilities:</span></p><p><span style="font-size: 16px;">1、Responsible for completing the monthly, quarterly and annual tax related work of the company;</span></p><p><span style="font-size: 16px;">2、<span style="font-size: 16px; line-height: 1.5;">Responsible for communicating with tax authorities and external organizations, assisting in tax inspection and audit;</span></span></p><p><span style="line-height: 1.5; font-size: 16px;">3、Supervise the legality, compliance and rationality of tax work of all subsidiaries, and provide tax consulting services for all subsidiaries;</span></p><p><span style="font-size: 16px;">4、Actively participate in the discussion of the company's tax project problems and propose solutions, analyze the new tax policies and relevant laws and regulations, so that the company can achieve the lowest tax cost and maximize the company's tax benefits within the legal and reasonable range, in line with the tax compliance;</span></p><p><span style="font-size: 16px;">5、Assist to complete the annual tax audit and related tax clearance of the company;</span></p><p><span style="font-size: 16px;">6、Responsible for the application of tax preference and other special tax related business;</span></p><p><span style="font-size: 16px;">7、Carry out reasonable tax planning work under the reasonable avoidance of tax risks, and carry out relevant budget work for the company's tax cost according to the company's annual budget data;</span></p><p><span style="font-size: 16px;">8、Regularly organize training on relevant tax knowledge, complete other tax work arranged by leaders, etc。</span></p><p><span style="font-size: 16px;">Job requirements:</span></p><p><span style="font-size: 16px;">1、 Bachelor degree or above, major in accounting, finance or tax;</span></p><p><span style="font-size: 16px;">2、At least 3 years working experience in tax practice and tax management; experience in real estate, commercial real estate and property management is preferred;</span></p><p><span style="font-size: 16px;">3、Familiar with office software;</span></p><p><span style="font-size: 16px;">4、Excellent communication skills, especially with tax authorities;</span></p><p><span style="font-size: 16px;">5、Able to work independently and actively on time;</span></p><p><span style="font-size: 16px;">6、 Integrity, seriousness, positivity and result oriented personality;</span></p><p><br/></p><h1><span style="font-size: 16px;">Working address</span></h1><h2><span style="font-size: 16px;">2301, west area, Greater China International Trade Plaza, Jintian South Road, Futian District, Shenzhen&nbsp;</span></h2><p><br/></p>
</div>
<div class="panel-inner-b-btn">
<a href="http://company.zhaopin.com/%E6%B7%B1%E5%9C%B3%E6%97%B6%E5%B0%9A%E5%95%86%E4%B8%9A%E5%9C%B0%E4%BA%A7%E9%9B%86%E5%9B%A2%E8%82%A1%E4%BB%BD%E6%9C%89%E9%99%90%E5%85%AC%E5%8F%B8_CC120721323.htm" target="_blank">I want to apply<span></span></a>
</div>
@else
<div class="panel-body">
<p><span style="font-size: 16px;">岗位职责:</span></p><p><span style="font-size: 16px;">1、负责完成公司月度,季度和年度相关税收实务工作;</span></p><p><span style="font-size: 16px;">2、<span style="font-size: 16px; line-height: 1.5;">负责与税务机关、外部机构沟通,协助完成税务稽查和审核;</span></span></p><p><span style="line-height: 1.5; font-size: 16px;">3、监督各分子公司税务工作的合法性、合规性和合理性,为各分子公司提供税务咨询服务;</span></p><p><span style="font-size: 16px;">4、积极参与公司税务项目问题的研讨并提出解决方案,对税收新政及相关法规进行分析以使公司在合法合理范围内达到最低的税收成本和公司税收利益最大化,符合税务遵循;</span></p><p><span style="font-size: 16px;">5、协助完成公司年度税务审计和相关税务清缴工作;</span></p><p><span style="font-size: 16px;">6、负责税收优惠的申请及其它涉税专项业务工作;</span></p><p><span style="font-size: 16px;">7、在合理规避税务风险下进行合理的税收筹划工作,根据公司年度预算数据对公司的税收成本进行相关预算工作;</span></p><p><span style="font-size: 16px;">8、定期组织相关税收知识的培训,完成领导安排的其它税务工作等。</span></p><p><span style="font-size: 16px;">任职要求:</span></p><p><span style="font-size: 16px;">1、 本科或以上学历,会计,金融或税收专业;</span></p><p><span style="font-size: 16px;">2、至少3年以上税务实务及税务管理工作经验;有房地产,商业地产及物业管理行业经验者优先考虑;</span></p><p><span style="font-size: 16px;">3、熟练使用办公软件;</span></p><p><span style="font-size: 16px;">4、优秀的沟通能力,尤其是与税务机关的沟通能力;</span></p><p><span style="font-size: 16px;">5、能够独立完成并且积极主动按时完成工作;</span></p><p><span style="font-size: 16px;">6、 正直,认真,积极,结果导向的性格;</span></p><p><br/></p><h1><span style="font-size: 16px;">工作地址</span></h1><h2><span style="font-size: 16px;">深圳市福田区金田南路大中华国际交易广场西区2301&nbsp;</span></h2><p><br/></p>
</div>
<div class="panel-inner-b-btn">
<a href="http://company.zhaopin.com/%E6%B7%B1%E5%9C%B3%E6%97%B6%E5%B0%9A%E5%95%86%E4%B8%9A%E5%9C%B0%E4%BA%A7%E9%9B%86%E5%9B%A2%E8%82%A1%E4%BB%BD%E6%9C%89%E9%99%90%E5%85%AC%E5%8F%B8_CC120721323.htm" target="_blank">我要应聘<span></span></a>
</div>
@endif
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<div class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#collapse5" class="collapsed">
@if($language_type == 1)
<div class="panel-tab-left">
<h3>Executive & HR Manager / Supervisor</h3>
</div>
<div class="panel-tab-center">
<h3> Workplace:<span>Shenzhen</span></h3>
</div>
<div class="panel-tab-center1">
<h3>Number of recruiters:<span>1</span></h3>
</div>
<div class="panel-tab-right">
<h3><em class=" icon-down-open-1"></em></h3>
</div>
@else
<div class="panel-tab-left">
<h3>行政人事经理/主管 </h3>
</div>
<div class="panel-tab-center">
<h3> 工作地点:<span>深圳</span></h3>
</div>
<div class="panel-tab-center1">
<h3>招聘人数:<span>1</span></h3>
</div>
<div class="panel-tab-right">
<h3><em class=" icon-down-open-1"></em></h3>
</div>
@endif
</a>
<div id="collapse{{$loop->iteration}}" class="panel-collapse collapse in">
<div class="panel-body">
{!! $v->content !!}
</div>
<div class="panel-inner-b-btn">
<a href="http://company.zhaopin.com/%E6%B7%B1%E5%9C%B3%E6%97%B6%E5%B0%9A%E5%95%86%E4%B8%9A%E5%9C%B0%E4%BA%A7%E9%9B%86%E5%9B%A2%E8%82%A1%E4%BB%BD%E6%9C%89%E9%99%90%E5%85%AC%E5%8F%B8_CC120721323.htm" target="_blank">我要应聘<span></span></a>
</div>
</div>
</div>
<div id="collapse5" class="panel-collapse collapse ">
@if($language_type == 1)
<div class="panel-body">
<p><span style="font-size: 16px;">Job responsibilities:</span></p><p><span style="font-size: 16px;">1、Make recruitment plan according to the company's development strategy, and complete each vacancy and new position recruitment according to the corresponding time node;<br/></span></p><p><span style="font-size: 16px;">2、Manage the company's salary and performance appraisal system, review and check regularly, and put forward improvement suggestions and suggestions to the superior in time;</span></p><p><span style="font-size: 16px;">3、Be responsible for reviewing and reporting for approval of staff grading, promotion, salary increase, reward and disciplinary action as well as internal deployment, transfer in, transfer out, resignation and other procedures;</span></p><p><span style="font-size: 16px;">4、Responsible for the company's fixed assets procurement, office management, staff activities and other administrative work;</span></p><p><span style="font-size: 16px;">5、Complete other tasks assigned by superior leaders。</span></p><p><span style="font-size: 16px;">任职要求:</span></p><p><span style="font-size: 16px;">1.&nbsp;Bachelor degree or above in human resources, administration, public relations or other related majors;</span></p><p><span style="font-size: 16px;">2.&nbsp;More than 3 years of administrative and personnel experience;</span></p><p><span style="font-size: 16px;">3.&nbsp;Familiar with contract management, salary system and various labor laws and regulations of Shenzhen and its enterprises;</span></p><p><span style="font-size: 16px;"><span style="font-size: 14px;">4.&nbsp;</span><span style="font-size: 16px; line-height: 1.5;">Strong ability to analyze and solve problems, clear thinking and meticulous consideration。</span></span></p><p><br/></p><p><br/></p><h1><span style="font-size: 16px;">Working address</span></h1><h2><span style="font-size: 16px;">2301, west area, Greater China International Trade Plaza, Jintian South Road, Futian District, Shenzhen&nbsp;</span></h2><p><br/></p>
</div>
<div class="panel-inner-b-btn">
<a href="http://company.zhaopin.com/%E6%B7%B1%E5%9C%B3%E6%97%B6%E5%B0%9A%E5%95%86%E4%B8%9A%E5%9C%B0%E4%BA%A7%E9%9B%86%E5%9B%A2%E8%82%A1%E4%BB%BD%E6%9C%89%E9%99%90%E5%85%AC%E5%8F%B8_CC120721323.htm" target="_blank">I want to apply<span></span></a>
</div>
@else
<div class="panel-body">
<p><span style="font-size: 16px;">岗位职责:</span></p><p><span style="font-size: 16px;">1、根据公司发展战略制定招聘计划,按照对应时间节点完成各空缺及新增职位招聘;<br/></span></p><p><span style="font-size: 16px;">2、管理公司薪酬及绩效考核体系,定期回顾并检查,及时向上级提出改进意见和建议;</span></p><p><span style="font-size: 16px;">3、负责审核并按职责报批员工定级、升职、加薪、奖励及纪律处分及内部调配、调入、调出、辞职等手续;</span></p><p><span style="font-size: 16px;">4、负责公司固定资产采购、办公室管理及员工活动等行政工作;</span></p><p><span style="font-size: 16px;">5、完成上级领导交办的其他事务。</span></p><p><span style="font-size: 16px;">任职要求:</span></p><p><span style="font-size: 16px;">1.&nbsp;人力资源、行政管理、公关等相关专业本科以上学历;</span></p><p><span style="font-size: 16px;">2.&nbsp;3年以上行政人事工作经验;</span></p><p><span style="font-size: 16px;">3.&nbsp;熟悉深圳市及企业关于合同管理、薪金制度及各项劳动法规;</span></p><p><span style="font-size: 16px;"><span style="font-size: 14px;">4.&nbsp;</span><span style="font-size: 16px; line-height: 1.5;">较强的分析、解决问题能力,思路清晰,考虑问题细致。</span></span></p><p><br/></p><p><br/></p><h1><span style="font-size: 16px;">工作地址</span></h1><h2><span style="font-size: 16px;">深圳市福田区金田南路大中华国际交易广场西区2301&nbsp;</span></h2><p><br/></p>
</div>
<div class="panel-inner-b-btn">
<a href="http://company.zhaopin.com/%E6%B7%B1%E5%9C%B3%E6%97%B6%E5%B0%9A%E5%95%86%E4%B8%9A%E5%9C%B0%E4%BA%A7%E9%9B%86%E5%9B%A2%E8%82%A1%E4%BB%BD%E6%9C%89%E9%99%90%E5%85%AC%E5%8F%B8_CC120721323.htm" target="_blank">我要应聘<span></span></a>
</div>
@endif
</div>
@endforeach
</div>
</div>
</div>
</div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment