往来单位 调整
parent
6eb668f6c9
commit
5a38f6aec8
@ -0,0 +1,123 @@
|
|||||||
|
<template>
|
||||||
|
<BasicModal
|
||||||
|
v-bind="$attrs"
|
||||||
|
:use-wrapper="true"
|
||||||
|
:title="getTitle"
|
||||||
|
width="50%"
|
||||||
|
@register="registerModal"
|
||||||
|
@ok="handleSave"
|
||||||
|
>
|
||||||
|
<BasicForm @register="registerForm" />
|
||||||
|
<!--右下角按钮-->
|
||||||
|
<template #footer>
|
||||||
|
<a-button
|
||||||
|
pre-icon="ant-design:close-outlined"
|
||||||
|
type="warning"
|
||||||
|
:loading="loading"
|
||||||
|
ghost
|
||||||
|
style="margin-right: 0.8rem"
|
||||||
|
@click="closeModal"
|
||||||
|
>取消</a-button
|
||||||
|
>
|
||||||
|
<a-button
|
||||||
|
type="success"
|
||||||
|
:loading="loading"
|
||||||
|
pre-icon="ant-design:check-outlined"
|
||||||
|
style="margin-right: 0.8rem"
|
||||||
|
@click="handleSave(false)"
|
||||||
|
>仅保存</a-button
|
||||||
|
>
|
||||||
|
<a-button
|
||||||
|
pre-icon="ant-design:check-circle-outlined"
|
||||||
|
type="primary"
|
||||||
|
:loading="loading"
|
||||||
|
@click="handleSave(true)"
|
||||||
|
>保存并关闭</a-button
|
||||||
|
>
|
||||||
|
</template>
|
||||||
|
</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 './columns'
|
||||||
|
import { ApiEdit, ApiInfo } from './api'
|
||||||
|
import { useMessage } from '/@/hooks/web/useMessage'
|
||||||
|
// 声明Emits
|
||||||
|
const emit = defineEmits(['success', 'register'])
|
||||||
|
const isUpdate = ref(true)
|
||||||
|
const loading = ref(false)
|
||||||
|
const rowId = ref('')
|
||||||
|
const { createMessage } = useMessage()
|
||||||
|
const [registerForm, { resetFields, setFieldsValue, validate }] = useForm({
|
||||||
|
labelWidth: 100,
|
||||||
|
schemas: formSchema,
|
||||||
|
showActionButtonGroup: false,
|
||||||
|
})
|
||||||
|
|
||||||
|
const [registerModal, { setModalProps, closeModal }] = useModalInner(async (data) => {
|
||||||
|
resetFields()
|
||||||
|
setModalProps({ confirmLoading: false, loading: true })
|
||||||
|
isUpdate.value = !!data?.isUpdate
|
||||||
|
if (unref(isUpdate)) {
|
||||||
|
// setModalProps({ confirmLoading: true });
|
||||||
|
rowId.value = data.record.id
|
||||||
|
const res: API.DataResult = await ApiInfo({ id: unref(rowId) })
|
||||||
|
if (res.succeeded) {
|
||||||
|
setFieldsValue({
|
||||||
|
...res.data,
|
||||||
|
})
|
||||||
|
// console.log('返回数据Form', getFieldsValue());
|
||||||
|
// setFieldsValue({ trainId: unref(res.data.trainId) });
|
||||||
|
}
|
||||||
|
// setModalProps({ confirmLoading: false });
|
||||||
|
} else {
|
||||||
|
setFieldsValue({ permissionIdentity: unref(2) })
|
||||||
|
}
|
||||||
|
setModalProps({ loading: false })
|
||||||
|
})
|
||||||
|
|
||||||
|
const getTitle = computed(() => (!unref(isUpdate) ? '新增商品信息' : '编辑商品信息'))
|
||||||
|
|
||||||
|
async function handleSave(exit) {
|
||||||
|
try {
|
||||||
|
const values = await validate()
|
||||||
|
setModalProps({ confirmLoading: true, loading: true })
|
||||||
|
// TODO custom api
|
||||||
|
console.log(values)
|
||||||
|
// loading.value = true;
|
||||||
|
const res: API.DataResult = await ApiEdit(values)
|
||||||
|
console.log(res)
|
||||||
|
if (res.succeeded) {
|
||||||
|
createMessage.success(res.message)
|
||||||
|
emit('success')
|
||||||
|
//刷新页面
|
||||||
|
if (!exit) {
|
||||||
|
if (unref(isUpdate)) {
|
||||||
|
await refresh()
|
||||||
|
} else {
|
||||||
|
rowId.value = res.data
|
||||||
|
isUpdate.value = true
|
||||||
|
await refresh()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
createMessage.error(res.message)
|
||||||
|
}
|
||||||
|
|
||||||
|
exit && closeModal()
|
||||||
|
} finally {
|
||||||
|
// loading.value = false;
|
||||||
|
setModalProps({ confirmLoading: false, loading: false })
|
||||||
|
}
|
||||||
|
}
|
||||||
|
async function refresh() {
|
||||||
|
const res: API.DataResult = await ApiInfo({ id: unref(rowId) })
|
||||||
|
if (res.succeeded) {
|
||||||
|
await setFieldsValue({
|
||||||
|
...res.data,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
@ -0,0 +1,32 @@
|
|||||||
|
// @ts-ignore
|
||||||
|
import { request } from '/@/utils/request'
|
||||||
|
import { DataResult, PageRequest } from '/@/api/model/baseModel'
|
||||||
|
enum Api {
|
||||||
|
list = '/opApi/TaskMail/GetList',
|
||||||
|
edit = '/opApi/TaskMail/Edit',
|
||||||
|
info = '/opApi/TaskMail/Edit',
|
||||||
|
}
|
||||||
|
// 列表 (Auth)
|
||||||
|
export function ApiList(data: PageRequest) {
|
||||||
|
return request<DataResult>({
|
||||||
|
url: Api.list,
|
||||||
|
method: 'post',
|
||||||
|
data,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
// 编辑 (Auth)
|
||||||
|
export function ApiEdit(data: PageRequest) {
|
||||||
|
return request<DataResult>({
|
||||||
|
url: Api.edit,
|
||||||
|
method: 'post',
|
||||||
|
data,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
// 详情 (Auth)
|
||||||
|
export function ApiInfo(query) {
|
||||||
|
return request<DataResult>({
|
||||||
|
url: Api.info,
|
||||||
|
method: 'get',
|
||||||
|
params: query,
|
||||||
|
})
|
||||||
|
}
|
@ -0,0 +1,215 @@
|
|||||||
|
import { BasicColumn, FormSchema } from '/@/components/Table'
|
||||||
|
import { Tag } from 'ant-design-vue'
|
||||||
|
// import { GetGoodsTypeList } from './api'
|
||||||
|
let GoodsTypeList = []
|
||||||
|
// const res: API.DataResult = await GetGoodsTypeList()
|
||||||
|
// if (res.succeeded) {
|
||||||
|
// GoodsTypeList = res.data
|
||||||
|
// }
|
||||||
|
export const columns: BasicColumn[] = [
|
||||||
|
{
|
||||||
|
title: '名称',
|
||||||
|
dataIndex: 'name',
|
||||||
|
sorter: true,
|
||||||
|
width: 150,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '名称',
|
||||||
|
dataIndex: 'name',
|
||||||
|
sorter: true,
|
||||||
|
width: 150,
|
||||||
|
},
|
||||||
|
// {
|
||||||
|
// title: '商品类型',
|
||||||
|
// dataIndex: 'goodsTypeId',
|
||||||
|
// sorter: true,
|
||||||
|
// width: 200,
|
||||||
|
// customRender: ({ text }) => {
|
||||||
|
// let RData = text
|
||||||
|
// GoodsTypeList.forEach((e: any) => {
|
||||||
|
// if (e.value == text) {
|
||||||
|
// RData = e.label
|
||||||
|
// }
|
||||||
|
// })
|
||||||
|
// return RData
|
||||||
|
// },
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// title: '是否启用',
|
||||||
|
// dataIndex: 'status',
|
||||||
|
// sorter: true,
|
||||||
|
// width: 80,
|
||||||
|
// customRender: ({ text }) => {
|
||||||
|
// if (text === 0) {
|
||||||
|
// return <Tag color="success">启用</Tag>
|
||||||
|
// } else if (text === 1) {
|
||||||
|
// return <Tag color="error">禁用</Tag>
|
||||||
|
// }
|
||||||
|
// return text
|
||||||
|
// },
|
||||||
|
// },
|
||||||
|
]
|
||||||
|
|
||||||
|
export const searchFormSchema: FormSchema[] = [
|
||||||
|
{
|
||||||
|
field: 'GoodName',
|
||||||
|
label: '商品名称',
|
||||||
|
component: 'Input',
|
||||||
|
colProps: { span: 6 },
|
||||||
|
},
|
||||||
|
]
|
||||||
|
export const formSchema: FormSchema[] = [
|
||||||
|
{
|
||||||
|
label: '',
|
||||||
|
field: 'id',
|
||||||
|
component: 'Input',
|
||||||
|
defaultValue: '',
|
||||||
|
show: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'goodsCode',
|
||||||
|
label: '商品编码',
|
||||||
|
component: 'Input',
|
||||||
|
required: true,
|
||||||
|
colProps: { span: 12 },
|
||||||
|
dynamicDisabled: ({ values }) => {
|
||||||
|
return !!values.id
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'goodName',
|
||||||
|
label: '商品名称',
|
||||||
|
component: 'Input',
|
||||||
|
required: true,
|
||||||
|
colProps: { span: 12 },
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'goodsTypeId',
|
||||||
|
label: '商品类型',
|
||||||
|
component: 'Select',
|
||||||
|
colProps: { span: 12 },
|
||||||
|
defaultValue: '',
|
||||||
|
componentProps: {
|
||||||
|
options: GoodsTypeList,
|
||||||
|
allowClear: true,
|
||||||
|
showSearch: true,
|
||||||
|
filterOption: (input: string, option: any) => {
|
||||||
|
return option.label.toLowerCase().indexOf(input.toLowerCase()) >= 0
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'goodNo',
|
||||||
|
label: '物料号',
|
||||||
|
component: 'Input',
|
||||||
|
colProps: { span: 12 },
|
||||||
|
defaultValue: '',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'enName',
|
||||||
|
label: '英文名称',
|
||||||
|
component: 'Input',
|
||||||
|
colProps: { span: 12 },
|
||||||
|
defaultValue: '',
|
||||||
|
},
|
||||||
|
|
||||||
|
// {
|
||||||
|
// field: 'arRate',
|
||||||
|
// label: '入库应收',
|
||||||
|
// component: 'InputNumber',
|
||||||
|
// colProps: { span: 12 },
|
||||||
|
// defaultValue: 0,
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// field: 'apRate',
|
||||||
|
// label: '入库应付',
|
||||||
|
// component: 'InputNumber',
|
||||||
|
// colProps: { span: 12 },
|
||||||
|
// defaultValue: 0,
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// field: 'arOutRate',
|
||||||
|
// label: '出库应收',
|
||||||
|
// component: 'InputNumber',
|
||||||
|
// colProps: { span: 12 },
|
||||||
|
// defaultValue: 0,
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// field: 'apOutRate',
|
||||||
|
// label: '出库应付',
|
||||||
|
// component: 'InputNumber',
|
||||||
|
// colProps: { span: 12 },
|
||||||
|
// defaultValue: 0,
|
||||||
|
// },
|
||||||
|
|
||||||
|
// {
|
||||||
|
// field: 'goodsFeeTypeId',
|
||||||
|
// label: '计费大类',
|
||||||
|
// component: 'Input',
|
||||||
|
// colProps: { span: 12 },
|
||||||
|
// defaultValue: '',
|
||||||
|
// },
|
||||||
|
{
|
||||||
|
field: 'hsCode',
|
||||||
|
label: 'HSCODE',
|
||||||
|
component: 'Input',
|
||||||
|
colProps: { span: 12 },
|
||||||
|
defaultValue: '',
|
||||||
|
},
|
||||||
|
// {
|
||||||
|
// field: 'ruleUnit',
|
||||||
|
// label: '申报计量单位',
|
||||||
|
// component: 'Input',
|
||||||
|
// colProps: { span: 12 },
|
||||||
|
// defaultValue: '',
|
||||||
|
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// field: 'ruleUnit1',
|
||||||
|
// label: '法定第一计量单位',
|
||||||
|
// component: 'Input',
|
||||||
|
// colProps: { span: 12 },
|
||||||
|
// defaultValue: '',
|
||||||
|
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// field: 'ruleUnit2',
|
||||||
|
// label: '法定第二计量单位',
|
||||||
|
// component: 'Input',
|
||||||
|
// colProps: { span: 12 },
|
||||||
|
// defaultValue: '',
|
||||||
|
|
||||||
|
// },
|
||||||
|
{
|
||||||
|
field: 'description',
|
||||||
|
label: '商品描述',
|
||||||
|
component: 'InputTextArea',
|
||||||
|
|
||||||
|
colProps: { span: 12 },
|
||||||
|
componentProps: {
|
||||||
|
rows: 2,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'note',
|
||||||
|
label: '备注',
|
||||||
|
component: 'InputTextArea',
|
||||||
|
colProps: { span: 12 },
|
||||||
|
componentProps: {
|
||||||
|
rows: 2,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'status',
|
||||||
|
label: '是否可用',
|
||||||
|
component: 'RadioButtonGroup',
|
||||||
|
defaultValue: 0,
|
||||||
|
colProps: { span: 12 },
|
||||||
|
componentProps: {
|
||||||
|
options: [
|
||||||
|
{ label: '禁用', value: 1 },
|
||||||
|
{ label: '启用', value: 0 },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
]
|
@ -0,0 +1,126 @@
|
|||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<BasicTable
|
||||||
|
:class="{ 'ds-table': source == 'list', 'ds-table-detail': source == 'modal' }"
|
||||||
|
@register="registerTable"
|
||||||
|
@row-dbClick="handleAudit"
|
||||||
|
>
|
||||||
|
<template #tableTitle>
|
||||||
|
<a-button type="link" @click="handleCreate" :disabled="checkPermissions('op:goods:add')">
|
||||||
|
<span class="iconfont icon-new_document"></span>
|
||||||
|
添加
|
||||||
|
</a-button>
|
||||||
|
</template>
|
||||||
|
<template #bodyCell="{ column, record }">
|
||||||
|
<template v-if="column.key === 'action'">
|
||||||
|
<TableAction
|
||||||
|
:actions="[
|
||||||
|
{
|
||||||
|
icon: 'clarity:note-edit-line',
|
||||||
|
tooltip: '编辑',
|
||||||
|
onClick: handleAudit.bind(null, record),
|
||||||
|
disabled: checkPermissions('op:goods:edit'),
|
||||||
|
},
|
||||||
|
]"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
</template>
|
||||||
|
</BasicTable>
|
||||||
|
<TenantAuditStepModal @register="registerModal" @success="handleSuccess" />
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<script lang="ts" setup>
|
||||||
|
import { ref, defineProps } from 'vue'
|
||||||
|
import { checkPermissions } from '/@/hooks/Permissions/index'
|
||||||
|
import { BasicTable, useTable, TableAction } from '/@/components/Table'
|
||||||
|
import { ApiList } from './api'
|
||||||
|
import { useModal } from '/@/components/Modal'
|
||||||
|
import TenantAuditStepModal from './TenantAuditStepModal.vue'
|
||||||
|
import { columns, searchFormSchema } from './columns'
|
||||||
|
import { useMessage } from '/@/hooks/web/useMessage'
|
||||||
|
const { notification } = useMessage()
|
||||||
|
const [registerModal, { openModal }] = useModal()
|
||||||
|
const [registerTable, { reload, getForm }] = useTable({
|
||||||
|
title: '',
|
||||||
|
api: async (p) => {
|
||||||
|
const res: API.DataResult = await ApiList(p)
|
||||||
|
return new Promise((resolve) => {
|
||||||
|
resolve({ data: [...res.data], total: res.count })
|
||||||
|
})
|
||||||
|
},
|
||||||
|
beforeFetch: (p) => {
|
||||||
|
var data = getForm().getFieldsValue()
|
||||||
|
const postParam: API.PageRequest = {
|
||||||
|
queryCondition: '',
|
||||||
|
pageCondition: {
|
||||||
|
pageIndex: p.page,
|
||||||
|
pageSize: p.pageSize,
|
||||||
|
sortConditions: [],
|
||||||
|
},
|
||||||
|
}
|
||||||
|
if (p.field) {
|
||||||
|
postParam.pageCondition.sortConditions = [
|
||||||
|
{
|
||||||
|
sortField: p.field,
|
||||||
|
listSortDirection: p.order == 'ascend' ? 0 : 1,
|
||||||
|
},
|
||||||
|
]
|
||||||
|
} else {
|
||||||
|
postParam.pageCondition.sortConditions = []
|
||||||
|
}
|
||||||
|
let condition: API.ConditionItem[] = []
|
||||||
|
if (!!data.GoodName) {
|
||||||
|
condition.push({
|
||||||
|
FieldName: 'GoodName',
|
||||||
|
FieldValue: data.GoodName,
|
||||||
|
ConditionalType: 1,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
postParam.queryCondition = JSON.stringify(condition)
|
||||||
|
return postParam
|
||||||
|
},
|
||||||
|
columns,
|
||||||
|
formConfig: {
|
||||||
|
labelWidth: 120,
|
||||||
|
schemas: searchFormSchema,
|
||||||
|
},
|
||||||
|
isTreeTable: false,
|
||||||
|
pagination: true,
|
||||||
|
striped: true,
|
||||||
|
useSearchForm: true,
|
||||||
|
showTableSetting: true,
|
||||||
|
bordered: true,
|
||||||
|
showIndexColumn: true,
|
||||||
|
rowSelection: { type: 'checkbox' },
|
||||||
|
indexColumnProps: {
|
||||||
|
width: 60,
|
||||||
|
},
|
||||||
|
canResize: true,
|
||||||
|
resizeHeightOffset: 15,
|
||||||
|
immediate: true,
|
||||||
|
actionColumn: {
|
||||||
|
width: 80,
|
||||||
|
title: '操作',
|
||||||
|
dataIndex: 'action',
|
||||||
|
fixed: 'right',
|
||||||
|
},
|
||||||
|
})
|
||||||
|
function handleCreate() {
|
||||||
|
openModal(true, {
|
||||||
|
isParent: false,
|
||||||
|
isUpdate: false,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
function handleAudit(record: Recordable) {
|
||||||
|
if (!checkPermissions('op:goods:edit')) {
|
||||||
|
openModal(true, {
|
||||||
|
record,
|
||||||
|
isUpdate: true,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function handleSuccess() {
|
||||||
|
reload()
|
||||||
|
}
|
||||||
|
</script>
|
@ -0,0 +1,131 @@
|
|||||||
|
<template>
|
||||||
|
<BasicModal
|
||||||
|
v-bind="$attrs"
|
||||||
|
:use-wrapper="true"
|
||||||
|
:title="getTitle"
|
||||||
|
width="50%"
|
||||||
|
@register="registerModal"
|
||||||
|
@ok="handleSave"
|
||||||
|
>
|
||||||
|
<BasicForm @register="registerForm" />
|
||||||
|
<!--右下角按钮-->
|
||||||
|
<template #footer>
|
||||||
|
<a-button
|
||||||
|
pre-icon="ant-design:close-outlined"
|
||||||
|
type="warning"
|
||||||
|
:loading="loading"
|
||||||
|
ghost
|
||||||
|
style="margin-right: 0.8rem"
|
||||||
|
@click="closeModal"
|
||||||
|
>取消</a-button
|
||||||
|
>
|
||||||
|
<a-button
|
||||||
|
type="success"
|
||||||
|
:loading="loading"
|
||||||
|
pre-icon="ant-design:check-outlined"
|
||||||
|
style="margin-right: 0.8rem"
|
||||||
|
@click="handleSave(false)"
|
||||||
|
>仅保存</a-button
|
||||||
|
>
|
||||||
|
<a-button
|
||||||
|
pre-icon="ant-design:check-circle-outlined"
|
||||||
|
type="primary"
|
||||||
|
:loading="loading"
|
||||||
|
@click="handleSave(true)"
|
||||||
|
>保存并关闭</a-button
|
||||||
|
>
|
||||||
|
</template>
|
||||||
|
</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 './columns'
|
||||||
|
import { ApiEdit, ApiInfo } from './api'
|
||||||
|
import { useMessage } from '/@/hooks/web/useMessage'
|
||||||
|
// 声明Emits
|
||||||
|
const emit = defineEmits(['success', 'register'])
|
||||||
|
const isUpdate = ref(true)
|
||||||
|
const loading = ref(false)
|
||||||
|
const rowId = ref('')
|
||||||
|
const { notification } = useMessage()
|
||||||
|
const [registerForm, { resetFields, setFieldsValue, validate }] = useForm({
|
||||||
|
labelWidth: 100,
|
||||||
|
schemas: formSchema,
|
||||||
|
showActionButtonGroup: false,
|
||||||
|
})
|
||||||
|
|
||||||
|
const [registerModal, { setModalProps, closeModal }] = useModalInner(async (data) => {
|
||||||
|
resetFields()
|
||||||
|
setModalProps({ confirmLoading: false, loading: true })
|
||||||
|
isUpdate.value = !!data?.isUpdate
|
||||||
|
if (unref(isUpdate)) {
|
||||||
|
// setModalProps({ confirmLoading: true });
|
||||||
|
rowId.value = data.record.id
|
||||||
|
const res: API.DataResult = await ApiInfo({ id: unref(rowId) })
|
||||||
|
if (res.succeeded) {
|
||||||
|
console.log(res.data)
|
||||||
|
let RshipperType = []
|
||||||
|
res.data.shipperType.split(',').forEach((e) => {
|
||||||
|
RshipperType.push(parseInt(e))
|
||||||
|
})
|
||||||
|
res.data.shipperType = RshipperType
|
||||||
|
console.log(res.data)
|
||||||
|
|
||||||
|
setFieldsValue({
|
||||||
|
...res.data,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
setFieldsValue({ permissionIdentity: unref(2), clientId: data.clientId })
|
||||||
|
}
|
||||||
|
setModalProps({ loading: false })
|
||||||
|
})
|
||||||
|
|
||||||
|
const getTitle = computed(() => (!unref(isUpdate) ? '新增费用模板' : '编辑费用模板'))
|
||||||
|
|
||||||
|
async function handleSave(exit) {
|
||||||
|
try {
|
||||||
|
const values = await validate()
|
||||||
|
let shipperTypeS = ''
|
||||||
|
values.shipperType.forEach((item) => {
|
||||||
|
if (shipperTypeS == '') {
|
||||||
|
shipperTypeS = item
|
||||||
|
} else {
|
||||||
|
shipperTypeS = `${shipperTypeS},${item}`
|
||||||
|
}
|
||||||
|
})
|
||||||
|
values.shipperType = shipperTypeS
|
||||||
|
setModalProps({ confirmLoading: true, loading: true })
|
||||||
|
const res: API.DataResult = await ApiEdit(values)
|
||||||
|
if (res.succeeded) {
|
||||||
|
notification.success({ message: res.message, duration: 3 })
|
||||||
|
emit('success')
|
||||||
|
//刷新页面
|
||||||
|
if (!exit) {
|
||||||
|
if (unref(isUpdate)) {
|
||||||
|
await refresh()
|
||||||
|
} else {
|
||||||
|
rowId.value = res.data
|
||||||
|
isUpdate.value = true
|
||||||
|
await refresh()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
setModalProps({ confirmLoading: false, loading: false })
|
||||||
|
exit && closeModal()
|
||||||
|
} finally {
|
||||||
|
// loading.value = false;
|
||||||
|
setModalProps({ confirmLoading: false, loading: false })
|
||||||
|
}
|
||||||
|
}
|
||||||
|
async function refresh() {
|
||||||
|
const res: API.DataResult = await ApiInfo({ id: unref(rowId) })
|
||||||
|
if (res.succeeded) {
|
||||||
|
await setFieldsValue({
|
||||||
|
...res.data,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
@ -0,0 +1,41 @@
|
|||||||
|
// @ts-ignore
|
||||||
|
import { request } from '/@/utils/request'
|
||||||
|
import { DataResult, PageRequest } from '/@/api/model/baseModel'
|
||||||
|
enum Api {
|
||||||
|
list = '/feeApi/FeeCustTemplate/GetList',
|
||||||
|
edit = '/feeApi/FeeCustTemplate/Edit',
|
||||||
|
info = '/feeApi/FeeCustTemplate/Edit',
|
||||||
|
del = '/feeApi/FeeCustTemplate/Delete',
|
||||||
|
}
|
||||||
|
// 列表 (Auth)
|
||||||
|
export function ApiList(data: PageRequest) {
|
||||||
|
return request<DataResult>({
|
||||||
|
url: Api.list,
|
||||||
|
method: 'post',
|
||||||
|
data,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
// 编辑 (Auth)
|
||||||
|
export function ApiEdit(data: PageRequest) {
|
||||||
|
return request<DataResult>({
|
||||||
|
url: Api.edit,
|
||||||
|
method: 'post',
|
||||||
|
data,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
// 详情 (Auth)
|
||||||
|
export function ApiInfo(query) {
|
||||||
|
return request<DataResult>({
|
||||||
|
url: Api.info,
|
||||||
|
method: 'get',
|
||||||
|
params: query,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
// 批量删除 (Auth)
|
||||||
|
export function ApiDel(data: PageRequest) {
|
||||||
|
return request<DataResult>({
|
||||||
|
url: Api.del,
|
||||||
|
method: 'post',
|
||||||
|
data,
|
||||||
|
})
|
||||||
|
}
|
@ -0,0 +1,171 @@
|
|||||||
|
import { BasicColumn, FormSchema } from '/@/components/Table'
|
||||||
|
import { Tag } from 'ant-design-vue'
|
||||||
|
import { getDictDropDown } from '/@/api/common'
|
||||||
|
let shipperTypeList: any = []
|
||||||
|
const res2: API.DataResult = await getDictDropDown({ code: 'shipper_type' })
|
||||||
|
if (res2.succeeded) {
|
||||||
|
shipperTypeList = []
|
||||||
|
res2.data.forEach((e) => {
|
||||||
|
shipperTypeList.push({ label: e.name, value: Number(e.value) })
|
||||||
|
})
|
||||||
|
}
|
||||||
|
export const columns: BasicColumn[] = [
|
||||||
|
{
|
||||||
|
title: '名称',
|
||||||
|
dataIndex: 'name',
|
||||||
|
width: 150,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '业务类型',
|
||||||
|
dataIndex: 'businessTypeText',
|
||||||
|
width: 150,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '费用类型',
|
||||||
|
dataIndex: 'feeTypeText',
|
||||||
|
width: 150,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '说明',
|
||||||
|
dataIndex: 'description',
|
||||||
|
width: 150,
|
||||||
|
},
|
||||||
|
]
|
||||||
|
|
||||||
|
export const searchFormSchema: FormSchema[] = [
|
||||||
|
{
|
||||||
|
field: 'ShortName',
|
||||||
|
label: '简称',
|
||||||
|
component: 'Input',
|
||||||
|
colProps: { span: 6 },
|
||||||
|
},
|
||||||
|
]
|
||||||
|
export const formSchema: FormSchema[] = [
|
||||||
|
{
|
||||||
|
label: '主键Id',
|
||||||
|
field: 'id',
|
||||||
|
component: 'Input',
|
||||||
|
defaultValue: '',
|
||||||
|
show: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: '客户id',
|
||||||
|
field: 'clientId',
|
||||||
|
component: 'Input',
|
||||||
|
defaultValue: '',
|
||||||
|
show: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'codeName',
|
||||||
|
label: '代码',
|
||||||
|
required: true,
|
||||||
|
component: 'Input',
|
||||||
|
colProps: { span: 12 },
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'shortName',
|
||||||
|
label: '简称',
|
||||||
|
required: true,
|
||||||
|
component: 'Input',
|
||||||
|
colProps: { span: 12 },
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'name',
|
||||||
|
label: '公司全称',
|
||||||
|
component: 'Input',
|
||||||
|
colProps: { span: 12 },
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'address',
|
||||||
|
label: '地址',
|
||||||
|
component: 'Input',
|
||||||
|
colProps: { span: 12 },
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'shipperType',
|
||||||
|
label: '类型',
|
||||||
|
required: true,
|
||||||
|
component: 'Select',
|
||||||
|
colProps: { span: 12 },
|
||||||
|
componentProps: {
|
||||||
|
options: shipperTypeList,
|
||||||
|
allowClear: true,
|
||||||
|
showSearch: true,
|
||||||
|
mode: 'multiple',
|
||||||
|
class: 'NoLimitHeight',
|
||||||
|
filterOption: (input: string, option: any) => {
|
||||||
|
return option.label.toLowerCase().indexOf(input.toLowerCase()) >= 0
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'attn',
|
||||||
|
label: '联系人',
|
||||||
|
component: 'Input',
|
||||||
|
colProps: { span: 12 },
|
||||||
|
defaultValue: '',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'email',
|
||||||
|
label: '邮箱',
|
||||||
|
component: 'Input',
|
||||||
|
colProps: { span: 12 },
|
||||||
|
defaultValue: '',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'tel',
|
||||||
|
label: '电话',
|
||||||
|
component: 'Input',
|
||||||
|
colProps: { span: 12 },
|
||||||
|
defaultValue: '',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'companyNo',
|
||||||
|
label: '公司代码',
|
||||||
|
component: 'Input',
|
||||||
|
colProps: { span: 12 },
|
||||||
|
defaultValue: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'isPublic',
|
||||||
|
label: '是否公共标识',
|
||||||
|
component: 'Switch',
|
||||||
|
defaultValue: false,
|
||||||
|
colProps: { span: 6 },
|
||||||
|
componentProps: {
|
||||||
|
checkedChildren: '是',
|
||||||
|
unCheckedChildren: '否',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'status',
|
||||||
|
label: '是否可用',
|
||||||
|
component: 'Switch',
|
||||||
|
defaultValue: 0,
|
||||||
|
colProps: { span: 6 },
|
||||||
|
componentProps: {
|
||||||
|
checkedChildren: '是',
|
||||||
|
checkedValue: 0,
|
||||||
|
unCheckedChildren: '否',
|
||||||
|
unCheckedValue: 1,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'note',
|
||||||
|
label: '备注',
|
||||||
|
component: 'InputTextArea',
|
||||||
|
colProps: { span: 12 },
|
||||||
|
componentProps: {
|
||||||
|
rows: 2,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
field: 'shortDetail',
|
||||||
|
label: '详细信息',
|
||||||
|
component: 'InputTextArea',
|
||||||
|
colProps: { span: 12 },
|
||||||
|
componentProps: {
|
||||||
|
rows: 2,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
]
|
@ -0,0 +1,148 @@
|
|||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<BasicTable class="ds-table-detail" @register="registerTable" @row-dbClick="handleAudit">
|
||||||
|
<template #toolbar>
|
||||||
|
<a-button type="link" @click="handleCreate">
|
||||||
|
<span class="iconfont icon-new_document"></span>
|
||||||
|
添加费用模板
|
||||||
|
</a-button>
|
||||||
|
</template>
|
||||||
|
<template #bodyCell="{ column, record }">
|
||||||
|
<template v-if="column.key === 'action'">
|
||||||
|
<TableAction
|
||||||
|
:actions="[
|
||||||
|
{
|
||||||
|
icon: 'clarity:note-edit-line',
|
||||||
|
tooltip: '编辑',
|
||||||
|
onClick: handleAudit.bind(null, record),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
icon: 'ant-design:delete-outlined',
|
||||||
|
tooltip: '删除',
|
||||||
|
color: 'error',
|
||||||
|
popConfirm: {
|
||||||
|
title: '是否要删除此条数据?',
|
||||||
|
okText: '是',
|
||||||
|
cancelText: '否',
|
||||||
|
confirm: handleDelete.bind(null, record),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
]"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
</template>
|
||||||
|
</BasicTable>
|
||||||
|
<TenantAuditStepModal @register="registerModal" @success="handleSuccess" />
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<script lang="ts" setup>
|
||||||
|
import { defineComponent, onMounted, ref } from 'vue'
|
||||||
|
import { BasicTable, useTable, TableAction, SorterResult } from '/@/components/Table'
|
||||||
|
import { ApiList, ApiDel } from './api'
|
||||||
|
import { useModal } from '/@/components/Modal'
|
||||||
|
import TenantAuditStepModal from './TenantAuditStepModal.vue'
|
||||||
|
import { columns, searchFormSchema } from './columns'
|
||||||
|
import { useMessage } from '/@/hooks/web/useMessage'
|
||||||
|
const { notification } = useMessage()
|
||||||
|
const props = defineProps({
|
||||||
|
clientId: { type: String },
|
||||||
|
})
|
||||||
|
const [registerModal, { openModal }] = useModal()
|
||||||
|
const [registerTable, { reload, getForm, getPaginationRef }] = useTable({
|
||||||
|
title: '费用模板列表',
|
||||||
|
api: async (p) => {
|
||||||
|
const res: API.DataResult = await ApiList(p)
|
||||||
|
return new Promise((resolve) => {
|
||||||
|
resolve({ data: [...res.data], total: res.count })
|
||||||
|
})
|
||||||
|
},
|
||||||
|
beforeFetch: () => {
|
||||||
|
var currentPageInfo: any = getPaginationRef()
|
||||||
|
var data = getForm().getFieldsValue()
|
||||||
|
const postParam: API.PageRequest = {
|
||||||
|
queryCondition: '',
|
||||||
|
pageCondition: {
|
||||||
|
pageIndex: currentPageInfo.current,
|
||||||
|
pageSize: currentPageInfo.pageSize,
|
||||||
|
sortConditions: [],
|
||||||
|
},
|
||||||
|
}
|
||||||
|
let condition: API.ConditionItem[] = []
|
||||||
|
// if (!!data.ShortName) {
|
||||||
|
// condition.push({
|
||||||
|
// FieldName: 'ShortName',
|
||||||
|
// FieldValue: data.ShortName,
|
||||||
|
// ConditionalType: 1,
|
||||||
|
// })
|
||||||
|
// }
|
||||||
|
condition.push({
|
||||||
|
FieldName: 'ClientId',
|
||||||
|
FieldValue: props.clientId,
|
||||||
|
ConditionalType: 1,
|
||||||
|
})
|
||||||
|
postParam.queryCondition = JSON.stringify(condition)
|
||||||
|
return postParam
|
||||||
|
},
|
||||||
|
columns,
|
||||||
|
// useSearchForm: true,
|
||||||
|
// formConfig: {
|
||||||
|
// labelWidth: 120,
|
||||||
|
// schemas: searchFormSchema,
|
||||||
|
// },
|
||||||
|
pagination: true,
|
||||||
|
bordered: true,
|
||||||
|
showTableSetting: false,
|
||||||
|
canResize: true,
|
||||||
|
resizeHeightOffset: 35,
|
||||||
|
actionColumn: {
|
||||||
|
width: 80,
|
||||||
|
title: '操作',
|
||||||
|
dataIndex: 'action',
|
||||||
|
fixed: 'right',
|
||||||
|
},
|
||||||
|
})
|
||||||
|
function handleCreate() {
|
||||||
|
openModal(true, {
|
||||||
|
clientId: props.clientId,
|
||||||
|
isParent: false,
|
||||||
|
isUpdate: false,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
function handleAudit(record: Recordable) {
|
||||||
|
openModal(true, {
|
||||||
|
record,
|
||||||
|
// record: { clientId: props.clientId, ...record },
|
||||||
|
isUpdate: true,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
// 删除
|
||||||
|
async function handleDelete(record: Recordable) {
|
||||||
|
const res: API.DataResult = await ApiDel({
|
||||||
|
id: '',
|
||||||
|
ids: [record.id],
|
||||||
|
})
|
||||||
|
if (res.succeeded) {
|
||||||
|
notification.success({ message: res.message, duration: 3 })
|
||||||
|
reload()
|
||||||
|
} else {
|
||||||
|
notification.error({ message: res.message, duration: 3 })
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function handleSuccess() {
|
||||||
|
reload()
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<style lang="less" scoped>
|
||||||
|
.ds-table-detail {
|
||||||
|
margin-top: -16px;
|
||||||
|
.title {
|
||||||
|
font-size: 12px;
|
||||||
|
font-weight: 700;
|
||||||
|
letter-spacing: 1px;
|
||||||
|
line-height: 15.84px;
|
||||||
|
color: rgba(51, 56, 61, 1);
|
||||||
|
text-align: left;
|
||||||
|
vertical-align: bottom;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
Loading…
Reference in New Issue