master
Gitea 2 weeks ago
parent 2aa7699ed7
commit 671d076f54
  1. 27
      jeecg-boot/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/innovationvoucher/controller/InnovationVoucherController.java
  2. 8
      jeecg-boot/jeecg-module-demo/src/main/java/org/jeecg/modules/demo/innovationvoucher/entity/InnovationVoucher.java
  3. 6
      jeecgboot-vue3/src/views/innovationvoucher/InnovationVoucher.api.ts
  4. 10
      jeecgboot-vue3/src/views/innovationvoucher/InnovationVoucher.data4.ts
  5. 28
      jeecgboot-vue3/src/views/innovationvoucher/InnovationVoucherList4.vue
  6. 13
      jeecgboot-vue3/src/views/innovationvoucher/InnovationVoucherList5.vue
  7. 187
      jeecgboot-vue3/src/views/innovationvoucher/components/InnovationVoucherForm4.vue
  8. 77
      jeecgboot-vue3/src/views/innovationvoucher/components/InnovationVoucherModal4.vue
  9. 8
      jeecgboot-vue3/src/views/system/usersetting/BaseSetting.vue

@ -484,6 +484,33 @@ public class InnovationVoucherController extends JeecgController<InnovationVouch
return Result.OK("提交兑现审核成功!");
}
/**
* 编辑
*
* @param innovationVoucher
* @return
*/
@AutoLog(value = "仪器信息表-编辑")
@ApiOperation(value="仪器信息表-编辑", notes="仪器信息表-编辑")
//@RequiresPermissions("instrument:instrument:edit")
@RequestMapping(value = "/edit4", method = {RequestMethod.PUT,RequestMethod.POST})
public Result<String> edit4(@RequestBody InnovationVoucher innovationVoucher) {
InnovationVoucher innovationVouchervo = innovationVoucherService.getById(innovationVoucher.getId());
if(innovationVouchervo==null) {
return Result.error("未找到对应数据");
}
if(innovationVouchervo.getDxshFlag().equals("0")){
innovationVoucher.setDxshSta("2");
}else {
innovationVoucher.setDxshSta("1");
}
innovationVoucher.setSfSqdxSta("1");
innovationVoucher.setDxReject("");
innovationVoucherService.updateById(innovationVoucher);
return Result.OK("提交兑现审核成功!");
}
/**
* 审核通过
*

@ -133,4 +133,12 @@ public class InnovationVoucher implements Serializable {
@Excel(name = "兑现驳回原因", width = 15)
@ApiModelProperty(value = "兑现驳回原因")
private java.lang.String dxReject;
/**兑现理由*/
@Excel(name = "兑现理由", width = 15)
@ApiModelProperty(value = "兑现理由")
private java.lang.String dxReason;
/**合同*/
@Excel(name = "合同", width = 15)
@ApiModelProperty(value = "合同")
private java.lang.String dxContract;
}

@ -15,6 +15,7 @@ enum Api {
edit1='/innovationvoucher/innovationVoucher/edit1',
edit2='/innovationvoucher/innovationVoucher/edit2',
edit3='/innovationvoucher/innovationVoucher/edit3',
edit4='/innovationvoucher/innovationVoucher/edit4',
deleteOne = '/innovationvoucher/innovationVoucher/delete',
deleteBatch = '/innovationvoucher/innovationVoucher/deleteBatch',
importExcel = '/innovationvoucher/innovationVoucher/importExcel',
@ -65,6 +66,11 @@ export const saveOrUpdate3 = (params, isUpdate) => {
return defHttp.post({ url: url, params }, { isTransformResponse: false });
}
export const saveOrUpdate4 = (params, isUpdate) => {
let url = isUpdate ? Api.edit4 : Api.save;
return defHttp.post({ url: url, params }, { isTransformResponse: false });
}
/**
* 导出api

@ -70,6 +70,16 @@ export const columns: BasicColumn[] = [
align: "center",
dataIndex: 'dxshSta_dictText'
},
{
title: '兑现理由',
align: "center",
dataIndex: 'dxReason',
},
{
title: '合同',
align: "center",
dataIndex: 'dxContract',
},
{
title: '兑现驳回原因',
align: "center",

@ -72,10 +72,24 @@
<span v-if="!text" style="font-size: 12px;font-style: italic;">无文件</span>
<a-button v-else :ghost="true" type="primary" preIcon="ant-design:download-outlined" size="small" @click="downloadFile(text)">下载</a-button>
</template>
<template v-if="column.dataIndex==='applicationReason'">
<!--富文本件字段回显插槽-->
<div v-html="text"></div>
</template>
<template v-if="column.dataIndex==='dxReason'">
<!--富文本件字段回显插槽-->
<div v-html="text"></div>
</template>
<template v-if="column.dataIndex==='dxContract'">
<!--文件字段回显插槽-->
<span v-if="!text" style="font-size: 12px;font-style: italic;">无文件</span>
<a-button v-else :ghost="true" type="primary" preIcon="ant-design:download-outlined" size="small" @click="downloadFile(text)">下载</a-button>
</template>
</template>
</BasicTable>
<!-- 表单区域 -->
<InnovationVoucherModal ref="registerModal" @success="handleSuccess"></InnovationVoucherModal>
<InnovationVoucherModal4 ref="registerModal4" @success="handleSuccess"></InnovationVoucherModal4>
</div>
</template>
@ -84,9 +98,10 @@
import { BasicTable, useTable, TableAction } from '/@/components/Table';
import { useListPage } from '/@/hooks/system/useListPage';
import { columns, superQuerySchema } from './InnovationVoucher.data4';
import { list4, deleteOne, batchDelete, getImportUrl, getExportUrl,tjdxsh } from './InnovationVoucher.api';
import { list4, deleteOne, batchDelete, getImportUrl, getExportUrl } from './InnovationVoucher.api';
import { downloadFile } from '/@/utils/common/renderUtils';
import InnovationVoucherModal from './components/InnovationVoucherModal.vue'
import InnovationVoucherModal4 from './components/InnovationVoucherModal4.vue'
import { useUserStore } from '/@/store/modules/user';
import JSelectDept from '/@/components/Form/src/jeecg/components/JSelectDept.vue';
import JDictSelectTag from '/@/components/Form/src/jeecg/components/JDictSelectTag.vue';
@ -97,6 +112,7 @@
const queryParam = reactive<any>({});
const toggleSearchStatus = ref<boolean>(false);
const registerModal = ref();
const registerModal4 = ref();
const userStore = useUserStore();
//table
const { prefixCls, tableContext, onExportXls, onImportXls } = useListPage({
@ -190,8 +206,16 @@
/**
* 提交兑现审核事件
*/
async function tjdxshcz(record) {
/* async function tjdxshcz(record) {
await tjdxsh({id: record.id}, handleSuccess);
}*/
/**
* 驳回
*/
function tjdxshcz(record: Recordable) {
registerModal4.value.disableSubmit = false;
registerModal4.value.edit(record);
}
/**

@ -72,6 +72,19 @@
<span v-if="!text" style="font-size: 12px;font-style: italic;">无文件</span>
<a-button v-else :ghost="true" type="primary" preIcon="ant-design:download-outlined" size="small" @click="downloadFile(text)">下载</a-button>
</template>
<template v-if="column.dataIndex==='applicationReason'">
<!--富文本件字段回显插槽-->
<div v-html="text"></div>
</template>
<template v-if="column.dataIndex==='dxReason'">
<!--富文本件字段回显插槽-->
<div v-html="text"></div>
</template>
<template v-if="column.dataIndex==='dxContract'">
<!--文件字段回显插槽-->
<span v-if="!text" style="font-size: 12px;font-style: italic;">无文件</span>
<a-button v-else :ghost="true" type="primary" preIcon="ant-design:download-outlined" size="small" @click="downloadFile(text)">下载</a-button>
</template>
</template>
</BasicTable>
<!-- 表单区域 -->

@ -0,0 +1,187 @@
<template>
<a-spin :spinning="confirmLoading">
<JFormContainer :disabled="disabled">
<template #detail>
<a-form ref="formRef" class="antd-modal-form" :labelCol="labelCol" :wrapperCol="wrapperCol" name="InnovationVoucherForm">
<a-row>
<a-col :span="24">
<a-form-item label="申报项目名称" v-bind="validateInfos.proName" id="InnovationVoucherForm-proName" name="proName">
<a-input v-model:value="formData.proName" placeholder="请输入申报项目名称" allow-clear :disabled="true"></a-input>
</a-form-item>
</a-col>
<a-col :span="24">
<a-form-item label="申报类别" v-bind="validateInfos.proType" id="InnovationVoucherForm-proType" name="proType">
<j-dict-select-tag v-model:value="formData.proType" dictCode="cxq_type" placeholder="请选择申报类别" allow-clear :disabled="true"/>
</a-form-item>
</a-col>
<a-col :span="24">
<a-form-item label="申领金额" v-bind="validateInfos.proMoney" id="InnovationVoucherForm-proMoney" name="proMoney">
<a-input-number v-model:value="formData.proMoney" placeholder="请输入申领金额" style="width: 100%" :disabled="true" />
</a-form-item>
</a-col>
<a-col :span="24">
<a-form-item label="申请理由" v-bind="validateInfos.applicationReason" id="InnovationVoucherForm-applicationReason" name="applicationReason">
<j-editor v-model:value="formData.applicationReason" :autoFocus="false" :disabled="true"/>
</a-form-item>
</a-col>
<a-col :span="24">
<a-form-item label="附件" v-bind="validateInfos.attachment" id="InnovationVoucherForm-attachment" name="attachment">
<j-upload v-model:value="formData.attachment" :disabled="true" ></j-upload>
</a-form-item>
</a-col>
<a-col :span="24">
<a-form-item label="兑现理由" v-bind="validateInfos.dxReason" id="InnovationVoucherForm-dxReason" name="dxReason">
<j-editor v-model:value="formData.dxReason" :autoFocus="false"/>
</a-form-item>
</a-col>
<a-col :span="24">
<a-form-item label="合同" v-bind="validateInfos.dxContract" id="InnovationVoucherForm-dxContract" name="dxContract">
<j-upload v-model:value="formData.dxContract" ></j-upload>
</a-form-item>
</a-col>
</a-row>
</a-form>
</template>
</JFormContainer>
</a-spin>
</template>
<script lang="ts" setup>
import { ref, reactive, defineExpose, nextTick, defineProps, computed, onMounted } from 'vue';
import { defHttp } from '/@/utils/http/axios';
import { useMessage } from '/@/hooks/web/useMessage';
import JDictSelectTag from '/@/components/Form/src/jeecg/components/JDictSelectTag.vue';
import JUpload from '/@/components/Form/src/jeecg/components/JUpload/JUpload.vue';
import JEditor from '/@/components/Form/src/jeecg/components/JEditor.vue';
import { getValueType } from '/@/utils';
import { saveOrUpdate4 } from '../InnovationVoucher.api';
import { Form } from 'ant-design-vue';
import JFormContainer from '/@/components/Form/src/container/JFormContainer.vue';
const props = defineProps({
formDisabled: { type: Boolean, default: false },
formData: { type: Object, default: () => ({})},
formBpm: { type: Boolean, default: true }
});
const formRef = ref();
const useForm = Form.useForm;
const emit = defineEmits(['register', 'ok']);
const formData = reactive<Record<string, any>>({
id: '',
proName: '',
proType: '',
proMoney: undefined,
attachment: '',
applicationReason: '',
dxReason: '',
dxContract: '',
});
const { createMessage } = useMessage();
const labelCol = ref<any>({ xs: { span: 24 }, sm: { span: 5 } });
const wrapperCol = ref<any>({ xs: { span: 24 }, sm: { span: 16 } });
const confirmLoading = ref<boolean>(false);
//
const validatorRules = reactive({
proName: [{ required: true, message: '请输入申报项目名称!'},],
proType: [{ required: true, message: '请输入申报类别!'},],
proMoney: [{ required: true, message: '请输入申领金额!'}, { pattern: /^(([1-9][0-9]*)|([0]\.\d{0,2}|[1-9][0-9]*\.\d{0,2}))$/, message: '请输入正确的金额!'},],
});
const { resetFields, validate, validateInfos } = useForm(formData, validatorRules, { immediate: false });
//
const disabled = computed(()=>{
if(props.formBpm === true){
if(props.formData.disabled === false){
return false;
}else{
return true;
}
}
return props.formDisabled;
});
/**
* 新增
*/
function add() {
edit({});
}
/**
* 编辑
*/
function edit(record) {
nextTick(() => {
resetFields();
const tmpData = {};
Object.keys(formData).forEach((key) => {
if(record.hasOwnProperty(key)){
tmpData[key] = record[key]
}
})
//
Object.assign(formData, tmpData);
});
}
/**
* 提交数据
*/
async function submitForm() {
try {
//
await validate();
} catch ({ errorFields }) {
if (errorFields) {
const firstField = errorFields[0];
if (firstField) {
formRef.value.scrollToField(firstField.name, { behavior: 'smooth', block: 'center' });
}
}
return Promise.reject(errorFields);
}
confirmLoading.value = true;
const isUpdate = ref<boolean>(false);
//
let model = formData;
if (model.id) {
isUpdate.value = true;
}
//
for (let data in model) {
//
if (model[data] instanceof Array) {
let valueType = getValueType(formRef.value.getProps, data);
//
if (valueType === 'string') {
model[data] = model[data].join(',');
}
}
}
await saveOrUpdate4(model, isUpdate.value)
.then((res) => {
if (res.success) {
createMessage.success(res.message);
emit('ok');
} else {
createMessage.warning(res.message);
}
})
.finally(() => {
confirmLoading.value = false;
});
}
defineExpose({
add,
edit,
submitForm,
});
</script>
<style lang="less" scoped>
.antd-modal-form {
padding: 14px;
}
</style>

@ -0,0 +1,77 @@
<template>
<j-modal :title="title" :width="width" :visible="visible" @ok="handleOk" :okButtonProps="{ class: { 'jee-hidden': disableSubmit } }" @cancel="handleCancel" cancelText="关闭">
<InnovationVoucherForm ref="registerForm" @ok="submitCallback" :formDisabled="disableSubmit" :formBpm="false"></InnovationVoucherForm>
</j-modal>
</template>
<script lang="ts" setup>
import { ref, nextTick, defineExpose } from 'vue';
import InnovationVoucherForm from './InnovationVoucherForm4.vue'
import JModal from '/@/components/Modal/src/JModal/JModal.vue';
const title = ref<string>('');
const width = ref<number>(800);
const visible = ref<boolean>(false);
const disableSubmit = ref<boolean>(false);
const registerForm = ref();
const emit = defineEmits(['register', 'success']);
/**
* 新增
*/
function add() {
title.value = '新增';
visible.value = true;
nextTick(() => {
registerForm.value.add();
});
}
/**
* 编辑
* @param record
*/
function edit(record) {
title.value = disableSubmit.value ? '详情' : '提交兑现审核';
visible.value = true;
nextTick(() => {
registerForm.value.edit(record);
});
}
/**
* 确定按钮点击事件
*/
function handleOk() {
registerForm.value.submitForm();
}
/**
* form保存回调事件
*/
function submitCallback() {
handleCancel();
emit('success');
}
/**
* 取消按钮回调事件
*/
function handleCancel() {
visible.value = false;
}
defineExpose({
add,
edit,
disableSubmit,
});
</script>
<style lang="less">
/**隐藏样式-modal确定按钮 */
.jee-hidden {
display: none !important;
}
</style>
<style lang="less" scoped></style>

@ -39,10 +39,10 @@
<span class="gray-75 item-label">性别</span>
<span class="gray-3">{{ userInfo.sexText }}</span>
</div>
<div class="margin-bottom-10 nowarp font-size-13">
<span class="gray-75 item-label">职位</span>
<span class="gray-3">{{ userInfo.postText ? userInfo.postText : "未填写" }}</span>
</div>
<!-- <div class="margin-bottom-10 nowarp font-size-13">-->
<!-- <span class="gray-75 item-label">职位</span>-->
<!-- <span class="gray-3">{{ userInfo.postText ? userInfo.postText : "未填写" }}</span>-->
<!-- </div>-->
<div class="font-size-13">
<span class="item-label"></span>
<span class="item-label pointer" style="color:#1e88e5" @click="openEditModal">编辑</span>

Loading…
Cancel
Save