352 lines
14 KiB
Vue
352 lines
14 KiB
Vue
<template>
|
|
<div style="padding: 10px;background: #E5EBF6;min-height: 830px;">
|
|
<div style="background: #FFF;padding: 10px;border-radius: 10px;margin-bottom: 20px;">
|
|
<el-descriptions style="margin-bottom: 20px;" title="基本信息" :column="4" size="medium" border>
|
|
<el-descriptions-item>
|
|
<template slot="label">合同编号</template>
|
|
{{baseInfo.contractCode}}
|
|
</el-descriptions-item>
|
|
<el-descriptions-item>
|
|
<template slot="label">合同标题</template>
|
|
{{ baseInfo.contractTitle }}
|
|
</el-descriptions-item>
|
|
<el-descriptions-item>
|
|
<template slot="label">所属区域</template>
|
|
{{ baseInfo.areaName }}
|
|
</el-descriptions-item>
|
|
<el-descriptions-item>
|
|
<template slot="label">供应商</template>
|
|
{{ baseInfo.supplierName }}
|
|
</el-descriptions-item>
|
|
<el-descriptions-item>
|
|
<template slot="label">配送食堂</template>
|
|
{{ baseInfo.canteenName }}
|
|
</el-descriptions-item>
|
|
<el-descriptions-item>
|
|
<template slot="label">签订日期</template>
|
|
{{ baseInfo.contractSigningTime }}
|
|
</el-descriptions-item>
|
|
<el-descriptions-item>
|
|
<template slot="label">合同生效周期</template>
|
|
{{ baseInfo.contractStartTime }} - {{ baseInfo.contractEndTime }}
|
|
</el-descriptions-item>
|
|
<el-descriptions-item>
|
|
<template slot="label">合同状态</template>
|
|
{{ baseInfo.deptName }}
|
|
<el-tag size="small" v-if="baseInfo.contractStatus==1">待生效</el-tag>
|
|
<el-tag size="small" v-if="baseInfo.contractStatus==2">履行中</el-tag>
|
|
<el-tag size="small" v-if="baseInfo.contractStatus==3">已失效</el-tag>
|
|
<el-tag size="small" v-if="baseInfo.contractStatus==4">已终止</el-tag>
|
|
</el-descriptions-item>
|
|
<el-descriptions-item>
|
|
<template slot="label">合同附件</template>
|
|
<div v-for="(item,index) in baseInfo.contractAttachmentList" :key="index">
|
|
<a :href="item" download="demo">{{ item }}</a>
|
|
</div>
|
|
</el-descriptions-item>
|
|
</el-descriptions>
|
|
|
|
<el-descriptions style="margin-bottom: 20px;" title="付款信息" :column="4" size="medium" border>
|
|
<el-descriptions-item>
|
|
<template slot="label">付款方式</template>
|
|
<span v-if="baseInfo.payMoneyStyle==1">一次性付款</span>
|
|
<span v-if="baseInfo.payMoneyStyle==2">分期付款</span>
|
|
</el-descriptions-item>
|
|
<el-descriptions-item>
|
|
<template slot="label">付款日期</template>
|
|
{{ baseInfo.payMoneyDate }}
|
|
</el-descriptions-item>
|
|
<el-descriptions-item>
|
|
<template slot="label">收款银行</template>
|
|
{{ baseInfo.collectMoneyBank }}
|
|
</el-descriptions-item>
|
|
<el-descriptions-item>
|
|
<template slot="label">收款账户名称</template>
|
|
{{ baseInfo.collectMoneyAccountName }}
|
|
</el-descriptions-item>
|
|
<el-descriptions-item>
|
|
<template slot="label">备注</template>
|
|
{{ baseInfo.remark }}
|
|
</el-descriptions-item>
|
|
</el-descriptions>
|
|
</div>
|
|
|
|
<div style="width: 100%;height: 450px;padding: 10px;border-radius: 10px;margin-bottom: 10px;background: #FFF;">
|
|
<div style="width: 100%;display: flex;justify-content: space-between;align-items: center;margin-bottom: 10px;">
|
|
<div>
|
|
货品信息
|
|
</div>
|
|
</div>
|
|
<div style="width: 100%;height: 400px;overflow-y: auto;">
|
|
<el-table v-loading="loading" :data="contractMaterialList" ref="multipleTable" height="380" :row-key="(row)=>{return row.materialId}" @selection-change="handleSelectionChange">
|
|
<!-- <el-table-column type="selection" width="50" align="center" :reserve-selection="true" /> -->
|
|
<el-table-column label="序号" align="center" width="80" type="index" />
|
|
<!-- <el-table-column label="图片" align="center" prop="" :show-overflow-tooltip="true" /> -->
|
|
<el-table-column label="货品编码" align="center" prop="materialCode" :show-overflow-tooltip="true" />
|
|
<el-table-column label="货品名称" align="center" prop="materialName" :show-overflow-tooltip="true" />
|
|
<el-table-column label="货品类别" align="center" prop="materialTypeName" :show-overflow-tooltip="true" />
|
|
<el-table-column label="计量单位" align="center" prop="unitName" :show-overflow-tooltip="true" />
|
|
<el-table-column label="货品规格" align="center" prop="size" :show-overflow-tooltip="true">
|
|
<!-- <template slot-scope="scope">
|
|
<span v-if="scope.row.salesMode==1">按份</span>
|
|
<span v-if="scope.row.salesMode==2">称重</span>
|
|
</template> -->
|
|
</el-table-column>
|
|
<el-table-column label="单价(元)" align="center" prop="singlePrice" :show-overflow-tooltip="true">
|
|
<template slot-scope="scope">
|
|
<span>{{ (scope.row.singlePrice/100).toFixed(2) }}</span>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="数量" align="center" prop="orderNum" :show-overflow-tooltip="true"></el-table-column>
|
|
<el-table-column label="总金额(元)" align="center" prop="" :show-overflow-tooltip="true">
|
|
<template slot-scope="scope">
|
|
<span>{{ (scope.row.orderNum*scope.row.singlePrice/100).toFixed(2) }}</span>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="备注" align="center" prop="remark" :show-overflow-tooltip="true"></el-table-column>
|
|
</el-table>
|
|
</div>
|
|
</div>
|
|
<div style="width: 100%;height: 80px;padding: 10px;background: #FFF;border-radius: 10px;display: flex;align-items: center;justify-content: center;">
|
|
<!-- <el-button type="primary" @click="confirmSave" :loading="loadingBtn">保存草稿</el-button> -->
|
|
<el-button @click="jumpList">返回</el-button>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { systemAreaTreeApi,getCanteenByAreaApi,getStallByCanteenApi } from "@/api/base/stall";
|
|
import { systemMaterialTreeApi,getMaterialListApi,supplierPageApi } from "@/api/foodManage/purchaseManage";
|
|
import { getPurchaseContractInfoApi,addPurchaseContractApi,editPurchaseContractApi,delPurchaseContractApi } from "@/api/foodManage/purchaseManage";
|
|
export default {
|
|
name: "ContractDetail",
|
|
dicts: [],
|
|
data() {
|
|
return {
|
|
contractRowData:{},//页面传参
|
|
loading:false,
|
|
loadingBtn:false,
|
|
baseInfo: {
|
|
contractTitle:undefined,
|
|
contractType:undefined,
|
|
areaId:undefined,
|
|
canteenId:undefined,
|
|
dateRange:[],
|
|
},
|
|
// 表单校验
|
|
baseRules: {
|
|
contractTitle: [
|
|
{ required: true, message: "菜谱名称不能为空", trigger: "blur" }
|
|
],
|
|
areaId: [
|
|
{ required: true, message: "所属区域不能为空", trigger: "change" }
|
|
],
|
|
canteenId: [
|
|
{ required: true, message: "所属食堂不能为空", trigger: "change" }
|
|
],
|
|
supplierId: [
|
|
{ required: true, message: "供应商不能为空", trigger: "change" }
|
|
],
|
|
contractSigningTime: [
|
|
{ required: true, message: "签订日期不能为空", trigger: "change" }
|
|
],
|
|
dateRange: [
|
|
{ required: true, message: "合同生效周期不能为空", trigger: "change" }
|
|
]
|
|
},
|
|
treeAreaOptions:[],
|
|
canteenOptions:[],
|
|
supplierOptions:[],
|
|
stallOptions:[],
|
|
|
|
pickerOptions: {
|
|
disabledDate(v) {
|
|
return v.getTime() < (new Date().getTime() - 86400000);// - 86400000是否包括当天
|
|
}
|
|
},
|
|
contractMaterialList:[],
|
|
openDialog:false,
|
|
materialTreeOptions:[],
|
|
// 查询参数
|
|
queryParams: {
|
|
pageNum: 1,
|
|
pageSize: 10,
|
|
},
|
|
// 总条数
|
|
total: 0,
|
|
//表格数据
|
|
tableListData: [],
|
|
batchChosenMaterial:[],
|
|
noMaterial:false,
|
|
};
|
|
},
|
|
created() {
|
|
if(this.$route.query.contractRowData){
|
|
this.contractRowData = JSON.parse(this.$route.query.contractRowData)
|
|
this.getContractInfo()
|
|
}
|
|
},
|
|
watch:{
|
|
'$route.query.contractRowData':function(newId, oldId) {
|
|
if(newId){
|
|
this.contractRowData = JSON.parse(newId)
|
|
this.getContractInfo()
|
|
}else{
|
|
this.baseInfo={}
|
|
this.materialList=[]
|
|
}
|
|
},
|
|
},
|
|
methods: {
|
|
// 返回列表页
|
|
jumpList() {
|
|
const obj = { path: "foodManage/purchaseManage/contractDetail" };
|
|
this.$tab.closeOpenPage(obj);
|
|
this.$router.replace({ path: "/foodManage/purchaseManage/contractList" }); // 要打开的页面
|
|
},
|
|
getContractInfo(){
|
|
console.log(this.contractRowData)
|
|
let param = {
|
|
contractId:this.contractRowData.contractId
|
|
}
|
|
//查询查询食堂下拉结构
|
|
getPurchaseContractInfoApi(param).then((response) => {
|
|
this.baseInfo = response.data;
|
|
this.$set(this.baseInfo,'dateRange',[this.baseInfo.contractStartTime,this.baseInfo.contractEndTime])
|
|
this.contractMaterialList = this.baseInfo.purchaseContractDetailList;
|
|
this.$set(this.baseInfo,"contractAmount",this.baseInfo.contractAmount/100)
|
|
getCanteenByAreaApi({areaId:this.baseInfo.areaId}).then((response) => {
|
|
this.canteenOptions=response.rows||[];
|
|
this.$set(this.baseInfo,"canteenId",this.baseInfo.canteenId)
|
|
});
|
|
supplierPageApi({ isPaging:1,areaIdList:[this.baseInfo.areaId] }).then((response) => {
|
|
this.supplierOptions = response.rows||[];
|
|
this.$set(this.baseInfo,'supplierId',this.baseInfo.supplierId)
|
|
});
|
|
});
|
|
},
|
|
// 多选框选中数据
|
|
handleSelectionChange(selection) {
|
|
// this.batchIds1 = selection.map(item => item.tradeId)
|
|
// this.single = selection.length !== 1
|
|
// this.multiple = !selection.length
|
|
},
|
|
|
|
//日期
|
|
formatDate(date) {
|
|
// 格式化为 YYYY-MM-DD
|
|
date = new Date(date)
|
|
const year = date.getFullYear();
|
|
const month = String(date.getMonth() + 1).padStart(2, '0'); // 月份从0开始
|
|
const day = String(date.getDate()).padStart(2, '0');
|
|
return `${year}-${month}-${day}`;
|
|
},
|
|
//日期时间
|
|
formatDateTime(date) {
|
|
// 格式化为 YYYY-MM-DD
|
|
date = new Date(date)
|
|
const year = date.getFullYear();
|
|
const month = String(date.getMonth() + 1).padStart(2, '0'); // 月份从0开始
|
|
const day = String(date.getDate()).padStart(2, '0');
|
|
const hours = date.getHours() < 10 ? '0' + date.getHours() : date.getHours()
|
|
const minutes = date.getMinutes() < 10 ? '0' + date.getMinutes() : date.getMinutes()
|
|
const seconds = date.getSeconds() < 10 ? '0' + date.getSeconds() : date.getSeconds()
|
|
return `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`;
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
<style scoped>
|
|
.dishes-card{
|
|
width: 20%;
|
|
height: 100%;
|
|
margin-right: 15px;
|
|
position: relative;
|
|
}
|
|
.body-card{
|
|
width: 96%;
|
|
margin: 10px auto;
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 300px;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.bottom-card{
|
|
width: 100%;
|
|
height: 60px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
position: absolute;
|
|
bottom: 0;
|
|
}
|
|
|
|
|
|
.dialog-left{
|
|
width: 20%;
|
|
height: 100%;
|
|
}
|
|
.dish-name{
|
|
width: 100%;
|
|
height: 32px;
|
|
display: flex;
|
|
align-items: center;
|
|
cursor: pointer;
|
|
}
|
|
.dish-name:hover{
|
|
background-color:rgba(0, 0, 0, 0.1);
|
|
color: #4b80fd;
|
|
}
|
|
|
|
.dialog-center{
|
|
width: 10%;
|
|
height: 100%;
|
|
/* background: #4b80fd; */
|
|
border: 1px solid #ccc;
|
|
border-radius: 5px;
|
|
margin: 0 1%;
|
|
}
|
|
.dialog-center-header{
|
|
width: 100%;display: flex;align-items: center;justify-content: center;height: 60px;font-weight: bold;border-bottom: 1px solid #ccc;
|
|
}
|
|
.dialog-right{
|
|
width: 70%;
|
|
height: 100%;
|
|
}
|
|
.primary{
|
|
background: #1890ff!important;
|
|
color: #fff!important;
|
|
}
|
|
.dateTable{
|
|
width: 14%;
|
|
height: 40px;
|
|
color: #9a9da3;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border: 1px solid #e6ebf5;
|
|
}
|
|
.dateTable2{
|
|
width: 14%;
|
|
height: 40px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: #fff;
|
|
color:#000;
|
|
border: 1px solid #e6ebf5;
|
|
cursor: pointer;
|
|
}
|
|
.bgBlue{
|
|
width: 14%;
|
|
height: 40px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: #0c6ccc;
|
|
color:#fff !important;
|
|
border: 1px solid #fff;
|
|
cursor: pointer;
|
|
}
|
|
</style> |