JNBusiness/ruoyi-ui/src/views/redBook/productSelect.vue

750 lines
31 KiB
Vue
Raw Normal View History

2024-05-09 17:17:03 +08:00
<template>
<div class="app-container">
2024-05-12 11:24:28 +08:00
<el-form label-width="80px" :model="form">
2024-05-10 15:13:35 +08:00
<el-row :gutter="5">
<el-col :span="10">
<el-input style="width:30%" size="mini" v-model="queryParams.name_0" placeholder="型号 模糊查询"></el-input>
<el-input style="width:30%;margin-left: 5px;" size="mini" v-model="queryParams.model" placeholder="规格 模糊查询"></el-input>
<el-button style="float: right;" size="mini" type="primary" icon="el-icon-search" @click="handleSearchClick">搜索</el-button>
</el-col>
2024-05-12 11:24:28 +08:00
<el-col :span="14">
2024-05-14 10:31:00 +08:00
<el-button style="float: right;margin-left: 5px;" size="mini" type="success" icon="el-icon-document" @click="handleMadeQuotClick" :disabled="selectedResultData.length==0">生成报价单</el-button>
<el-button style="float: right;" size="mini" type="warning" icon="el-icon-folder" @click="handleSaveClick" :disabled="selectedResultData.length==0">保存</el-button>
2024-05-12 11:24:28 +08:00
</el-col>
2024-05-10 15:13:35 +08:00
</el-row>
2024-05-14 10:31:00 +08:00
<el-row :gutter="5" class="mt5">
2024-05-10 15:13:35 +08:00
<el-col :span="10">
2024-05-09 17:17:03 +08:00
<el-card id="scroll" class="box-card scrollable" :style="{'overflow': 'auto','max-height': scrollableHeight,'height': scrollableHeight}">
<el-form-item label="目录:">
2024-05-10 15:13:35 +08:00
<el-link :underline="false" class="block" :type="selectedModelTag==item.name_0?'warning':'primary'" @click="selModelTag(item)" v-for="(item, index) in modelList" :key="index">{{item.name_0}}</el-link>
2024-05-09 17:17:03 +08:00
</el-form-item>
<el-form-item label="备注:" v-if="showRemarkList">
2024-05-10 15:13:35 +08:00
<div class="text-content">
<div v-if="expandedIndex === id">
<el-button type="text" style="float: right" @click="toggleText(-1)">收起</el-button>
<div v-for="(item, index) in remarkList" :key="index" style="line-height: 25px">
{{index+1}}{{item.remark_0}}
</div>
</div>
<div v-else>
<el-button type="text" style="float: right" @click="toggleText(id)">更多</el-button>
<div class="text-preview">
<div v-for="(item, index) in remarkList" :key="index" style="line-height: 25px">
{{index+1}}{{item.remark_0}}
</div>
</div>
</div>
2024-05-09 17:17:03 +08:00
</div>
</el-form-item>
<el-form-item label="型号:" v-if="showXinghList">
2024-05-10 15:13:35 +08:00
<el-link :underline="false" class="block" :type="selectedXinghTag==item.name_0?'warning':'primary'" plain @click="selXinghTag(item)" v-for="(item, index) in xinghList" :key="index">{{item.name_0}}</el-link>
2024-05-09 17:17:03 +08:00
</el-form-item>
<el-form-item label="子类:" v-if="showZlList">
2024-05-10 15:13:35 +08:00
<el-link :underline="false" class="block" size="mini" :type="selectedZlTag==item.name_0?'warning':'primary'" plain @click="selZlTag(item)" v-for="(item, index) in zlList" :key="index">{{item.name_0}}</el-link>
2024-05-09 17:17:03 +08:00
</el-form-item>
<el-form-item label="衍生型号:" v-if="showYsxhList">
2024-05-10 15:13:35 +08:00
<el-link :underline="false" class="block" :type="selectedYsxhTag==item.name_0?'warning':'primary'" plain @click="selYsxhTag(item)" v-for="(item, index) in ysxhList" :key="index">{{item.name_0}}</el-link>
2024-05-09 17:17:03 +08:00
</el-form-item>
<el-form-item label="截面:" v-if="showJmList">
2024-05-10 15:13:35 +08:00
<el-link :underline="false"class="block" :type="selectedJmTag==item.section?'warning':'primary'" plain @click="selJmTag(item)" v-for="(item, index) in jmList" :key="index">{{item.section}}</el-link>
2024-05-09 17:17:03 +08:00
</el-form-item>
<el-table width="100%" v-loading="searchResultLoading" ref="searchResultTable" :data="searchResultPagedData" @row-dblclick="handleRowDblclick">
2024-05-12 14:09:48 +08:00
<el-table-column label="版本uid" align="center" prop="uid_0" v-if="false"/>
2024-05-13 09:03:10 +08:00
<el-table-column label="产品型号" align="center" prop="name_0" width="180"/>
<el-table-column label="型号" align="center" prop="model" width="180" v-if="false"/>
2024-05-12 11:24:28 +08:00
<el-table-column label="规格" align="center" prop="spec" width="180" v-if="false"/>
2024-05-12 14:09:48 +08:00
<el-table-column label="电压" align="center" prop="voltage"/>
<el-table-column label="红本价(元)" align="center" prop="price"/>
2024-05-09 17:17:03 +08:00
<el-table-column label="单位" align="center" prop="stu"/>
</el-table>
<pagination
v-show="searchResultTotal>0"
:total="searchResultTotal"
:page.sync="searchResultCurrentPage"
:limit.sync="searchResultPageSize"
@size-change="handleSearchResultSizeChange"
@current-change="handleSearchResultCurrentChange"
2024-05-14 10:31:00 +08:00
:layout="'total, prev, pager, next'"
2024-05-09 17:17:03 +08:00
/>
</el-card>
</el-col>
2024-05-12 11:24:28 +08:00
<el-col :span="14">
2024-05-09 17:17:03 +08:00
<el-card id="scroll" class="box-card scrollable" :style="{'overflow': 'auto','max-height': scrollableHeight,'height': scrollableHeight}">
2024-05-10 15:13:35 +08:00
<el-row :gutter="8">
<el-col :span="12">
2024-05-13 09:03:10 +08:00
<el-form-item label="询价单位" prop="quotCustomer">
2024-05-10 15:13:35 +08:00
<el-input v-model="form.quotCustomer" placeholder="请输入询价单位" />
</el-form-item>
</el-col>
<el-col :span="12">
2024-05-13 09:03:10 +08:00
<el-form-item label="项目名称" prop="quotProject">
2024-05-10 15:13:35 +08:00
<el-input v-model="form.quotProject" placeholder="请输入项目名称"/>
</el-form-item>
</el-col>
</el-row>
<el-row :gutter="8">
2024-05-14 15:19:02 +08:00
<el-col :span="8">
2024-05-13 09:03:10 +08:00
<el-form-item label="联系人" prop="quotLxr">
2024-05-14 15:19:02 +08:00
<el-input v-model="form.quotLxr" placeholder="请输入联系人" />
2024-05-10 15:13:35 +08:00
</el-form-item>
</el-col>
2024-05-14 15:19:02 +08:00
<el-col :span="8">
2024-05-13 09:03:10 +08:00
<el-form-item label="联系电话" prop="quotLxrdh">
2024-05-10 15:13:35 +08:00
<el-input v-model="form.quotLxrdh" placeholder="请输入联系电话"/>
</el-form-item>
</el-col>
2024-05-14 15:19:02 +08:00
<el-col :span="8">
<el-form-item label="总价">
<el-input class="totalPrice-input" v-model="sumSelectedResultData"/>
</el-form-item>
</el-col>
2024-05-10 15:13:35 +08:00
</el-row>
2024-05-13 09:03:10 +08:00
<el-row :gutter="8">
<el-col :span="24">
2024-05-13 16:03:01 +08:00
<el-form-item label="总金额" prop="totalPrice" v-if="false">
<el-input v-model="form.totalPrice"/>
</el-form-item>
2024-05-14 10:31:00 +08:00
<el-form-item label="设置折扣率" label-width="100px">
<el-input style="width:65px" v-model="perc" size="small" @blur="changeData"></el-input>
<el-input style="width:65px;margin-left: 5px" v-model="perc2" size="small" @blur="changeData"></el-input>
2024-05-14 15:19:02 +08:00
<!--总价:<span style="color:red;font-size: 15px">{{sumSelectedResultData}} </span>-->
<el-select v-model="form.rbDateUid" style="width: 235px;float: right" :disabled="selectedResultData.length==0">
2024-05-13 09:03:10 +08:00
<el-option
v-for="item in versionList"
:key="item.value"
:label="item.label"
:value="item.value"
2024-05-14 10:31:00 +08:00
@click.native="selectRbDate(item.value)"/>
2024-05-13 09:03:10 +08:00
</el-select>
</el-form-item>
</el-col>
</el-row>
2024-05-10 15:13:35 +08:00
2024-05-12 14:09:48 +08:00
<el-table v-loading="selectedResultLoading" width="100%;" :height="tableHeight" :row-class-name="selectedResultIndex" style="margin-top:5px" ref="selectedResultTable" :data="selectedResultData">
2024-05-12 11:24:28 +08:00
<el-table-column fixed="left" label="" align="center" prop="index" width="50"/>
2024-05-09 17:22:20 +08:00
<el-table-column fixed="left" label="操作" align="center" width="60" class-name="small-padding fixed-width">
2024-05-09 17:17:03 +08:00
<template slot-scope="scope">
<el-button type="text" @click="handleDeleteClick(scope.$index)">删除</el-button>
</template>
</el-table-column>
2024-05-12 14:09:48 +08:00
<el-table-column label="版本uid" align="center" prop="uid_0" v-if="false"/>
2024-05-13 13:43:01 +08:00
<el-table-column fixed="left" label="产品型号" align="center" prop="name_0" width="180" />
2024-05-13 09:03:10 +08:00
<el-table-column label="型号" align="center" prop="name_1" width="180" v-if="false"/>
2024-05-12 11:24:28 +08:00
<el-table-column label="规格" align="center" prop="spec" width="180" v-if="false"/>
2024-05-14 10:31:00 +08:00
<el-table-column label="电压" align="center" prop="voltage" width="100"/>
<el-table-column label="红本价(元)" align="center" prop="price" width="120"/>
2024-05-12 14:09:48 +08:00
<el-table-column label="单位" align="center" prop="stu" width="50"/>
2024-05-13 09:03:10 +08:00
<el-table-column label="一次折扣" align="center" prop="per" width="80">
2024-05-09 17:17:03 +08:00
<template slot-scope="scope">
2024-05-13 09:03:10 +08:00
<el-input v-model="scope.row.per" @blur="changeRowData"/>
2024-05-09 17:17:03 +08:00
</template>
</el-table-column>
2024-05-13 09:03:10 +08:00
<el-table-column label="二次折扣" align="center" prop="per2" width="80">
2024-05-09 17:22:20 +08:00
<template slot-scope="scope">
2024-05-13 09:03:10 +08:00
<el-input v-model="scope.row.per2" @blur="changeRowData"/>
2024-05-09 17:22:20 +08:00
</template>
</el-table-column>
2024-05-14 10:31:00 +08:00
<el-table-column label="单价" align="center" prop="setPrice" width="120"/>
<el-table-column label="数量调整" align="center" prop="count" width="100">
2024-05-09 17:17:03 +08:00
<template slot-scope="scope">
2024-05-10 15:13:35 +08:00
<el-input v-model="scope.row.count" @blur="changeRowData"/>
2024-05-09 17:17:03 +08:00
</template>
</el-table-column>
2024-05-14 10:31:00 +08:00
<el-table-column label="总价" align="center" prop="allPrice" width="120"/>
2024-05-09 17:17:03 +08:00
</el-table>
2024-05-12 11:24:28 +08:00
<!--<pagination
2024-05-10 15:13:35 +08:00
v-show="selectedResultTotal>0"
:total="selectedResultTotal"
:page.sync="selectedResultCurrentPage"
2024-05-12 11:24:28 +08:00
:page-sizes="[10,20,30,40]"
2024-05-10 15:13:35 +08:00
:limit.sync="selectedResultPageSize"
@size-change="handleSelectedResultSizeChange"
@current-change="handleSelectedResultCurrentChange"
2024-05-12 11:24:28 +08:00
/>-->
2024-05-09 17:17:03 +08:00
</el-card>
</el-col>
</el-row>
</el-form>
</div>
</template>
<style>
2024-05-10 15:13:35 +08:00
/* 设置间距 */
2024-05-09 17:17:03 +08:00
.block {
2024-05-10 15:13:35 +08:00
margin-left: 20px;
2024-05-09 17:17:03 +08:00
display: inline-block;
}
2024-05-10 15:13:35 +08:00
/* 设置行距 */
.el-form-item--medium .el-form-item__content {
line-height: 25px;
}
2024-05-09 17:17:03 +08:00
/*卡片内容滚动条设置*/
.scrollable::-webkit-scrollbar {
display: none; /* 对于Webkit浏览器 */
}
2024-05-10 15:13:35 +08:00
/*备注内容设置*/
.text-content .text-preview {
overflow: hidden;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
/* 控制显示的行数 */
}
2024-05-14 15:19:02 +08:00
/*总价输入框设置*/
.totalPrice-input .el-input__inner {
color: red;
}
2024-05-09 17:17:03 +08:00
</style>
<script>
2024-05-13 13:43:01 +08:00
import {toDecimal, productList,versionList,productRemarkList,productXinghList,judgeparent,productZlList,productYsxhListCheck,productYsxhList,productJmListCheck,productJmList,searchData,handleSearchData,saveQuot, madeQuot,updateSelectedResultData} from "@/api/redBook/redBook";
2024-05-09 17:17:03 +08:00
export default {
name: "productSelect",
data() {
return {
//内容高度
scrollableHeight:null,
2024-05-10 15:13:35 +08:00
//已选结果表格高度
tableHeight:null,
//备注内容设置
expandedIndex: -1, // 默认没有展开的文本,设置为-1
id: 1,
//查询参数
queryParams: {},
2024-05-09 17:17:03 +08:00
//选中的目录tag
selectedModelTag:"",
selectedModelUid:"",
//选中的型号tag
selectedXinghTag:"",
selectedXinghUid:"",
//选中的子类tag
selectedZlTag:"",
selectedZlUid:"",
//选中的衍生型号tag
selectedYsxhTag:"",
selectedYsxhUid:"",
//选中的截面tag
selectedJmTag:"",
//目录
modelList: [],
//备注信息
showRemarkList: false,
remarkList: [],
//型号
showXinghList: false,
xinghList: [],
//子类
showZlList: false,
ZlList: [],
//衍生型号
showYsxhList: false,
ysxhList: [],
//截面
showJmList: false,
jmList: [],
/**==============查询结果========================= */
// 遮罩层
searchResultLoading: false,
// 查询结果数据
searchResultTotal: 0,
searchResultCurrentPage: 1,
searchResultPageSize: 10,
searchResultData: [],
2024-05-10 15:13:35 +08:00
/**==============已选择结果========================= */
2024-05-12 14:09:48 +08:00
selectedResultLoading: false,
2024-05-09 17:17:03 +08:00
//已选择的数据
2024-05-10 15:13:35 +08:00
selectedResultTotal: 0,
selectedResultCurrentPage: 1,
2024-05-12 11:24:28 +08:00
selectedResultPageSize: 10,
2024-05-09 17:17:03 +08:00
selectedResultData: [],
//折扣率 初始值
2024-05-10 15:13:35 +08:00
perc: 0.8,
perc2: '',
//表单
2024-05-13 16:03:01 +08:00
form: {totalPrice: ''},
2024-05-12 14:09:48 +08:00
2024-05-14 10:31:00 +08:00
//调价日期
versionList: [], // 调价版本数据列表
2024-05-09 17:17:03 +08:00
}
},
created() {
this.productList();
2024-05-12 14:09:48 +08:00
this.getVersionList();
2024-05-09 17:17:03 +08:00
},
mounted(){
/*设置内容高度*/
2024-05-10 15:13:35 +08:00
this.scrollableHeight = (window.innerHeight - 160) + 'px';
/*设置已选择结果表格高度*/
2024-05-13 09:03:10 +08:00
this.tableHeight = (window.innerHeight - 380) + 'px';
2024-05-09 17:17:03 +08:00
},
methods: {
2024-05-14 15:19:02 +08:00
//备注内容设置 展开 || 收起文本
2024-05-10 15:13:35 +08:00
toggleText(id) {
if (this.expandedIndex === id) {
this.expandedIndex = -1;
} else {
this.expandedIndex = id;
}
},
2024-05-09 17:17:03 +08:00
//目录选择
2024-05-10 15:13:35 +08:00
selModelTag(item) {
2024-05-09 17:17:03 +08:00
this.showRemarkList = false,
2024-05-10 15:13:35 +08:00
this.remarkList = [],
2024-05-09 17:17:03 +08:00
2024-05-10 15:13:35 +08:00
this.selectedXinghTag = '';
2024-05-09 17:17:03 +08:00
this.showXinghList = false,
2024-05-10 15:13:35 +08:00
this.xinghList = [],
2024-05-09 17:17:03 +08:00
2024-05-10 15:13:35 +08:00
this.selectedZlTag = '';
2024-05-09 17:17:03 +08:00
this.showZlList = false,
2024-05-10 15:13:35 +08:00
this.ZlList = [],
2024-05-09 17:17:03 +08:00
2024-05-10 15:13:35 +08:00
this.selectedYsxhTag = '';
2024-05-09 17:17:03 +08:00
this.showYsxhList = false,
2024-05-10 15:13:35 +08:00
this.ysxhList = [],
2024-05-09 17:17:03 +08:00
2024-05-10 15:13:35 +08:00
this.selectedJmTag = '';
2024-05-09 17:17:03 +08:00
this.showJmList = false,
2024-05-10 15:13:35 +08:00
this.jmList = [],
2024-05-09 17:17:03 +08:00
2024-05-10 15:13:35 +08:00
this.searchResultCurrentPage = 1,
this.searchResultPageSize = 10,
this.searchResultData = [],
2024-05-09 17:17:03 +08:00
2024-05-10 15:13:35 +08:00
this.selectedModelTag = item.name_0;
2024-05-09 17:17:03 +08:00
//显示备注信息
this.productRemarkList(item.uid_0)
//显示型号
this.productXinghList(item.uid_0)
},
//获取目录
2024-05-10 15:13:35 +08:00
productList() {
2024-05-09 17:17:03 +08:00
productList().then(response => {
this.modelList = response;
});
},
//获取备注信息
2024-05-10 15:13:35 +08:00
productRemarkList(sid) {
this.params = {uid_0: sid}
2024-05-09 17:17:03 +08:00
productRemarkList(this.params).then(response => {
this.remarkList = response;
2024-05-10 15:13:35 +08:00
this.showRemarkList = this.remarkList.length > 0 ? true : false
2024-05-09 17:17:03 +08:00
});
},
//获取型号
2024-05-10 15:13:35 +08:00
productXinghList(sid) {
this.params = {uid_0: sid}
2024-05-09 17:17:03 +08:00
productXinghList(this.params).then(response => {
this.xinghList = response;
2024-05-10 15:13:35 +08:00
this.showXinghList = this.xinghList.length > 0 ? true : false
2024-05-09 17:17:03 +08:00
});
},
//型号选择
2024-05-10 15:13:35 +08:00
selXinghTag(item) {
2024-05-09 17:17:03 +08:00
this.selectedZlTag = '';
this.showZlList = false,
this.ZlList = [],
this.selectedYsxhTag = '';
this.showYsxhList = false,
this.ysxhList = [],
this.selectedJmTag = '';
this.showJmList = false,
this.jmList = [],
this.searchResultCurrentPage = 1,
this.searchResultPageSize = 10,
this.searchResultData = [],
2024-05-14 15:19:02 +08:00
this.selectedXinghUid = item.uid_0
2024-05-09 17:17:03 +08:00
this.selectedXinghTag = item.name_0;
//判断是否为父节点,如果有说明下面还有子类显示,如果没有则直接显示衍生型号
this.judgeparent(item)
},
//判断是否为父节点,如果有说明下面还有子类显示,如果没有则直接显示衍生型号
2024-05-10 15:13:35 +08:00
judgeparent(item) {
this.params = {uid_0: item.uid_0}
2024-05-09 17:17:03 +08:00
judgeparent(this.params).then(response => {
2024-05-10 15:13:35 +08:00
if (response) {//存在子类
2024-05-09 17:17:03 +08:00
this.productZlList(item.uid_0)
2024-05-10 15:13:35 +08:00
} else {//判断是否存在衍生型号
this.productYsxhListCheck(item.uid_0, item.name_0)
2024-05-09 17:17:03 +08:00
}
});
},
//获取子类
2024-05-10 15:13:35 +08:00
productZlList(sid) {
this.params = {uid_0: sid}
2024-05-09 17:17:03 +08:00
productZlList(this.params).then(response => {
this.zlList = response;
2024-05-10 15:13:35 +08:00
this.showZlList = this.zlList.length > 0 ? true : false
2024-05-09 17:17:03 +08:00
});
},
//判断是否存在衍生型号
2024-05-10 15:13:35 +08:00
productYsxhListCheck(sid, name) {
this.params = {uid_0: sid}
2024-05-09 17:17:03 +08:00
productYsxhListCheck(this.params).then(response => {
2024-05-10 15:13:35 +08:00
if (response) {//存在衍生型号
this.productYsxhList(sid, name)
} else {
2024-05-09 17:17:03 +08:00
this.selectedYsxhUid = sid;
this.selectedYsxhTag = name;
//检查是否存在截面
2024-05-10 15:13:35 +08:00
this.productJmListCheck(sid, name)
2024-05-09 17:17:03 +08:00
}
});
},
//获取衍生型号
2024-05-10 15:13:35 +08:00
productYsxhList(sid, name) {
this.params = {uid_0: sid, name_0: name}
2024-05-09 17:17:03 +08:00
productYsxhList(this.params).then(response => {
this.ysxhList = response;
2024-05-10 15:13:35 +08:00
this.showYsxhList = this.ysxhList.length > 0 ? true : false
2024-05-09 17:17:03 +08:00
});
},
//子类选择
2024-05-10 15:13:35 +08:00
selZlTag(item) {
2024-05-09 17:17:03 +08:00
this.selectedYsxhTag = '';
this.showYsxhList = false,
this.ysxhList = [],
this.selectedJmTag = '';
this.showJmList = false,
this.jmList = [],
this.searchResultCurrentPage = 1,
this.searchResultPageSize = 10,
this.searchResultData = [],
this.selectedZlTag = item.name_0;
2024-05-10 15:13:35 +08:00
this.productYsxhListCheck(item.uid_0, item.name_0)
2024-05-09 17:17:03 +08:00
},
//衍生型号选择
2024-05-10 15:13:35 +08:00
selYsxhTag(item) {
2024-05-09 17:17:03 +08:00
this.selectedJmTag = '';
this.selectedYsxhUid = item.uid_0;
this.showJmList = false,
this.jmList = [],
this.searchResultCurrentPage = 1,
this.searchResultPageSize = 10,
this.searchResultData = [],
this.selectedYsxhTag = item.name_0;
2024-05-10 15:13:35 +08:00
this.productJmListCheck(item.uid_0, item.name_0)
2024-05-09 17:17:03 +08:00
},
//判断是否存在截面
2024-05-10 15:13:35 +08:00
productJmListCheck(sid, name) {
this.params = {uid_0: sid}
2024-05-09 17:17:03 +08:00
productJmListCheck(this.params).then(response => {
2024-05-10 15:13:35 +08:00
if (response) {//存在截面
this.productJmList(sid, name)
} else {
2024-05-14 15:19:02 +08:00
this.selectedYsxhTag = this.selectedXinghTag;
this.searchData(this.selectedXinghUid)
2024-05-09 17:17:03 +08:00
}
});
},
//获取截面
2024-05-10 15:13:35 +08:00
productJmList(sid, name) {
this.params = {uid_0: sid, name_0: name}
2024-05-09 17:17:03 +08:00
productJmList(this.params).then(response => {
this.jmList = response;
2024-05-10 15:13:35 +08:00
this.showJmList = this.jmList.length > 0 ? true : false
2024-05-09 17:17:03 +08:00
});
},
//截面选择
2024-05-10 15:13:35 +08:00
selJmTag(item) {
2024-05-09 17:17:03 +08:00
this.selectedJmTag = item.section;
this.searchResultCurrentPage = 1,
2024-05-10 15:13:35 +08:00
this.searchResultPageSize = 10,
this.searchResultData = [],
2024-05-09 17:17:03 +08:00
2024-05-10 15:13:35 +08:00
this.searchResultLoading = true;
this.searchData(this.selectedYsxhUid, item.section)
2024-05-09 17:17:03 +08:00
},
2024-05-14 15:57:19 +08:00
//查询结果数据
2024-05-10 15:13:35 +08:00
searchData(sid, section) {
this.params = {uid_0: sid, section: section, name_0: this.selectedYsxhTag}
2024-05-09 17:17:03 +08:00
searchData(this.params).then(response => {
this.searchResultData = response;
this.searchResultTotal = this.searchResultData.length;
this.searchResultCurrentPage = 1;
this.searchResultLoading = false;
});
},
2024-05-10 15:13:35 +08:00
//双击查询结果事件
handleRowDblclick(row, event, column) {
2024-05-12 14:09:48 +08:00
const uid_0 = row.uid_0;
2024-05-10 15:13:35 +08:00
const name_0 = row.name_0;
2024-05-13 09:03:10 +08:00
const model = row.model;
2024-05-12 11:24:28 +08:00
const spec = row.spec;
2024-05-10 15:13:35 +08:00
const voltage = row.voltage;
2024-05-09 17:17:03 +08:00
const price = row.price;
2024-05-10 15:13:35 +08:00
const stu = row.stu;
2024-05-14 10:31:00 +08:00
const per = this.perc;
const per2 = this.perc2;
2024-05-09 17:17:03 +08:00
const count = '1';
2024-05-14 10:31:00 +08:00
const setPrice = toDecimal(price * (per?per:1) * (per2?per2:1));
2024-05-10 15:13:35 +08:00
const allPrice = toDecimal(count * setPrice);
const rowDate = {
2024-05-12 14:09:48 +08:00
uid_0: uid_0,
2024-05-10 15:13:35 +08:00
name_0: name_0,
2024-05-13 09:03:10 +08:00
name_1: model,
2024-05-12 11:24:28 +08:00
spec: spec,
2024-05-10 15:13:35 +08:00
voltage: voltage,
price: price,
stu: stu,
2024-05-13 09:03:10 +08:00
per: per,
per2: per2,
2024-05-10 15:13:35 +08:00
setPrice: setPrice,
count: count,
allPrice: allPrice
}
this.selectedResultData.push(rowDate)
2024-05-12 11:24:28 +08:00
//自动跳转当前页
/*this.selectedResultTotal = this.selectedResultData.length;
2024-05-10 15:13:35 +08:00
const page = Math.ceil(this.selectedResultTotal / this.selectedResultPageSize);
2024-05-12 11:24:28 +08:00
this.handleSelectedResultCurrentChange(page)*/
this.$nextTick(() => {
this.$refs.selectedResultTable.bodyWrapper.scrollTop = this.$refs.selectedResultTable.bodyWrapper.scrollHeight;
})
},
/** 已选结果数据序号 */
selectedResultIndex({ row, rowIndex }) {
row.index = rowIndex + 1;
2024-05-09 17:17:03 +08:00
},
2024-05-10 15:13:35 +08:00
//删除已选结果数据
handleDeleteClick(index) {
2024-05-09 17:17:03 +08:00
this.selectedResultData.splice(index, 1)
2024-05-10 15:13:35 +08:00
this.selectedResultTotal = this.selectedResultData.length;
2024-05-09 17:17:03 +08:00
},
2024-05-10 15:13:35 +08:00
/** 切换每页显示条数--查询结果 */
2024-05-09 17:17:03 +08:00
handleSearchResultSizeChange(val) {
2024-05-10 15:13:35 +08:00
this.searchResultPageSize = val;
this.searchResultCurrentPage = 1;
2024-05-09 17:17:03 +08:00
},
2024-05-10 15:13:35 +08:00
/** 页码选择--查询结果 */
2024-05-09 17:17:03 +08:00
handleSearchResultCurrentChange(val) {
2024-05-10 15:13:35 +08:00
this.searchResultCurrentPage = val;
},
/** 切换每页显示条数--已选择结果 */
2024-05-12 11:24:28 +08:00
/*handleSelectedResultSizeChange(val) {
2024-05-10 15:13:35 +08:00
this.selectedResultPageSize = val;
this.selectedResultCurrentPage = 1;
2024-05-12 11:24:28 +08:00
},*/
2024-05-10 15:13:35 +08:00
/** 页码选择--已选择结果 */
2024-05-12 11:24:28 +08:00
/*handleSelectedResultCurrentChange(val) {
2024-05-10 15:13:35 +08:00
this.selectedResultCurrentPage = val;
2024-05-12 11:24:28 +08:00
},*/
2024-05-10 15:13:35 +08:00
//手动查询产品
handleSearchClick() {
if (this.queryParams.name_0 || this.queryParams.model) {
this.searchResultCurrentPage = 1,
this.searchResultPageSize = 10,
this.searchResultData = [],
this.searchResultLoading = true;
handleSearchData(this.queryParams).then(response => {
this.searchResultData = response;
this.searchResultTotal = this.searchResultData.length;
this.searchResultCurrentPage = 1;
this.searchResultLoading = false;
});
} else {
this.$message.warning("请输入查询条件!");
return;
}
},
//一次折扣率变化时触发
changeData() {
2024-05-12 11:24:28 +08:00
// 校验折扣率格式
const pattern = /^\d+(\.\d+)?$/;
if(this.perc) {
if (!pattern.test(this.perc)) {
this.$message.warning("折扣率格式错误!");
return;
}
}
if(this.perc2) {
if (!pattern.test(this.perc2)) {
this.$message.warning("折扣率格式错误!");
return;
}
}
2024-05-10 15:13:35 +08:00
// 遍历表格数据进行计算
this.selectedResultData.forEach((row, index) => {
// 进行其他计算
this.$set(this.selectedResultData, index, {
...row,
2024-05-13 09:03:10 +08:00
per: this.perc,
per2: this.perc2,
2024-05-12 11:24:28 +08:00
setPrice: toDecimal(row.price * (this.perc?this.perc:1) * (this.perc2?this.perc2:1)),
allPrice: toDecimal(row.count * row.price * (this.perc?this.perc:1) * (this.perc2?this.perc2:1)),
2024-05-10 15:13:35 +08:00
});
})
},
// 行内数据监听
changeRowData() {
// 遍历表格数据进行计算
this.selectedResultData.forEach((row, index) => {
// 进行其他计算
this.$set(this.selectedResultData, index, {
...row,
2024-05-13 09:03:10 +08:00
setPrice: toDecimal(row.price * (row.per?row.per:1) * (row.per2?row.per2:1)),
allPrice: toDecimal(row.count * row.price * (row.per?row.per:1) * (row.per2?row.per2:1)),
2024-05-10 15:13:35 +08:00
});
})
2024-05-09 17:17:03 +08:00
},
2024-05-12 11:24:28 +08:00
2024-05-14 15:19:02 +08:00
// 报价单保存修改
2024-05-12 11:24:28 +08:00
handleSaveClick() {
2024-05-13 16:03:01 +08:00
const allPrice = this.selectedResultData.reduce((sum, row) => sum + parseFloat(row.allPrice), 0);
this.form.totalPrice = allPrice.toFixed(2);
2024-05-13 13:43:01 +08:00
this.form.selectedResultData = this.selectedResultData;
saveQuot(this.form).then(response => {
this.$modal.msgSuccess("保存报价单成功,单号:"+response.data.quotCode);
})
2024-05-12 11:24:28 +08:00
},
// 报价单生成
handleMadeQuotClick() {
this.form.selectedResultData = this.selectedResultData;
madeQuot(this.form).then(response => {
this.$modal.msgSuccess("生成报价单成功");
2024-05-13 09:03:10 +08:00
// 处理返回的文件流
const content = response;
const blob = new Blob([content]);
const fileName = "BJD_"+this.getTodayCourse()+".xls";
if ("download" in document.createElement("a")) {
// 非IE下载
const elink = document.createElement("a");
elink.download = fileName;
elink.style.display = "none";
elink.href = URL.createObjectURL(blob);
document.body.appendChild(elink);
elink.click();
URL.revokeObjectURL(elink.href); // 释放URL 对象
document.body.removeChild(elink);
}
else {
// IE10+下载
navigator.msSaveBlob(blob, fileName);
}
2024-05-12 11:24:28 +08:00
});
},
2024-05-12 14:09:48 +08:00
//获取调价日期
getVersionList(){
versionList(this.queryParams).then(response => {
this.versionList = response.versionList;
2024-05-14 10:31:00 +08:00
this.form.rbDateUid = this.versionList[0].value
2024-05-12 14:09:48 +08:00
});
},
//选择调价日期
selectRbDate(uid){
this.selectedResultData.forEach((row, index) => {
this.$set(this.selectedResultData, index, {
...row,
uid_0: uid // 重新设置为所选版本uid
});
});
this.selectedResultLoading = true;
2024-05-13 09:03:10 +08:00
//更新已选结果数据-单价、金额
2024-05-12 14:09:48 +08:00
updateSelectedResultData(this.selectedResultData).then(response => {
for (let i = 0; i < this.selectedResultData.length; i++) {
for (let j = 0; j < response.data.length; j++) {
// 检查型号、规格、电压等级是否相等
if (
this.selectedResultData[i].name_0 === response.data[j].name_0 &&
this.selectedResultData[i].spec === response.data[j].spec &&
this.selectedResultData[i].voltage === response.data[j].voltage
) {
this.selectedResultData[i].price = response.data[j].setPrice;
2024-05-13 09:03:10 +08:00
const setPrice = toDecimal(this.selectedResultData[i].price * (this.selectedResultData[i].per?this.selectedResultData[i].per:1) * (this.selectedResultData[i].per2?this.selectedResultData[i].per2:1));
const allPrice = toDecimal(this.selectedResultData[i].count * this.selectedResultData[i].price * (this.selectedResultData[i].per?this.selectedResultData[i].per:1) * (this.selectedResultData[i].per2?this.selectedResultData[i].per2:1));
2024-05-12 14:09:48 +08:00
this.selectedResultData[i].setPrice = setPrice;
this.selectedResultData[i].allPrice = allPrice;
}
}
}
this.selectedResultLoading = false;
});
2024-05-13 09:03:10 +08:00
},
// 获取当前时间
getTodayCourse(){
const myDate = new Date();
//获取当前年
const year = myDate.getFullYear();
//获取当前月
const month = myDate.getMonth() + 1;
//获取当前日
const date = myDate.getDate();
const h = myDate.getHours(); //获取当前小时数(0-23)
const m = myDate.getMinutes(); //获取当前分钟数(0-59)
const s = myDate.getSeconds();
return year + '-' + this.p(month) + "-" + this.p(date) + " " + this.p(h) + ':' + this.p(m) + ":" + this.p(s)
},
p(s) {
return s < 10 ? '0' + s : s;
2024-05-14 15:19:02 +08:00
}
2024-05-09 17:17:03 +08:00
},
2024-05-13 09:03:10 +08:00
2024-05-09 17:17:03 +08:00
updated(){
// 监听数据变化时,滚动条保持在底部
let div = document.getElementById("scroll")
div.scrollTop = div.scrollHeight
},
computed: {
// 计算出当前页的查询结果数据列表
searchResultPagedData() {
const startIndex = (this.searchResultCurrentPage - 1) * this.searchResultPageSize;
const endIndex = startIndex + this.searchResultPageSize;
return this.searchResultData.slice(startIndex, endIndex);
},
2024-05-12 11:24:28 +08:00
// 计算出当前页的已选择结果数据列表
/*selectedResultPagedData() {
2024-05-10 15:13:35 +08:00
console.log(this.selectedResultData)
const startIndex = (this.selectedResultCurrentPage - 1) * this.selectedResultPageSize;
const endIndex = startIndex + this.selectedResultPageSize;
return this.selectedResultData.slice(startIndex, endIndex);
2024-05-12 11:24:28 +08:00
},*/
2024-05-10 15:13:35 +08:00
2024-05-12 11:24:28 +08:00
// 已选择结果数据汇总
sumSelectedResultData() {
const allPrice = this.selectedResultData.reduce((sum, row) => sum + parseFloat(row.allPrice), 0);
return allPrice.toFixed(2);
},
2024-05-09 17:17:03 +08:00
},
}
</script>
<style scoped>
</style>