mirror of https://gitee.com/xiaonuobase/snowy
274 lines
12 KiB
Plaintext
274 lines
12 KiB
Plaintext
<template>
|
|
<%
|
|
var searchCount = 0;
|
|
var row = 0;
|
|
%>
|
|
<% for(var i = 0; i < configList.~size; i++) { %>
|
|
<% if(!configList[i].needTableId && configList[i].needPage) { searchCount ++; }%>
|
|
<% } %>
|
|
<a-card :bordered="false">
|
|
<% if (searchCount > 0) { %>
|
|
<a-form ref="searchFormRef" name="advanced_search" :model="searchFormState" class="ant-advanced-search-form">
|
|
<a-row :gutter="24">
|
|
<% for(var i = 0; i < configList.~size; i++) { %>
|
|
<% if(!configList[i].needTableId && configList[i].needPage) { row ++; %>
|
|
<% if(row <= 3) { %>
|
|
<a-col :span="6">
|
|
<% if(configList[i].effectType == 'input' || configList[i].effectType == 'textarea') { %>
|
|
<a-form-item label="${configList[i].fieldRemark}" name="${configList[i].fieldNameCamelCase}">
|
|
<a-input v-model:value="searchFormState.${configList[i].fieldNameCamelCase}" placeholder="请输入${configList[i].fieldRemark}" />
|
|
</a-form-item>
|
|
<% } else if (configList[i].effectType == 'select' || configList[i].effectType == 'radio' || configList[i].effectType == 'checkbox') {%>
|
|
<a-form-item label="${configList[i].fieldRemark}" name="${configList[i].fieldNameCamelCase}">
|
|
<a-select v-model:value="searchFormState.${configList[i].fieldNameCamelCase}" placeholder="请选择${configList[i].fieldRemark}" :options="${configList[i].fieldNameCamelCase}Options" />
|
|
</a-form-item>
|
|
<% } else if (configList[i].effectType == 'inputNumber' || configList[i].effectType == 'slider') {%>
|
|
<a-form-item label="${configList[i].fieldRemark}" name="${configList[i].fieldNameCamelCase}">
|
|
<a-input-number v-model:value="searchFormState.${configList[i].fieldNameCamelCase}" placeholder="请输入${configList[i].fieldRemark}" style="width: 100%" />
|
|
</a-form-item>
|
|
<% } else if (configList[i].effectType == 'datepicker') {%>
|
|
<a-form-item label="${configList[i].fieldRemark}" name="${configList[i].fieldNameCamelCase}">
|
|
<a-range-picker v-model:value="searchFormState.${configList[i].fieldNameCamelCase}" value-format="YYYY-MM-DD HH:mm:ss" show-time />
|
|
</a-form-item>
|
|
<% } else {%>
|
|
<a-form-item label="${configList[i].fieldRemark}" name="${configList[i].fieldNameCamelCase}">
|
|
<a-input v-model:value="searchFormState.${configList[i].fieldNameCamelCase}" placeholder="请输入${configList[i].fieldRemark}" />
|
|
</a-form-item>
|
|
<% } %>
|
|
</a-col>
|
|
<% } else { %>
|
|
<a-col :span="6" v-show="advanced">
|
|
<% if(configList[i].effectType == 'input' || configList[i].effectType == 'textarea') { %>
|
|
<a-form-item label="${configList[i].fieldRemark}" name="${configList[i].fieldNameCamelCase}">
|
|
<a-input v-model:value="searchFormState.${configList[i].fieldNameCamelCase}" placeholder="请输入${configList[i].fieldRemark}" />
|
|
</a-form-item>
|
|
<% } else if (configList[i].effectType == 'select' || configList[i].effectType == 'radio' || configList[i].effectType == 'checkbox') {%>
|
|
<a-form-item label="${configList[i].fieldRemark}" name="${configList[i].fieldNameCamelCase}">
|
|
<a-select v-model:value="searchFormState.${configList[i].fieldNameCamelCase}" placeholder="请选择${configList[i].fieldRemark}" :options="${configList[i].fieldNameCamelCase}Options" />
|
|
</a-form-item>
|
|
<% } else if (configList[i].effectType == 'inputNumber' || configList[i].effectType == 'slider') {%>
|
|
<a-form-item label="${configList[i].fieldRemark}" name="${configList[i].fieldNameCamelCase}">
|
|
<a-input-number v-model:value="searchFormState.${configList[i].fieldNameCamelCase}" placeholder="请输入${configList[i].fieldRemark}" style="width: 100%" />
|
|
</a-form-item>
|
|
<% } else if (configList[i].effectType == 'datepicker') {%>
|
|
<a-form-item label="${configList[i].fieldRemark}" name="${configList[i].fieldNameCamelCase}">
|
|
<a-range-picker v-model:value="searchFormState.${configList[i].fieldNameCamelCase}" show-time />
|
|
</a-form-item>
|
|
<% } else {%>
|
|
<a-form-item label="${configList[i].fieldRemark}" name="${configList[i].fieldNameCamelCase}">
|
|
<a-input v-model:value="searchFormState.${configList[i].fieldNameCamelCase}" placeholder="请输入${configList[i].fieldRemark}" />
|
|
</a-form-item>
|
|
<% } %>
|
|
</a-col>
|
|
<% } %>
|
|
<% } %>
|
|
<% } %>
|
|
<a-col :span="6">
|
|
<a-button type="primary" @click="tableRef.refresh()">查询</a-button>
|
|
<a-button style="margin: 0 8px" @click="reset">重置</a-button>
|
|
<% if(searchCount > 3) { %>
|
|
<a @click="toggleAdvanced" style="margin-left: 8px">
|
|
{{ advanced ? '收起' : '展开' }}
|
|
<component :is="advanced ? 'up-outlined' : 'down-outlined'"/>
|
|
</a>
|
|
<% }%>
|
|
</a-col>
|
|
</a-row>
|
|
</a-form>
|
|
<% } %>
|
|
<s-table
|
|
ref="tableRef"
|
|
:columns="columns"
|
|
:data="loadData"
|
|
:alert="options.alert.show"
|
|
bordered
|
|
<% for(var i = 0; i < configList.~size; i++) { %>
|
|
<% if(configList[i].needTableId) { %>
|
|
:row-key="(record) => record.${configList[i].fieldNameCamelCase}"
|
|
<% } %>
|
|
<% } %>
|
|
:tool-config="toolConfig"
|
|
:row-selection="options.rowSelection"
|
|
>
|
|
<template #operator class="table-operator">
|
|
<a-space>
|
|
<a-button type="primary" @click="formRef.onOpen()" v-if="hasPerm('${classNameFirstLower}Add')">
|
|
<template #icon><plus-outlined /></template>
|
|
新增
|
|
</a-button>
|
|
<xn-batch-button
|
|
v-if="hasPerm('${classNameFirstLower}BatchDelete')"
|
|
buttonName="批量删除"
|
|
icon="DeleteOutlined"
|
|
:selectedRowKeys="selectedRowKeys"
|
|
@batchCallBack="deleteBatch${className}"
|
|
/>
|
|
</a-space>
|
|
</template>
|
|
<template #bodyCell="{ column, record }">
|
|
<% for(var i = 0; i < configList.~size; i++) { %>
|
|
<% if(!configList[i].needTableId && configList[i].whetherTable) { %>
|
|
<% if (configList[i].effectType == 'select' || configList[i].effectType == 'radio') { %>
|
|
<template v-if="column.dataIndex === '${configList[i].fieldNameCamelCase}'">
|
|
{{ $TOOL.dictTypeData('${configList[i].dictTypeCode}', record.${configList[i].fieldNameCamelCase}) }}
|
|
</template>
|
|
<% } else if (configList[i].effectType == 'checkbox') { %>
|
|
<template v-if="column.dataIndex === '${configList[i].fieldNameCamelCase}'">
|
|
<a-tag v-for="textValue in JSON.parse(record.${configList[i].fieldNameCamelCase})" :key="textValue" color="green">{{ $TOOL.dictTypeData('${configList[i].dictTypeCode}', textValue) }}</a-tag>
|
|
</template>
|
|
<% } else if (configList[i].effectType == 'imageUpload') { %>
|
|
<template v-if="column.dataIndex === '${configList[i].fieldNameCamelCase}'">
|
|
<a-image :src="record.${configList[i].fieldNameCamelCase}" style="width: 30px; height: 30px;" />
|
|
</template>
|
|
<% } else if (configList[i].effectType == 'fileUpload') { %>
|
|
<template v-if="column.dataIndex === '${configList[i].fieldNameCamelCase}'">
|
|
<a :href="record.${configList[i].fieldNameCamelCase}" :target="record.${configList[i].fieldNameCamelCase}">{{ record.${configList[i].fieldNameCamelCase} }}</a>
|
|
</template>
|
|
<% } %>
|
|
<% } %>
|
|
<% } %>
|
|
<template v-if="column.dataIndex === 'action'">
|
|
<a-space>
|
|
<a @click="formRef.onOpen(record)" v-if="hasPerm('${classNameFirstLower}Edit')">编辑</a>
|
|
<a-divider type="vertical" v-if="hasPerm(['${classNameFirstLower}Edit', '${classNameFirstLower}Delete'], 'and')" />
|
|
<a-popconfirm title="确定要删除吗?" @confirm="delete${className}(record)">
|
|
<a-button type="link" danger size="small" v-if="hasPerm('${classNameFirstLower}Delete')">删除</a-button>
|
|
</a-popconfirm>
|
|
</a-space>
|
|
</template>
|
|
</template>
|
|
</s-table>
|
|
</a-card>
|
|
<Form ref="formRef" @successful="tableRef.refresh()" />
|
|
</template>
|
|
|
|
<script setup name="${busName}">
|
|
<%
|
|
var iptTool = 0;
|
|
if (searchCount > 0) {
|
|
for(var i = 0; i < configList.~size; i++) {
|
|
if(!configList[i].needTableId) {
|
|
if(configList[i].effectType == 'select' || configList[i].effectType == 'radio' || configList[i].effectType == 'checkbox') {
|
|
iptTool++;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
%>
|
|
<% if(iptTool > 0) { %>
|
|
import tool from '@/utils/tool'
|
|
<% } %>
|
|
import { cloneDeep } from 'lodash-es'
|
|
import Form from './form.vue'
|
|
import ${classNameFirstLower}Api from '@/api/${moduleName}/${classNameFirstLower}Api'
|
|
<% if (searchCount > 0) { %>
|
|
const searchFormState = ref({})
|
|
const searchFormRef = ref()
|
|
<% } %>
|
|
const tableRef = ref()
|
|
const formRef = ref()
|
|
const toolConfig = { refresh: true, height: true, columnSetting: true, striped: false }
|
|
<% if(searchCount > 3) { %>
|
|
// 查询区域显示更多控制
|
|
const advanced = ref(false)
|
|
const toggleAdvanced = () => {
|
|
advanced.value = !advanced.value
|
|
}
|
|
<% } %>
|
|
const columns = [
|
|
<% for(var i = 0; i < configList.~size; i++) { %>
|
|
<% if(!configList[i].needTableId && configList[i].whetherTable) { %>
|
|
{
|
|
title: '${configList[i].fieldRemark}',
|
|
dataIndex: '${configList[i].fieldNameCamelCase}'<% if(configList[i].whetherRetract) { %>,<% } %>
|
|
<% if(configList[i].whetherRetract) { %>
|
|
ellipsis: true
|
|
<% } %>
|
|
},
|
|
<% } %>
|
|
<% } %>
|
|
]
|
|
// 操作栏通过权限判断是否显示
|
|
if (hasPerm(['${classNameFirstLower}Edit', '${classNameFirstLower}Delete'])) {
|
|
columns.push({
|
|
title: '操作',
|
|
dataIndex: 'action',
|
|
align: 'center',
|
|
width: 150
|
|
})
|
|
}
|
|
const selectedRowKeys = ref([])
|
|
// 列表选择配置
|
|
const options = {
|
|
// columns数字类型字段加入 needTotal: true 可以勾选自动算账
|
|
alert: {
|
|
show: true,
|
|
clear: () => {
|
|
selectedRowKeys.value = ref([])
|
|
}
|
|
},
|
|
rowSelection: {
|
|
onChange: (selectedRowKey, selectedRows) => {
|
|
selectedRowKeys.value = selectedRowKey
|
|
}
|
|
}
|
|
}
|
|
const loadData = (parameter) => {
|
|
<% if (searchCount > 0) { %>
|
|
const searchFormParam = cloneDeep(searchFormState.value)
|
|
<% for(var i = 0; i < configList.~size; i++) { %>
|
|
<% if(!configList[i].needTableId && configList[i].needPage) { %>
|
|
<% if (configList[i].effectType == 'datepicker') {%>
|
|
// ${configList[i].fieldNameCamelCase}范围查询条件重载
|
|
if (searchFormParam.${configList[i].fieldNameCamelCase}) {
|
|
searchFormParam.start${configList[i].fieldNameCamelCaseFirstUpper} = searchFormParam.${configList[i].fieldNameCamelCase}[0]
|
|
searchFormParam.end${configList[i].fieldNameCamelCaseFirstUpper} = searchFormParam.${configList[i].fieldNameCamelCase}[1]
|
|
delete searchFormParam.${configList[i].fieldNameCamelCase}
|
|
}
|
|
<% } %>
|
|
<% } %>
|
|
<% } %>
|
|
return ${classNameFirstLower}Api.${classNameFirstLower}Page(Object.assign(parameter, searchFormParam)).then((data) => {
|
|
<% } else { %>
|
|
return ${classNameFirstLower}Api.${classNameFirstLower}Page(parameter).then((data) => {
|
|
<% } %>
|
|
return data
|
|
})
|
|
}
|
|
// 重置
|
|
const reset = () => {
|
|
searchFormRef.value.resetFields()
|
|
tableRef.value.refresh(true)
|
|
}
|
|
// 删除
|
|
const delete${className} = (record) => {
|
|
let params = [
|
|
{
|
|
<% for(var i = 0; i < configList.~size; i++) { %>
|
|
<% if(configList[i].needTableId) { %>
|
|
${configList[i].fieldNameCamelCase}: record.${configList[i].fieldNameCamelCase}
|
|
<% } %>
|
|
<% } %>
|
|
}
|
|
]
|
|
${classNameFirstLower}Api.${classNameFirstLower}Delete(params).then(() => {
|
|
tableRef.value.refresh(true)
|
|
})
|
|
}
|
|
// 批量删除
|
|
const deleteBatch${className} = (params) => {
|
|
${classNameFirstLower}Api.${classNameFirstLower}Delete(params).then(() => {
|
|
tableRef.value.clearRefreshSelected()
|
|
})
|
|
}
|
|
<% if (searchCount > 0) { %>
|
|
<% for(var i = 0; i < configList.~size; i++) { %>
|
|
<% if(!configList[i].needTableId && configList[i].needPage) { %>
|
|
<% if (configList[i].effectType == 'select' || configList[i].effectType == 'radio' || configList[i].effectType == 'checkbox') { %>
|
|
const ${configList[i].fieldNameCamelCase}Options = tool.dictList('${configList[i].dictTypeCode}')
|
|
<% } %>
|
|
<% } %>
|
|
<% } %>
|
|
<% } %>
|
|
</script>
|