Merge remote-tracking branch 'origin/dev' into dev

This commit is contained in:
chenbo 2024-02-27 13:47:11 +08:00
commit 751dbcdf60
3369 changed files with 3889 additions and 2273 deletions

View File

@ -0,0 +1,108 @@
<?php
// +----------------------------------------------------------------------
// | likeadmin快速开发前后端分离管理后台PHP版
// +----------------------------------------------------------------------
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
// | 开源版本可自由商用可去除界面版权logo
// | gitee下载https://gitee.com/likeshop_gitee/likeadmin
// | github下载https://github.com/likeshop-github/likeadmin
// | 访问官网https://www.likeadmin.cn
// | likeadmin团队 版权所有 拥有最终解释权
// +----------------------------------------------------------------------
// | author: likeadminTeam
// +----------------------------------------------------------------------
namespace app\adminapi\controller\supervision_work;
use app\adminapi\controller\BaseAdminController;
use app\adminapi\lists\supervision_work\SupervisionCheckItemLists;
use app\adminapi\logic\supervision_work\SupervisionCheckItemLogic;
use app\adminapi\validate\supervision_work\SupervisionCheckItemValidate;
/**
* 工程监理--新增检查项控制器
* Class SupervisionCheckItemController
* @package app\adminapi\controller\supervision_work
*/
class SupervisionCheckItemController extends BaseAdminController
{
/**
* @notes 获取工程监理--新增检查项列表
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/26 15:34
*/
public function lists()
{
return $this->dataLists(new SupervisionCheckItemLists());
}
/**
* @notes 添加工程监理--新增检查项
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/26 15:34
*/
public function add()
{
$params = (new SupervisionCheckItemValidate())->post()->goCheck('add');
$result = SupervisionCheckItemLogic::add($params);
if (true === $result) {
return $this->success('添加成功', [], 1, 1);
}
return $this->fail(SupervisionCheckItemLogic::getError());
}
/**
* @notes 编辑工程监理--新增检查项
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/26 15:34
*/
public function edit()
{
$params = (new SupervisionCheckItemValidate())->post()->goCheck('edit');
$result = SupervisionCheckItemLogic::edit($params);
if (true === $result) {
return $this->success('编辑成功', [], 1, 1);
}
return $this->fail(SupervisionCheckItemLogic::getError());
}
/**
* @notes 删除工程监理--新增检查项
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/26 15:34
*/
public function delete()
{
$params = (new SupervisionCheckItemValidate())->post()->goCheck('delete');
SupervisionCheckItemLogic::delete($params);
return $this->success('删除成功', [], 1, 1);
}
/**
* @notes 获取工程监理--新增检查项详情
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/26 15:34
*/
public function detail()
{
$params = (new SupervisionCheckItemValidate())->goCheck('detail');
$result = SupervisionCheckItemLogic::detail($params);
return $this->data($result);
}
}

View File

@ -0,0 +1,108 @@
<?php
// +----------------------------------------------------------------------
// | likeadmin快速开发前后端分离管理后台PHP版
// +----------------------------------------------------------------------
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
// | 开源版本可自由商用可去除界面版权logo
// | gitee下载https://gitee.com/likeshop_gitee/likeadmin
// | github下载https://github.com/likeshop-github/likeadmin
// | 访问官网https://www.likeadmin.cn
// | likeadmin团队 版权所有 拥有最终解释权
// +----------------------------------------------------------------------
// | author: likeadminTeam
// +----------------------------------------------------------------------
namespace app\adminapi\controller\supervision_work;
use app\adminapi\controller\BaseAdminController;
use app\adminapi\lists\supervision_work\SupervisionCheckItemDetailLists;
use app\adminapi\logic\supervision_work\SupervisionCheckItemDetailLogic;
use app\adminapi\validate\supervision_work\SupervisionCheckItemDetailValidate;
/**
* 工程监理--新增检查项明细控制器
* Class SupervisionCheckItemDetailController
* @package app\adminapi\controller\supervision_work
*/
class SupervisionCheckItemDetailController extends BaseAdminController
{
/**
* @notes 获取工程监理--新增检查项明细列表
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/26 15:34
*/
public function lists()
{
return $this->dataLists(new SupervisionCheckItemDetailLists());
}
/**
* @notes 添加工程监理--新增检查项明细
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/26 15:34
*/
public function add()
{
$params = (new SupervisionCheckItemDetailValidate())->post()->goCheck('add');
$result = SupervisionCheckItemDetailLogic::add($params);
if (true === $result) {
return $this->success('添加成功', [], 1, 1);
}
return $this->fail(SupervisionCheckItemDetailLogic::getError());
}
/**
* @notes 编辑工程监理--新增检查项明细
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/26 15:34
*/
public function edit()
{
$params = (new SupervisionCheckItemDetailValidate())->post()->goCheck('edit');
$result = SupervisionCheckItemDetailLogic::edit($params);
if (true === $result) {
return $this->success('编辑成功', [], 1, 1);
}
return $this->fail(SupervisionCheckItemDetailLogic::getError());
}
/**
* @notes 删除工程监理--新增检查项明细
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/26 15:34
*/
public function delete()
{
$params = (new SupervisionCheckItemDetailValidate())->post()->goCheck('delete');
SupervisionCheckItemDetailLogic::delete($params);
return $this->success('删除成功', [], 1, 1);
}
/**
* @notes 获取工程监理--新增检查项明细详情
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/26 15:34
*/
public function detail()
{
$params = (new SupervisionCheckItemDetailValidate())->goCheck('detail');
$result = SupervisionCheckItemDetailLogic::detail($params);
return $this->data($result);
}
}

View File

@ -0,0 +1,108 @@
<?php
// +----------------------------------------------------------------------
// | likeadmin快速开发前后端分离管理后台PHP版
// +----------------------------------------------------------------------
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
// | 开源版本可自由商用可去除界面版权logo
// | gitee下载https://gitee.com/likeshop_gitee/likeadmin
// | github下载https://github.com/likeshop-github/likeadmin
// | 访问官网https://www.likeadmin.cn
// | likeadmin团队 版权所有 拥有最终解释权
// +----------------------------------------------------------------------
// | author: likeadminTeam
// +----------------------------------------------------------------------
namespace app\adminapi\controller\supervision_work;
use app\adminapi\controller\BaseAdminController;
use app\adminapi\lists\supervision_work\SupervisionInspectionLists;
use app\adminapi\logic\supervision_work\SupervisionInspectionLogic;
use app\adminapi\validate\supervision_work\SupervisionInspectionValidate;
/**
* 工程监理--巡视登记控制器
* Class SupervisionInspectionController
* @package app\adminapi\controller\supervision_work
*/
class SupervisionInspectionController extends BaseAdminController
{
/**
* @notes 获取工程监理--巡视登记列表
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/26 17:18
*/
public function lists()
{
return $this->dataLists(new SupervisionInspectionLists());
}
/**
* @notes 添加工程监理--巡视登记
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/26 17:18
*/
public function add()
{
$params = (new SupervisionInspectionValidate())->post()->goCheck('add');
$result = SupervisionInspectionLogic::add($params,$this->adminId);
if (true === $result) {
return $this->success('添加成功', [], 1, 1);
}
return $this->fail(SupervisionInspectionLogic::getError());
}
/**
* @notes 编辑工程监理--巡视登记
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/26 17:18
*/
public function edit()
{
$params = (new SupervisionInspectionValidate())->post()->goCheck('edit');
$result = SupervisionInspectionLogic::edit($params);
if (true === $result) {
return $this->success('编辑成功', [], 1, 1);
}
return $this->fail(SupervisionInspectionLogic::getError());
}
/**
* @notes 删除工程监理--巡视登记
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/26 17:18
*/
public function delete()
{
$params = (new SupervisionInspectionValidate())->post()->goCheck('delete');
SupervisionInspectionLogic::delete($params);
return $this->success('删除成功', [], 1, 1);
}
/**
* @notes 获取工程监理--巡视登记详情
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/26 17:18
*/
public function detail()
{
$params = (new SupervisionInspectionValidate())->goCheck('detail');
$result = SupervisionInspectionLogic::detail($params);
return $this->data($result);
}
}

View File

@ -0,0 +1,108 @@
<?php
// +----------------------------------------------------------------------
// | likeadmin快速开发前后端分离管理后台PHP版
// +----------------------------------------------------------------------
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
// | 开源版本可自由商用可去除界面版权logo
// | gitee下载https://gitee.com/likeshop_gitee/likeadmin
// | github下载https://github.com/likeshop-github/likeadmin
// | 访问官网https://www.likeadmin.cn
// | likeadmin团队 版权所有 拥有最终解释权
// +----------------------------------------------------------------------
// | author: likeadminTeam
// +----------------------------------------------------------------------
namespace app\adminapi\controller\supervision_work;
use app\adminapi\controller\BaseAdminController;
use app\adminapi\lists\supervision_work\SupervisionInspectionProblemLists;
use app\adminapi\logic\supervision_work\SupervisionInspectionProblemLogic;
use app\adminapi\validate\supervision_work\SupervisionInspectionProblemValidate;
/**
* 工程监理--巡视问题控制器
* Class SupervisionInspectionProblemController
* @package app\adminapi\controller\supervision_work
*/
class SupervisionInspectionProblemController extends BaseAdminController
{
/**
* @notes 获取工程监理--巡视问题列表
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/26 17:18
*/
public function lists()
{
return $this->dataLists(new SupervisionInspectionProblemLists());
}
/**
* @notes 添加工程监理--巡视问题
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/26 17:18
*/
public function add()
{
$params = (new SupervisionInspectionProblemValidate())->post()->goCheck('add');
$result = SupervisionInspectionProblemLogic::add($params);
if (true === $result) {
return $this->success('添加成功', [], 1, 1);
}
return $this->fail(SupervisionInspectionProblemLogic::getError());
}
/**
* @notes 编辑工程监理--巡视问题
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/26 17:18
*/
public function edit()
{
$params = (new SupervisionInspectionProblemValidate())->post()->goCheck('edit');
$result = SupervisionInspectionProblemLogic::edit($params);
if (true === $result) {
return $this->success('编辑成功', [], 1, 1);
}
return $this->fail(SupervisionInspectionProblemLogic::getError());
}
/**
* @notes 删除工程监理--巡视问题
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/26 17:18
*/
public function delete()
{
$params = (new SupervisionInspectionProblemValidate())->post()->goCheck('delete');
SupervisionInspectionProblemLogic::delete($params);
return $this->success('删除成功', [], 1, 1);
}
/**
* @notes 获取工程监理--巡视问题详情
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/26 17:18
*/
public function detail()
{
$params = (new SupervisionInspectionProblemValidate())->goCheck('detail');
$result = SupervisionInspectionProblemLogic::detail($params);
return $this->data($result);
}
}

View File

@ -0,0 +1,108 @@
<?php
// +----------------------------------------------------------------------
// | likeadmin快速开发前后端分离管理后台PHP版
// +----------------------------------------------------------------------
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
// | 开源版本可自由商用可去除界面版权logo
// | gitee下载https://gitee.com/likeshop_gitee/likeadmin
// | github下载https://github.com/likeshop-github/likeadmin
// | 访问官网https://www.likeadmin.cn
// | likeadmin团队 版权所有 拥有最终解释权
// +----------------------------------------------------------------------
// | author: likeadminTeam
// +----------------------------------------------------------------------
namespace app\adminapi\controller\supervision_work;
use app\adminapi\controller\BaseAdminController;
use app\adminapi\lists\supervision_work\SupervisionInspectionResultLists;
use app\adminapi\logic\supervision_work\SupervisionInspectionResultLogic;
use app\adminapi\validate\supervision_work\SupervisionInspectionResultValidate;
/**
* 工程监理--巡视结果控制器
* Class SupervisionInspectionResultController
* @package app\adminapi\controller\supervision_work
*/
class SupervisionInspectionResultController extends BaseAdminController
{
/**
* @notes 获取工程监理--巡视结果列表
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/27 09:23
*/
public function lists()
{
return $this->dataLists(new SupervisionInspectionResultLists());
}
/**
* @notes 添加工程监理--巡视结果
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/27 09:23
*/
public function add()
{
$params = (new SupervisionInspectionResultValidate())->post()->goCheck('add');
$result = SupervisionInspectionResultLogic::add($params);
if (true === $result) {
return $this->success('添加成功', [], 1, 1);
}
return $this->fail(SupervisionInspectionResultLogic::getError());
}
/**
* @notes 编辑工程监理--巡视结果
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/27 09:23
*/
public function edit()
{
$params = (new SupervisionInspectionResultValidate())->post()->goCheck('edit');
$result = SupervisionInspectionResultLogic::edit($params);
if (true === $result) {
return $this->success('编辑成功', [], 1, 1);
}
return $this->fail(SupervisionInspectionResultLogic::getError());
}
/**
* @notes 删除工程监理--巡视结果
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/27 09:23
*/
public function delete()
{
$params = (new SupervisionInspectionResultValidate())->post()->goCheck('delete');
SupervisionInspectionResultLogic::delete($params);
return $this->success('删除成功', [], 1, 1);
}
/**
* @notes 获取工程监理--巡视结果详情
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/27 09:23
*/
public function detail()
{
$params = (new SupervisionInspectionResultValidate())->goCheck('detail');
$result = SupervisionInspectionResultLogic::detail($params);
return $this->data($result);
}
}

View File

@ -0,0 +1,88 @@
<?php
// +----------------------------------------------------------------------
// | likeadmin快速开发前后端分离管理后台PHP版
// +----------------------------------------------------------------------
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
// | 开源版本可自由商用可去除界面版权logo
// | gitee下载https://gitee.com/likeshop_gitee/likeadmin
// | github下载https://github.com/likeshop-github/likeadmin
// | 访问官网https://www.likeadmin.cn
// | likeadmin团队 版权所有 拥有最终解释权
// +----------------------------------------------------------------------
// | author: likeadminTeam
// +----------------------------------------------------------------------
namespace app\adminapi\lists\supervision_work;
use app\adminapi\lists\BaseAdminDataLists;
use app\common\model\supervision_work\SupervisionCheckItemDetail;
use app\common\lists\ListsSearchInterface;
/**
* 工程监理--新增检查项明细列表
* Class SupervisionCheckItemDetailLists
* @package app\adminapi\listssupervision_work
*/
class SupervisionCheckItemDetailLists extends BaseAdminDataLists implements ListsSearchInterface
{
/**
* @notes 设置搜索条件
* @return \string[][]
* @author likeadmin
* @date 2024/02/26 15:34
*/
public function setSearch(): array
{
return [
'=' => ['node_id'],
];
}
/**
* @notes 获取工程监理--新增检查项明细列表
* @return array
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
* @author likeadmin
* @date 2024/02/26 15:34
*/
public function lists(): array
{
$params = $this->request->get();
$where = [];
if(isset($params['node_ids']) && $params['node_ids'] != ''){
$where[] = ['node_id','in',$params['node_ids']];
}
return SupervisionCheckItemDetail::withoutField('create_time,update_time,delete_time')->where($this->searchWhere)->where($where)
->limit($this->limitOffset, $this->limitLength)
->order(['id' => 'desc'])
->select()->each(function($data){
$data['must_check_text'] = $data->must_check_text;
})
->toArray();
}
/**
* @notes 获取工程监理--新增检查项明细数量
* @return int
* @author likeadmin
* @date 2024/02/26 15:34
*/
public function count(): int
{
$params = $this->request->get();
$where = [];
if(isset($params['node_ids']) && $params['node_ids'] != ''){
$where[] = ['node_id','in',$params['node_ids']];
}
return SupervisionCheckItemDetail::where($this->searchWhere)->where($where)->count();
}
}

View File

@ -0,0 +1,85 @@
<?php
// +----------------------------------------------------------------------
// | likeadmin快速开发前后端分离管理后台PHP版
// +----------------------------------------------------------------------
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
// | 开源版本可自由商用可去除界面版权logo
// | gitee下载https://gitee.com/likeshop_gitee/likeadmin
// | github下载https://github.com/likeshop-github/likeadmin
// | 访问官网https://www.likeadmin.cn
// | likeadmin团队 版权所有 拥有最终解释权
// +----------------------------------------------------------------------
// | author: likeadminTeam
// +----------------------------------------------------------------------
namespace app\adminapi\lists\supervision_work;
use app\adminapi\lists\BaseAdminDataLists;
use app\common\model\supervision_project\SupervisionProject;
use app\common\model\supervision_work\SupervisionCheckItem;
use app\common\lists\ListsSearchInterface;
/**
* 工程监理--新增检查项列表
* Class SupervisionCheckItemLists
* @package app\adminapi\listssupervision_work
*/
class SupervisionCheckItemLists extends BaseAdminDataLists implements ListsSearchInterface
{
/**
* @notes 设置搜索条件
* @return \string[][]
* @author likeadmin
* @date 2024/02/26 15:34
*/
public function setSearch(): array
{
return [
'=' => ['project_id', 'node_type'],
'%like%' => ['node_name'],
];
}
/**
* @notes 获取工程监理--新增检查项列表
* @return array
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
* @author likeadmin
* @date 2024/02/26 15:34
*/
public function lists(): array
{
$lists = SupervisionCheckItem::withoutField('create_time,update_time,delete_time')->where($this->searchWhere)
->limit($this->limitOffset, $this->limitLength)
->order(['id' => 'desc'])
->select()->each(function($data){
$project = SupervisionProject::field('project_name')->where('id',$data['project_id'])->findOrEmpty();
$pid = SupervisionCheckItem::field('node_name')->where('id',$data['pid'])->findOrEmpty();
$data['project_name'] = $project['project_name'];
$data['p_node_name'] = $pid['node_name'];
$data['node_type_text'] = $data->node_type_text;
})
->toArray();
return buildTree($lists,'pid');
}
/**
* @notes 获取工程监理--新增检查项数量
* @return int
* @author likeadmin
* @date 2024/02/26 15:34
*/
public function count(): int
{
return SupervisionCheckItem::where($this->searchWhere)->count();
}
}

View File

@ -0,0 +1,94 @@
<?php
// +----------------------------------------------------------------------
// | likeadmin快速开发前后端分离管理后台PHP版
// +----------------------------------------------------------------------
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
// | 开源版本可自由商用可去除界面版权logo
// | gitee下载https://gitee.com/likeshop_gitee/likeadmin
// | github下载https://github.com/likeshop-github/likeadmin
// | 访问官网https://www.likeadmin.cn
// | likeadmin团队 版权所有 拥有最终解释权
// +----------------------------------------------------------------------
// | author: likeadminTeam
// +----------------------------------------------------------------------
namespace app\adminapi\lists\supervision_work;
use app\adminapi\lists\BaseAdminDataLists;
use app\common\model\auth\Admin;
use app\common\model\supervision_project\SupervisionParticipatingUnits;
use app\common\model\supervision_project\SupervisionProject;
use app\common\model\supervision_work\SupervisionCheckItem;
use app\common\model\supervision_work\SupervisionInspection;
use app\common\lists\ListsSearchInterface;
/**
* 工程监理--巡视登记列表
* Class SupervisionInspectionLists
* @package app\adminapi\listssupervision_work
*/
class SupervisionInspectionLists extends BaseAdminDataLists implements ListsSearchInterface
{
/**
* @notes 设置搜索条件
* @return \string[][]
* @author likeadmin
* @date 2024/02/26 17:18
*/
public function setSearch(): array
{
return [
'=' => ['project_id', 'inspection_type'],
'%like%' => ['inspection_code'],
];
}
/**
* @notes 获取工程监理--巡视登记列表
* @return array
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
* @author likeadmin
* @date 2024/02/26 17:18
*/
public function lists(): array
{
return SupervisionInspection::withoutField('update_time,delete_time')->where($this->searchWhere)
->limit($this->limitOffset, $this->limitLength)
->order(['id' => 'desc'])
->select()->each(function($data){
$project = SupervisionProject::field('project_name')->where('id',$data['project_id'])->findOrEmpty();
$check_item = SupervisionCheckItem::field('node_name')->where('id',$data['check_item_id'])->findOrEmpty();
$company = SupervisionParticipatingUnits::field('unit_name')->where('id',$data['company_id'])->findOrEmpty();
$check_item_detail = SupervisionCheckItem::where('id','in',$data['check_item_detail_ids'])->column('node_name');
$create_user = Admin::field('name')->where('id',$data['create_user'])->findOrEmpty();
$data['project_name'] = $project['project_name'];
$data['check_item_name'] = $check_item['node_name'];
$data['company_name'] = $company['unit_name'];
$data['check_item_detail_name'] = implode(',',$check_item_detail);
$data['create_user_name'] = $create_user['name'];
$data['inspection_type_text'] = $data->inspection_type_text;
$data['is_important_text'] = $data->is_important_text;
})
->toArray();
}
/**
* @notes 获取工程监理--巡视登记数量
* @return int
* @author likeadmin
* @date 2024/02/26 17:18
*/
public function count(): int
{
return SupervisionInspection::where($this->searchWhere)->count();
}
}

View File

@ -0,0 +1,76 @@
<?php
// +----------------------------------------------------------------------
// | likeadmin快速开发前后端分离管理后台PHP版
// +----------------------------------------------------------------------
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
// | 开源版本可自由商用可去除界面版权logo
// | gitee下载https://gitee.com/likeshop_gitee/likeadmin
// | github下载https://github.com/likeshop-github/likeadmin
// | 访问官网https://www.likeadmin.cn
// | likeadmin团队 版权所有 拥有最终解释权
// +----------------------------------------------------------------------
// | author: likeadminTeam
// +----------------------------------------------------------------------
namespace app\adminapi\lists\supervision_work;
use app\adminapi\lists\BaseAdminDataLists;
use app\common\model\supervision_work\SupervisionInspectionProblem;
use app\common\lists\ListsSearchInterface;
/**
* 工程监理--巡视问题列表
* Class SupervisionInspectionProblemLists
* @package app\adminapi\listssupervision_work
*/
class SupervisionInspectionProblemLists extends BaseAdminDataLists implements ListsSearchInterface
{
/**
* @notes 设置搜索条件
* @return \string[][]
* @author likeadmin
* @date 2024/02/26 17:18
*/
public function setSearch(): array
{
return [
'=' => ['inspection_id'],
];
}
/**
* @notes 获取工程监理--巡视问题列表
* @return array
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
* @author likeadmin
* @date 2024/02/26 17:18
*/
public function lists(): array
{
return SupervisionInspectionProblem::withoutField('create_time,update_time,delete_time')->where($this->searchWhere)
->limit($this->limitOffset, $this->limitLength)
->order(['id' => 'desc'])
->select()
->toArray();
}
/**
* @notes 获取工程监理--巡视问题数量
* @return int
* @author likeadmin
* @date 2024/02/26 17:18
*/
public function count(): int
{
return SupervisionInspectionProblem::where($this->searchWhere)->count();
}
}

View File

@ -0,0 +1,79 @@
<?php
// +----------------------------------------------------------------------
// | likeadmin快速开发前后端分离管理后台PHP版
// +----------------------------------------------------------------------
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
// | 开源版本可自由商用可去除界面版权logo
// | gitee下载https://gitee.com/likeshop_gitee/likeadmin
// | github下载https://github.com/likeshop-github/likeadmin
// | 访问官网https://www.likeadmin.cn
// | likeadmin团队 版权所有 拥有最终解释权
// +----------------------------------------------------------------------
// | author: likeadminTeam
// +----------------------------------------------------------------------
namespace app\adminapi\lists\supervision_work;
use app\adminapi\lists\BaseAdminDataLists;
use app\common\model\supervision_work\SupervisionInspectionResult;
use app\common\lists\ListsSearchInterface;
/**
* 工程监理--巡视结果列表
* Class SupervisionInspectionResultLists
* @package app\adminapi\listssupervision_work
*/
class SupervisionInspectionResultLists extends BaseAdminDataLists implements ListsSearchInterface
{
/**
* @notes 设置搜索条件
* @return \string[][]
* @author likeadmin
* @date 2024/02/27 09:23
*/
public function setSearch(): array
{
return [
'=' => ['inspection_id', 'must_check', 'check_result'],
];
}
/**
* @notes 获取工程监理--巡视结果列表
* @return array
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
* @author likeadmin
* @date 2024/02/27 09:23
*/
public function lists(): array
{
return SupervisionInspectionResult::withoutField('create_time,update_time,delete_time')->where($this->searchWhere)
->limit($this->limitOffset, $this->limitLength)
->order(['id' => 'desc'])
->select()->each(function($data){
$data['must_check_text'] = $data->must_check_text;
$data['check_result_text'] = $data->check_result_text;
})
->toArray();
}
/**
* @notes 获取工程监理--巡视结果数量
* @return int
* @author likeadmin
* @date 2024/02/27 09:23
*/
public function count(): int
{
return SupervisionInspectionResult::where($this->searchWhere)->count();
}
}

View File

@ -82,7 +82,7 @@ class SupervisionSpecialOperationPersonnelLogic extends BaseLogic
'name' => $params['name'],
'work_type' => $params['work_type'],
'id_card' => $params['id_card'],
'validity_period' => $params['validity_period'],
'validity_period' => !empty($params['validity_period']) ? strtotime($params['validity_period']) : 0,
'enter_time' => !empty($params['enter_time']) ? strtotime($params['enter_time']) : 0,
'leave_time' => !empty($params['leave_time']) ? strtotime($params['leave_time']) : 0,
'status' => $params['status'],

View File

@ -0,0 +1,113 @@
<?php
// +----------------------------------------------------------------------
// | likeadmin快速开发前后端分离管理后台PHP版
// +----------------------------------------------------------------------
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
// | 开源版本可自由商用可去除界面版权logo
// | gitee下载https://gitee.com/likeshop_gitee/likeadmin
// | github下载https://github.com/likeshop-github/likeadmin
// | 访问官网https://www.likeadmin.cn
// | likeadmin团队 版权所有 拥有最终解释权
// +----------------------------------------------------------------------
// | author: likeadminTeam
// +----------------------------------------------------------------------
namespace app\adminapi\logic\supervision_work;
use app\common\model\supervision_work\SupervisionCheckItemDetail;
use app\common\logic\BaseLogic;
use think\facade\Db;
/**
* 工程监理--新增检查项明细逻辑
* Class SupervisionCheckItemDetailLogic
* @package app\adminapi\logic\supervision_work
*/
class SupervisionCheckItemDetailLogic extends BaseLogic
{
/**
* @notes 添加工程监理--新增检查项明细
* @param array $params
* @return bool
* @author likeadmin
* @date 2024/02/26 15:34
*/
public static function add(array $params): bool
{
Db::startTrans();
try {
SupervisionCheckItemDetail::create([
'node_id' => $params['node_id'],
'check_type' => $params['check_type'],
'check_content' => $params['check_content'],
'must_check' => $params['must_check'],
]);
Db::commit();
return true;
} catch (\Exception $e) {
Db::rollback();
self::setError($e->getMessage());
return false;
}
}
/**
* @notes 编辑工程监理--新增检查项明细
* @param array $params
* @return bool
* @author likeadmin
* @date 2024/02/26 15:34
*/
public static function edit(array $params): bool
{
Db::startTrans();
try {
SupervisionCheckItemDetail::where('id', $params['id'])->update([
'node_id' => $params['node_id'],
'check_type' => $params['check_type'],
'check_content' => $params['check_content'],
'must_check' => $params['must_check'],
'update_time' => time(),
]);
Db::commit();
return true;
} catch (\Exception $e) {
Db::rollback();
self::setError($e->getMessage());
return false;
}
}
/**
* @notes 删除工程监理--新增检查项明细
* @param array $params
* @return bool
* @author likeadmin
* @date 2024/02/26 15:34
*/
public static function delete(array $params): bool
{
return SupervisionCheckItemDetail::destroy($params['id']);
}
/**
* @notes 获取工程监理--新增检查项明细详情
* @param $params
* @return array
* @author likeadmin
* @date 2024/02/26 15:34
*/
public static function detail($params): array
{
$data = SupervisionCheckItemDetail::withoutField('create_time,update_time,delete_time')->findOrEmpty($params['id']);
$data['must_check_text'] = $data->must_check_text;
return $data->toArray();
}
}

View File

@ -0,0 +1,160 @@
<?php
// +----------------------------------------------------------------------
// | likeadmin快速开发前后端分离管理后台PHP版
// +----------------------------------------------------------------------
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
// | 开源版本可自由商用可去除界面版权logo
// | gitee下载https://gitee.com/likeshop_gitee/likeadmin
// | github下载https://github.com/likeshop-github/likeadmin
// | 访问官网https://www.likeadmin.cn
// | likeadmin团队 版权所有 拥有最终解释权
// +----------------------------------------------------------------------
// | author: likeadminTeam
// +----------------------------------------------------------------------
namespace app\adminapi\logic\supervision_work;
use app\common\model\supervision_project\SupervisionProject;
use app\common\model\supervision_work\SupervisionCheckItem;
use app\common\logic\BaseLogic;
use app\common\model\supervision_work\SupervisionCheckItemDetail;
use think\facade\Db;
/**
* 工程监理--新增检查项逻辑
* Class SupervisionCheckItemLogic
* @package app\adminapi\logic\supervision_work
*/
class SupervisionCheckItemLogic extends BaseLogic
{
/**
* @notes 添加工程监理--新增检查项
* @param array $params
* @return bool
* @author likeadmin
* @date 2024/02/26 15:34
*/
public static function add(array $params): bool
{
Db::startTrans();
try {
$res = SupervisionCheckItem::create([
'project_id' => $params['project_id'],
'node_name' => $params['node_name'],
'node_type' => $params['node_type'],
'node_code' => $params['node_code'],
'pid' => $params['pid'],
'inspection_basis' => $params['inspection_basis'],
'reference_law' => $params['reference_law'],
]);
if(!empty($params['check_item_detail'])){
foreach($params['check_item_detail'] as $v){
SupervisionCheckItemDetail::create([
'node_id' => $res->id,
'check_type' => $v['check_type'],
'check_content' => $v['check_content'],
'must_check' => $v['must_check'],
]);
}
}
Db::commit();
return true;
} catch (\Exception $e) {
Db::rollback();
self::setError($e->getMessage());
return false;
}
}
/**
* @notes 编辑工程监理--新增检查项
* @param array $params
* @return bool
* @author likeadmin
* @date 2024/02/26 15:34
*/
public static function edit(array $params): bool
{
Db::startTrans();
try {
SupervisionCheckItem::where('id', $params['id'])->update([
'project_id' => $params['project_id'],
'node_name' => $params['node_name'],
'node_type' => $params['node_type'],
'node_code' => $params['node_code'],
'pid' => $params['pid'],
'inspection_basis' => $params['inspection_basis'],
'reference_law' => $params['reference_law'],
'update_time' => time(),
]);
if(!empty($params['check_item_detail'])){
foreach($params['check_item_detail'] as $v){
if(!empty($v['id'])){
SupervisionCheckItemDetail::where('id',$v['id'])->update([
'node_id' => $params['id'],
'check_type' => $v['check_type'],
'check_content' => $v['check_content'],
'must_check' => $v['must_check'],
'update_time' => time(),
]);
}else{
SupervisionCheckItemDetail::create([
'node_id' => $params['id'],
'check_type' => $v['check_type'],
'check_content' => $v['check_content'],
'must_check' => $v['must_check'],
]);
}
}
}
Db::commit();
return true;
} catch (\Exception $e) {
Db::rollback();
self::setError($e->getMessage());
return false;
}
}
/**
* @notes 删除工程监理--新增检查项
* @param array $params
* @return bool
* @author likeadmin
* @date 2024/02/26 15:34
*/
public static function delete(array $params): bool
{
$data = SupervisionCheckItem::where('pid',$params['id'])->findOrEmpty();
if(!$data->isEmpty()){
self::setError('当前节点下存在子节点,请先删除子节点');
return false;
}
return SupervisionCheckItem::destroy($params['id']);
}
/**
* @notes 获取工程监理--新增检查项详情
* @param $params
* @return array
* @author likeadmin
* @date 2024/02/26 15:34
*/
public static function detail($params): array
{
$data = SupervisionCheckItem::withoutField('create_time,update_time,delete_time')->findOrEmpty($params['id']);
$project = SupervisionProject::field('project_name')->where('id',$data['project_id'])->findOrEmpty();
$pid = SupervisionCheckItem::field('node_name')->where('id',$data['pid'])->findOrEmpty();
$data['project_name'] = $project['project_name'];
$data['p_node_name'] = $pid['node_name'];
$data['node_type_text'] = $data->node_type_text;
return $data->toArray();
}
}

View File

@ -0,0 +1,226 @@
<?php
// +----------------------------------------------------------------------
// | likeadmin快速开发前后端分离管理后台PHP版
// +----------------------------------------------------------------------
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
// | 开源版本可自由商用可去除界面版权logo
// | gitee下载https://gitee.com/likeshop_gitee/likeadmin
// | github下载https://github.com/likeshop-github/likeadmin
// | 访问官网https://www.likeadmin.cn
// | likeadmin团队 版权所有 拥有最终解释权
// +----------------------------------------------------------------------
// | author: likeadminTeam
// +----------------------------------------------------------------------
namespace app\adminapi\logic\supervision_work;
use app\common\model\auth\Admin;
use app\common\model\supervision_project\SupervisionParticipatingUnits;
use app\common\model\supervision_project\SupervisionProject;
use app\common\model\supervision_work\SupervisionCheckItem;
use app\common\model\supervision_work\SupervisionInspection;
use app\common\logic\BaseLogic;
use app\common\model\supervision_work\SupervisionInspectionProblem;
use app\common\model\supervision_work\SupervisionInspectionResult;
use think\facade\Db;
/**
* 工程监理--巡视登记逻辑
* Class SupervisionInspectionLogic
* @package app\adminapi\logic\supervision_work
*/
class SupervisionInspectionLogic extends BaseLogic
{
/**
* @notes 添加工程监理--巡视登记
* @param array $params
* @return bool
* @author likeadmin
* @date 2024/02/26 17:18
*/
public static function add(array $params,$admin_id): bool
{
Db::startTrans();
try {
$res = SupervisionInspection::create([
'project_id' => $params['project_id'],
'inspection_code' => data_unique_code('XS'),
'inspection_type' => $params['inspection_type'],
'check_item_id' => $params['check_item_id'],
'inspection_position' => $params['inspection_position'],
'workers' => $params['workers'],
'managers' => $params['managers'],
'start_time' => !empty($params['start_time']) ? strtotime($params['start_time']) : 0,
'end_time' => !empty($params['end_time']) ? strtotime($params['end_time']) : 0,
'inspection_user' => $params['inspection_user'],
'company_id' => $params['company_id'],
'inspection_content' => $params['inspection_content'],
'is_important' => $params['is_important'],
'follow_user' => $params['follow_user'],
'check_item_detail_ids' => $params['check_item_detail_ids'] ? json_encode($params['check_item_detail_ids']) : null,
'annex' => $params['annex'] ? json_encode($params['annex']) : null,
'create_user' => $admin_id,
]);
if(!empty($params['inspection_result'])){
foreach($params['inspection_result'] as $v){
SupervisionInspectionResult::create([
'inspection_id' => $res->id,
'check_type' => $v['check_type'],
'check_content' => $v['check_content'],
'must_check' => $v['must_check'],
'check_result' => $v['check_result']
]);
}
}
if(!empty($params['inspection_problem'])){
foreach($params['inspection_problem'] as $v){
SupervisionInspectionProblem::create([
'inspection_id' => $res->id,
'problem_cate' => $v['problem_cate'],
'problem_description' => $v['problem_description'],
'problem_name' => $v['problem_name'],
]);
}
}
Db::commit();
return true;
} catch (\Exception $e) {
Db::rollback();
self::setError($e->getMessage());
return false;
}
}
/**
* @notes 编辑工程监理--巡视登记
* @param array $params
* @return bool
* @author likeadmin
* @date 2024/02/26 17:18
*/
public static function edit(array $params): bool
{
Db::startTrans();
try {
SupervisionInspection::where('id', $params['id'])->update([
'project_id' => $params['project_id'],
'inspection_type' => $params['inspection_type'],
'check_item_id' => $params['check_item_id'],
'inspection_position' => $params['inspection_position'],
'workers' => $params['workers'],
'managers' => $params['managers'],
'start_time' => !empty($params['start_time']) ? strtotime($params['start_time']) : 0,
'end_time' => !empty($params['end_time']) ? strtotime($params['end_time']) : 0,
'inspection_user' => $params['inspection_user'],
'company_id' => $params['company_id'],
'inspection_content' => $params['inspection_content'],
'is_important' => $params['is_important'],
'follow_user' => $params['follow_user'],
'check_item_detail_ids' => $params['check_item_detail_ids'] ? json_encode($params['check_item_detail_ids']) : null,
'annex' => $params['annex'] ? json_encode($params['annex']) : null,
'update_time' => time(),
]);
if(!empty($params['inspection_result'])){
foreach($params['inspection_result'] as $v){
if(!empty($v['id'])){
SupervisionInspectionResult::where('id',$v['id'])->update([
'inspection_id' => $params['id'],
'check_type' => $v['check_type'],
'check_content' => $v['check_content'],
'must_check' => $v['must_check'],
'check_result' => $v['check_result'],
'update_time' => time(),
]);
}else{
SupervisionInspectionResult::create([
'inspection_id' => $params['id'],
'check_type' => $v['check_type'],
'check_content' => $v['check_content'],
'must_check' => $v['must_check'],
'check_result' => $v['check_result']
]);
}
}
}
if(!empty($params['inspection_problem'])){
foreach($params['inspection_problem'] as $v){
if(!empty($v['id'])){
SupervisionInspectionProblem::where('id',$v['id'])->update([
'inspection_id' => $params['id'],
'problem_cate' => $v['problem_cate'],
'problem_description' => $v['problem_description'],
'problem_name' => $v['problem_name'],
]);
}else{
SupervisionInspectionProblem::create([
'inspection_id' => $params['id'],
'problem_cate' => $v['problem_cate'],
'problem_description' => $v['problem_description'],
'problem_name' => $v['problem_name'],
]);
}
}
}
Db::commit();
return true;
} catch (\Exception $e) {
Db::rollback();
self::setError($e->getMessage());
return false;
}
}
/**
* @notes 删除工程监理--巡视登记
* @param array $params
* @return bool
* @author likeadmin
* @date 2024/02/26 17:18
*/
public static function delete(array $params): bool
{
$inspection_result = SupervisionInspectionResult::where('inspection_id',$params['id'])->findOrEmpty();
if(!$inspection_result->isEmpty()){
self::setError('该巡视内容下存在巡视结果数据,请先删除巡视结果数据');
return false;
}
$inspection_problem = SupervisionInspectionProblem::where('inspection_id',$params['id'])->findOrEmpty();
if(!$inspection_problem->isEmpty()){
self::setError('该巡视内容下存在巡视问题数据,请先删除巡视问题数据');
return false;
}
return SupervisionInspection::destroy($params['id']);
}
/**
* @notes 获取工程监理--巡视登记详情
* @param $params
* @return array
* @author likeadmin
* @date 2024/02/26 17:18
*/
public static function detail($params): array
{
$data = SupervisionInspection::withoutField('update_time,delete_time')->findOrEmpty($params['id']);
$project = SupervisionProject::field('project_name')->where('id',$data['project_id'])->findOrEmpty();
$check_item = SupervisionCheckItem::field('node_name')->where('id',$data['check_item_id'])->findOrEmpty();
$company = SupervisionParticipatingUnits::field('unit_name')->where('id',$data['company_id'])->findOrEmpty();
$check_item_detail = SupervisionCheckItem::where('id','in',$data['check_item_detail_ids'])->column('node_name');
$create_user = Admin::field('name')->where('id',$data['create_user'])->findOrEmpty();
$data['project_name'] = $project['project_name'];
$data['check_item_name'] = $check_item['node_name'];
$data['company_name'] = $company['unit_name'];
$data['check_item_detail_name'] = implode(',',$check_item_detail);
$data['create_user_name'] = $create_user['name'];
$data['inspection_type_text'] = $data->inspection_type_text;
$data['is_important_text'] = $data->is_important_text;
return $data->toArray();
}
}

View File

@ -0,0 +1,112 @@
<?php
// +----------------------------------------------------------------------
// | likeadmin快速开发前后端分离管理后台PHP版
// +----------------------------------------------------------------------
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
// | 开源版本可自由商用可去除界面版权logo
// | gitee下载https://gitee.com/likeshop_gitee/likeadmin
// | github下载https://github.com/likeshop-github/likeadmin
// | 访问官网https://www.likeadmin.cn
// | likeadmin团队 版权所有 拥有最终解释权
// +----------------------------------------------------------------------
// | author: likeadminTeam
// +----------------------------------------------------------------------
namespace app\adminapi\logic\supervision_work;
use app\common\model\supervision_work\SupervisionInspectionProblem;
use app\common\logic\BaseLogic;
use think\facade\Db;
/**
* 工程监理--巡视问题逻辑
* Class SupervisionInspectionProblemLogic
* @package app\adminapi\logic\supervision_work
*/
class SupervisionInspectionProblemLogic extends BaseLogic
{
/**
* @notes 添加工程监理--巡视问题
* @param array $params
* @return bool
* @author likeadmin
* @date 2024/02/26 17:18
*/
public static function add(array $params): bool
{
Db::startTrans();
try {
SupervisionInspectionProblem::create([
'inspection_id' => $params['inspection_id'],
'problem_cate' => $params['problem_cate'],
'problem_description' => $params['problem_description'],
'problem_name' => $params['problem_name'],
]);
Db::commit();
return true;
} catch (\Exception $e) {
Db::rollback();
self::setError($e->getMessage());
return false;
}
}
/**
* @notes 编辑工程监理--巡视问题
* @param array $params
* @return bool
* @author likeadmin
* @date 2024/02/26 17:18
*/
public static function edit(array $params): bool
{
Db::startTrans();
try {
SupervisionInspectionProblem::where('id', $params['id'])->update([
'inspection_id' => $params['inspection_id'],
'problem_cate' => $params['problem_cate'],
'problem_description' => $params['problem_description'],
'problem_name' => $params['problem_name'],
'update_time' => time(),
]);
Db::commit();
return true;
} catch (\Exception $e) {
Db::rollback();
self::setError($e->getMessage());
return false;
}
}
/**
* @notes 删除工程监理--巡视问题
* @param array $params
* @return bool
* @author likeadmin
* @date 2024/02/26 17:18
*/
public static function delete(array $params): bool
{
return SupervisionInspectionProblem::destroy($params['id']);
}
/**
* @notes 获取工程监理--巡视问题详情
* @param $params
* @return array
* @author likeadmin
* @date 2024/02/26 17:18
*/
public static function detail($params): array
{
$data = SupervisionInspectionProblem::withoutField('create_time,update_time,delete_time')->findOrEmpty($params['id']);
return $data->toArray();
}
}

View File

@ -0,0 +1,116 @@
<?php
// +----------------------------------------------------------------------
// | likeadmin快速开发前后端分离管理后台PHP版
// +----------------------------------------------------------------------
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
// | 开源版本可自由商用可去除界面版权logo
// | gitee下载https://gitee.com/likeshop_gitee/likeadmin
// | github下载https://github.com/likeshop-github/likeadmin
// | 访问官网https://www.likeadmin.cn
// | likeadmin团队 版权所有 拥有最终解释权
// +----------------------------------------------------------------------
// | author: likeadminTeam
// +----------------------------------------------------------------------
namespace app\adminapi\logic\supervision_work;
use app\common\model\supervision_work\SupervisionInspectionResult;
use app\common\logic\BaseLogic;
use think\facade\Db;
/**
* 工程监理--巡视结果逻辑
* Class SupervisionInspectionResultLogic
* @package app\adminapi\logic\supervision_work
*/
class SupervisionInspectionResultLogic extends BaseLogic
{
/**
* @notes 添加工程监理--巡视结果
* @param array $params
* @return bool
* @author likeadmin
* @date 2024/02/27 09:23
*/
public static function add(array $params): bool
{
Db::startTrans();
try {
SupervisionInspectionResult::create([
'inspection_id' => $params['inspection_id'],
'check_type' => $params['check_type'],
'check_content' => $params['check_content'],
'must_check' => $params['must_check'],
'check_result' => $params['check_result']
]);
Db::commit();
return true;
} catch (\Exception $e) {
Db::rollback();
self::setError($e->getMessage());
return false;
}
}
/**
* @notes 编辑工程监理--巡视结果
* @param array $params
* @return bool
* @author likeadmin
* @date 2024/02/27 09:23
*/
public static function edit(array $params): bool
{
Db::startTrans();
try {
SupervisionInspectionResult::where('id', $params['id'])->update([
'inspection_id' => $params['inspection_id'],
'check_type' => $params['check_type'],
'check_content' => $params['check_content'],
'must_check' => $params['must_check'],
'check_result' => $params['check_result'],
'update_time' => time(),
]);
Db::commit();
return true;
} catch (\Exception $e) {
Db::rollback();
self::setError($e->getMessage());
return false;
}
}
/**
* @notes 删除工程监理--巡视结果
* @param array $params
* @return bool
* @author likeadmin
* @date 2024/02/27 09:23
*/
public static function delete(array $params): bool
{
return SupervisionInspectionResult::destroy($params['id']);
}
/**
* @notes 获取工程监理--巡视结果详情
* @param $params
* @return array
* @author likeadmin
* @date 2024/02/27 09:23
*/
public static function detail($params): array
{
$data = SupervisionInspectionResult::withoutField('create_time,update_time,delete_time')->findOrEmpty($params['id']);
$data['must_check_text'] = $data->must_check_text;
$data['check_result_text'] = $data->check_result_text;
return $data->toArray();
}
}

View File

@ -34,7 +34,7 @@ class DeptValidate extends BaseValidate
'org_id' => 'require|checkOrg',
'name' => 'require|length:1,30',
'leader' => 'checkLeader',
'mobile' => 'require|mobile',
'mobile' => 'mobile',
'status' => 'require|in:0,1',
'sort' => 'egt:0',
];

View File

@ -0,0 +1,120 @@
<?php
// +----------------------------------------------------------------------
// | likeadmin快速开发前后端分离管理后台PHP版
// +----------------------------------------------------------------------
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
// | 开源版本可自由商用可去除界面版权logo
// | gitee下载https://gitee.com/likeshop_gitee/likeadmin
// | github下载https://github.com/likeshop-github/likeadmin
// | 访问官网https://www.likeadmin.cn
// | likeadmin团队 版权所有 拥有最终解释权
// +----------------------------------------------------------------------
// | author: likeadminTeam
// +----------------------------------------------------------------------
namespace app\adminapi\validate\supervision_work;
use app\common\model\supervision_work\SupervisionCheckItem;
use app\common\model\supervision_work\SupervisionCheckItemDetail;
use app\common\validate\BaseValidate;
/**
* 工程监理--新增检查项明细验证器
* Class SupervisionCheckItemDetailValidate
* @package app\adminapi\validate\supervision_work
*/
class SupervisionCheckItemDetailValidate extends BaseValidate
{
/**
* 设置校验规则
* @var string[]
*/
protected $rule = [
'id' => 'require|checkData',
'node_id' => 'require|checkNode',
'check_type' => 'require',
'check_content' => 'require',
'must_check' => 'require|in:0,1',
];
/**
* 参数描述
* @var string[]
*/
protected $field = [
'id' => 'id',
'node_id' => '节点id',
'check_type' => '检查类别',
'check_content' => '检查内容',
'must_check' => '是否必检',
];
/**
* @notes 添加场景
* @return SupervisionCheckItemDetailValidate
* @author likeadmin
* @date 2024/02/26 15:34
*/
public function sceneAdd()
{
return $this->remove('id',true);
}
/**
* @notes 编辑场景
* @return SupervisionCheckItemDetailValidate
* @author likeadmin
* @date 2024/02/26 15:34
*/
public function sceneEdit()
{}
/**
* @notes 删除场景
* @return SupervisionCheckItemDetailValidate
* @author likeadmin
* @date 2024/02/26 15:34
*/
public function sceneDelete()
{
return $this->only(['id']);
}
/**
* @notes 详情场景
* @return SupervisionCheckItemDetailValidate
* @author likeadmin
* @date 2024/02/26 15:34
*/
public function sceneDetail()
{
return $this->only(['id']);
}
public function checkData($value): bool|string
{
$data = SupervisionCheckItemDetail::where('id',$value)->findOrEmpty();
if($data->isEmpty()){
return '数据不存在';
}
return true;
}
public function checkNode($value): bool|string
{
$data = SupervisionCheckItem::where('id',$value)->findOrEmpty();
if($data->isEmpty()){
return '检查项节点信息不存在';
}
return true;
}
}

View File

@ -0,0 +1,172 @@
<?php
// +----------------------------------------------------------------------
// | likeadmin快速开发前后端分离管理后台PHP版
// +----------------------------------------------------------------------
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
// | 开源版本可自由商用可去除界面版权logo
// | gitee下载https://gitee.com/likeshop_gitee/likeadmin
// | github下载https://github.com/likeshop-github/likeadmin
// | 访问官网https://www.likeadmin.cn
// | likeadmin团队 版权所有 拥有最终解释权
// +----------------------------------------------------------------------
// | author: likeadminTeam
// +----------------------------------------------------------------------
namespace app\adminapi\validate\supervision_work;
use app\common\model\dict\DictData;
use app\common\model\supervision_project\SupervisionProject;
use app\common\model\supervision_work\SupervisionCheckItem;
use app\common\model\supervision_work\SupervisionCheckItemDetail;
use app\common\validate\BaseValidate;
/**
* 工程监理--新增检查项验证器
* Class SupervisionCheckItemValidate
* @package app\adminapi\validate\supervision_work
*/
class SupervisionCheckItemValidate extends BaseValidate
{
/**
* 设置校验规则
* @var string[]
*/
protected $rule = [
'id' => 'require|checkData',
'project_id' => 'require|checkProject',
'pid' => 'integer|checkPid',
'node_name' => 'require',
'node_type' => 'require|checkNodeType',
'check_item_detail' => 'checkDetail',
];
/**
* 参数描述
* @var string[]
*/
protected $field = [
'id' => 'id',
'project_id' => '项目id',
'node_name' => '节点名称',
'node_type' => '节点类型',
'node_code' => '节点编号',
'pid' => '父节点id',
'inspection_basis' => '检查依据',
'reference_law' => '参考法规',
];
/**
* @notes 添加场景
* @return SupervisionCheckItemValidate
* @author likeadmin
* @date 2024/02/26 15:34
*/
public function sceneAdd()
{
return $this->remove('id',true);
}
/**
* @notes 编辑场景
* @return SupervisionCheckItemValidate
* @author likeadmin
* @date 2024/02/26 15:34
*/
public function sceneEdit()
{}
/**
* @notes 删除场景
* @return SupervisionCheckItemValidate
* @author likeadmin
* @date 2024/02/26 15:34
*/
public function sceneDelete()
{
return $this->only(['id']);
}
/**
* @notes 详情场景
* @return SupervisionCheckItemValidate
* @author likeadmin
* @date 2024/02/26 15:34
*/
public function sceneDetail()
{
return $this->only(['id']);
}
public function checkData($value): bool|string
{
$data = SupervisionCheckItem::where('id',$value)->findOrEmpty();
if($data->isEmpty()){
return '数据不存在';
}
return true;
}
public function checkProject($value): bool|string
{
$data = SupervisionProject::where('id',$value)->findOrEmpty();
if($data->isEmpty()){
return '项目信息不存在';
}
return true;
}
public function checkPid($value): bool|string
{
if(empty($value)) return true;
$data = SupervisionCheckItem::where('id',$value)->findOrEmpty();
if($data->isEmpty()){
return '父级节点信息不存在';
}
return true;
}
public function checkNodeType($value): bool|string
{
$dict = DictData::where('type_value','check_item_node_type')->column('value');
if(!in_array($value,$dict)){
return '节点类型数据值无效';
}
return true;
}
public function checkDetail($value): bool|string
{
if(empty($value) || $value == '') return true;
if(!is_array($value)) return '检查项数据格式错误';
foreach($value as $k=>$v){
if(isset($v['id']) && !empty($v['id'])){
$data = SupervisionCheckItemDetail::where('id',$v['id'])->findOrEmpty();
if($data->isEmpty()){
return '第'.($k+1).'行检查项信息不存在';
}
}
if(empty($v['check_type'])){
return '第'.($k+1).'行检查类别为空';
}
if(empty($v['check_content'])){
return '第'.($k+1).'行检查内容为空';
}
if(empty($v['must_check'])){
return '第'.($k+1).'行是否必检为空';
}
if(!in_array($v['must_check'],[0,1])){
return '第'.($k+1).'行是否必检项数据值错误';
}
}
return true;
}
}

View File

@ -0,0 +1,122 @@
<?php
// +----------------------------------------------------------------------
// | likeadmin快速开发前后端分离管理后台PHP版
// +----------------------------------------------------------------------
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
// | 开源版本可自由商用可去除界面版权logo
// | gitee下载https://gitee.com/likeshop_gitee/likeadmin
// | github下载https://github.com/likeshop-github/likeadmin
// | 访问官网https://www.likeadmin.cn
// | likeadmin团队 版权所有 拥有最终解释权
// +----------------------------------------------------------------------
// | author: likeadminTeam
// +----------------------------------------------------------------------
namespace app\adminapi\validate\supervision_work;
use app\common\model\supervision_work\SupervisionInspection;
use app\common\model\supervision_work\SupervisionInspectionProblem;
use app\common\validate\BaseValidate;
/**
* 工程监理--巡视问题验证器
* Class SupervisionInspectionProblemValidate
* @package app\adminapi\validate\supervision_work
*/
class SupervisionInspectionProblemValidate extends BaseValidate
{
/**
* 设置校验规则
* @var string[]
*/
protected $rule = [
'id' => 'require|checkData',
'inspection_id' => 'require|checkInspection',
'problem_cate' => 'require',
'problem_description' => 'require',
'problem_name' => 'require',
];
/**
* 参数描述
* @var string[]
*/
protected $field = [
'id' => 'id',
'inspection_id' => '巡视id',
'problem_cate' => '问题分类',
'problem_description' => '问题说明',
'problem_name' => '问题名称',
];
/**
* @notes 添加场景
* @return SupervisionInspectionProblemValidate
* @author likeadmin
* @date 2024/02/26 17:18
*/
public function sceneAdd()
{
return $this->only(['inspection_id','problem_cate','problem_description','problem_name']);
}
/**
* @notes 编辑场景
* @return SupervisionInspectionProblemValidate
* @author likeadmin
* @date 2024/02/26 17:18
*/
public function sceneEdit()
{
return $this->only(['id','inspection_id','problem_cate','problem_description','problem_name']);
}
/**
* @notes 删除场景
* @return SupervisionInspectionProblemValidate
* @author likeadmin
* @date 2024/02/26 17:18
*/
public function sceneDelete()
{
return $this->only(['id']);
}
/**
* @notes 详情场景
* @return SupervisionInspectionProblemValidate
* @author likeadmin
* @date 2024/02/26 17:18
*/
public function sceneDetail()
{
return $this->only(['id']);
}
public function checkData($value): bool|string
{
$data = SupervisionInspectionProblem::where('id',$value)->findOrEmpty();
if($data->isEmpty()){
return '数据不存在';
}
return true;
}
public function checkInspection($value): bool|string
{
$data = SupervisionInspection::where('id',$value)->findOrEmpty();
if($data->isEmpty()){
return '巡视信息不存在';
}
return true;
}
}

View File

@ -0,0 +1,124 @@
<?php
// +----------------------------------------------------------------------
// | likeadmin快速开发前后端分离管理后台PHP版
// +----------------------------------------------------------------------
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
// | 开源版本可自由商用可去除界面版权logo
// | gitee下载https://gitee.com/likeshop_gitee/likeadmin
// | github下载https://github.com/likeshop-github/likeadmin
// | 访问官网https://www.likeadmin.cn
// | likeadmin团队 版权所有 拥有最终解释权
// +----------------------------------------------------------------------
// | author: likeadminTeam
// +----------------------------------------------------------------------
namespace app\adminapi\validate\supervision_work;
use app\common\model\supervision_work\SupervisionInspection;
use app\common\model\supervision_work\SupervisionInspectionResult;
use app\common\validate\BaseValidate;
/**
* 工程监理--巡视结果验证器
* Class SupervisionInspectionResultValidate
* @package app\adminapi\validate\supervision_work
*/
class SupervisionInspectionResultValidate extends BaseValidate
{
/**
* 设置校验规则
* @var string[]
*/
protected $rule = [
'id' => 'require|checkData',
'inspection_id' => 'require|checkInspection',
'check_type' => 'require',
'check_content' => 'require',
'must_check' => 'require|in:0,1',
'check_result' => 'require|in:0,1',
];
/**
* 参数描述
* @var string[]
*/
protected $field = [
'id' => 'id',
'inspection_id' => '巡视id',
'check_type' => '检查类别',
'check_content' => '检查内容',
'must_check' => '是否必检',
'check_result' => '检查结果',
];
/**
* @notes 添加场景
* @return SupervisionInspectionResultValidate
* @author likeadmin
* @date 2024/02/27 09:23
*/
public function sceneAdd()
{
return $this->only(['inspection_id','check_type','check_content','must_check','check_result']);
}
/**
* @notes 编辑场景
* @return SupervisionInspectionResultValidate
* @author likeadmin
* @date 2024/02/27 09:23
*/
public function sceneEdit()
{
return $this->only(['id','inspection_id','check_type','check_content','must_check','check_result']);
}
/**
* @notes 删除场景
* @return SupervisionInspectionResultValidate
* @author likeadmin
* @date 2024/02/27 09:23
*/
public function sceneDelete()
{
return $this->only(['id']);
}
/**
* @notes 详情场景
* @return SupervisionInspectionResultValidate
* @author likeadmin
* @date 2024/02/27 09:23
*/
public function sceneDetail()
{
return $this->only(['id']);
}
public function checkData($value): bool|string
{
$data = SupervisionInspectionResult::where('id',$value)->findOrEmpty();
if($data->isEmpty()){
return '数据不存在';
}
return true;
}
public function checkInspection($value): bool|string
{
$data = SupervisionInspection::where('id',$value)->findOrEmpty();
if($data->isEmpty()){
return '巡视信息不存在';
}
return true;
}
}

View File

@ -0,0 +1,234 @@
<?php
// +----------------------------------------------------------------------
// | likeadmin快速开发前后端分离管理后台PHP版
// +----------------------------------------------------------------------
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
// | 开源版本可自由商用可去除界面版权logo
// | gitee下载https://gitee.com/likeshop_gitee/likeadmin
// | github下载https://github.com/likeshop-github/likeadmin
// | 访问官网https://www.likeadmin.cn
// | likeadmin团队 版权所有 拥有最终解释权
// +----------------------------------------------------------------------
// | author: likeadminTeam
// +----------------------------------------------------------------------
namespace app\adminapi\validate\supervision_work;
use app\common\model\dict\DictData;
use app\common\model\supervision_project\SupervisionParticipatingUnits;
use app\common\model\supervision_project\SupervisionProject;
use app\common\model\supervision_work\SupervisionCheckItem;
use app\common\model\supervision_work\SupervisionInspection;
use app\common\model\supervision_work\SupervisionInspectionProblem;
use app\common\model\supervision_work\SupervisionInspectionResult;
use app\common\validate\BaseValidate;
/**
* 工程监理--巡视登记验证器
* Class SupervisionInspectionValidate
* @package app\adminapi\validate\supervision_work
*/
class SupervisionInspectionValidate extends BaseValidate
{
/**
* 设置校验规则
* @var string[]
*/
protected $rule = [
'id' => 'require|checkData',
'project_id' => 'require|checkProject',
'inspection_type' => 'require|checkInspectionType',
'check_item_id' => 'require|checkCheckItem',
'workers' => 'integer',
'managers' => 'integer',
'start_time' => 'require|dateFormat:Y-m-d H:i:s',
'end_time' => 'require|dateFormat:Y-m-d H:i:s',
'inspection_user' => 'require',
'company_id' => 'checkCompany',
'inspection_content' => 'require',
'is_important' => 'in:0,1',
'check_item_detail_ids' => 'checkCheckItemDetail',
'annex' => 'checkAnnex',
'inspection_result' => 'checkInspectionResult',
'inspection_problem' => 'checkInspectionProblem'
];
/**
* 参数描述
* @var string[]
*/
protected $field = [
'id' => 'id',
'project_id' => '项目id',
'inspection_code' => '编号',
'inspection_type' => '巡视类型',
'check_item_id' => '单位工程',
'inspection_position' => '巡视部位',
'workers' => '施工人数',
'managers' => '管理人数',
'start_time' => '巡视开始时间',
'end_time' => '巡视结束时间',
'inspection_user' => '巡视人员',
'inspection_content' => '巡视内容',
'is_important' => '设置重点关注事项',
'follow_user' => '关注人',
'check_item_detail_ids' => '检查表单选择',
'create_user' => '创建人',
];
/**
* @notes 添加场景
* @return SupervisionInspectionValidate
* @author likeadmin
* @date 2024/02/26 17:18
*/
public function sceneAdd()
{
return $this->remove('id',true);
}
/**
* @notes 编辑场景
* @return SupervisionInspectionValidate
* @author likeadmin
* @date 2024/02/26 17:18
*/
public function sceneEdit()
{}
/**
* @notes 删除场景
* @return SupervisionInspectionValidate
* @author likeadmin
* @date 2024/02/26 17:18
*/
public function sceneDelete()
{
return $this->only(['id']);
}
/**
* @notes 详情场景
* @return SupervisionInspectionValidate
* @author likeadmin
* @date 2024/02/26 17:18
*/
public function sceneDetail()
{
return $this->only(['id']);
}
public function checkData($value): bool|string
{
$data = SupervisionInspection::where('id',$value)->findOrEmpty();
if($data->isEmpty()){
return '数据不存在';
}
return true;
}
public function checkProject($value): bool|string
{
$data = SupervisionProject::where('id',$value)->findOrEmpty();
if($data->isEmpty()){
return '项目信息不存在';
}
return true;
}
public function checkInspectionType($value): bool|string
{
$dict = DictData::where('type_value','inspection_type')->column('value');
if(!in_array($value,$dict)){
return '巡视类型数据值无效';
}
return true;
}
public function checkCheckItem($value,$rule,$params): bool|string
{
$data = SupervisionCheckItem::where('id',$value)->where('project_id',$params['project_id'])->where('node_type',2)->findOrEmpty();
if($data->isEmpty()){
return '单位工程数据不存在';
}
return true;
}
public function checkCompany($value,$rule,$params): bool|string
{
$data = SupervisionParticipatingUnits::where('id',$value)->where('project_id',$params['project_id'])->findOrEmpty();
if($data->isEmpty()){
return '施工单位信息不存在';
}
return true;
}
public function checkCheckItemDetail($value,$rule,$params): bool|string
{
if(!isset($value) || $value == '') return true;
if(!is_array($value)) return '检查表单选择数据格式错误';
foreach($value as $v){
$data = SupervisionCheckItem::where('id',$v)->where('project_id',$params['project_id'])->findOrEmpty();
if($data->isEmpty()){
return '检查项节点数据不存在';
}
}
return true;
}
public function checkAnnex($value): bool|string
{
if(!empty($value) && $value != '' && !is_array($value)){
return '附件格式错误';
}
return true;
}
public function checkInspectionResult($value): bool|string
{
if(!isset($value) || $value == '') return true;
if(!is_array($value)) return '巡视结果数据格式错误';
foreach($value as $k=>$v){
if(!empty($v['id'])){
$data = SupervisionInspectionResult::where('id',$v['id'])->findOrEmpty();
if($data->isEmpty()){
return '巡视结果列表第'.($k+1).'行数据不存在';
}
}
if(empty($v['check_type'])) return '巡视结果列表第'.($k+1).'行检查类别为空';
if(empty($v['check_content'])) return '巡视结果列表第'.($k+1).'行检查内容为空';
if(!isset($v['must_check']) || $v['must_check'] == '') return '巡视结果列表第'.($k+1).'行是否必检为空';
if(!in_array($v['must_check'],[0,1])) return '巡视结果列表第'.($k+1).'行是否必检数据值无效';
if(!isset($v['check_result']) || $v['check_result'] == '') return '巡视结果列表第'.($k+1).'行检查结果为空';
if(!in_array($v['check_result'],[0,1])) return '巡视结果列表第'.($k+1).'行检查结果数据值无效';
}
return true;
}
public function checkInspectionProblem($value): bool|string
{
if(!isset($value) || $value == '') return true;
if(!is_array($value)) return '巡视问题数据格式错误';
foreach($value as $k=>$v){
if(!empty($v['id'])){
$data = SupervisionInspectionProblem::where('id',$v['id'])->findOrEmpty();
if($data->isEmpty()){
return '巡视问题列表第'.($k+1).'行数据不存在';
}
}
if(empty($v['problem_cate'])) return '巡视问题列表第'.($k+1).'行问题分类为空';
if(empty($v['problem_description'])) return '巡视问题列表第'.($k+1).'行问题说明为空';
if(empty($v['problem_name'])) return '巡视问题列表第'.($k+1).'行问题名称为空';
}
return true;
}
}

View File

@ -40,6 +40,11 @@ class SupervisionSpecialOperationPersonnel extends BaseModel
return !empty($value) ? date('Y-m-d H:i:s', $value) : '';
}
public function getValidityPeriodAttr($value): string
{
return !empty($value) ? date('Y-m-d', $value) : '';
}
public function getStatusTextAttr($value,$data){
$arr = [0=>'有效', 1=>'无效'];
return $arr[$data['status']];

View File

@ -0,0 +1,38 @@
<?php
// +----------------------------------------------------------------------
// | likeadmin快速开发前后端分离管理后台PHP版
// +----------------------------------------------------------------------
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
// | 开源版本可自由商用可去除界面版权logo
// | gitee下载https://gitee.com/likeshop_gitee/likeadmin
// | github下载https://github.com/likeshop-github/likeadmin
// | 访问官网https://www.likeadmin.cn
// | likeadmin团队 版权所有 拥有最终解释权
// +----------------------------------------------------------------------
// | author: likeadminTeam
// +----------------------------------------------------------------------
namespace app\common\model\supervision_work;
use app\common\model\BaseModel;
use app\common\model\dict\DictData;
use think\model\concern\SoftDelete;
/**
* 工程监理--新增检查项模型
* Class SupervisionCheckItem
* @package app\common\model\supervision_work
*/
class SupervisionCheckItem extends BaseModel
{
use SoftDelete;
protected $name = 'supervision_check_item';
protected $deleteTime = 'delete_time';
public function getNodeTypeTextAttr($value,$data){
$dict = DictData::where('type_value','check_item_node_type')->column('name','value');
return !empty($data['node_type']) ? $dict[$data['node_type']] : '';
}
}

View File

@ -0,0 +1,38 @@
<?php
// +----------------------------------------------------------------------
// | likeadmin快速开发前后端分离管理后台PHP版
// +----------------------------------------------------------------------
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
// | 开源版本可自由商用可去除界面版权logo
// | gitee下载https://gitee.com/likeshop_gitee/likeadmin
// | github下载https://github.com/likeshop-github/likeadmin
// | 访问官网https://www.likeadmin.cn
// | likeadmin团队 版权所有 拥有最终解释权
// +----------------------------------------------------------------------
// | author: likeadminTeam
// +----------------------------------------------------------------------
namespace app\common\model\supervision_work;
use app\common\model\BaseModel;
use think\model\concern\SoftDelete;
/**
* 工程监理--新增检查项明细模型
* Class SupervisionCheckItemDetail
* @package app\common\model\supervision_work
*/
class SupervisionCheckItemDetail extends BaseModel
{
use SoftDelete;
protected $name = 'supervision_check_item_detail';
protected $deleteTime = 'delete_time';
public function getMustCheckTextAttr($value,$data): string
{
$arr = [0=>'否', 1=>'是'];
return $arr[$data['must_check']];
}
}

View File

@ -0,0 +1,63 @@
<?php
// +----------------------------------------------------------------------
// | likeadmin快速开发前后端分离管理后台PHP版
// +----------------------------------------------------------------------
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
// | 开源版本可自由商用可去除界面版权logo
// | gitee下载https://gitee.com/likeshop_gitee/likeadmin
// | github下载https://github.com/likeshop-github/likeadmin
// | 访问官网https://www.likeadmin.cn
// | likeadmin团队 版权所有 拥有最终解释权
// +----------------------------------------------------------------------
// | author: likeadminTeam
// +----------------------------------------------------------------------
namespace app\common\model\supervision_work;
use app\common\model\BaseModel;
use app\common\model\dict\DictData;
use think\model\concern\SoftDelete;
/**
* 工程监理--巡视登记模型
* Class SupervisionInspection
* @package app\common\model\supervision_work
*/
class SupervisionInspection extends BaseModel
{
use SoftDelete;
protected $name = 'supervision_inspection';
protected $deleteTime = 'delete_time';
public function getAnnexAttr($value)
{
return !empty($value) ? json_decode($value,true) : '';
}
public function getCheckItemDetailIdsAttr($value)
{
return !empty($value) ? json_decode($value,true) : '';
}
public function getInspectionTypeTextAttr($value,$data){
$dict = DictData::where('type_value','inspection_type')->column('name','value');
return !empty($data['inspection_type']) ? $dict[$data['inspection_type']] : '';
}
public function getIsImportantTextAttr($value,$data){
$arr = [0=>'有效', 1=>'无效'];
return $arr[$data['is_important']];
}
public function getStartTimeAttr($value): string
{
return !empty($value) ? date('Y-m-d H:i:s', $value) : '';
}
public function getEndTimeAttr($value): string
{
return !empty($value) ? date('Y-m-d H:i:s', $value) : '';
}
}

View File

@ -0,0 +1,34 @@
<?php
// +----------------------------------------------------------------------
// | likeadmin快速开发前后端分离管理后台PHP版
// +----------------------------------------------------------------------
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
// | 开源版本可自由商用可去除界面版权logo
// | gitee下载https://gitee.com/likeshop_gitee/likeadmin
// | github下载https://github.com/likeshop-github/likeadmin
// | 访问官网https://www.likeadmin.cn
// | likeadmin团队 版权所有 拥有最终解释权
// +----------------------------------------------------------------------
// | author: likeadminTeam
// +----------------------------------------------------------------------
namespace app\common\model\supervision_work;
use app\common\model\BaseModel;
use think\model\concern\SoftDelete;
/**
* 工程监理--巡视问题模型
* Class SupervisionInspectionProblem
* @package app\common\model\supervision_work
*/
class SupervisionInspectionProblem extends BaseModel
{
use SoftDelete;
protected $name = 'supervision_inspection_problem';
protected $deleteTime = 'delete_time';
}

View File

@ -0,0 +1,44 @@
<?php
// +----------------------------------------------------------------------
// | likeadmin快速开发前后端分离管理后台PHP版
// +----------------------------------------------------------------------
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
// | 开源版本可自由商用可去除界面版权logo
// | gitee下载https://gitee.com/likeshop_gitee/likeadmin
// | github下载https://github.com/likeshop-github/likeadmin
// | 访问官网https://www.likeadmin.cn
// | likeadmin团队 版权所有 拥有最终解释权
// +----------------------------------------------------------------------
// | author: likeadminTeam
// +----------------------------------------------------------------------
namespace app\common\model\supervision_work;
use app\common\model\BaseModel;
use think\model\concern\SoftDelete;
/**
* 工程监理--巡视结果模型
* Class SupervisionInspectionResult
* @package app\common\model\supervision_work
*/
class SupervisionInspectionResult extends BaseModel
{
use SoftDelete;
protected $name = 'supervision_inspection_result';
protected $deleteTime = 'delete_time';
public function getMustCheckTextAttr($value,$data): string
{
$arr = [0=>'否',1=>'是'];
return $arr[$data['must_check']];
}
public function getCheckResultTextAttr($value,$data): string
{
$arr = [0=>'合格',1=>'不合格'];
return $arr[$data['check_result']];
}
}

View File

@ -1 +0,0 @@
import o from"./error.8450456c.js";import{d as r,o as i,c as p,V as m,M as e,a as t}from"./@vue.ab566ce7.js";import"./element-plus.b3353ca6.js";import"./@vueuse.8fcae4c2.js";import"./@element-plus.b89f1627.js";import"./lodash-es.49f4af13.js";import"./dayjs.4afe12d3.js";import"./axios.37fc980d.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./vue-router.87ebc608.js";import"./index.892155dd.js";import"./lodash.1d82ee7c.js";import"./pinia.b6700c26.js";import"./vue-demi.ebc8116b.js";import"./css-color-function.d0bec2c9.js";import"./color.ea90db3f.js";import"./clone.cbd692e6.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.ad6bc3c0.js";import"./ms.a9ae1d6d.js";import"./nprogress.bcdf1f46.js";import"./vue-clipboard3.c45111bf.js";import"./clipboard.1cb79a0d.js";import"./echarts.b30ab882.js";import"./tslib.60310f1a.js";import"./zrender.3760070d.js";import"./highlight.js.4ebdf9a4.js";import"./@highlightjs.62ff6725.js";const s="/admin/assets/no_perms.a56e95a5.png",a={class:"error404"},u=t("div",{class:"flex justify-center"},[t("img",{class:"w-[150px] h-[150px]",src:s,alt:""})],-1),T=r({__name:"403",setup(c){return(n,_)=>(i(),p("div",a,[m(o,{code:"403",title:"\u60A8\u7684\u8D26\u53F7\u6743\u9650\u4E0D\u8DB3\uFF0C\u8BF7\u8054\u7CFB\u7BA1\u7406\u5458\u6DFB\u52A0\u6743\u9650\uFF01","show-btn":!1},{content:e(()=>[u]),_:1})]))}});export{T as default};

View File

@ -1 +0,0 @@
import o from"./error.0d25cb10.js";import{d as r,o as i,c as p,V as m,M as e,a as t}from"./@vue.ab566ce7.js";import"./element-plus.136d24b7.js";import"./@vueuse.8fcae4c2.js";import"./@element-plus.b89f1627.js";import"./lodash-es.49f4af13.js";import"./dayjs.3c87fefd.js";import"./axios.3ce6e109.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./vue-router.87ebc608.js";import"./index.07a7d930.js";import"./lodash.fc152425.js";import"./pinia.b6700c26.js";import"./vue-demi.ebc8116b.js";import"./css-color-function.b155761f.js";import"./color.3f4181c1.js";import"./clone.3069ca68.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.034d4192.js";import"./ms.a9ae1d6d.js";import"./nprogress.27c3f051.js";import"./vue-clipboard3.16970510.js";import"./clipboard.447e0e72.js";import"./echarts.b30ab882.js";import"./tslib.60310f1a.js";import"./zrender.3760070d.js";import"./highlight.js.4ebdf9a4.js";import"./@highlightjs.62ff6725.js";const s="/admin/assets/no_perms.a56e95a5.png",a={class:"error404"},u=t("div",{class:"flex justify-center"},[t("img",{class:"w-[150px] h-[150px]",src:s,alt:""})],-1),T=r({__name:"403",setup(c){return(n,_)=>(i(),p("div",a,[m(o,{code:"403",title:"\u60A8\u7684\u8D26\u53F7\u6743\u9650\u4E0D\u8DB3\uFF0C\u8BF7\u8054\u7CFB\u7BA1\u7406\u5458\u6DFB\u52A0\u6743\u9650\uFF01","show-btn":!1},{content:e(()=>[u]),_:1})]))}});export{T as default};

View File

@ -0,0 +1 @@
import o from"./error.26135a60.js";import{d as r,o as i,c as p,V as m,M as e,a as t}from"./@vue.ab566ce7.js";import"./element-plus.517d4382.js";import"./@vueuse.8fcae4c2.js";import"./@element-plus.b89f1627.js";import"./lodash-es.49f4af13.js";import"./dayjs.4afe12d3.js";import"./axios.37fc980d.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./vue-router.87ebc608.js";import"./index.8b1962e9.js";import"./lodash.1d82ee7c.js";import"./pinia.b6700c26.js";import"./vue-demi.ebc8116b.js";import"./css-color-function.d0bec2c9.js";import"./color.ea90db3f.js";import"./clone.cbd692e6.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.ad6bc3c0.js";import"./ms.a9ae1d6d.js";import"./nprogress.bcdf1f46.js";import"./vue-clipboard3.c45111bf.js";import"./clipboard.1cb79a0d.js";import"./echarts.b30ab882.js";import"./tslib.60310f1a.js";import"./zrender.3760070d.js";import"./highlight.js.4ebdf9a4.js";import"./@highlightjs.62ff6725.js";const s="/admin/assets/no_perms.a56e95a5.png",a={class:"error404"},u=t("div",{class:"flex justify-center"},[t("img",{class:"w-[150px] h-[150px]",src:s,alt:""})],-1),T=r({__name:"403",setup(c){return(n,_)=>(i(),p("div",a,[m(o,{code:"403",title:"\u60A8\u7684\u8D26\u53F7\u6743\u9650\u4E0D\u8DB3\uFF0C\u8BF7\u8054\u7CFB\u7BA1\u7406\u5458\u6DFB\u52A0\u6743\u9650\uFF01","show-btn":!1},{content:e(()=>[u]),_:1})]))}});export{T as default};

View File

@ -1 +0,0 @@
import o from"./error.0d25cb10.js";import{d as r,o as t,c as m,V as p}from"./@vue.ab566ce7.js";import"./element-plus.136d24b7.js";import"./@vueuse.8fcae4c2.js";import"./@element-plus.b89f1627.js";import"./lodash-es.49f4af13.js";import"./dayjs.3c87fefd.js";import"./axios.3ce6e109.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./vue-router.87ebc608.js";import"./index.07a7d930.js";import"./lodash.fc152425.js";import"./pinia.b6700c26.js";import"./vue-demi.ebc8116b.js";import"./css-color-function.b155761f.js";import"./color.3f4181c1.js";import"./clone.3069ca68.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.034d4192.js";import"./ms.a9ae1d6d.js";import"./nprogress.27c3f051.js";import"./vue-clipboard3.16970510.js";import"./clipboard.447e0e72.js";import"./echarts.b30ab882.js";import"./tslib.60310f1a.js";import"./zrender.3760070d.js";import"./highlight.js.4ebdf9a4.js";import"./@highlightjs.62ff6725.js";const i={class:"error404"},P=r({__name:"404",setup(e){return(u,c)=>(t(),m("div",i,[p(o,{code:"404",title:"\u54CE\u5440\uFF0C\u51FA\u9519\u4E86\uFF01\u60A8\u8BBF\u95EE\u7684\u9875\u9762\u4E0D\u5B58\u5728\u2026"})]))}});export{P as default};

View File

@ -1 +0,0 @@
import o from"./error.8450456c.js";import{d as r,o as t,c as m,V as p}from"./@vue.ab566ce7.js";import"./element-plus.b3353ca6.js";import"./@vueuse.8fcae4c2.js";import"./@element-plus.b89f1627.js";import"./lodash-es.49f4af13.js";import"./dayjs.4afe12d3.js";import"./axios.37fc980d.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./vue-router.87ebc608.js";import"./index.892155dd.js";import"./lodash.1d82ee7c.js";import"./pinia.b6700c26.js";import"./vue-demi.ebc8116b.js";import"./css-color-function.d0bec2c9.js";import"./color.ea90db3f.js";import"./clone.cbd692e6.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.ad6bc3c0.js";import"./ms.a9ae1d6d.js";import"./nprogress.bcdf1f46.js";import"./vue-clipboard3.c45111bf.js";import"./clipboard.1cb79a0d.js";import"./echarts.b30ab882.js";import"./tslib.60310f1a.js";import"./zrender.3760070d.js";import"./highlight.js.4ebdf9a4.js";import"./@highlightjs.62ff6725.js";const i={class:"error404"},P=r({__name:"404",setup(e){return(u,c)=>(t(),m("div",i,[p(o,{code:"404",title:"\u54CE\u5440\uFF0C\u51FA\u9519\u4E86\uFF01\u60A8\u8BBF\u95EE\u7684\u9875\u9762\u4E0D\u5B58\u5728\u2026"})]))}});export{P as default};

View File

@ -0,0 +1 @@
import o from"./error.26135a60.js";import{d as r,o as t,c as m,V as p}from"./@vue.ab566ce7.js";import"./element-plus.517d4382.js";import"./@vueuse.8fcae4c2.js";import"./@element-plus.b89f1627.js";import"./lodash-es.49f4af13.js";import"./dayjs.4afe12d3.js";import"./axios.37fc980d.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./vue-router.87ebc608.js";import"./index.8b1962e9.js";import"./lodash.1d82ee7c.js";import"./pinia.b6700c26.js";import"./vue-demi.ebc8116b.js";import"./css-color-function.d0bec2c9.js";import"./color.ea90db3f.js";import"./clone.cbd692e6.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.ad6bc3c0.js";import"./ms.a9ae1d6d.js";import"./nprogress.bcdf1f46.js";import"./vue-clipboard3.c45111bf.js";import"./clipboard.1cb79a0d.js";import"./echarts.b30ab882.js";import"./tslib.60310f1a.js";import"./zrender.3760070d.js";import"./highlight.js.4ebdf9a4.js";import"./@highlightjs.62ff6725.js";const i={class:"error404"},P=r({__name:"404",setup(e){return(u,c)=>(t(),m("div",i,[p(o,{code:"404",title:"\u54CE\u5440\uFF0C\u51FA\u9519\u4E86\uFF01\u60A8\u8BBF\u95EE\u7684\u9875\u9762\u4E0D\u5B58\u5728\u2026"})]))}});export{P as default};

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1 +0,0 @@
import t from"./myTable.eddb2992.js";import{d as n}from"./InvoicingRequests.62d68dae.js";import{a as c}from"./remittance.96c4b9e8.js";import{a as s}from"./recordsPayment.e08e65dd.js";import{a as b}from"./refund.a33828e7.js";import{_}from"./edit.vue_vue_type_script_setup_true_name_projectFollowUpEdit_lang.fe95cd4d.js";import{a0 as o,o as u,c as d,V as p,W as f}from"./@vue.ab566ce7.js";import"./index.vue_vue_type_script_setup_true_lang.f8e9523f.js";import"./element-plus.b3353ca6.js";import"./@vueuse.8fcae4c2.js";import"./@element-plus.b89f1627.js";import"./lodash-es.49f4af13.js";import"./dayjs.4afe12d3.js";import"./axios.37fc980d.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./usePaging.f6660143.js";import"./index.892155dd.js";import"./lodash.1d82ee7c.js";import"./vue-router.87ebc608.js";import"./pinia.b6700c26.js";import"./vue-demi.ebc8116b.js";import"./css-color-function.d0bec2c9.js";import"./color.ea90db3f.js";import"./clone.cbd692e6.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.ad6bc3c0.js";import"./ms.a9ae1d6d.js";import"./nprogress.bcdf1f46.js";import"./vue-clipboard3.c45111bf.js";import"./clipboard.1cb79a0d.js";import"./echarts.b30ab882.js";import"./tslib.60310f1a.js";import"./zrender.3760070d.js";import"./highlight.js.4ebdf9a4.js";import"./@highlightjs.62ff6725.js";import"./index.vue_vue_type_script_setup_true_lang.3dd325bc.js";import"./useDictOptions.c47985a3.js";import"./project.31b61d2e.js";import"./index.771e5a41.js";import"./project_follow_up.ba7300ba.js";import"./index.4fd1d92a.js";const br={__name:"Collection",props:{project_id:Number,components:_},setup(a){const r=a,e=o({fetchFun:n,tit:"\u5F00\u7968\u8BB0\u5F55",queryParams:{project_id:r.project_id},columnList:[{label:"\u5F00\u7968\u5355\u53F7",prop:"invoicing_code"},{label:"\u5408\u540C\u7F16\u53F7",prop:"contract_code"},{label:"\u5408\u540C\u540D\u79F0",prop:"contract_name"},{label:"\u5F00\u7968\u65E5\u671F",prop:"invoicing_date"},{label:"\u671F\u6B21",prop:"period"},{label:"\u53D1\u7968\u7C7B\u578B",prop:"invoice_type"},{label:"\u53D1\u7968\u7F16\u53F7",prop:"tax"},{label:"\u5F00\u7968\u91D1\u989D(\u542B\u7A0E)",prop:"amount_including_tax"},{label:"\u7A0E\u7387",prop:"tax_rate"},{label:"\u7A0E\u989D",prop:"tax_amount"}]}),i=o({fetchFun:c,tit:"\u56DE\u6B3E\u8BA1\u5212",queryParams:{project_id:r.project_id},columnList:[{label:"\u5408\u540C\u7F16\u53F7",prop:"contract_code"},{label:"\u5408\u540C\u540D\u79F0",prop:"contract_name"},{label:"\u671F\u6B21",prop:"period"},{label:"\u8BA1\u5212\u65E5\u671F",prop:"return_date"},{label:"\u72B6\u6001",prop:"return_status"},{label:"\u91D1\u989D",prop:"amount"},{label:"\u5DF2\u56DE\u6B3E",prop:"has_return_amount"},{label:"\u672A\u56DE\u6B3E",prop:"not_return_amount"}]}),l=o({fetchFun:s,tit:"\u56DE\u6B3E\u8BB0\u5F55",queryParams:{project_id:r.project_id},columnList:[{label:"\u5408\u540C\u540D\u79F0",prop:"contract_name"},{label:"\u5408\u540C\u7F16\u53F7",prop:"contract_code"},{label:"\u671F\u6B21",prop:"period"},{label:"\u65E5\u671F",prop:"return_date"},{label:"\u91D1\u989D",prop:"amount"},{label:"\u6536\u6B3E\u4EBA",prop:"receiver"}]}),m=o({fetchFun:b,tit:"\u9000\u6B3E\u8BB0\u5F55",queryParams:{project_id:r.project_id},columnList:[{label:"\u9000\u6B3E\u5355\u53F7",prop:"refund_code"},{label:"\u5408\u540C\u7F16\u53F7",prop:"contract_code"},{label:"\u5408\u540C\u540D\u79F0",prop:"contract_name"},{label:"\u9000\u6B3E\u65E5\u671F",prop:"refund_date"},{label:"\u9000\u6B3E\u539F\u56E0",prop:"reason"},{label:"\u9000\u6B3E\u65B9\u5F0F",prop:"refund_type"},{label:"\u9000\u6B3E\u91D1\u989D",prop:"amount"},{label:"\u5907\u6CE8",prop:"remark"}]});return(D,j)=>(u(),d(f,null,[p(t,{baseData:e},null,8,["baseData"]),p(t,{baseData:i},null,8,["baseData"]),p(t,{baseData:l},null,8,["baseData"]),p(t,{baseData:m},null,8,["baseData"])],64))}};export{br as default};

View File

@ -1 +0,0 @@
import r from"./myTable.08d8b5c9.js";import{d as m,a as n,e as s}from"./InvoicingRequests.62d68dae.js";import{a as d,b as u,c as b}from"./remittance.96c4b9e8.js";import{a as _,b as j,c as D}from"./recordsPayment.e08e65dd.js";import{a as f,b as y,c as h}from"./refund.a33828e7.js";import{a0 as a,o as v,c as P,V as p,W as A}from"./@vue.ab566ce7.js";import"./index.892155dd.js";import"./element-plus.b3353ca6.js";import"./@vueuse.8fcae4c2.js";import"./@element-plus.b89f1627.js";import"./lodash-es.49f4af13.js";import"./dayjs.4afe12d3.js";import"./axios.37fc980d.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.1d82ee7c.js";import"./vue-router.87ebc608.js";import"./pinia.b6700c26.js";import"./vue-demi.ebc8116b.js";import"./css-color-function.d0bec2c9.js";import"./color.ea90db3f.js";import"./clone.cbd692e6.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.ad6bc3c0.js";import"./ms.a9ae1d6d.js";import"./nprogress.bcdf1f46.js";import"./vue-clipboard3.c45111bf.js";import"./clipboard.1cb79a0d.js";import"./echarts.b30ab882.js";import"./tslib.60310f1a.js";import"./zrender.3760070d.js";import"./highlight.js.4ebdf9a4.js";import"./@highlightjs.62ff6725.js";import"./index.vue_vue_type_script_setup_true_lang.f8e9523f.js";import"./index.vue_vue_type_style_index_0_lang.55eb6c89.js";import"./index.771e5a41.js";import"./usePaging.f6660143.js";const be={__name:"Collection",props:{project:Object},setup(e){const t=e,o=a({fetchFun:m,editApi:n,delApi:s,tit:"\u5F00\u7968\u8BB0\u5F55",queryParams:{project_id:t.project.id},columnList:[{label:"\u5BA2\u6237",prop:"custom_name"},{label:"\u9879\u76EE\u7F16\u7801",prop:"project_code"},{label:"\u9879\u76EE\u540D\u79F0",prop:"project_name"},{label:"\u5F00\u7968\u65E5\u671F",prop:"invoicing_date"},{label:"\u671F\u6B21",prop:"period"},{label:"\u53D1\u7968\u7C7B\u578B",prop:"invoice_type"},{label:"\u5F00\u7968\u91D1\u989D(\u542B\u7A0E)",prop:"invoicing_amount"},{label:"\u7A0E\u7387",prop:"tax_rate"}]}),i=a({fetchFun:d,delApi:u,editApi:b,tit:"\u56DE\u6B3E\u8BA1\u5212",queryParams:{project_id:t.project.id},columnList:[{label:"\u5408\u540C\u7F16\u53F7",prop:"contract_code"},{label:"\u5408\u540C\u540D\u79F0",prop:"contract_name"},{label:"\u671F\u6B21",prop:"period"},{label:"\u8BA1\u5212\u65E5\u671F",prop:"return_date"},{label:"\u72B6\u6001",prop:"return_status"},{label:"\u91D1\u989D",prop:"amount"},{label:"\u5DF2\u56DE\u6B3E",prop:"has_return_amount"},{label:"\u672A\u56DE\u6B3E",prop:"not_return_amount"}]}),l=a({fetchFun:_,delApi:j,editApi:D,tit:"\u56DE\u6B3E\u8BB0\u5F55",queryParams:{project_id:t.project.id},columnList:[{label:"\u5408\u540C\u540D\u79F0",prop:"contract_name"},{label:"\u5408\u540C\u7F16\u53F7",prop:"contract_code"},{label:"\u671F\u6B21",prop:"period"},{label:"\u65E5\u671F",prop:"return_date"},{label:"\u91D1\u989D",prop:"amount"},{label:"\u6536\u6B3E\u4EBA",prop:"receiver"}]}),c=a({fetchFun:f,delApi:y,editApi:h,tit:"\u9000\u6B3E\u8BB0\u5F55",queryParams:{project_id:t.project.id},columnList:[{label:"\u9000\u6B3E\u5355\u53F7",prop:"refund_code"},{label:"\u5408\u540C\u7F16\u53F7",prop:"contract_code"},{label:"\u5408\u540C\u540D\u79F0",prop:"contract_name"},{label:"\u9000\u6B3E\u65E5\u671F",prop:"refund_date"},{label:"\u9000\u6B3E\u539F\u56E0",prop:"reason"},{label:"\u9000\u6B3E\u65B9\u5F0F",prop:"refund_type"},{label:"\u9000\u6B3E\u91D1\u989D",prop:"amount"},{label:"\u5907\u6CE8",prop:"remark"}]});return(L,q)=>(v(),P(A,null,[p(r,{baseData:o,project:e.project,editPath:"InvoicingRequests"},null,8,["baseData","project"]),p(r,{baseData:i,project:e.project,editPath:"remittance"},null,8,["baseData","project"]),p(r,{baseData:l,project:e.project,editPath:"recordsPayment"},null,8,["baseData","project"]),p(r,{baseData:c,project:e.project,editPath:"refund"},null,8,["baseData","project"])],64))}};export{be as default};

View File

@ -0,0 +1 @@
import t from"./myTable.a8538379.js";import{d as n}from"./InvoicingRequests.194880ba.js";import{a as c}from"./remittance.aceb913b.js";import{a as s}from"./recordsPayment.6ee62b87.js";import{a as b}from"./refund.06f79b56.js";import{_}from"./edit.vue_vue_type_script_setup_true_name_projectFollowUpEdit_lang.fde0c8f3.js";import{a0 as o,o as u,c as d,V as p,W as f}from"./@vue.ab566ce7.js";import"./index.vue_vue_type_script_setup_true_lang.5ae95555.js";import"./element-plus.517d4382.js";import"./@vueuse.8fcae4c2.js";import"./@element-plus.b89f1627.js";import"./lodash-es.49f4af13.js";import"./dayjs.4afe12d3.js";import"./axios.37fc980d.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./usePaging.f6660143.js";import"./index.8b1962e9.js";import"./lodash.1d82ee7c.js";import"./vue-router.87ebc608.js";import"./pinia.b6700c26.js";import"./vue-demi.ebc8116b.js";import"./css-color-function.d0bec2c9.js";import"./color.ea90db3f.js";import"./clone.cbd692e6.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.ad6bc3c0.js";import"./ms.a9ae1d6d.js";import"./nprogress.bcdf1f46.js";import"./vue-clipboard3.c45111bf.js";import"./clipboard.1cb79a0d.js";import"./echarts.b30ab882.js";import"./tslib.60310f1a.js";import"./zrender.3760070d.js";import"./highlight.js.4ebdf9a4.js";import"./@highlightjs.62ff6725.js";import"./index.vue_vue_type_script_setup_true_lang.ed719f67.js";import"./useDictOptions.b5854a9e.js";import"./project.a81dff6c.js";import"./index.b17dae19.js";import"./project_follow_up.9e000742.js";import"./index.e6dda1f5.js";const br={__name:"Collection",props:{project_id:Number,components:_},setup(a){const r=a,e=o({fetchFun:n,tit:"\u5F00\u7968\u8BB0\u5F55",queryParams:{project_id:r.project_id},columnList:[{label:"\u5F00\u7968\u5355\u53F7",prop:"invoicing_code"},{label:"\u5408\u540C\u7F16\u53F7",prop:"contract_code"},{label:"\u5408\u540C\u540D\u79F0",prop:"contract_name"},{label:"\u5F00\u7968\u65E5\u671F",prop:"invoicing_date"},{label:"\u671F\u6B21",prop:"period"},{label:"\u53D1\u7968\u7C7B\u578B",prop:"invoice_type"},{label:"\u53D1\u7968\u7F16\u53F7",prop:"tax"},{label:"\u5F00\u7968\u91D1\u989D(\u542B\u7A0E)",prop:"amount_including_tax"},{label:"\u7A0E\u7387",prop:"tax_rate"},{label:"\u7A0E\u989D",prop:"tax_amount"}]}),i=o({fetchFun:c,tit:"\u56DE\u6B3E\u8BA1\u5212",queryParams:{project_id:r.project_id},columnList:[{label:"\u5408\u540C\u7F16\u53F7",prop:"contract_code"},{label:"\u5408\u540C\u540D\u79F0",prop:"contract_name"},{label:"\u671F\u6B21",prop:"period"},{label:"\u8BA1\u5212\u65E5\u671F",prop:"return_date"},{label:"\u72B6\u6001",prop:"return_status"},{label:"\u91D1\u989D",prop:"amount"},{label:"\u5DF2\u56DE\u6B3E",prop:"has_return_amount"},{label:"\u672A\u56DE\u6B3E",prop:"not_return_amount"}]}),l=o({fetchFun:s,tit:"\u56DE\u6B3E\u8BB0\u5F55",queryParams:{project_id:r.project_id},columnList:[{label:"\u5408\u540C\u540D\u79F0",prop:"contract_name"},{label:"\u5408\u540C\u7F16\u53F7",prop:"contract_code"},{label:"\u671F\u6B21",prop:"period"},{label:"\u65E5\u671F",prop:"return_date"},{label:"\u91D1\u989D",prop:"amount"},{label:"\u6536\u6B3E\u4EBA",prop:"receiver"}]}),m=o({fetchFun:b,tit:"\u9000\u6B3E\u8BB0\u5F55",queryParams:{project_id:r.project_id},columnList:[{label:"\u9000\u6B3E\u5355\u53F7",prop:"refund_code"},{label:"\u5408\u540C\u7F16\u53F7",prop:"contract_code"},{label:"\u5408\u540C\u540D\u79F0",prop:"contract_name"},{label:"\u9000\u6B3E\u65E5\u671F",prop:"refund_date"},{label:"\u9000\u6B3E\u539F\u56E0",prop:"reason"},{label:"\u9000\u6B3E\u65B9\u5F0F",prop:"refund_type"},{label:"\u9000\u6B3E\u91D1\u989D",prop:"amount"},{label:"\u5907\u6CE8",prop:"remark"}]});return(D,j)=>(u(),d(f,null,[p(t,{baseData:e},null,8,["baseData"]),p(t,{baseData:i},null,8,["baseData"]),p(t,{baseData:l},null,8,["baseData"]),p(t,{baseData:m},null,8,["baseData"])],64))}};export{br as default};

View File

@ -0,0 +1 @@
import r from"./myTable.a3a43597.js";import{d as m,a as n,e as s}from"./InvoicingRequests.194880ba.js";import{a as d,b as u,c as b}from"./remittance.aceb913b.js";import{a as _,b as j,c as D}from"./recordsPayment.6ee62b87.js";import{a as f,b as y,c as h}from"./refund.06f79b56.js";import{a0 as a,o as v,c as P,V as p,W as A}from"./@vue.ab566ce7.js";import"./index.8b1962e9.js";import"./element-plus.517d4382.js";import"./@vueuse.8fcae4c2.js";import"./@element-plus.b89f1627.js";import"./lodash-es.49f4af13.js";import"./dayjs.4afe12d3.js";import"./axios.37fc980d.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.1d82ee7c.js";import"./vue-router.87ebc608.js";import"./pinia.b6700c26.js";import"./vue-demi.ebc8116b.js";import"./css-color-function.d0bec2c9.js";import"./color.ea90db3f.js";import"./clone.cbd692e6.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.ad6bc3c0.js";import"./ms.a9ae1d6d.js";import"./nprogress.bcdf1f46.js";import"./vue-clipboard3.c45111bf.js";import"./clipboard.1cb79a0d.js";import"./echarts.b30ab882.js";import"./tslib.60310f1a.js";import"./zrender.3760070d.js";import"./highlight.js.4ebdf9a4.js";import"./@highlightjs.62ff6725.js";import"./index.vue_vue_type_script_setup_true_lang.5ae95555.js";import"./index.vue_vue_type_style_index_0_lang.9f4b6930.js";import"./index.b17dae19.js";import"./usePaging.f6660143.js";const be={__name:"Collection",props:{project:Object},setup(e){const t=e,o=a({fetchFun:m,editApi:n,delApi:s,tit:"\u5F00\u7968\u8BB0\u5F55",queryParams:{project_id:t.project.id},columnList:[{label:"\u5BA2\u6237",prop:"custom_name"},{label:"\u9879\u76EE\u7F16\u7801",prop:"project_code"},{label:"\u9879\u76EE\u540D\u79F0",prop:"project_name"},{label:"\u5F00\u7968\u65E5\u671F",prop:"invoicing_date"},{label:"\u671F\u6B21",prop:"period"},{label:"\u53D1\u7968\u7C7B\u578B",prop:"invoice_type"},{label:"\u5F00\u7968\u91D1\u989D(\u542B\u7A0E)",prop:"invoicing_amount"},{label:"\u7A0E\u7387",prop:"tax_rate"}]}),i=a({fetchFun:d,delApi:u,editApi:b,tit:"\u56DE\u6B3E\u8BA1\u5212",queryParams:{project_id:t.project.id},columnList:[{label:"\u5408\u540C\u7F16\u53F7",prop:"contract_code"},{label:"\u5408\u540C\u540D\u79F0",prop:"contract_name"},{label:"\u671F\u6B21",prop:"period"},{label:"\u8BA1\u5212\u65E5\u671F",prop:"return_date"},{label:"\u72B6\u6001",prop:"return_status"},{label:"\u91D1\u989D",prop:"amount"},{label:"\u5DF2\u56DE\u6B3E",prop:"has_return_amount"},{label:"\u672A\u56DE\u6B3E",prop:"not_return_amount"}]}),l=a({fetchFun:_,delApi:j,editApi:D,tit:"\u56DE\u6B3E\u8BB0\u5F55",queryParams:{project_id:t.project.id},columnList:[{label:"\u5408\u540C\u540D\u79F0",prop:"contract_name"},{label:"\u5408\u540C\u7F16\u53F7",prop:"contract_code"},{label:"\u671F\u6B21",prop:"period"},{label:"\u65E5\u671F",prop:"return_date"},{label:"\u91D1\u989D",prop:"amount"},{label:"\u6536\u6B3E\u4EBA",prop:"receiver"}]}),c=a({fetchFun:f,delApi:y,editApi:h,tit:"\u9000\u6B3E\u8BB0\u5F55",queryParams:{project_id:t.project.id},columnList:[{label:"\u9000\u6B3E\u5355\u53F7",prop:"refund_code"},{label:"\u5408\u540C\u7F16\u53F7",prop:"contract_code"},{label:"\u5408\u540C\u540D\u79F0",prop:"contract_name"},{label:"\u9000\u6B3E\u65E5\u671F",prop:"refund_date"},{label:"\u9000\u6B3E\u539F\u56E0",prop:"reason"},{label:"\u9000\u6B3E\u65B9\u5F0F",prop:"refund_type"},{label:"\u9000\u6B3E\u91D1\u989D",prop:"amount"},{label:"\u5907\u6CE8",prop:"remark"}]});return(L,q)=>(v(),P(A,null,[p(r,{baseData:o,project:e.project,editPath:"InvoicingRequests"},null,8,["baseData","project"]),p(r,{baseData:i,project:e.project,editPath:"remittance"},null,8,["baseData","project"]),p(r,{baseData:l,project:e.project,editPath:"recordsPayment"},null,8,["baseData","project"]),p(r,{baseData:c,project:e.project,editPath:"refund"},null,8,["baseData","project"])],64))}};export{be as default};

View File

@ -1 +0,0 @@
import r from"./myTable.f162b55c.js";import{d as m,a as n,e as s}from"./InvoicingRequests.db4ee61c.js";import{a as d,b as u,c as b}from"./remittance.67d59080.js";import{a as _,b as j,c as D}from"./recordsPayment.4e4d7d7d.js";import{a as f,b as y,c as h}from"./refund.2a4be837.js";import{a0 as a,o as v,c as P,V as p,W as A}from"./@vue.ab566ce7.js";import"./index.07a7d930.js";import"./element-plus.136d24b7.js";import"./@vueuse.8fcae4c2.js";import"./@element-plus.b89f1627.js";import"./lodash-es.49f4af13.js";import"./dayjs.3c87fefd.js";import"./axios.3ce6e109.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.fc152425.js";import"./vue-router.87ebc608.js";import"./pinia.b6700c26.js";import"./vue-demi.ebc8116b.js";import"./css-color-function.b155761f.js";import"./color.3f4181c1.js";import"./clone.3069ca68.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.034d4192.js";import"./ms.a9ae1d6d.js";import"./nprogress.27c3f051.js";import"./vue-clipboard3.16970510.js";import"./clipboard.447e0e72.js";import"./echarts.b30ab882.js";import"./tslib.60310f1a.js";import"./zrender.3760070d.js";import"./highlight.js.4ebdf9a4.js";import"./@highlightjs.62ff6725.js";import"./index.vue_vue_type_script_setup_true_lang.078553e4.js";import"./index.vue_vue_type_style_index_0_lang.a6903eaf.js";import"./index.6e42db9b.js";import"./usePaging.f6660143.js";const be={__name:"Collection",props:{project:Object},setup(e){const t=e,o=a({fetchFun:m,editApi:n,delApi:s,tit:"\u5F00\u7968\u8BB0\u5F55",queryParams:{project_id:t.project.id},columnList:[{label:"\u5BA2\u6237",prop:"custom_name"},{label:"\u9879\u76EE\u7F16\u7801",prop:"project_code"},{label:"\u9879\u76EE\u540D\u79F0",prop:"project_name"},{label:"\u5F00\u7968\u65E5\u671F",prop:"invoicing_date"},{label:"\u671F\u6B21",prop:"period"},{label:"\u53D1\u7968\u7C7B\u578B",prop:"invoice_type"},{label:"\u5F00\u7968\u91D1\u989D(\u542B\u7A0E)",prop:"invoicing_amount"},{label:"\u7A0E\u7387",prop:"tax_rate"}]}),i=a({fetchFun:d,delApi:u,editApi:b,tit:"\u56DE\u6B3E\u8BA1\u5212",queryParams:{project_id:t.project.id},columnList:[{label:"\u5408\u540C\u7F16\u53F7",prop:"contract_code"},{label:"\u5408\u540C\u540D\u79F0",prop:"contract_name"},{label:"\u671F\u6B21",prop:"period"},{label:"\u8BA1\u5212\u65E5\u671F",prop:"return_date"},{label:"\u72B6\u6001",prop:"return_status"},{label:"\u91D1\u989D",prop:"amount"},{label:"\u5DF2\u56DE\u6B3E",prop:"has_return_amount"},{label:"\u672A\u56DE\u6B3E",prop:"not_return_amount"}]}),l=a({fetchFun:_,delApi:j,editApi:D,tit:"\u56DE\u6B3E\u8BB0\u5F55",queryParams:{project_id:t.project.id},columnList:[{label:"\u5408\u540C\u540D\u79F0",prop:"contract_name"},{label:"\u5408\u540C\u7F16\u53F7",prop:"contract_code"},{label:"\u671F\u6B21",prop:"period"},{label:"\u65E5\u671F",prop:"return_date"},{label:"\u91D1\u989D",prop:"amount"},{label:"\u6536\u6B3E\u4EBA",prop:"receiver"}]}),c=a({fetchFun:f,delApi:y,editApi:h,tit:"\u9000\u6B3E\u8BB0\u5F55",queryParams:{project_id:t.project.id},columnList:[{label:"\u9000\u6B3E\u5355\u53F7",prop:"refund_code"},{label:"\u5408\u540C\u7F16\u53F7",prop:"contract_code"},{label:"\u5408\u540C\u540D\u79F0",prop:"contract_name"},{label:"\u9000\u6B3E\u65E5\u671F",prop:"refund_date"},{label:"\u9000\u6B3E\u539F\u56E0",prop:"reason"},{label:"\u9000\u6B3E\u65B9\u5F0F",prop:"refund_type"},{label:"\u9000\u6B3E\u91D1\u989D",prop:"amount"},{label:"\u5907\u6CE8",prop:"remark"}]});return(L,q)=>(v(),P(A,null,[p(r,{baseData:o,project:e.project,editPath:"InvoicingRequests"},null,8,["baseData","project"]),p(r,{baseData:i,project:e.project,editPath:"remittance"},null,8,["baseData","project"]),p(r,{baseData:l,project:e.project,editPath:"recordsPayment"},null,8,["baseData","project"]),p(r,{baseData:c,project:e.project,editPath:"refund"},null,8,["baseData","project"])],64))}};export{be as default};

View File

@ -1 +0,0 @@
import t from"./myTable.96f8b2cd.js";import{d as n}from"./InvoicingRequests.db4ee61c.js";import{a as c}from"./remittance.67d59080.js";import{a as s}from"./recordsPayment.4e4d7d7d.js";import{a as b}from"./refund.2a4be837.js";import{_}from"./edit.vue_vue_type_script_setup_true_name_projectFollowUpEdit_lang.17c2adbd.js";import{a0 as o,o as u,c as d,V as p,W as f}from"./@vue.ab566ce7.js";import"./index.vue_vue_type_script_setup_true_lang.078553e4.js";import"./element-plus.136d24b7.js";import"./@vueuse.8fcae4c2.js";import"./@element-plus.b89f1627.js";import"./lodash-es.49f4af13.js";import"./dayjs.3c87fefd.js";import"./axios.3ce6e109.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./usePaging.f6660143.js";import"./index.07a7d930.js";import"./lodash.fc152425.js";import"./vue-router.87ebc608.js";import"./pinia.b6700c26.js";import"./vue-demi.ebc8116b.js";import"./css-color-function.b155761f.js";import"./color.3f4181c1.js";import"./clone.3069ca68.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.034d4192.js";import"./ms.a9ae1d6d.js";import"./nprogress.27c3f051.js";import"./vue-clipboard3.16970510.js";import"./clipboard.447e0e72.js";import"./echarts.b30ab882.js";import"./tslib.60310f1a.js";import"./zrender.3760070d.js";import"./highlight.js.4ebdf9a4.js";import"./@highlightjs.62ff6725.js";import"./index.vue_vue_type_script_setup_true_lang.b280ddfa.js";import"./useDictOptions.f7aa4bf7.js";import"./project.e854b6b2.js";import"./index.6e42db9b.js";import"./project_follow_up.398cf087.js";import"./index.0b247155.js";const br={__name:"Collection",props:{project_id:Number,components:_},setup(a){const r=a,e=o({fetchFun:n,tit:"\u5F00\u7968\u8BB0\u5F55",queryParams:{project_id:r.project_id},columnList:[{label:"\u5F00\u7968\u5355\u53F7",prop:"invoicing_code"},{label:"\u5408\u540C\u7F16\u53F7",prop:"contract_code"},{label:"\u5408\u540C\u540D\u79F0",prop:"contract_name"},{label:"\u5F00\u7968\u65E5\u671F",prop:"invoicing_date"},{label:"\u671F\u6B21",prop:"period"},{label:"\u53D1\u7968\u7C7B\u578B",prop:"invoice_type"},{label:"\u53D1\u7968\u7F16\u53F7",prop:"tax"},{label:"\u5F00\u7968\u91D1\u989D(\u542B\u7A0E)",prop:"amount_including_tax"},{label:"\u7A0E\u7387",prop:"tax_rate"},{label:"\u7A0E\u989D",prop:"tax_amount"}]}),i=o({fetchFun:c,tit:"\u56DE\u6B3E\u8BA1\u5212",queryParams:{project_id:r.project_id},columnList:[{label:"\u5408\u540C\u7F16\u53F7",prop:"contract_code"},{label:"\u5408\u540C\u540D\u79F0",prop:"contract_name"},{label:"\u671F\u6B21",prop:"period"},{label:"\u8BA1\u5212\u65E5\u671F",prop:"return_date"},{label:"\u72B6\u6001",prop:"return_status"},{label:"\u91D1\u989D",prop:"amount"},{label:"\u5DF2\u56DE\u6B3E",prop:"has_return_amount"},{label:"\u672A\u56DE\u6B3E",prop:"not_return_amount"}]}),l=o({fetchFun:s,tit:"\u56DE\u6B3E\u8BB0\u5F55",queryParams:{project_id:r.project_id},columnList:[{label:"\u5408\u540C\u540D\u79F0",prop:"contract_name"},{label:"\u5408\u540C\u7F16\u53F7",prop:"contract_code"},{label:"\u671F\u6B21",prop:"period"},{label:"\u65E5\u671F",prop:"return_date"},{label:"\u91D1\u989D",prop:"amount"},{label:"\u6536\u6B3E\u4EBA",prop:"receiver"}]}),m=o({fetchFun:b,tit:"\u9000\u6B3E\u8BB0\u5F55",queryParams:{project_id:r.project_id},columnList:[{label:"\u9000\u6B3E\u5355\u53F7",prop:"refund_code"},{label:"\u5408\u540C\u7F16\u53F7",prop:"contract_code"},{label:"\u5408\u540C\u540D\u79F0",prop:"contract_name"},{label:"\u9000\u6B3E\u65E5\u671F",prop:"refund_date"},{label:"\u9000\u6B3E\u539F\u56E0",prop:"reason"},{label:"\u9000\u6B3E\u65B9\u5F0F",prop:"refund_type"},{label:"\u9000\u6B3E\u91D1\u989D",prop:"amount"},{label:"\u5907\u6CE8",prop:"remark"}]});return(D,j)=>(u(),d(f,null,[p(t,{baseData:e},null,8,["baseData"]),p(t,{baseData:i},null,8,["baseData"]),p(t,{baseData:l},null,8,["baseData"]),p(t,{baseData:m},null,8,["baseData"])],64))}};export{br as default};

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1 +0,0 @@
import{J as g,C as k}from"./element-plus.b3353ca6.js";import{i as w}from"./echarts.b30ab882.js";import{a as b}from"./statistics.1dcbf09f.js";import{_ as V}from"./index.892155dd.js";import{r as d,a0 as B,a5 as I,o as l,L as _,M as c,n as N,a,V as S,c as v,a8 as Y,W as D,S as E,U as h,b7 as q,b6 as L}from"./@vue.ab566ce7.js";import"./@vueuse.8fcae4c2.js";import"./@element-plus.b89f1627.js";import"./lodash-es.49f4af13.js";import"./dayjs.4afe12d3.js";import"./axios.37fc980d.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./tslib.60310f1a.js";import"./zrender.3760070d.js";import"./lodash.1d82ee7c.js";import"./vue-router.87ebc608.js";import"./pinia.b6700c26.js";import"./vue-demi.ebc8116b.js";import"./css-color-function.d0bec2c9.js";import"./color.ea90db3f.js";import"./clone.cbd692e6.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.ad6bc3c0.js";import"./ms.a9ae1d6d.js";import"./nprogress.bcdf1f46.js";import"./vue-clipboard3.c45111bf.js";import"./clipboard.1cb79a0d.js";import"./highlight.js.4ebdf9a4.js";import"./@highlightjs.62ff6725.js";const O=i=>(q("data-v-efa05a32"),i=i(),L(),i),A=O(()=>a("div",{class:"card-header"},[a("span",null,"\u5BA2\u6237\u7EDF\u8BA1")],-1)),F={style:{height:"40px"}},P={style:{display:"flex","justify-content":"space-around"}},T={key:0,id:"customNum",class:"chart"},U={__name:"Custom",setup(i){const o=d(""),n=d(!0);o.value=new Date().getFullYear();const m=B([{name:"\u5BA2\u6237\u603B\u6570",value:3,url:"/construction/client/myClient/custom"},{name:"\u4ECA\u5E74\u589E\u52A0",value:3,url:"/construction/client/myClient/custom",query:!0}]),y={show:!0,rich:{name:{}}},f=(t,r)=>{var s=document.getElementById(t),p=w(s);p.setOption(r)},x=(t,r,s)=>({tooltip:{trigger:"axis",axisPointer:{type:"shadow"}},legend:t,toolbox:{show:!0,orient:"vertical",left:"right",top:"center"},xAxis:[{type:"category",axisTick:{show:!1},data:r}],yAxis:[{type:"value"}],series:s}),u=async()=>{n.value=!1;let t=await b({year:o.value});n.value=!0,await N(),f("customNum",x({data:[t.series.name]},t.column,[{name:t.series.name,type:"bar",barGap:0,label:y,emphasis:{focus:"series"},data:t.series.data}])),m[0].value=t.custom_total,m[1].value=t.this_year_add};return u(),(t,r)=>{const s=g,p=I("router-link"),C=k;return l(),_(C,{style:{width:"49.9%"}},{header:c(()=>[A]),default:c(()=>[a("div",F,[S(s,{modelValue:o.value,"onUpdate:modelValue":r[0]||(r[0]=e=>o.value=e),onChange:u,"value-format":"YYYY",type:"year",style:{float:"right"},placeholder:o.value},null,8,["modelValue","placeholder"])]),a("div",P,[(l(!0),v(D,null,Y(m,e=>(l(),_(p,{to:{path:e.url,query:e.query?{year:o.value}:null},key:e,class:"header-btn"},{default:c(()=>[a("div",null,[a("div",null,h(e.value),1),a("div",null,h(e.name),1)])]),_:2},1032,["to"]))),128))]),n.value?(l(),v("div",T)):E("",!0)]),_:1})}}},gt=V(U,[["__scopeId","data-v-efa05a32"]]);export{gt as default};

View File

@ -0,0 +1 @@
import{J as g,C as k}from"./element-plus.517d4382.js";import{i as w}from"./echarts.b30ab882.js";import{a as b}from"./statistics.4549c6cf.js";import{_ as V}from"./index.8b1962e9.js";import{r as d,a0 as B,a5 as I,o as l,L as _,M as c,n as N,a,V as S,c as v,a8 as Y,W as D,S as E,U as h,b7 as q,b6 as L}from"./@vue.ab566ce7.js";import"./@vueuse.8fcae4c2.js";import"./@element-plus.b89f1627.js";import"./lodash-es.49f4af13.js";import"./dayjs.4afe12d3.js";import"./axios.37fc980d.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./tslib.60310f1a.js";import"./zrender.3760070d.js";import"./lodash.1d82ee7c.js";import"./vue-router.87ebc608.js";import"./pinia.b6700c26.js";import"./vue-demi.ebc8116b.js";import"./css-color-function.d0bec2c9.js";import"./color.ea90db3f.js";import"./clone.cbd692e6.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.ad6bc3c0.js";import"./ms.a9ae1d6d.js";import"./nprogress.bcdf1f46.js";import"./vue-clipboard3.c45111bf.js";import"./clipboard.1cb79a0d.js";import"./highlight.js.4ebdf9a4.js";import"./@highlightjs.62ff6725.js";const O=i=>(q("data-v-efa05a32"),i=i(),L(),i),A=O(()=>a("div",{class:"card-header"},[a("span",null,"\u5BA2\u6237\u7EDF\u8BA1")],-1)),F={style:{height:"40px"}},P={style:{display:"flex","justify-content":"space-around"}},T={key:0,id:"customNum",class:"chart"},U={__name:"Custom",setup(i){const o=d(""),n=d(!0);o.value=new Date().getFullYear();const m=B([{name:"\u5BA2\u6237\u603B\u6570",value:3,url:"/construction/client/myClient/custom"},{name:"\u4ECA\u5E74\u589E\u52A0",value:3,url:"/construction/client/myClient/custom",query:!0}]),y={show:!0,rich:{name:{}}},f=(t,r)=>{var s=document.getElementById(t),p=w(s);p.setOption(r)},x=(t,r,s)=>({tooltip:{trigger:"axis",axisPointer:{type:"shadow"}},legend:t,toolbox:{show:!0,orient:"vertical",left:"right",top:"center"},xAxis:[{type:"category",axisTick:{show:!1},data:r}],yAxis:[{type:"value"}],series:s}),u=async()=>{n.value=!1;let t=await b({year:o.value});n.value=!0,await N(),f("customNum",x({data:[t.series.name]},t.column,[{name:t.series.name,type:"bar",barGap:0,label:y,emphasis:{focus:"series"},data:t.series.data}])),m[0].value=t.custom_total,m[1].value=t.this_year_add};return u(),(t,r)=>{const s=g,p=I("router-link"),C=k;return l(),_(C,{style:{width:"49.9%"}},{header:c(()=>[A]),default:c(()=>[a("div",F,[S(s,{modelValue:o.value,"onUpdate:modelValue":r[0]||(r[0]=e=>o.value=e),onChange:u,"value-format":"YYYY",type:"year",style:{float:"right"},placeholder:o.value},null,8,["modelValue","placeholder"])]),a("div",P,[(l(!0),v(D,null,Y(m,e=>(l(),_(p,{to:{path:e.url,query:e.query?{year:o.value}:null},key:e,class:"header-btn"},{default:c(()=>[a("div",null,[a("div",null,h(e.value),1),a("div",null,h(e.name),1)])]),_:2},1032,["to"]))),128))]),n.value?(l(),v("div",T)):E("",!0)]),_:1})}}},gt=V(U,[["__scopeId","data-v-efa05a32"]]);export{gt as default};

View File

@ -1 +0,0 @@
import{J as g,C as k}from"./element-plus.136d24b7.js";import{i as w}from"./echarts.b30ab882.js";import{a as b}from"./statistics.ec0cc503.js";import{_ as V}from"./index.07a7d930.js";import{r as d,a0 as B,a5 as I,o as l,L as _,M as c,n as N,a,V as S,c as v,a8 as Y,W as D,S as E,U as h,b7 as q,b6 as L}from"./@vue.ab566ce7.js";import"./@vueuse.8fcae4c2.js";import"./@element-plus.b89f1627.js";import"./lodash-es.49f4af13.js";import"./dayjs.3c87fefd.js";import"./axios.3ce6e109.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./tslib.60310f1a.js";import"./zrender.3760070d.js";import"./lodash.fc152425.js";import"./vue-router.87ebc608.js";import"./pinia.b6700c26.js";import"./vue-demi.ebc8116b.js";import"./css-color-function.b155761f.js";import"./color.3f4181c1.js";import"./clone.3069ca68.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.034d4192.js";import"./ms.a9ae1d6d.js";import"./nprogress.27c3f051.js";import"./vue-clipboard3.16970510.js";import"./clipboard.447e0e72.js";import"./highlight.js.4ebdf9a4.js";import"./@highlightjs.62ff6725.js";const O=i=>(q("data-v-efa05a32"),i=i(),L(),i),A=O(()=>a("div",{class:"card-header"},[a("span",null,"\u5BA2\u6237\u7EDF\u8BA1")],-1)),F={style:{height:"40px"}},P={style:{display:"flex","justify-content":"space-around"}},T={key:0,id:"customNum",class:"chart"},U={__name:"Custom",setup(i){const o=d(""),n=d(!0);o.value=new Date().getFullYear();const m=B([{name:"\u5BA2\u6237\u603B\u6570",value:3,url:"/construction/client/myClient/custom"},{name:"\u4ECA\u5E74\u589E\u52A0",value:3,url:"/construction/client/myClient/custom",query:!0}]),y={show:!0,rich:{name:{}}},f=(t,r)=>{var s=document.getElementById(t),p=w(s);p.setOption(r)},x=(t,r,s)=>({tooltip:{trigger:"axis",axisPointer:{type:"shadow"}},legend:t,toolbox:{show:!0,orient:"vertical",left:"right",top:"center"},xAxis:[{type:"category",axisTick:{show:!1},data:r}],yAxis:[{type:"value"}],series:s}),u=async()=>{n.value=!1;let t=await b({year:o.value});n.value=!0,await N(),f("customNum",x({data:[t.series.name]},t.column,[{name:t.series.name,type:"bar",barGap:0,label:y,emphasis:{focus:"series"},data:t.series.data}])),m[0].value=t.custom_total,m[1].value=t.this_year_add};return u(),(t,r)=>{const s=g,p=I("router-link"),C=k;return l(),_(C,{style:{width:"49.9%"}},{header:c(()=>[A]),default:c(()=>[a("div",F,[S(s,{modelValue:o.value,"onUpdate:modelValue":r[0]||(r[0]=e=>o.value=e),onChange:u,"value-format":"YYYY",type:"year",style:{float:"right"},placeholder:o.value},null,8,["modelValue","placeholder"])]),a("div",P,[(l(!0),v(D,null,Y(m,e=>(l(),_(p,{to:{path:e.url,query:e.query?{year:o.value}:null},key:e,class:"header-btn"},{default:c(()=>[a("div",null,[a("div",null,h(e.value),1),a("div",null,h(e.name),1)])]),_:2},1032,["to"]))),128))]),n.value?(l(),v("div",T)):E("",!0)]),_:1})}}},gt=V(U,[["__scopeId","data-v-efa05a32"]]);export{gt as default};

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
import{r as n}from"./index.8b1962e9.js";function a(i){return n.get({url:"/finance.finance_invoice_apply/lists",params:i})}function p(i){return n.post({url:"/finance.finance_invoice_apply/add",params:i})}function c(i){return n.post({url:"/finance.finance_invoice_apply/edit",params:i})}function t(i){return n.post({url:"/finance.finance_invoice_apply/delete",params:i})}function o(i){return n.get({url:"/finance.finance_invoice_apply/detail",params:i})}export{o as a,c as b,p as c,a as d,t as e};

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1 +0,0 @@
import{r as n}from"./index.892155dd.js";function a(i){return n.get({url:"/finance.finance_invoice_apply/lists",params:i})}function p(i){return n.post({url:"/finance.finance_invoice_apply/add",params:i})}function c(i){return n.post({url:"/finance.finance_invoice_apply/edit",params:i})}function t(i){return n.post({url:"/finance.finance_invoice_apply/delete",params:i})}function o(i){return n.get({url:"/finance.finance_invoice_apply/detail",params:i})}export{o as a,c as b,p as c,a as d,t as e};

View File

@ -1 +0,0 @@
import{r as n}from"./index.07a7d930.js";function a(i){return n.get({url:"/finance.finance_invoice_apply/lists",params:i})}function p(i){return n.post({url:"/finance.finance_invoice_apply/add",params:i})}function c(i){return n.post({url:"/finance.finance_invoice_apply/edit",params:i})}function t(i){return n.post({url:"/finance.finance_invoice_apply/delete",params:i})}function o(i){return n.get({url:"/finance.finance_invoice_apply/detail",params:i})}export{o as a,c as b,p as c,a as d,t as e};

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

Some files were not shown because too many files have changed in this diff Show More