初始化项目
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
package com.jeesite.modules.biz.dao;
|
||||
|
||||
import com.jeesite.common.dao.CrudDao;
|
||||
import com.jeesite.common.mybatis.annotation.MyBatisDao;
|
||||
import com.jeesite.modules.biz.entity.MyWebsiteStorage;
|
||||
|
||||
/**
|
||||
* 网站信息 DAO 接口
|
||||
* @author gaoxq
|
||||
* @version 2026-03-19
|
||||
*/
|
||||
@MyBatisDao(dataSourceName="work")
|
||||
public interface MyWebsiteStorageDao extends CrudDao<MyWebsiteStorage> {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,74 @@
|
||||
package com.jeesite.modules.biz.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
import com.jeesite.common.mybatis.annotation.JoinTable;
|
||||
import com.jeesite.common.mybatis.annotation.JoinTable.Type;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import jakarta.validation.constraints.NotBlank;
|
||||
import jakarta.validation.constraints.Size;
|
||||
|
||||
import com.jeesite.common.entity.DataEntity;
|
||||
import com.jeesite.common.mybatis.annotation.Column;
|
||||
import com.jeesite.common.mybatis.annotation.Table;
|
||||
import com.jeesite.common.mybatis.mapper.query.QueryType;
|
||||
import com.jeesite.common.utils.excel.annotation.ExcelField;
|
||||
import com.jeesite.common.utils.excel.annotation.ExcelField.Align;
|
||||
import com.jeesite.common.utils.excel.annotation.ExcelFields;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
||||
import java.io.Serial;
|
||||
|
||||
/**
|
||||
* 网站信息 Entity
|
||||
* @author gaoxq
|
||||
* @version 2026-03-19
|
||||
*/
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name="my_website_storage", alias="a", label="网站信息", columns={
|
||||
@Column(name="create_time", attrName="createTime", label="记录日期", isUpdate=false, isQuery=false, isUpdateForce=true),
|
||||
@Column(name="website_id", attrName="websiteId", label="网站标识", isPK=true),
|
||||
@Column(name="website_url", attrName="websiteUrl", label="网站地址", queryType=QueryType.LIKE),
|
||||
@Column(name="website_name", attrName="websiteName", label="网站名称", queryType=QueryType.LIKE),
|
||||
@Column(name="web_account", attrName="webAccount", label="登录账号", isQuery=false),
|
||||
@Column(name="web_password", attrName="webPassword", label="登录密码", isQuery=false),
|
||||
@Column(name="remarks", attrName="remarks", label="说明事项", isQuery=false),
|
||||
@Column(name="login_user", attrName="loginUser", label="所属账户", isQuery=false),
|
||||
@Column(name="ustatus", attrName="ustatus", label="状态"),
|
||||
}, orderBy="a.create_time DESC"
|
||||
)
|
||||
@Data
|
||||
public class MyWebsiteStorage extends DataEntity<MyWebsiteStorage> implements Serializable {
|
||||
|
||||
@Serial
|
||||
private static final long serialVersionUID = 1L;
|
||||
private Date createTime; // 记录日期
|
||||
private String websiteId; // 网站标识
|
||||
private String websiteUrl; // 网站地址
|
||||
private String websiteName; // 网站名称
|
||||
private String webAccount; // 登录账号
|
||||
private String webPassword; // 登录密码
|
||||
private String loginUser; // 所属账户
|
||||
private String ustatus; // 状态
|
||||
|
||||
@ExcelFields({
|
||||
@ExcelField(title="记录日期", attrName="createTime", align=Align.CENTER, sort=10, dataFormat="yyyy-MM-dd hh:mm"),
|
||||
@ExcelField(title="网站标识", attrName="websiteId", align=Align.CENTER, sort=20),
|
||||
@ExcelField(title="网站地址", attrName="websiteUrl", align=Align.CENTER, sort=30),
|
||||
@ExcelField(title="网站名称", attrName="websiteName", align=Align.CENTER, sort=40),
|
||||
@ExcelField(title="登录账号", attrName="webAccount", align=Align.CENTER, sort=50),
|
||||
@ExcelField(title="登录密码", attrName="webPassword", align=Align.CENTER, sort=60),
|
||||
@ExcelField(title="说明事项", attrName="remarks", align=Align.CENTER, sort=70),
|
||||
@ExcelField(title="所属账户", attrName="loginUser", align=Align.CENTER, sort=80),
|
||||
@ExcelField(title="状态", attrName="ustatus", dictType="sys_status", align=Align.CENTER, sort=90),
|
||||
})
|
||||
public MyWebsiteStorage() {
|
||||
this(null);
|
||||
}
|
||||
|
||||
public MyWebsiteStorage(String id){
|
||||
super(id);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,135 @@
|
||||
package com.jeesite.modules.biz.service;
|
||||
|
||||
import java.util.List;
|
||||
import org.springframework.stereotype.Service;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
|
||||
import com.jeesite.common.entity.Page;
|
||||
import com.jeesite.common.service.CrudService;
|
||||
import com.jeesite.modules.biz.entity.MyWebsiteStorage;
|
||||
import com.jeesite.modules.biz.dao.MyWebsiteStorageDao;
|
||||
import com.jeesite.common.service.ServiceException;
|
||||
import com.jeesite.common.config.Global;
|
||||
import com.jeesite.common.validator.ValidatorUtils;
|
||||
import com.jeesite.common.utils.excel.ExcelImport;
|
||||
import org.springframework.web.multipart.MultipartFile;
|
||||
import jakarta.validation.ConstraintViolation;
|
||||
import jakarta.validation.ConstraintViolationException;
|
||||
|
||||
/**
|
||||
* 网站信息 Service
|
||||
* @author gaoxq
|
||||
* @version 2026-03-19
|
||||
*/
|
||||
@Service
|
||||
public class MyWebsiteStorageService extends CrudService<MyWebsiteStorageDao, MyWebsiteStorage> {
|
||||
|
||||
/**
|
||||
* 获取单条数据
|
||||
* @param myWebsiteStorage 主键
|
||||
*/
|
||||
@Override
|
||||
public MyWebsiteStorage get(MyWebsiteStorage myWebsiteStorage) {
|
||||
return super.get(myWebsiteStorage);
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询分页数据
|
||||
* @param myWebsiteStorage 查询条件
|
||||
* @param myWebsiteStorage page 分页对象
|
||||
*/
|
||||
@Override
|
||||
public Page<MyWebsiteStorage> findPage(MyWebsiteStorage myWebsiteStorage) {
|
||||
return super.findPage(myWebsiteStorage);
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询列表数据
|
||||
* @param myWebsiteStorage 查询条件
|
||||
*/
|
||||
@Override
|
||||
public List<MyWebsiteStorage> findList(MyWebsiteStorage myWebsiteStorage) {
|
||||
return super.findList(myWebsiteStorage);
|
||||
}
|
||||
|
||||
/**
|
||||
* 保存数据(插入或更新)
|
||||
* @param myWebsiteStorage 数据对象
|
||||
*/
|
||||
@Override
|
||||
@Transactional
|
||||
public void save(MyWebsiteStorage myWebsiteStorage) {
|
||||
super.save(myWebsiteStorage);
|
||||
}
|
||||
|
||||
/**
|
||||
* 导入数据
|
||||
* @param file 导入的数据文件
|
||||
*/
|
||||
@Transactional
|
||||
public String importData(MultipartFile file) {
|
||||
if (file == null){
|
||||
throw new ServiceException(text("请选择导入的数据文件!"));
|
||||
}
|
||||
int successNum = 0; int failureNum = 0;
|
||||
StringBuilder successMsg = new StringBuilder();
|
||||
StringBuilder failureMsg = new StringBuilder();
|
||||
try(ExcelImport ei = new ExcelImport(file, 2, 0)){
|
||||
List<MyWebsiteStorage> list = ei.getDataList(MyWebsiteStorage.class);
|
||||
for (MyWebsiteStorage myWebsiteStorage : list) {
|
||||
try{
|
||||
ValidatorUtils.validateWithException(myWebsiteStorage);
|
||||
this.save(myWebsiteStorage);
|
||||
successNum++;
|
||||
successMsg.append("<br/>" + successNum + "、编号 " + myWebsiteStorage.getId() + " 导入成功");
|
||||
} catch (Exception e) {
|
||||
failureNum++;
|
||||
String msg = "<br/>" + failureNum + "、编号 " + myWebsiteStorage.getId() + " 导入失败:";
|
||||
if (e instanceof ConstraintViolationException){
|
||||
ConstraintViolationException cve = (ConstraintViolationException)e;
|
||||
for (ConstraintViolation<?> violation : cve.getConstraintViolations()) {
|
||||
msg += Global.getText(violation.getMessage()) + " ("+violation.getPropertyPath()+")";
|
||||
}
|
||||
}else{
|
||||
msg += e.getMessage();
|
||||
}
|
||||
failureMsg.append(msg);
|
||||
logger.error(msg, e);
|
||||
}
|
||||
}
|
||||
} catch (Exception e) {
|
||||
logger.error(e.getMessage(), e);
|
||||
failureMsg.append(e.getMessage());
|
||||
return failureMsg.toString();
|
||||
}
|
||||
if (failureNum > 0) {
|
||||
failureMsg.insert(0, "很抱歉,导入失败!共 " + failureNum + " 条数据格式不正确,错误如下:");
|
||||
throw new ServiceException(failureMsg.toString());
|
||||
}else{
|
||||
successMsg.insert(0, "恭喜您,数据已全部导入成功!共 " + successNum + " 条,数据如下:");
|
||||
}
|
||||
return successMsg.toString();
|
||||
}
|
||||
|
||||
/**
|
||||
* 更新状态
|
||||
* @param myWebsiteStorage 数据对象
|
||||
*/
|
||||
@Override
|
||||
@Transactional
|
||||
public void updateStatus(MyWebsiteStorage myWebsiteStorage) {
|
||||
super.updateStatus(myWebsiteStorage);
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除数据
|
||||
* @param myWebsiteStorage 数据对象
|
||||
*/
|
||||
@Override
|
||||
@Transactional
|
||||
public void delete(MyWebsiteStorage myWebsiteStorage) {
|
||||
myWebsiteStorage.sqlMap().markIdDelete(); // 逻辑删除时标记ID值
|
||||
super.delete(myWebsiteStorage);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,146 @@
|
||||
package com.jeesite.modules.biz.web;
|
||||
|
||||
import java.util.List;
|
||||
import jakarta.servlet.http.HttpServletRequest;
|
||||
import jakarta.servlet.http.HttpServletResponse;
|
||||
|
||||
import org.apache.shiro.authz.annotation.RequiresPermissions;
|
||||
import org.springframework.stereotype.Controller;
|
||||
import org.springframework.ui.Model;
|
||||
import org.springframework.validation.annotation.Validated;
|
||||
import org.springframework.web.bind.annotation.ModelAttribute;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.ResponseBody;
|
||||
|
||||
import com.jeesite.common.config.Global;
|
||||
import com.jeesite.common.collect.ListUtils;
|
||||
import com.jeesite.common.entity.Page;
|
||||
import com.jeesite.common.lang.DateUtils;
|
||||
import com.jeesite.common.utils.excel.ExcelExport;
|
||||
import com.jeesite.common.utils.excel.annotation.ExcelField.Type;
|
||||
import org.springframework.web.multipart.MultipartFile;
|
||||
import com.jeesite.common.web.BaseController;
|
||||
import com.jeesite.modules.biz.entity.MyWebsiteStorage;
|
||||
import com.jeesite.modules.biz.service.MyWebsiteStorageService;
|
||||
|
||||
/**
|
||||
* 网站信息 Controller
|
||||
* @author gaoxq
|
||||
* @version 2026-03-19
|
||||
*/
|
||||
@Controller
|
||||
@RequestMapping(value = "${adminPath}/biz/myWebsiteStorage")
|
||||
public class MyWebsiteStorageController extends BaseController {
|
||||
|
||||
private final MyWebsiteStorageService myWebsiteStorageService;
|
||||
|
||||
public MyWebsiteStorageController(MyWebsiteStorageService myWebsiteStorageService) {
|
||||
this.myWebsiteStorageService = myWebsiteStorageService;
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取数据
|
||||
*/
|
||||
@ModelAttribute
|
||||
public MyWebsiteStorage get(String websiteId, boolean isNewRecord) {
|
||||
return myWebsiteStorageService.get(websiteId, isNewRecord);
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询列表
|
||||
*/
|
||||
@RequiresPermissions("biz:myWebsiteStorage:view")
|
||||
@RequestMapping(value = {"list", ""})
|
||||
public String list(MyWebsiteStorage myWebsiteStorage, Model model) {
|
||||
model.addAttribute("myWebsiteStorage", myWebsiteStorage);
|
||||
return "modules/biz/myWebsiteStorageList";
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询列表数据
|
||||
*/
|
||||
@RequiresPermissions("biz:myWebsiteStorage:view")
|
||||
@RequestMapping(value = "listData")
|
||||
@ResponseBody
|
||||
public Page<MyWebsiteStorage> listData(MyWebsiteStorage myWebsiteStorage, HttpServletRequest request, HttpServletResponse response) {
|
||||
myWebsiteStorage.setPage(new Page<>(request, response));
|
||||
Page<MyWebsiteStorage> page = myWebsiteStorageService.findPage(myWebsiteStorage);
|
||||
return page;
|
||||
}
|
||||
|
||||
/**
|
||||
* 查看编辑表单
|
||||
*/
|
||||
@RequiresPermissions("biz:myWebsiteStorage:view")
|
||||
@RequestMapping(value = "form")
|
||||
public String form(MyWebsiteStorage myWebsiteStorage, Model model) {
|
||||
model.addAttribute("myWebsiteStorage", myWebsiteStorage);
|
||||
return "modules/biz/myWebsiteStorageForm";
|
||||
}
|
||||
|
||||
/**
|
||||
* 保存数据
|
||||
*/
|
||||
@RequiresPermissions("biz:myWebsiteStorage:edit")
|
||||
@PostMapping(value = "save")
|
||||
@ResponseBody
|
||||
public String save(@Validated MyWebsiteStorage myWebsiteStorage) {
|
||||
myWebsiteStorageService.save(myWebsiteStorage);
|
||||
return renderResult(Global.TRUE, text("保存网站成功!"));
|
||||
}
|
||||
|
||||
/**
|
||||
* 导出数据
|
||||
*/
|
||||
@RequiresPermissions("biz:myWebsiteStorage:view")
|
||||
@RequestMapping(value = "exportData")
|
||||
public void exportData(MyWebsiteStorage myWebsiteStorage, HttpServletResponse response) {
|
||||
List<MyWebsiteStorage> list = myWebsiteStorageService.findList(myWebsiteStorage);
|
||||
String fileName = "网站" + DateUtils.getDate("yyyyMMddHHmmss") + ".xlsx";
|
||||
try(ExcelExport ee = new ExcelExport("网站", MyWebsiteStorage.class)){
|
||||
ee.setDataList(list).write(response, fileName);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 下载模板
|
||||
*/
|
||||
@RequiresPermissions("biz:myWebsiteStorage:view")
|
||||
@RequestMapping(value = "importTemplate")
|
||||
public void importTemplate(HttpServletResponse response) {
|
||||
MyWebsiteStorage myWebsiteStorage = new MyWebsiteStorage();
|
||||
List<MyWebsiteStorage> list = ListUtils.newArrayList(myWebsiteStorage);
|
||||
String fileName = "网站模板.xlsx";
|
||||
try(ExcelExport ee = new ExcelExport("网站", MyWebsiteStorage.class, Type.IMPORT)){
|
||||
ee.setDataList(list).write(response, fileName);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 导入数据
|
||||
*/
|
||||
@ResponseBody
|
||||
@RequiresPermissions("biz:myWebsiteStorage:edit")
|
||||
@PostMapping(value = "importData")
|
||||
public String importData(MultipartFile file) {
|
||||
try {
|
||||
String message = myWebsiteStorageService.importData(file);
|
||||
return renderResult(Global.TRUE, "posfull:"+message);
|
||||
} catch (Exception ex) {
|
||||
return renderResult(Global.FALSE, "posfull:"+ex.getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除数据
|
||||
*/
|
||||
@RequiresPermissions("biz:myWebsiteStorage:edit")
|
||||
@RequestMapping(value = "delete")
|
||||
@ResponseBody
|
||||
public String delete(MyWebsiteStorage myWebsiteStorage) {
|
||||
myWebsiteStorageService.delete(myWebsiteStorage);
|
||||
return renderResult(Global.TRUE, text("删除网站成功!"));
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
<?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="com.jeesite.modules.biz.dao.MyWebsiteStorageDao">
|
||||
|
||||
<!-- 查询数据
|
||||
<select id="findList" resultType="MyWebsiteStorage">
|
||||
SELECT ${sqlMap.column.toSql()}
|
||||
FROM ${sqlMap.table.toSql()}
|
||||
<where>
|
||||
${sqlMap.where.toSql()}
|
||||
</where>
|
||||
ORDER BY ${sqlMap.order.toSql()}
|
||||
</select> -->
|
||||
|
||||
</mapper>
|
||||
51
web-vue/packages/biz/api/biz/myWebsiteStorage.ts
Normal file
51
web-vue/packages/biz/api/biz/myWebsiteStorage.ts
Normal file
@@ -0,0 +1,51 @@
|
||||
/**
|
||||
* Copyright (c) 2013-Now https://jeesite.com All rights reserved.
|
||||
* No deletion without permission, or be held responsible to law.
|
||||
* @author gaoxq
|
||||
*/
|
||||
import { defHttp } from '@jeesite/core/utils/http/axios';
|
||||
import { useGlobSetting } from '@jeesite/core/hooks/setting';
|
||||
import { BasicModel, Page } from '@jeesite/core/api/model/baseModel';
|
||||
import { UploadApiResult } from '@jeesite/core/api/sys/upload';
|
||||
import { UploadFileParams } from '@jeesite/types/axios';
|
||||
import { AxiosProgressEvent } from 'axios';
|
||||
|
||||
const { ctxPath, adminPath } = useGlobSetting();
|
||||
|
||||
export interface MyWebsiteStorage extends BasicModel<MyWebsiteStorage> {
|
||||
createTime?: string; // 记录日期
|
||||
websiteId?: string; // 网站标识
|
||||
websiteUrl: string; // 网站地址
|
||||
websiteName: string; // 网站名称
|
||||
webAccount?: string; // 登录账号
|
||||
webPassword?: string; // 登录密码
|
||||
loginUser?: string; // 所属账户
|
||||
ustatus: string; // 状态
|
||||
}
|
||||
|
||||
export const myWebsiteStorageList = (params?: MyWebsiteStorage | any) =>
|
||||
defHttp.get<MyWebsiteStorage>({ url: adminPath + '/biz/myWebsiteStorage/list', params });
|
||||
|
||||
export const myWebsiteStorageListData = (params?: MyWebsiteStorage | any) =>
|
||||
defHttp.post<Page<MyWebsiteStorage>>({ url: adminPath + '/biz/myWebsiteStorage/listData', params });
|
||||
|
||||
export const myWebsiteStorageForm = (params?: MyWebsiteStorage | any) =>
|
||||
defHttp.get<MyWebsiteStorage>({ url: adminPath + '/biz/myWebsiteStorage/form', params });
|
||||
|
||||
export const myWebsiteStorageSave = (params?: any, data?: MyWebsiteStorage | any) =>
|
||||
defHttp.postJson<MyWebsiteStorage>({ url: adminPath + '/biz/myWebsiteStorage/save', params, data });
|
||||
|
||||
export const myWebsiteStorageImportData = (
|
||||
params: UploadFileParams,
|
||||
onUploadProgress: (progressEvent: AxiosProgressEvent) => void,
|
||||
) =>
|
||||
defHttp.uploadFile<UploadApiResult>(
|
||||
{
|
||||
url: ctxPath + adminPath + '/biz/myWebsiteStorage/importData',
|
||||
onUploadProgress,
|
||||
},
|
||||
params,
|
||||
);
|
||||
|
||||
export const myWebsiteStorageDelete = (params?: MyWebsiteStorage | any) =>
|
||||
defHttp.get<MyWebsiteStorage>({ url: adminPath + '/biz/myWebsiteStorage/delete', params });
|
||||
156
web-vue/packages/biz/views/biz/myWebsiteStorage/form.vue
Normal file
156
web-vue/packages/biz/views/biz/myWebsiteStorage/form.vue
Normal file
@@ -0,0 +1,156 @@
|
||||
<!--
|
||||
* Copyright (c) 2013-Now https://jeesite.com All rights reserved.
|
||||
* No deletion without permission, or be held responsible to law.
|
||||
* @author gaoxq
|
||||
-->
|
||||
<template>
|
||||
<BasicDrawer
|
||||
v-bind="$attrs"
|
||||
:showFooter="true"
|
||||
:okAuth="'biz:myWebsiteStorage:edit'"
|
||||
@register="registerDrawer"
|
||||
@ok="handleSubmit"
|
||||
width="70%"
|
||||
>
|
||||
<template #title>
|
||||
<Icon :icon="getTitle.icon" class="m-1 pr-1" />
|
||||
<span> {{ getTitle.value }} </span>
|
||||
</template>
|
||||
<BasicForm @register="registerForm" />
|
||||
</BasicDrawer>
|
||||
</template>
|
||||
<script lang="ts" setup name="ViewsBizMyWebsiteStorageForm">
|
||||
import { ref, unref, computed } from 'vue';
|
||||
import { useI18n } from '@jeesite/core/hooks/web/useI18n';
|
||||
import { useMessage } from '@jeesite/core/hooks/web/useMessage';
|
||||
import { router } from '@jeesite/core/router';
|
||||
import { Icon } from '@jeesite/core/components/Icon';
|
||||
import { BasicForm, FormSchema, useForm } from '@jeesite/core/components/Form';
|
||||
import { BasicDrawer, useDrawerInner } from '@jeesite/core/components/Drawer';
|
||||
import { MyWebsiteStorage, myWebsiteStorageSave, myWebsiteStorageForm } from '@jeesite/biz/api/biz/myWebsiteStorage';
|
||||
|
||||
const emit = defineEmits(['success', 'register']);
|
||||
|
||||
const { t } = useI18n('biz.myWebsiteStorage');
|
||||
const { showMessage } = useMessage();
|
||||
const { meta } = unref(router.currentRoute);
|
||||
const record = ref<MyWebsiteStorage>({} as MyWebsiteStorage);
|
||||
|
||||
const getTitle = computed(() => ({
|
||||
icon: meta.icon || 'i-ant-design:book-outlined',
|
||||
value: record.value.isNewRecord ? t('新增网站') : t('编辑网站'),
|
||||
}));
|
||||
|
||||
const inputFormSchemas: FormSchema<MyWebsiteStorage>[] = [
|
||||
{
|
||||
label: t('基本信息'),
|
||||
field: 'basicInfo',
|
||||
component: 'FormGroup',
|
||||
colProps: { md: 24, lg: 24 },
|
||||
},
|
||||
{
|
||||
label: t('网站名称'),
|
||||
field: 'websiteName',
|
||||
component: 'Input',
|
||||
componentProps: {
|
||||
maxlength: 100,
|
||||
},
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
label: t('状态'),
|
||||
field: 'ustatus',
|
||||
component: 'Select',
|
||||
componentProps: {
|
||||
dictType: 'sys_status',
|
||||
allowClear: true,
|
||||
},
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
label: t('网站地址'),
|
||||
field: 'websiteUrl',
|
||||
component: 'Input',
|
||||
componentProps: {
|
||||
maxlength: 255,
|
||||
},
|
||||
required: true,
|
||||
colProps: { md: 24, lg: 24 },
|
||||
},
|
||||
{
|
||||
label: t('登录账号'),
|
||||
field: 'webAccount',
|
||||
component: 'Input',
|
||||
componentProps: {
|
||||
maxlength: 100,
|
||||
},
|
||||
},
|
||||
{
|
||||
label: t('登录密码'),
|
||||
field: 'webPassword',
|
||||
component: 'Input',
|
||||
componentProps: {
|
||||
maxlength: 255,
|
||||
},
|
||||
},
|
||||
{
|
||||
label: t('其它信息'),
|
||||
field: 'otherInfo',
|
||||
component: 'FormGroup',
|
||||
colProps: { md: 24, lg: 24 },
|
||||
},
|
||||
{
|
||||
label: t('说明事项'),
|
||||
field: 'remarks',
|
||||
component: 'InputTextArea',
|
||||
colProps: { md: 24, lg: 24 },
|
||||
},
|
||||
];
|
||||
|
||||
const [registerForm, { resetFields, setFieldsValue, updateSchema, validate }] = useForm<MyWebsiteStorage>({
|
||||
labelWidth: 120,
|
||||
schemas: inputFormSchemas,
|
||||
baseColProps: { md: 24, lg: 12 },
|
||||
});
|
||||
|
||||
const [registerDrawer, { setDrawerProps, closeDrawer }] = useDrawerInner(async (data) => {
|
||||
setDrawerProps({ loading: true });
|
||||
await resetFields();
|
||||
const res = await myWebsiteStorageForm(data);
|
||||
record.value = (res.myWebsiteStorage || {}) as MyWebsiteStorage;
|
||||
record.value.__t = new Date().getTime();
|
||||
await setFieldsValue(record.value);
|
||||
await updateSchema([
|
||||
{
|
||||
field: 'websiteId',
|
||||
componentProps: {
|
||||
disabled: !record.value.isNewRecord,
|
||||
},
|
||||
},
|
||||
]);
|
||||
setDrawerProps({ loading: false });
|
||||
});
|
||||
|
||||
async function handleSubmit() {
|
||||
try {
|
||||
const data = await validate();
|
||||
setDrawerProps({ confirmLoading: true });
|
||||
const params: any = {
|
||||
isNewRecord: record.value.isNewRecord,
|
||||
websiteId: record.value.websiteId || data.websiteId,
|
||||
};
|
||||
// console.log('submit', params, data, record);
|
||||
const res = await myWebsiteStorageSave(params, data);
|
||||
showMessage(res.message);
|
||||
setTimeout(closeDrawer);
|
||||
emit('success', data);
|
||||
} catch (error: any) {
|
||||
if (error && error.errorFields) {
|
||||
showMessage(error.message || t('common.validateError'));
|
||||
}
|
||||
console.log('error', error);
|
||||
} finally {
|
||||
setDrawerProps({ confirmLoading: false });
|
||||
}
|
||||
}
|
||||
</script>
|
||||
211
web-vue/packages/biz/views/biz/myWebsiteStorage/list.vue
Normal file
211
web-vue/packages/biz/views/biz/myWebsiteStorage/list.vue
Normal file
@@ -0,0 +1,211 @@
|
||||
<!--
|
||||
* Copyright (c) 2013-Now https://jeesite.com All rights reserved.
|
||||
* No deletion without permission, or be held responsible to law.
|
||||
* @author gaoxq
|
||||
-->
|
||||
<template>
|
||||
<div>
|
||||
<BasicTable @register="registerTable">
|
||||
<template #tableTitle>
|
||||
<Icon :icon="getTitle.icon" class="m-1 pr-1" />
|
||||
<span> {{ getTitle.value }} </span>
|
||||
</template>
|
||||
<template #toolbar>
|
||||
<a-button type="default" :loading="loading" @click="handleExport()">
|
||||
<Icon icon="i-ant-design:download-outlined" /> {{ t('导出') }}
|
||||
</a-button>
|
||||
<a-button type="primary" @click="handleForm({})" v-auth="'biz:myWebsiteStorage:edit'">
|
||||
<Icon icon="i-fluent:add-12-filled" /> {{ t('新增') }}
|
||||
</a-button>
|
||||
</template>
|
||||
<template #bizScopeKey="{ record, text, value }">
|
||||
<a @click="handleForm({ websiteId: record.websiteId })" :title="value">
|
||||
{{ text }}
|
||||
</a>
|
||||
</template>
|
||||
</BasicTable>
|
||||
<InputForm @register="registerDrawer" @success="handleSuccess" />
|
||||
</div>
|
||||
</template>
|
||||
<script lang="ts" setup name="ViewsBizMyWebsiteStorageList">
|
||||
import { onMounted, ref, unref } from 'vue';
|
||||
import { useI18n } from '@jeesite/core/hooks/web/useI18n';
|
||||
import { useMessage } from '@jeesite/core/hooks/web/useMessage';
|
||||
import { useGlobSetting } from '@jeesite/core/hooks/setting';
|
||||
import { downloadByUrl } from '@jeesite/core/utils/file/download';
|
||||
import { router } from '@jeesite/core/router';
|
||||
import { Icon } from '@jeesite/core/components/Icon';
|
||||
import { BasicTable, BasicColumn, useTable } from '@jeesite/core/components/Table';
|
||||
import { MyWebsiteStorage, myWebsiteStorageList } from '@jeesite/biz/api/biz/myWebsiteStorage';
|
||||
import { myWebsiteStorageDelete, myWebsiteStorageListData } from '@jeesite/biz/api/biz/myWebsiteStorage';
|
||||
import { useDrawer } from '@jeesite/core/components/Drawer';
|
||||
import { useModal } from '@jeesite/core/components/Modal';
|
||||
import { FormProps } from '@jeesite/core/components/Form';
|
||||
import InputForm from './form.vue';
|
||||
|
||||
const { t } = useI18n('biz.myWebsiteStorage');
|
||||
const { showMessage } = useMessage();
|
||||
const { meta } = unref(router.currentRoute);
|
||||
const record = ref<MyWebsiteStorage>({} as MyWebsiteStorage);
|
||||
|
||||
const getTitle = {
|
||||
icon: meta.icon || 'i-ant-design:book-outlined',
|
||||
value: meta.title || t('网站管理'),
|
||||
};
|
||||
const loading = ref(false);
|
||||
|
||||
const searchForm: FormProps<MyWebsiteStorage> = {
|
||||
baseColProps: { md: 8, lg: 6 },
|
||||
labelWidth: 90,
|
||||
schemas: [
|
||||
{
|
||||
label: t('网站名称'),
|
||||
field: 'websiteName',
|
||||
component: 'Input',
|
||||
},
|
||||
{
|
||||
label: t('网站地址'),
|
||||
field: 'websiteUrl',
|
||||
component: 'Input',
|
||||
},
|
||||
{
|
||||
label: t('状态'),
|
||||
field: 'ustatus',
|
||||
component: 'Select',
|
||||
componentProps: {
|
||||
dictType: 'sys_status',
|
||||
allowClear: true,
|
||||
},
|
||||
},
|
||||
],
|
||||
};
|
||||
|
||||
const tableColumns: BasicColumn<MyWebsiteStorage>[] = [
|
||||
{
|
||||
title: t('记录日期'),
|
||||
dataIndex: 'createTime',
|
||||
key: 'a.create_time',
|
||||
sorter: true,
|
||||
width: 150,
|
||||
align: 'center',
|
||||
fixed: 'left',
|
||||
},
|
||||
{
|
||||
title: t('网站名称'),
|
||||
dataIndex: 'websiteName',
|
||||
key: 'a.website_name',
|
||||
sorter: true,
|
||||
width: 130,
|
||||
align: 'left',
|
||||
slot: 'bizScopeKey',
|
||||
},
|
||||
{
|
||||
title: t('网站地址'),
|
||||
dataIndex: 'websiteUrl',
|
||||
key: 'a.website_url',
|
||||
sorter: true,
|
||||
width: 225,
|
||||
align: 'left',
|
||||
},
|
||||
{
|
||||
title: t('登录账号'),
|
||||
dataIndex: 'webAccount',
|
||||
key: 'a.web_account',
|
||||
sorter: true,
|
||||
width: 130,
|
||||
align: 'left',
|
||||
},
|
||||
{
|
||||
title: t('说明事项'),
|
||||
dataIndex: 'remarks',
|
||||
key: 'a.remarks',
|
||||
sorter: true,
|
||||
width: 130,
|
||||
align: 'left',
|
||||
},
|
||||
{
|
||||
title: t('状态'),
|
||||
dataIndex: 'ustatus',
|
||||
key: 'a.ustatus',
|
||||
sorter: true,
|
||||
width: 130,
|
||||
align: 'center',
|
||||
dictType: 'sys_status',
|
||||
},
|
||||
];
|
||||
|
||||
const actionColumn: BasicColumn<MyWebsiteStorage> = {
|
||||
width: 160,
|
||||
align: 'center',
|
||||
actions: (record: MyWebsiteStorage) => [
|
||||
{
|
||||
icon: 'i-clarity:note-edit-line',
|
||||
title: t('编辑'),
|
||||
onClick: handleForm.bind(this, { websiteId: record.websiteId }),
|
||||
auth: 'biz:myWebsiteStorage:edit',
|
||||
},
|
||||
{
|
||||
icon: 'i-ant-design:delete-outlined',
|
||||
color: 'error',
|
||||
title: t('删除'),
|
||||
popConfirm: {
|
||||
title: t('是否确认删除网站?'),
|
||||
confirm: handleDelete.bind(this, record),
|
||||
},
|
||||
auth: 'biz:myWebsiteStorage:edit',
|
||||
},
|
||||
],
|
||||
};
|
||||
|
||||
const [registerTable, { reload, getForm }] = useTable<MyWebsiteStorage>({
|
||||
api: myWebsiteStorageListData,
|
||||
beforeFetch: (params) => {
|
||||
return params;
|
||||
},
|
||||
columns: tableColumns,
|
||||
actionColumn: actionColumn,
|
||||
formConfig: searchForm,
|
||||
showTableSetting: true,
|
||||
useSearchForm: true,
|
||||
canResize: true,
|
||||
});
|
||||
|
||||
onMounted(async () => {
|
||||
const res = await myWebsiteStorageList();
|
||||
record.value = (res.myWebsiteStorage || {}) as MyWebsiteStorage;
|
||||
await getForm().setFieldsValue(record.value);
|
||||
});
|
||||
|
||||
const [registerDrawer, { openDrawer }] = useDrawer();
|
||||
|
||||
function handleForm(record: Recordable) {
|
||||
openDrawer(true, record);
|
||||
}
|
||||
|
||||
async function handleExport() {
|
||||
loading.value = true;
|
||||
const { ctxAdminPath } = useGlobSetting();
|
||||
await downloadByUrl({
|
||||
url: ctxAdminPath + '/biz/myWebsiteStorage/exportData',
|
||||
params: getForm().getFieldsValue(),
|
||||
});
|
||||
loading.value = false;
|
||||
}
|
||||
|
||||
const [registerImportModal, { openModal: importModal }] = useModal();
|
||||
|
||||
function handleImport() {
|
||||
importModal(true, {});
|
||||
}
|
||||
|
||||
async function handleDelete(record: Recordable) {
|
||||
const params = { websiteId: record.websiteId };
|
||||
const res = await myWebsiteStorageDelete(params);
|
||||
showMessage(res.message);
|
||||
await handleSuccess(record);
|
||||
}
|
||||
|
||||
async function handleSuccess(record: Recordable) {
|
||||
await reload({ record });
|
||||
}
|
||||
</script>
|
||||
Reference in New Issue
Block a user