合作单位 功能添加 10.21

master
zhc077 1 month ago
parent 2343cc5d68
commit b1a2dee3a0
  1. 162
      jeecg-boot/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/cooperationdepart/controller/CooperationDepartController.java
  2. 134
      jeecg-boot/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/cooperationdepart/entity/CooperationDepart.java
  3. 17
      jeecg-boot/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/cooperationdepart/mapper/CooperationDepartMapper.java
  4. 5
      jeecg-boot/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/cooperationdepart/mapper/xml/CooperationDepartMapper.xml
  5. 14
      jeecg-boot/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/cooperationdepart/service/ICooperationDepartService.java
  6. 19
      jeecg-boot/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/cooperationdepart/service/impl/CooperationDepartServiceImpl.java
  7. 64
      jeecgboot-vue3/src/views/cooperationDepart/CooperationDepart.api.ts
  8. 172
      jeecgboot-vue3/src/views/cooperationDepart/CooperationDepart.data.ts
  9. 199
      jeecgboot-vue3/src/views/cooperationDepart/CooperationDepartList.vue
  10. 26
      jeecgboot-vue3/src/views/cooperationDepart/V20241021_1__menu_insert_CooperationDepart.sql
  11. 70
      jeecgboot-vue3/src/views/cooperationDepart/components/CooperationDepartForm.vue
  12. 76
      jeecgboot-vue3/src/views/cooperationDepart/components/CooperationDepartModal.vue

@ -0,0 +1,162 @@
package org.jeecg.modules.demo.cooperationdepart.controller;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import lombok.extern.slf4j.Slf4j;
import org.apache.shiro.authz.annotation.RequiresPermissions;
import org.jeecg.common.api.vo.Result;
import org.jeecg.common.aspect.annotation.AutoLog;
import org.jeecg.common.system.base.controller.JeecgController;
import org.jeecg.common.system.query.QueryGenerator;
import org.jeecg.modules.demo.cooperationdepart.entity.CooperationDepart;
import org.jeecg.modules.demo.cooperationdepart.service.ICooperationDepartService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.servlet.ModelAndView;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.util.Arrays;
/**
* @Description: 合作单位
* @Author: jeecg-boot
* @Date: 2024-10-21
* @Version: V1.0
*/
@Api(tags = "合作单位")
@RestController
@RequestMapping("/cooperationdepart/cooperationDepart")
@Slf4j
public class CooperationDepartController extends JeecgController<CooperationDepart, ICooperationDepartService> {
@Autowired
private ICooperationDepartService cooperationDepartService;
/**
* 分页列表查询
*
* @param cooperationDepart
* @param pageNo
* @param pageSize
* @param req
* @return
*/
//@AutoLog(value = "合作单位-分页列表查询")
@ApiOperation(value = "合作单位-分页列表查询", notes = "合作单位-分页列表查询")
@GetMapping(value = "/list")
public Result<IPage<CooperationDepart>> queryPageList(CooperationDepart cooperationDepart,
@RequestParam(name = "pageNo", defaultValue = "1") Integer pageNo,
@RequestParam(name = "pageSize", defaultValue = "10") Integer pageSize,
HttpServletRequest req) {
QueryWrapper<CooperationDepart> queryWrapper = QueryGenerator.initQueryWrapper(cooperationDepart, req.getParameterMap());
Page<CooperationDepart> page = new Page<CooperationDepart>(pageNo, pageSize);
IPage<CooperationDepart> pageList = cooperationDepartService.page(page, queryWrapper);
return Result.OK(pageList);
}
/**
* 添加
*
* @param cooperationDepart
* @return
*/
@AutoLog(value = "合作单位-添加")
@ApiOperation(value = "合作单位-添加", notes = "合作单位-添加")
// @RequiresPermissions("cooperationdepart:cooperation_depart:add")
@PostMapping(value = "/add")
public Result<String> add(@RequestBody CooperationDepart cooperationDepart) {
cooperationDepartService.save(cooperationDepart);
return Result.OK("添加成功!");
}
/**
* 编辑
*
* @param cooperationDepart
* @return
*/
@AutoLog(value = "合作单位-编辑")
@ApiOperation(value = "合作单位-编辑", notes = "合作单位-编辑")
// @RequiresPermissions("cooperationdepart:cooperation_depart:edit")
@RequestMapping(value = "/edit", method = {RequestMethod.PUT, RequestMethod.POST})
public Result<String> edit(@RequestBody CooperationDepart cooperationDepart) {
cooperationDepartService.updateById(cooperationDepart);
return Result.OK("编辑成功!");
}
/**
* 通过id删除
*
* @param id
* @return
*/
@AutoLog(value = "合作单位-通过id删除")
@ApiOperation(value = "合作单位-通过id删除", notes = "合作单位-通过id删除")
// @RequiresPermissions("cooperationdepart:cooperation_depart:delete")
@DeleteMapping(value = "/delete")
public Result<String> delete(@RequestParam(name = "id", required = true) String id) {
cooperationDepartService.removeById(id);
return Result.OK("删除成功!");
}
/**
* 批量删除
*
* @param ids
* @return
*/
@AutoLog(value = "合作单位-批量删除")
@ApiOperation(value = "合作单位-批量删除", notes = "合作单位-批量删除")
// @RequiresPermissions("cooperationdepart:cooperation_depart:deleteBatch")
@DeleteMapping(value = "/deleteBatch")
public Result<String> deleteBatch(@RequestParam(name = "ids", required = true) String ids) {
this.cooperationDepartService.removeByIds(Arrays.asList(ids.split(",")));
return Result.OK("批量删除成功!");
}
/**
* 通过id查询
*
* @param id
* @return
*/
//@AutoLog(value = "合作单位-通过id查询")
@ApiOperation(value = "合作单位-通过id查询", notes = "合作单位-通过id查询")
@GetMapping(value = "/queryById")
public Result<CooperationDepart> queryById(@RequestParam(name = "id", required = true) String id) {
CooperationDepart cooperationDepart = cooperationDepartService.getById(id);
if (cooperationDepart == null) {
return Result.error("未找到对应数据");
}
return Result.OK(cooperationDepart);
}
/**
* 导出excel
*
* @param request
* @param cooperationDepart
*/
// @RequiresPermissions("cooperationdepart:cooperation_depart:exportXls")
@RequestMapping(value = "/exportXls")
public ModelAndView exportXls(HttpServletRequest request, CooperationDepart cooperationDepart) {
return super.exportXls(request, cooperationDepart, CooperationDepart.class, "合作单位");
}
/**
* 通过excel导入数据
*
* @param request
* @param response
* @return
*/
@RequiresPermissions("cooperationdepart:cooperation_depart:importExcel")
@RequestMapping(value = "/importExcel", method = RequestMethod.POST)
public Result<?> importExcel(HttpServletRequest request, HttpServletResponse response) {
return super.importExcel(request, response, CooperationDepart.class);
}
}

@ -0,0 +1,134 @@
package org.jeecg.modules.demo.cooperationdepart.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
import org.jeecg.common.aspect.annotation.Dict;
import org.jeecgframework.poi.excel.annotation.Excel;
import org.springframework.format.annotation.DateTimeFormat;
import java.io.Serializable;
/**
* @Description: 合作单位
* @Author: jeecg-boot
* @Date: 2024-10-21
* @Version: V1.0
*/
@Data
@TableName("cooperation_depart")
@Accessors(chain = true)
@EqualsAndHashCode(callSuper = false)
@ApiModel(value = "cooperation_depart对象", description = "合作单位")
public class CooperationDepart implements Serializable {
private static final long serialVersionUID = 1L;
/**
* 主键
*/
@TableId(type = IdType.ASSIGN_ID)
@ApiModelProperty(value = "主键")
private java.lang.String id;
/**
* 创建人
*/
@ApiModelProperty(value = "创建人")
private java.lang.String createBy;
/**
* 创建日期
*/
@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@ApiModelProperty(value = "创建日期")
private java.util.Date createTime;
/**
* 更新人
*/
@ApiModelProperty(value = "更新人")
private java.lang.String updateBy;
/**
* 更新日期
*/
@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@ApiModelProperty(value = "更新日期")
private java.util.Date updateTime;
/**
* 部门表id
*/
@Excel(name = "部门表id", width = 15)
@ApiModelProperty(value = "部门表id")
private java.lang.String departId;
/**
* 区域
*/
@Excel(name = "区域", width = 15, dicCode = "cooperation_depart_area")
@Dict(dicCode = "cooperation_depart_area")
@ApiModelProperty(value = "区域")
private java.lang.String area;
/**
* 单位名称
*/
@Excel(name = "单位名称 ", width = 15)
@ApiModelProperty(value = "单位名称 ")
private java.lang.String cooperationDepartName;
/**
* 主管部门
*/
@Excel(name = "主管部门", width = 15)
@ApiModelProperty(value = "主管部门")
private java.lang.String competentDepartName;
/**
* 单位性质
*/
@Excel(name = "单位性质", width = 15, dicCode = "depart_category")
@Dict(dicCode = "depart_category")
@ApiModelProperty(value = "单位性质")
private java.lang.String category;
/**
* 企业登记注册类型
*/
@Excel(name = "企业登记注册类型", width = 15, dicCode = "depart_type")
@Dict(dicCode = "depart_type")
@ApiModelProperty(value = "企业登记注册类型")
private java.lang.String departType;
/**
* 统一社会信用代码
*/
@Excel(name = "统一社会信用代码", width = 30)
@ApiModelProperty(value = "统一社会信用代码")
private java.lang.String creditCode;
/**
* 注册时间
*/
@Excel(name = "注册时间", width = 15, format = "yyyy-MM-dd")
@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd")
@DateTimeFormat(pattern = "yyyy-MM-dd")
@ApiModelProperty(value = "注册时间")
private java.util.Date registerDate;
/**
* 联系人
*/
@Excel(name = "联系人", width = 15)
@ApiModelProperty(value = "联系人")
private java.lang.String linkmanName;
/**
* 手机
*/
@Excel(name = "手机", width = 15)
@ApiModelProperty(value = "手机")
private java.lang.String linkmanPhone;
/**
* 电子邮箱
*/
@Excel(name = "电子邮箱", width = 15)
@ApiModelProperty(value = "电子邮箱")
private java.lang.String linkmanEmail;
}

@ -0,0 +1,17 @@
package org.jeecg.modules.demo.cooperationdepart.mapper;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.jeecg.modules.demo.cooperationdepart.entity.CooperationDepart;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/**
* @Description: 合作单位
* @Author: jeecg-boot
* @Date: 2024-10-21
* @Version: V1.0
*/
public interface CooperationDepartMapper extends BaseMapper<CooperationDepart> {
}

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="org.jeecg.modules.demo.cooperationdepart.mapper.CooperationDepartMapper">
</mapper>

@ -0,0 +1,14 @@
package org.jeecg.modules.demo.cooperationdepart.service;
import org.jeecg.modules.demo.cooperationdepart.entity.CooperationDepart;
import com.baomidou.mybatisplus.extension.service.IService;
/**
* @Description: 合作单位
* @Author: jeecg-boot
* @Date: 2024-10-21
* @Version: V1.0
*/
public interface ICooperationDepartService extends IService<CooperationDepart> {
}

@ -0,0 +1,19 @@
package org.jeecg.modules.demo.cooperationdepart.service.impl;
import org.jeecg.modules.demo.cooperationdepart.entity.CooperationDepart;
import org.jeecg.modules.demo.cooperationdepart.mapper.CooperationDepartMapper;
import org.jeecg.modules.demo.cooperationdepart.service.ICooperationDepartService;
import org.springframework.stereotype.Service;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
/**
* @Description: 合作单位
* @Author: jeecg-boot
* @Date: 2024-10-21
* @Version: V1.0
*/
@Service
public class CooperationDepartServiceImpl extends ServiceImpl<CooperationDepartMapper, CooperationDepart> implements ICooperationDepartService {
}

@ -0,0 +1,64 @@
import {defHttp} from '/@/utils/http/axios';
import { useMessage } from "/@/hooks/web/useMessage";
const { createConfirm } = useMessage();
enum Api {
list = '/cooperationdepart/cooperationDepart/list',
save='/cooperationdepart/cooperationDepart/add',
edit='/cooperationdepart/cooperationDepart/edit',
deleteOne = '/cooperationdepart/cooperationDepart/delete',
deleteBatch = '/cooperationdepart/cooperationDepart/deleteBatch',
importExcel = '/cooperationdepart/cooperationDepart/importExcel',
exportXls = '/cooperationdepart/cooperationDepart/exportXls',
}
/**
* 导出api
* @param params
*/
export const getExportUrl = Api.exportXls;
/**
* 导入api
*/
export const getImportUrl = Api.importExcel;
/**
* 列表接口
* @param params
*/
export const list = (params) =>
defHttp.get({url: Api.list, params});
/**
* 删除单个
*/
export const deleteOne = (params,handleSuccess) => {
return defHttp.delete({url: Api.deleteOne, params}, {joinParamsToUrl: true}).then(() => {
handleSuccess();
});
}
/**
* 批量删除
* @param params
*/
export const batchDelete = (params, handleSuccess) => {
createConfirm({
iconType: 'warning',
title: '确认删除',
content: '是否删除选中数据',
okText: '确认',
cancelText: '取消',
onOk: () => {
return defHttp.delete({url: Api.deleteBatch, data: params}, {joinParamsToUrl: true}).then(() => {
handleSuccess();
});
}
});
}
/**
* 保存或者更新
* @param params
*/
export const saveOrUpdate = (params, isUpdate) => {
let url = isUpdate ? Api.edit : Api.save;
return defHttp.post({url: url, params});
}

@ -0,0 +1,172 @@
import {BasicColumn} from '/@/components/Table';
import {FormSchema} from '/@/components/Table';
import { rules} from '/@/utils/helper/validator';
import { render } from '/@/utils/common/renderUtils';
import { getWeekMonthQuarterYear } from '/@/utils';
//
export const columns: BasicColumn[] = [
{
title: '区域',
align:"center",
dataIndex: 'area_dictText'
},
{
title: '单位名称 ',
align:"center",
dataIndex: 'cooperationDepartName'
},
{
title: '主管部门',
align:"center",
dataIndex: 'competentDepartName'
},
{
title: '单位性质',
align:"center",
dataIndex: 'category_dictText'
},
{
title: '企业登记注册类型',
align:"center",
dataIndex: 'departType_dictText',
},
{
title: '统一社会信用代码',
align:"center",
dataIndex: 'creditCode',
},
/*{
title: '注册时间',
align:"center",
dataIndex: 'registerDate',
customRender:({text}) =>{
text = !text ? "" : (text.length > 10 ? text.substr(0,10) : text);
return text;
},
},*/
{
title: '联系人',
align:"center",
dataIndex: 'linkmanName'
},
{
title: '手机',
align:"center",
dataIndex: 'linkmanPhone'
},
/* {
title: '电子邮箱',
align:"center",
dataIndex: 'linkmanEmail'
},*/
];
//
export const searchFormSchema: FormSchema[] = [
];
//
export const formSchema: FormSchema[] = [
{
label: '区域',
field: 'area',
component: 'JDictSelectTag',
componentProps:{
dictCode:"cooperation_depart_area"
},
},
{
label: '单位名称 ',
field: 'cooperationDepartName',
component: 'Input',
},
{
label: '主管部门',
field: 'competentDepartName',
component: 'Input',
},
{
label: '单位性质',
field: 'category',
component: 'JDictSelectTag',
componentProps:{
dictCode:"depart_category"
},
},
{
label: '企业登记注册类型',
field: 'type',
component: 'JDictSelectTag',
componentProps:{
dictCode:"depart_type"
},
},
{
label: '统一社会信用代码',
field: 'creditCode',
component: 'Input',
},
{
label: '注册时间',
field: 'registerDate',
component: 'DatePicker',
componentProps: {
valueFormat: 'YYYY-MM-DD'
},
},
{
label: '联系人',
field: 'linkmanName',
component: 'Input',
},
{
label: '手机',
field: 'linkmanPhone',
component: 'Input',
dynamicRules: ({model,schema}) => {
return [
{ required: false},
{ pattern: /^1[3456789]\d{9}$/, message: '请输入正确的手机号码!'},
];
},
},
{
label: '电子邮箱',
field: 'linkmanEmail',
component: 'Input',
dynamicRules: ({model,schema}) => {
return [
{ required: false},
{ pattern: /^([\w]+\.*)([\w]+)@[\w]+\.\w{3}(\.\w{2}|)$/, message: '请输入正确的电子邮件!'},
];
},
},
// TODO ID
{
label: '',
field: 'id',
component: 'Input',
show: false
},
];
//
export const superQuerySchema = {
area: {title: '区域',order: 0,view: 'list', type: 'string',dictCode: 'cooperation_depart_area',},
cooperationDepartName: {title: '单位名称 ',order: 1,view: 'text', type: 'string',},
competentDepartName: {title: '主管部门',order: 2,view: 'text', type: 'string',},
category: {title: '单位性质',order: 3,view: 'list', type: 'string',dictCode: 'depart_category',},
type: {title: '企业登记注册类型',order: 4,view: 'text', type: 'string',},
creditCode: {title: '统一社会信用代码',order: 4,view: 'text', type: 'string',},
registerDate: {title: '注册时间',order: 5,view: 'date', type: 'string',},
linkmanName: {title: '联系人',order: 6,view: 'text', type: 'string',},
linkmanPhone: {title: '手机',order: 7,view: 'text', type: 'string',},
linkmanEmail: {title: '电子邮箱',order: 8,view: 'text', type: 'string',},
};
/**
* 流程表单调用这个方法获取formSchema
* @param param
*/
export function getBpmFormSchema(_formData): FormSchema[]{
// formSchema
return formSchema;
}

@ -0,0 +1,199 @@
<template>
<div>
<!--引用表格-->
<BasicTable @register="registerTable" :rowSelection="rowSelection">
<!--插槽:table标题-->
<template #tableTitle>
<a-button type="primary" @click="handleAdd" preIcon="ant-design:plus-outlined"> 新增
</a-button>
<!-- <a-button type="primary" v-auth="'cooperationdepart:cooperation_depart:exportXls'" preIcon="ant-design:export-outlined" @click="onExportXls"> 导出</a-button>
<j-upload-button type="primary" v-auth="'cooperationdepart:cooperation_depart:importExcel'" preIcon="ant-design:import-outlined" @click="onImportXls">导入</j-upload-button>
<a-dropdown v-if="selectedRowKeys.length > 0">
<template #overlay>
<a-menu>
<a-menu-item key="1" @click="batchHandleDelete">
<Icon icon="ant-design:delete-outlined"></Icon>
删除
</a-menu-item>
</a-menu>
</template>
<a-button v-auth="'cooperationdepart:cooperation_depart:deleteBatch'">批量操作
<Icon icon="mdi:chevron-down"></Icon>
</a-button>
</a-dropdown>-->
<!-- 高级查询 -->
<!-- <super-query :config="superQueryConfig" @search="handleSuperQuery" />-->
</template>
<!--操作栏-->
<template #action="{ record }">
<TableAction :actions="getTableAction(record)"
:dropDownActions="getDropDownAction(record)"/>
</template>
<!--字段回显插槽-->
<template v-slot:bodyCell="{ column, record, index, text }">
</template>
</BasicTable>
<!-- 表单区域 -->
<CooperationDepartModal @register="registerModal"
@success="handleSuccess"></CooperationDepartModal>
</div>
</template>
<script lang="ts" name="cooperationdepart-cooperationDepart" setup>
import {reactive, ref} from 'vue';
import {BasicTable, TableAction} from '/@/components/Table';
import {useModal} from '/@/components/Modal';
import {useListPage} from '/@/hooks/system/useListPage'
import CooperationDepartModal from './components/CooperationDepartModal.vue'
import {columns, searchFormSchema, superQuerySchema} from './CooperationDepart.data';
import {batchDelete, deleteOne, getExportUrl, getImportUrl, list} from './CooperationDepart.api';
import {useUserStore} from '/@/store/modules/user';
const queryParam = reactive<any>({});
const checkedKeys = ref<Array<string | number>>([]);
const userStore = useUserStore();
//model
const [registerModal, {openModal}] = useModal();
//table
const {prefixCls, tableContext, onExportXls, onImportXls} = useListPage({
tableProps: {
title: '合作单位',
api: list,
columns,
canResize: false,
formConfig: {
//labelWidth: 120,
schemas: searchFormSchema,
autoSubmitOnEnter: true,
showAdvancedButton: true,
fieldMapToNumber: [],
fieldMapToTime: [],
},
actionColumn: {
width: 120,
fixed: 'right'
},
beforeFetch: (params) => {
return Object.assign(params, queryParam);
},
},
exportConfig: {
name: "合作单位",
url: getExportUrl,
params: queryParam,
},
importConfig: {
url: getImportUrl,
success: handleSuccess
},
})
const [registerTable, {reload}, {rowSelection, selectedRowKeys}] = tableContext
//
const superQueryConfig = reactive(superQuerySchema);
/**
* 高级查询事件
*/
function handleSuperQuery(params) {
Object.keys(params).map((k) => {
queryParam[k] = params[k];
});
reload();
}
/**
* 新增事件
*/
function handleAdd() {
openModal(true, {
isUpdate: false,
showFooter: true,
});
}
/**
* 编辑事件
*/
function handleEdit(record: Recordable) {
openModal(true, {
record,
isUpdate: true,
showFooter: true,
});
}
/**
* 详情
*/
function handleDetail(record: Recordable) {
openModal(true, {
record,
isUpdate: true,
showFooter: false,
});
}
/**
* 删除事件
*/
async function handleDelete(record) {
await deleteOne({id: record.id}, handleSuccess);
}
/**
* 批量删除事件
*/
async function batchHandleDelete() {
await batchDelete({ids: selectedRowKeys.value}, handleSuccess);
}
/**
* 成功回调
*/
function handleSuccess() {
(selectedRowKeys.value = []) && reload();
}
/**
* 操作栏
*/
function getTableAction(record) {
return [
{
label: '编辑',
onClick: handleEdit.bind(null, record),
// auth: 'cooperationdepart:cooperation_depart:edit'
}
]
}
/**
* 下拉操作栏
*/
function getDropDownAction(record) {
return [
{
label: '详情',
onClick: handleDetail.bind(null, record),
}, {
label: '删除',
popConfirm: {
title: '是否确认删除',
confirm: handleDelete.bind(null, record),
placement: 'topLeft',
},
// auth: 'cooperationdepart:cooperation_depart:delete'
}
]
}
</script>
<style lang="less" scoped>
:deep(.ant-picker), :deep(.ant-input-number) {
width: 100%;
}
</style>

@ -0,0 +1,26 @@
-- 注意该页面对应的前台目录为views/cooperationdepart文件夹下
-- 如果你想更改到其他目录请修改sql中component字段对应的值
INSERT INTO sys_permission(id, parent_id, name, url, component, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_route, is_leaf, keep_alive, hidden, hide_tab, description, status, del_flag, rule_flag, create_by, create_time, update_by, update_time, internal_or_external)
VALUES ('2024102110079080510', NULL, '合作单位', '/cooperationdepart/cooperationDepartList', 'cooperationdepart/CooperationDepartList', NULL, NULL, 0, NULL, '1', 0.00, 0, NULL, 1, 0, 0, 0, 0, NULL, '1', 0, 0, 'admin', '2024-10-21 10:07:51', NULL, NULL, 0);
-- 权限控制sql
-- 新增
INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
VALUES ('2024102110079080511', '2024102110079080510', '添加合作单位', NULL, NULL, 0, NULL, NULL, 2, 'cooperationdepart:cooperation_depart:add', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2024-10-21 10:07:51', NULL, NULL, 0, 0, '1', 0);
-- 编辑
INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
VALUES ('2024102110079080512', '2024102110079080510', '编辑合作单位', NULL, NULL, 0, NULL, NULL, 2, 'cooperationdepart:cooperation_depart:edit', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2024-10-21 10:07:51', NULL, NULL, 0, 0, '1', 0);
-- 删除
INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
VALUES ('2024102110079080513', '2024102110079080510', '删除合作单位', NULL, NULL, 0, NULL, NULL, 2, 'cooperationdepart:cooperation_depart:delete', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2024-10-21 10:07:51', NULL, NULL, 0, 0, '1', 0);
-- 批量删除
INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
VALUES ('2024102110079080514', '2024102110079080510', '批量删除合作单位', NULL, NULL, 0, NULL, NULL, 2, 'cooperationdepart:cooperation_depart:deleteBatch', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2024-10-21 10:07:51', NULL, NULL, 0, 0, '1', 0);
-- 导出excel
INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
VALUES ('2024102110079080515', '2024102110079080510', '导出excel_合作单位', NULL, NULL, 0, NULL, NULL, 2, 'cooperationdepart:cooperation_depart:exportXls', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2024-10-21 10:07:51', NULL, NULL, 0, 0, '1', 0);
-- 导入excel
INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
VALUES ('2024102110079080516', '2024102110079080510', '导入excel_合作单位', NULL, NULL, 0, NULL, NULL, 2, 'cooperationdepart:cooperation_depart:importExcel', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2024-10-21 10:07:51', NULL, NULL, 0, 0, '1', 0);

@ -0,0 +1,70 @@
<template>
<div style="min-height: 400px">
<BasicForm @register="registerForm"></BasicForm>
<div style="width: 100%;text-align: center" v-if="!formDisabled">
<a-button @click="submitForm" pre-icon="ant-design:check" type="primary"> </a-button>
</div>
</div>
</template>
<script lang="ts">
import {BasicForm, useForm} from '/@/components/Form/index';
import {computed, defineComponent} from 'vue';
import {defHttp} from '/@/utils/http/axios';
import { propTypes } from '/@/utils/propTypes';
import {getBpmFormSchema} from '../CooperationDepart.data';
import {saveOrUpdate} from '../CooperationDepart.api';
export default defineComponent({
name: "CooperationDepartForm",
components:{
BasicForm
},
props:{
formData: propTypes.object.def({}),
formBpm: propTypes.bool.def(true),
},
setup(props){
const [registerForm, { setFieldsValue, setProps, getFieldsValue }] = useForm({
labelWidth: 150,
schemas: getBpmFormSchema(props.formData),
showActionButtonGroup: false,
baseColProps: {span: 24}
});
const formDisabled = computed(()=>{
if(props.formData.disabled === false){
return false;
}
return true;
});
let formData = {};
const queryByIdUrl = '/cooperationdepart/cooperationDepart/queryById';
async function initFormData(){
let params = {id: props.formData.dataId};
const data = await defHttp.get({url: queryByIdUrl, params});
formData = {...data}
//
await setFieldsValue(formData);
//
await setProps({disabled: formDisabled.value})
}
async function submitForm() {
let data = getFieldsValue();
let params = Object.assign({}, formData, data);
console.log('表单数据', params)
await saveOrUpdate(params, true)
}
initFormData();
return {
registerForm,
formDisabled,
submitForm,
}
}
});
</script>

@ -0,0 +1,76 @@
<template>
<BasicModal v-bind="$attrs" @register="registerModal" destroyOnClose :title="title" :width="800" @ok="handleSubmit">
<BasicForm @register="registerForm" name="CooperationDepartForm" />
</BasicModal>
</template>
<script lang="ts" setup>
import {ref, computed, unref} from 'vue';
import {BasicModal, useModalInner} from '/@/components/Modal';
import {BasicForm, useForm} from '/@/components/Form/index';
import {formSchema} from '../CooperationDepart.data';
import {saveOrUpdate} from '../CooperationDepart.api';
// Emits
const emit = defineEmits(['register','success']);
const isUpdate = ref(true);
const isDetail = ref(false);
//
const [registerForm, { setProps,resetFields, setFieldsValue, validate, scrollToField }] = useForm({
labelWidth: 150,
schemas: formSchema,
showActionButtonGroup: false,
baseColProps: {span: 24}
});
//
const [registerModal, {setModalProps, closeModal}] = useModalInner(async (data) => {
//
await resetFields();
setModalProps({confirmLoading: false,showCancelBtn:!!data?.showFooter,showOkBtn:!!data?.showFooter});
isUpdate.value = !!data?.isUpdate;
isDetail.value = !!data?.showFooter;
if (unref(isUpdate)) {
//
await setFieldsValue({
...data.record,
});
}
//
setProps({ disabled: !data?.showFooter })
});
//
const title = computed(() => (!unref(isUpdate) ? '新增' : !unref(isDetail) ? '详情' : '编辑'));
//
async function handleSubmit(v) {
try {
let values = await validate();
setModalProps({confirmLoading: true});
//
await saveOrUpdate(values, isUpdate.value);
//
closeModal();
//
emit('success');
} catch ({ errorFields }) {
if (errorFields) {
const firstField = errorFields[0];
if (firstField) {
scrollToField(firstField.name, { behavior: 'smooth', block: 'center' });
}
}
return Promise.reject(errorFields);
} finally {
setModalProps({confirmLoading: false});
}
}
</script>
<style lang="less" scoped>
/** 时间和数字输入框样式 */
:deep(.ant-input-number) {
width: 100%;
}
:deep(.ant-calendar-picker) {
width: 100%;
}
</style>
Loading…
Cancel
Save