chengkun
2025-04-18 1bb985f32f2efe0f9dd69f3cf29a1c809b1cf96d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<?php
 
/**
 * $Author :PHPYUN开发团队
 *
 * 官网: http://www.phpyun.com
 *
 * 版权所有 2009-2021 宿迁鑫潮信息技术有限公司,并保留所有权利。
 *
 * 软件声明:未经授权前提下,不得用于商业运营、二次开发以及任何形式的再次发布。
 */
 
class part_controller extends user_controller
{
 
    /**
     * wxapp个人会员兼职收藏列表
     */
    function partCollect_action()
    {
 
        $partM          =   $this->MODEL('part');
        $where['uid']   =   $this->member['uid'];
 
        if (isset($_POST['name']) && $_POST['name'] !== '') {
 
            $pWhere['name'] =   array('like', '%' . $_POST['name'] . '%');
 
            $pList          =   $partM->getList($pWhere, array('field' => 'id'));
 
            $partIds        =   array();
 
            foreach ($pList as $pk => $pv) {
 
                $partIds[]  =   $pv['id'];
            }
 
            $where['jobid'] =   array('in', pylode(',', $partIds));
        }
 
        $total  =   $partM->getPartcollectNum($where);
 
        $page   =   $_POST['page'];
        $limit  =   $_POST['limit'];
        $limit  =   !$limit ? 20 : $limit;
 
        $where['orderby']   =   array('id,desc');
        if ($page) {
 
            $pagenav        =   ($page - 1) * $limit;
            $where['limit'] =   array($pagenav, $limit);
        } else {
 
            $where['limit'] =   array('', $limit);
        }
 
        $rows       =   $partM->getPartCollectList($where);
 
        if (!empty($rows)) {
 
            $list   =   count($rows) ? $rows : array();
            $error  =   1;
        } else {
 
            $error  =   2;
        }
        $this->render_json($error, '', $list, $total);
    }
 
    /**
     * 删除兼职收藏列表
     */
    function delfavpart_action()
    {
 
        $partM  =   $this->MODEL('part');
 
        $uid    =   $this->member['uid'];
        $id     =   intval($_POST['ids']);
 
        $return =   $partM->delPartCollect($id, array('uid' => $uid, 'usertype' => 1));
 
        $error  =   $return['errcode'] == 9 ? 1 : 2;
 
        $msg    =   preg_replace('/\([^\)]+?\)/x', "", str_replace(array("(", ")"), array("(", ")"), $return['msg']));
 
        $this->render_json($error, $msg);
    }
 
    /**
     * 删除兼职报名
     */
    function delapply_action()
    {
 
        $partM  =   $this->MODEL('part');
 
        $uid    =   $this->member['uid'];
        $id     =   intval($_POST['ids']);
 
        $return =   $partM->delPartApply($id, array('uid' => $uid, 'usertype' => 1));
 
        $error  =   $return['errcode'] == 9 ? 1 : 2;
 
        $msg    =    preg_replace('/\([^\)]+?\)/x', "", str_replace(array("(", ")"), array("(", ")"), $return['msg']));
 
        $this->render_json($error, $msg);
    }
 
    /**
     * 个人兼职报名管理
     */
    function applylist_action()
    {
 
        $partM  =   $this->MODEL('part');
 
        $where['uid']   =   $this->member['uid'];
 
        if (isset($_POST['name']) && $_POST['name'] !== '') {
 
            $pWhere['name'] =   array('like', '%' . $_POST['name'] . '%');
 
            $pList          =   $partM->getList($pWhere, array('field' => 'id'));
 
            $partIds        =   array();
 
            foreach ($pList as $pk => $pv) {
 
                $partIds[]  =   $pv['id'];
            }
 
            $where['jobid'] =   array('in', pylode(',', $partIds));
        }
 
        $total  =   $partM->getPartSqNum($where);
        $page   =   $_POST['page'];
 
        $limit  =   $_POST['limit'];
        $limit  =   !$limit ? 20 : $limit;
 
        $where['orderby']   =   array('id,desc');
 
        if ($page) {
 
            $pagenav        =   ($page - 1) * $limit;
            $where['limit'] =   array($pagenav, $limit);
        } else {
 
            $where['limit'] =   array('', $limit);
        }
 
        $rows       =   $partM->getPartSqList($where);
        if (is_array($rows) && !empty($rows)) {
 
            $data   =   count($rows) ? $rows : array();
            $error  =   1;
        } else {
 
            $error  =   2;
        }
        $this->render_json($error, '', $data, $total);
 
    }
 
}