You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
408 lines
10 KiB
408 lines
10 KiB
<template> |
|
<basic-container> |
|
<!-- 首页表格 --> |
|
<div class="avue-crud"> |
|
<!-- 搜索模块 --> |
|
<el-row v-if="search"> |
|
<!-- 查询模块 --> |
|
<el-form :inline="true" :model="query" class="el-fr-d"> |
|
<!-- 查询按钮 --> |
|
<el-form-item class="el-btn"> </el-form-item> |
|
</el-form> |
|
</el-row> |
|
|
|
<!-- 控件模块 --> |
|
<el-row> |
|
<div class="avue-crud__header"> |
|
<!-- 头部左侧按钮模块 --> |
|
<div class="avue-crud__left"> |
|
<el-button type="primary" @click="Addtemplate"> |
|
<el-icon><Plus /></el-icon>新 增</el-button |
|
> |
|
|
|
<el-button type="primary" @click="Deletetemplate"> |
|
<el-icon><Delete /></el-icon>删 除</el-button |
|
> |
|
</div> |
|
<!-- 头部右侧按钮模块 --> |
|
<div class="avue-crud__right"> |
|
<el-button type="primary" icon="el-icon-search" @click="searchChange">搜 索</el-button> |
|
<el-button icon="el-icon-delete" @click="searchReset">清 空</el-button> |
|
<el-button icon="el-icon-refresh" @click="searchChangeS" circle></el-button> |
|
<el-button icon="Operation" @click="showdrawer(true)" circle></el-button> |
|
<el-button icon="Search" @click="searchHide" circle></el-button> |
|
</div> |
|
</div> |
|
</el-row> |
|
|
|
<!-- 首页表格 --> |
|
<el-row> |
|
<!-- 列表模块 --> |
|
<tablecmt |
|
class="tableNode" |
|
:columnList="details.columnList" |
|
:tableData="data" |
|
:loading="loadingObj.list" |
|
@inputTxt="inputsc" |
|
@timeCheck="timesc" |
|
@btnCheck="btnsc" |
|
@selectCheck="selectsc" |
|
@selection="selectionChange" |
|
> |
|
<template #default="slotProps"> |
|
<template v-if="slotProps.scope.column.label === '操作'"> |
|
<div class="ElBtnClass"> |
|
<el-button @click="Modifytemplate(slotProps.scope.row)">价格体系配置</el-button> |
|
</div> |
|
</template> |
|
</template> |
|
</tablecmt> |
|
</el-row> |
|
|
|
<!-- 分页模块 --> |
|
<el-row class="el-fy"> |
|
<div class="avue-crud__pagination flex-c-sb" style="width: 100%"> |
|
<div></div> |
|
<el-pagination |
|
align="right" |
|
background |
|
@size-change="sizeChange" |
|
@current-change="currentChange" |
|
:current-page="page.currentPage" |
|
:page-sizes="[30, 50, 80, 120]" |
|
:page-size="page.pageSize" |
|
layout="total, sizes, prev, pager, next, jumper" |
|
:total="page.total" |
|
> |
|
</el-pagination> |
|
</div> |
|
</el-row> |
|
</div> |
|
</basic-container> |
|
<!-- 列表配置显示 --> |
|
<edittablehead |
|
@setcolum="setnewcolum" |
|
@closce="showdrawer" |
|
:drawerShow="drawerShow" |
|
:columnList="details.columnList" |
|
v-model="details.columnList" |
|
></edittablehead> |
|
</template> |
|
|
|
<script setup> |
|
import { ref, reactive, toRefs, computed, onMounted, nextTick, watch } from 'vue'; |
|
import { columnList } from '@/option/financialsector/index.js'; |
|
import { $_getpriceTemplate, $_deletelpriceTemplate } from '@/api/financialsector/index'; //价格模板 |
|
import { getDictionaryBiz } from '@/api/system/dict'; //字典 |
|
import { processRowProperty, setNodeHeight, deepClone, downloadXls } from '@/utils/util'; |
|
import { getToken } from 'utils/auth'; // 用于获取存储的Token |
|
import functions from '@/utils/functions.js'; |
|
import { ElMessageBox, ElMessage } from 'element-plus'; |
|
import { useStore } from 'vuex'; |
|
import dayjs from 'dayjs'; |
|
const $router = useRouter(); //跳转 |
|
const $useStore = useStore(); //权限 |
|
const $route = useRoute(); //获取地址栏参数 |
|
const dialogTemp = ref(false); //导入模板弹窗 |
|
const details = reactive({ |
|
/** 是否开启搜索 */ |
|
search: false, |
|
/** 表格搜索条件 */ |
|
query: {}, |
|
/** 时间快捷选择设置 */ |
|
shortcuts: [ |
|
{ |
|
text: '最近一周', |
|
value: () => { |
|
const end = new Date(); |
|
const start = new Date(); |
|
start.setTime(start.getTime() - 3600 * 1000 * 24 * 7); |
|
return [start, end]; |
|
}, |
|
}, |
|
{ |
|
text: '最近一个月', |
|
value: () => { |
|
const end = new Date(); |
|
const start = new Date(); |
|
start.setTime(start.getTime() - 3600 * 1000 * 24 * 30); |
|
return [start, end]; |
|
}, |
|
}, |
|
{ |
|
text: '最近三个月', |
|
value: () => { |
|
const end = new Date(); |
|
const start = new Date(); |
|
start.setTime(start.getTime() - 3600 * 1000 * 24 * 90); |
|
return [start, end]; |
|
}, |
|
}, |
|
], |
|
/** 时间选择器数据 */ |
|
stockupDate: [], |
|
/** 列表 */ |
|
columnList: deepClone(columnList), |
|
|
|
/** 列表数据 */ |
|
data: [], |
|
/** 页面loading */ |
|
loadingObj: { |
|
/** 列表加载loading */ |
|
list: false, |
|
packageListLoading: false, |
|
}, |
|
/** 列表复选框选中的数据 */ |
|
selectionList: [], |
|
/** 是否显示设置表格 */ |
|
drawerShow: false, |
|
/** 分页参数 */ |
|
page: { |
|
currentPage: 1, |
|
pageSize: 50, |
|
total: 0, |
|
}, |
|
|
|
/** 弹出层显示 */ |
|
popUpShow: { |
|
/** 包件明细 */ |
|
packageOrderListlVisited: false, |
|
/** 二维码 */ |
|
QRCodeVisible: false, |
|
/** 修改客户信息 */ |
|
editClientInfoVisible: false, |
|
}, |
|
/** 列表Dom节点 */ |
|
listNode: '', |
|
form: {}, |
|
/** 全屏 */ |
|
fullscreenObj: { |
|
/** 包明细 */ |
|
packageOrderListlVisited: false, |
|
}, |
|
}); |
|
|
|
const { |
|
search, |
|
query, |
|
shortcuts, |
|
stockupDate, |
|
data, |
|
loadingObj, |
|
selectionList, |
|
drawerShow, |
|
page, |
|
trickleLoadingPage, |
|
zeroAdditionalRecordingInfo, |
|
popUpShow, |
|
recorddata, |
|
} = toRefs(details); |
|
/** |
|
* 设置列表 -- 固定函数 |
|
* 弹窗的勾选回调,用于更改头部数组 |
|
* 固定搭配,只需要更换 columnList |
|
* */ |
|
const setnewcolum = (newarr, headarr, type) => { |
|
if (type == 1) { |
|
details.columnList = newarr; |
|
functions.setStorage(window.location.pathname + 'checkList', headarr); |
|
} else if (type == 2) { |
|
details.columnList = newarr; |
|
functions.setStorage(window.location.pathname + 'flexList', headarr); |
|
} else if (type == 3) { |
|
details.columnList = newarr; |
|
functions.setStorage(window.location.pathname + 'sortlist', headarr); |
|
} |
|
}; |
|
/** 展开列表控件 */ |
|
const showdrawer = _flag => { |
|
details.drawerShow = _flag; |
|
}; |
|
/** 表格表头输入框搜索 */ |
|
const inputsc = (index, row) => { |
|
details.query[row.prop] = index; |
|
processRowProperty(index, row, details); |
|
}; |
|
|
|
/** 表格表头时间选择 */ |
|
const timesc = (index, row) => { |
|
console.log(index, row); |
|
if (!!index) { |
|
index = dayjs(index).format('YYYY-MM-DD'); |
|
} |
|
details.query[row.prop] = index; |
|
if (!index) { |
|
delete details.query[row.prop]; |
|
} |
|
}; |
|
|
|
/** 表格表头输入框搜索 */ |
|
const btnsc = val => { |
|
console.log(val); |
|
}; |
|
/** 表格表头下拉框选择 */ |
|
const selectsc = (index, row) => { |
|
processRowProperty(index, row, details); |
|
}; |
|
/** 表格表头复选框选择 */ |
|
const selectionChange = list => { |
|
console.log(list); |
|
details.selectionList = list; |
|
}; |
|
// 网页顶部搜索按钮 |
|
const searchChange = () => { |
|
priceTemplate(); |
|
}; |
|
// 每页多少条 |
|
const sizeChange = val => { |
|
details.page.pageSize = val; |
|
priceTemplate(); |
|
}; |
|
/** 页码改变执行的回调 */ |
|
const currentChange = val => { |
|
details.page.currentPage = val; |
|
priceTemplate(); |
|
}; |
|
// 刷新按钮 |
|
const searchChangeS = () => { |
|
details.search = false; //关闭搜索 |
|
priceTemplate(); |
|
}; |
|
// 顶部搜索 |
|
const searchHide = () => { |
|
console.log(details); |
|
details.search = !details.search; |
|
const _node = document.querySelector('.tableNode'); |
|
setNodeHeight(_node, '', true); |
|
}; |
|
// 字典公共函数 |
|
function updateDictionary(targetArray, dictionaryType) { |
|
getDictionaryBiz(dictionaryType).then(res => { |
|
console.log(res, '字典'); |
|
res.data.data.forEach(item => { |
|
targetArray.push({ |
|
value: item.dictKey, |
|
label: item.dictValue, |
|
}); |
|
}); |
|
}); |
|
} |
|
// 页面初始化方法 |
|
const priceTemplate = () => { |
|
let data = { |
|
current: details.page.currentPage, |
|
size: details.page.pageSize, |
|
...details.query, |
|
}; |
|
details.loadingObj.list = true; |
|
$_getpriceTemplate(data) |
|
.then(res => { |
|
console.log(res, '当前参数'); |
|
details.page.total = res.data.data.total; |
|
details.data = res.data.data.records; |
|
}) |
|
.catch(() => {}) |
|
.finally(() => { |
|
details.loadingObj.list = false; |
|
}); |
|
}; |
|
// 清空 |
|
const searchReset = () => { |
|
details.columnList.forEach(item => { |
|
item.values = ''; |
|
}); |
|
details.query = {}; |
|
priceTemplate(); |
|
}; |
|
priceTemplate(); |
|
// 新增模板 |
|
const Addtemplate = () => { |
|
$useStore.commit('DEL_ONCE_TAG', '/financialsector/FinanceHome'); |
|
$router.push({ |
|
path: '/financialsector/FinanceHome', |
|
}); |
|
}; |
|
// 删除模板 |
|
const Deletetemplate = () => { |
|
console.log(details.selectionList, ' details.selectionList'); |
|
if (!details.selectionList.length) { |
|
ElMessage({ |
|
message: '请勾选要删除的模板', |
|
type: 'warning', |
|
}); |
|
return; |
|
} |
|
|
|
ElMessageBox.confirm('是否删除选中模板?此操作不可撤销!', '提示', { |
|
confirmButtonText: '确定', |
|
cancelButtonText: '取消', |
|
type: 'warning', |
|
}) |
|
.then(() => { |
|
details.loadingObj.list = true; |
|
let data = { |
|
ids: details.selectionList.map(res => res.id).join(','), |
|
}; |
|
$_deletelpriceTemplate(data).then(res => { |
|
if (res.data.code == 200) { |
|
ElMessage({ |
|
message: res.data.msg, |
|
type: 'success', |
|
}); |
|
priceTemplate(); |
|
} |
|
}); |
|
}) |
|
.catch(res => { |
|
console.log(res, 'error'); |
|
}) |
|
.finally(() => { |
|
details.loadingObj.list = false; |
|
}); |
|
}; |
|
|
|
// 修改模板 |
|
const Modifytemplate = row => { |
|
console.log(row); |
|
$useStore.commit('DEL_ONCE_TAG', '/financialsector/FinanceHome'); |
|
|
|
$router.push({ |
|
query: { |
|
id: row.id, |
|
}, |
|
path: '/financialsector/FinanceHome', |
|
}); |
|
}; |
|
|
|
// 导出确定 |
|
const dialogVisible = () => {}; |
|
</script> |
|
|
|
<style scoped lang="scss"> |
|
.ElBtnClass button { |
|
border: none; |
|
padding: 0; |
|
background-color: transparent; |
|
color: #02a7f0; |
|
font-weight: 400; |
|
} |
|
:deep(.el-card) { |
|
height: 100%; |
|
} |
|
:deep(.el-card__body) { |
|
height: 100%; |
|
display: flex; |
|
flex-direction: column; |
|
} |
|
.el-fy { |
|
flex: 1; |
|
display: flex; |
|
align-items: flex-end; |
|
margin-bottom: 10px; |
|
} |
|
.avue-crud { |
|
height: 100%; |
|
display: flex; |
|
flex-direction: column; |
|
} |
|
</style>
|
|
|