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.
 
 
 
 

783 lines
21 KiB

<template>
<basic-container v-loading="details.loadingObj.pageLoading">
<!-- 首页表格 -->
<div class="avue-crud">
<!-- 搜索模块 -->
<div v-h5uShow="search">
<!-- 查询模块 -->
<el-form :inline="true" :model="query" class="header_search">
<!-- 查询按钮 -->
<el-form-item class="el-btn"> </el-form-item>
</el-form>
</div>
<!-- 控件模块 -->
<div class="flex-c-sb">
<!-- 头部左侧按钮模块 -->
<div class="avue-crud__left">
<el-button type="primary" @click="exporTemp">
<el-icon><Download /></el-icon></el-button
>
<el-button type="primary" @click="ImportTemplate">
<el-icon><Upload /></el-icon></el-button
>
<el-button type="primary" @click="addition">
<el-icon><Plus /></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>
<!-- 列表模块 -->
<tablecmt
class="tableNode"
:columnList="details.columnList"
:tableData="details.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 v-if="slotProps.scope.row.id" @click="handleClient(slotProps.scope.row)"
>基础配置</el-button
>
<el-button
v-if="slotProps.scope.row.maintenanceStatus === '已维护'"
@click="Modifytemplate(slotProps.scope.row)"
>价格体系配置</el-button
>
<el-button @click="Historicalversion(slotProps.scope.row)">历史版本</el-button>
<el-button v-if="slotProps.scope.row.id" @click="Viewdetails(slotProps.scope.row)"
>查看详情</el-button
>
</div>
</template>
</template>
</tablecmt>
<!-- 分页模块 -->
<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.current"
:page-sizes="[30, 50, 80, 120]"
:page-size="page.size"
layout="total, sizes, prev, pager, next, jumper"
:total="page.total"
>
</el-pagination>
</div>
</el-row>
</div>
</basic-container>
<el-dialog
class="el-dialog-basicVisted"
label-width="100px"
v-model="details.popUpShow.basicVisted"
title="基础配置"
width="40%"
:before-close="handleClose"
>
<el-form inline :model="details.form" ref="basicForm" label-width="120px">
<el-form-item label="客户名称" prop="clientName">
<el-input placeholder="客户名称" v-model="details.form.clientName" disabled />
</el-form-item>
<el-form-item label="品牌" prop="brandName">
<el-input placeholder="品牌" v-model="details.form.brandName" disabled />
</el-form-item>
<el-form-item
label="生效时间"
:rules="{ required: true, message: '请选择生效时间', trigger: ['change', 'blur'] }"
prop="effectiveTime"
>
<el-date-picker
v-model="details.form.effectiveTime"
type="date"
placeholder="请选择生效时间"
:disabled-date="time1"
:shortcuts="shortcuts"
value-format="YYYY-MM-DD"
/>
</el-form-item>
<el-form-item
label="到期时间"
:rules="{ required: true, message: '请选择到期时间', trigger: ['change', 'blur'] }"
prop="expiryTime"
>
<el-date-picker
v-model="details.form.expiryTime"
type="date"
placeholder="请选择到期时间"
:disabled-date="time2"
:shortcuts="shortcuts"
value-format="YYYY-MM-DD"
/>
</el-form-item>
<el-form-item
label="价格体系模板"
:rules="{ required: true, message: '请选择体系模板', trigger: ['change', 'blur'] }"
prop="templateId"
>
<el-select
v-model="details.form.templateId"
placeholder="请选择价格体系模板"
style="width: 240px"
>
<el-option
v-for="item in details.templateArr"
:key="item.id"
:label="item.name"
:value="item.id"
/>
</el-select>
</el-form-item>
</el-form>
<template #footer>
<span class="dialog-footer">
<el-button @click="details.popUpShow.basicVisted = false">取消</el-button>
<el-button type="primary" @click="handleSubmitBasic"> 提交 </el-button>
</span>
</template>
</el-dialog>
<!-- 导入模板 -->
<el-dialog v-model="dialogTemp" title="导入模板" width="500">
<el-upload
class="upload-demo"
drag
action="/api/logpm-basicdata/basicdataPrice/upload/v2"
:headers="headers"
:on-success="handleSuccess"
:before-upload="beforeAvatarUpload"
method="post"
>
<el-icon class="el-icon--upload"><upload-filled /></el-icon>
<div class="el-upload__text">点击上传 <em>或者拖拽上传</em></div>
<template #tip>
<div class="el-upload__tip">请上传Excel模板文件</div>
</template>
</el-upload>
<template #footer>
<div class="dialog-footer">
<el-button @click="dialogTemp = false">关闭</el-button>
</div>
</template>
</el-dialog>
<!-- 历史版本 -->
<el-dialog v-model="Historical.popUpShow" title="历史版本">
<tablecmt
class="Historical"
:columnList="Historical.columnList"
:tableData="Historical.data"
:loading="Historical.loading"
>
<template #default="slotProps">
<template v-if="slotProps.scope.column.label === '操作'">
<div class="ElBtnClass">
<el-button
v-if="slotProps.scope.row.effectiveStatus !== '已失效'"
@click="handleClient(slotProps.scope.row)"
>基础配置</el-button
>
<el-button
v-if="slotProps.scope.row.effectiveStatus !== '已失效'"
@click="Modifytemplate(slotProps.scope.row)"
>价格体系配置</el-button
>
<el-button
v-if="slotProps.scope.row.effectiveStatus == '待生效'"
@click="deletetails(slotProps.scope.row)"
>删除</el-button
>
<el-button @click="Viewdetails(slotProps.scope.row)">查看详情</el-button>
</div>
</template>
</template>
</tablecmt>
</el-dialog>
<div id="createdDiv"></div>
<!-- 列表配置显示 -->
<edittablehead
@closce="showdrawer"
:drawerShow="drawerShow"
:columnList="details.columnList"
v-model="details.columnList"
></edittablehead>
</template>
<script setup>
import { ref, reactive, toRefs, computed, onMounted, nextTick, watch, onActivated } from 'vue';
import { columnList, HistoricalList } from '@/option/Pricesystem/index.js';
import {
$_getpriceTemplate,
$_deletelpriceTemplate,
$_getexport,
$_gethisPage,
$_DELETEID,
} from '@/api/financialsector/index'; //价格模板
import { getBasicdataPrice, postBasicdataPrice } from '@/api/Pricesystem/index'; //价格模板
import { getDictionaryBiz } from '@/api/system/dict'; //字典
import { processRowProperty, setNodeHeight } from '@/utils/util';
import { getToken } from 'utils/auth'; // 用于获取存储的Token
import functions from '@/utils/functions.js';
import { ElMessageBox, ElMessage } from 'element-plus';
import { popmsg } from '@/utils/poptxt';
import { downloadXls, deepClone } from '@/utils/util';
import { useStore } from 'vuex';
import dayjs from 'dayjs';
import error from '@/error';
const $router = useRouter(); //跳转
const $useStore = useStore(); //权限
const $route = useRoute(); //获取地址栏参数
const dialogTemp = ref(false);
const Historical = reactive({
popUpShow: false, //历史版本弹窗
data: [], //历史版本数据
loading: false, //历史版本弹窗
columnList: deepClone(HistoricalList),
});
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];
},
},
],
/** 列表 */
columnList: deepClone(columnList),
/** 列表数据 */
data: [],
/** 页面loading */
loadingObj: {
/** 列表加载loading */
list: false,
packageListLoading: false,
/** 页面loading */
pageLoading: false,
},
/** 列表复选框选中的数据 */
selectionList: [],
/** 是否显示设置表格 */
drawerShow: false,
/** 分页参数 */
page: {
current: 1,
size: 50,
total: 0,
},
/** 弹出层显示 */
popUpShow: {
/** 基础配置 */
basicVisted: false,
},
/** 列表Dom节点 */
listNode: '',
form: {},
/** 价格模板数组 */
templateArr: [],
});
const headers = computed(() => {
return { 'Blade-Auth': 'Bearer ' + getToken() };
});
const handleSuccess = res => {
if (res.code == 200 && !res.data) {
ElMessage({
message: res.msg,
type: 'success',
});
onLoad();
} else if (res.code == 200 && res.data) {
ElMessage({
message: '导入失败,请查看原因重新导入!',
type: 'warning',
});
popmsg(res);
} else {
ElMessage({
message: res.msg,
type: 'warning',
});
}
console.log(res, 'datas');
};
// 上传文件之前
const beforeAvatarUpload = rawFile => {
// console.log(rawFile, 'rawFile');
if (
rawFile.type !== 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet' &&
rawFile.type !== 'application/vnd.ms-excel'
) {
ElMessage.error('请上传EXCEL文件!');
return false;
}
return true;
};
// 导出模板
const exporTemp = () => {
ElMessageBox.confirm('是否导出价格模板', '提示', {
confirmButtonText: '确认',
cancelButtonText: '取消',
type: 'warning',
}).then(() => {
$_getexport().then(res => {
downloadXls(res.data, `价格模板.xlsx`);
});
});
};
// 导入模板
const ImportTemplate = () => {
dialogTemp.value = true;
};
/** 生效时间 -- 生效时间不能大于到期时间 */
const time1 = time => {
if (!details.form.expiryTime) return false;
return time.getTime() > new Date(details.form.expiryTime).getTime();
};
/** 到期时间 -- 到期时间不能小于生效时间 */
const time2 = time => {
if (!details.form.effectiveTime) return false;
return time.getTime() < new Date(details.form.effectiveTime).getTime();
};
/** 基础配置表单实例 */
const basicForm = ref();
const { search, query, data, loadingObj, drawerShow, page } = toRefs(details);
/** 展开列表控件 */
const showdrawer = _flag => {
details.drawerShow = _flag;
};
/** 表格表头输入框搜索 */
const inputsc = (index, row) => {
details.query[row.prop] = index;
if (!index && index !== 0) delete details.query[row.prop];
processRowProperty(index, row, details);
onLoad();
};
/** 表格表头时间选择 */
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];
}
onLoad();
};
/** 表格表头输入框搜索 */
const btnsc = val => {
console.log(val);
};
/** 表格表头下拉框选择 */
const selectsc = (index, row) => {
// processRowProperty(index, row, details);
console.log('index :>> ', index);
console.log('row :>> ', row);
details.query[row.prop.replace('Name', '')] = index;
if (!index) delete details.query[row.prop.replace('Name', '')];
onLoad();
};
/** 表格表头复选框选择 */
const selectionChange = list => {
console.log(list);
details.selectionList = list;
};
// 网页顶部搜索按钮
const searchChange = () => {
onLoad();
};
// 清空按钮
const searchReset = () => {
details.columnList.forEach(item => {
item.values = '';
});
details.query = {};
onLoad();
};
// 每页多少条
const sizeChange = val => {
details.page.size = val;
onLoad();
};
/** 页码改变执行的回调 */
const currentChange = val => {
details.page.current = val;
onLoad();
};
// 刷新按钮
const searchChangeS = () => {
details.search = false; //关闭搜索
onLoad();
};
// 顶部搜索
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 onLoad = async () => {
try {
const submitData = {
...details.page,
...details.query,
};
const res = await getBasicdataPrice(submitData);
const { code, data } = res.data;
if (code !== 200) return;
details.page.total = data.total;
details.data = data.records;
} catch (error) {
console.log('error :>> ', error);
} finally {
details.loadingObj.list = false;
}
};
onLoad();
// 新增模板
const Addtemplate = () => {
$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',
});
onLoad();
}
});
})
.catch(res => {
console.log(res, 'error');
})
.finally(() => {
details.loadingObj.list = false;
});
};
// 设置价格
const Modifytemplate = row => {
console.log(row);
$useStore.commit('DEL_ONCE_TAG', '/Pricesystem/PricesyHome');
$router.push({
query: {
id: row.id,
templateId: row.templateId,
},
path: '/Pricesystem/PricesyHome',
});
};
// 查看详情
const Viewdetails = row => {
$useStore.commit('DEL_ONCE_TAG', '/Pricesystem/PricesyHome');
$router.push({
query: {
id: row.id,
templateId: row.templateId,
Viewdetails: false,
},
path: '/Pricesystem/PricesyHome',
});
};
const HistoriBt = ref({}); //历史版本
// 查看历史版本
const Historicalversion = row => {
HistoriBt.value = row;
Historical.popUpShow = true;
Historical.loading = true;
let _data = {
id: row.id,
brandId: row.brandId,
clientId: row.clientId,
};
$_gethisPage(_data)
.then(res => {
console.log(res);
if (res.data.code == 200) {
Historical.data = res.data.data.records || [];
const _node = document.querySelector('.Historical');
setNodeHeight(_node, '', true);
}
})
.catch(error => {
console.log(error, 'error');
})
.finally(() => {
Historical.loading = false;
});
};
// 删除待生效
const deletetails = row => {
let data = {
id: row.id,
};
const message = `是否删除该数据,<span style="color: red;">删除后不可恢复</span>是否确认?`;
ElMessageBox.confirm(message, '提示', {
dangerouslyUseHTMLString: true, // 如果组件支持,启用此选项以解析 HTML
confirmButtonText: '确认',
cancelButtonText: '取消',
type: 'warning',
})
.then(() => {
Historical.loading = true;
$_DELETEID(data)
.then(res => {
console.log(res);
if (res.data.code == 200) {
ElMessage({
message: res.data.msg,
type: 'success',
});
Historicalversion(row);
}
})
.catch(error => {
console.log(error, 'error');
})
.finally(() => {
Historical.loading = false;
});
})
.catch(() => {});
};
/** 设置客户 */
const handleClient = async row => {
try {
details.loadingObj.pageLoading = true;
let _data={
brandId: row.brandId,
current:1,
size:500,
}
const res = await $_getpriceTemplate(_data);
const { code, data } = res.data;
if (code !== 200) return;
details.templateArr = data.records || [];
details.popUpShow.basicVisted = true;
await nextTick();
// 重置表单状态
basicForm.value.resetFields();
add.value = true;
details.form = { ...row };
} catch (error) {
console.log('error :>> ', error);
} finally {
details.loadingObj.pageLoading = false;
}
console.log('row :>> ', row);
};
const add = ref(true);
// 新增
const addition = async () => {
if (!details.selectionList.length) {
ElMessage({
message: '请勾选一条数据',
type: 'warning',
});
return;
}
if (details.selectionList.length > 1) {
ElMessage({
message: '只能勾选单条数据操作',
type: 'warning',
});
return;
}
console.log(details.selectionList, 'details.selectionList');
let _row = details.selectionList[0];
console.log(_row, '_row');
details.loadingObj.pageLoading = true;
const res = await $_getpriceTemplate({ brandId: _row.brandId });
details.loadingObj.pageLoading = false;
const { code, data } = res.data;
if (code == 200) {
details.templateArr = data.records || [];
details.popUpShow.basicVisted = true;
await nextTick();
// 重置表单状态
basicForm.value.resetFields();
details.form = { ..._row };
details.form.templateId = null;
details.form.expiryTime = null;
details.form.effectiveTime = null;
}
add.value = false;
};
/** 提交设置基础配置 */
const handleSubmitBasic = () => {
basicForm.value.validate(async (valid, fields) => {
if (!valid) return;
try {
details.loadingObj.pageLoading = true;
details.popUpShow.basicVisted = false;
const submitData = {
effectiveTime: details.form.effectiveTime + ' 00:00:00',
brandId: details.form.brandId,
clientId: details.form.clientId,
expiryTime: details.form.expiryTime + ' 00:00:00',
templateId: details.form.templateId,
};
if (add.value) {
submitData.id = details.form.id;
}
const res = await postBasicdataPrice(submitData);
const { code, msg } = res.data;
if (code !== 200) {
return;
}
ElMessage.success(msg);
onLoad();
} catch (error) {
console.log('error :>> ', error);
} finally {
details.loadingObj.pageLoading = false;
}
});
};
</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;
}
// 基础配置样式
.el-dialog-basicVisted .el-form-item {
width: 40%;
}
:deep(.el-date-editor) {
height: 100% !important;
}
</style>