2025-06-30 14:22:09 +08:00
|
|
|
|
<template>
|
|
|
|
|
|
<div style="padding: 10px;background: #E5EBF6;min-height: 830px;">
|
|
|
|
|
|
<div style="background: #FFF;padding: 10px;border-radius: 10px;margin-bottom: 20px;">
|
|
|
|
|
|
<el-form :model="baseInfo" ref="baseInfo" :rules="baseRules" size="medium" :inline="true" label-width="110px">
|
2025-07-01 18:14:48 +08:00
|
|
|
|
<el-form-item label="合同编号" prop="contractCode">
|
|
|
|
|
|
<el-input v-model="baseInfo.contractCode" placeholder="合同编号自动生成" disabled maxlength="20" clearable style="width: 240px"/>
|
2025-06-30 14:22:09 +08:00
|
|
|
|
</el-form-item>
|
2025-07-01 18:14:48 +08:00
|
|
|
|
<el-form-item label="合同标题" prop="contractTitle">
|
|
|
|
|
|
<el-input v-model="baseInfo.contractTitle" placeholder="请输入合同标题" maxlength="20" clearable style="width: 240px"/>
|
2025-06-30 14:22:09 +08:00
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="所属区域" prop="areaId">
|
|
|
|
|
|
<el-cascader v-model="baseInfo.areaId"
|
|
|
|
|
|
:options="treeAreaOptions" :filterable="true" style="width: 240px" :show-all-levels="false"
|
|
|
|
|
|
:props="{
|
|
|
|
|
|
emitPath: false,// 若设置 false,则只返回该节点的值,只返回最后选择的id
|
|
|
|
|
|
checkStrictly: false,//来设置父子节点取消选中关联,从而达到选择任意一级选项的目的
|
|
|
|
|
|
value:'id',label:'label'
|
|
|
|
|
|
}" @change="handleAreaChange">
|
|
|
|
|
|
</el-cascader>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="所属食堂" prop="canteenId">
|
|
|
|
|
|
<el-select v-model="baseInfo.canteenId" placeholder="请选择所属食堂" style="width: 240px;">
|
|
|
|
|
|
<el-option v-for="item in canteenOptions"
|
|
|
|
|
|
:key="item.canteenId"
|
|
|
|
|
|
:label="item.canteenName"
|
|
|
|
|
|
:value="item.canteenId"
|
|
|
|
|
|
></el-option>
|
|
|
|
|
|
</el-select>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="供应商" prop="supplierId">
|
|
|
|
|
|
<el-select v-model="baseInfo.supplierId" placeholder="请选择供应商" style="width: 240px;">
|
|
|
|
|
|
<el-option v-for="item in supplierOptions"
|
|
|
|
|
|
:key="item.supplierId"
|
|
|
|
|
|
:label="item.supplierName"
|
|
|
|
|
|
:value="item.supplierId"
|
|
|
|
|
|
></el-option>
|
|
|
|
|
|
</el-select>
|
|
|
|
|
|
</el-form-item>
|
2025-07-01 18:14:48 +08:00
|
|
|
|
<el-form-item label="签订日期" prop="contractSigningTime">
|
2025-06-30 14:22:09 +08:00
|
|
|
|
<el-date-picker
|
2025-07-01 18:14:48 +08:00
|
|
|
|
v-model="baseInfo.contractSigningTime"
|
|
|
|
|
|
type="date" align="right"
|
|
|
|
|
|
format="yyyy-MM-dd" style="width: 240px;"
|
|
|
|
|
|
:picker-options="pickerOptions" @change="baseInfo.contractSigningTime=formatDate(baseInfo.contractSigningTime)">
|
|
|
|
|
|
</el-date-picker>
|
2025-06-30 14:22:09 +08:00
|
|
|
|
</el-form-item>
|
2025-07-01 18:14:48 +08:00
|
|
|
|
<el-form-item label="合同生效周期" prop="dateRange">
|
2025-06-30 14:22:09 +08:00
|
|
|
|
<el-date-picker
|
2025-07-01 18:14:48 +08:00
|
|
|
|
v-model="baseInfo.dateRange"
|
2025-06-30 14:22:09 +08:00
|
|
|
|
type="datetimerange"
|
|
|
|
|
|
align="right"
|
|
|
|
|
|
unlink-panels
|
|
|
|
|
|
range-separator="至"
|
|
|
|
|
|
start-placeholder="开始日期"
|
|
|
|
|
|
end-placeholder="结束日期"
|
|
|
|
|
|
format="yyyy-MM-dd HH:mm:ss" style="width: 400px"
|
|
|
|
|
|
:default-time="['00:00:00', '23:59:59']"
|
|
|
|
|
|
:picker-options="pickerOptions" >
|
|
|
|
|
|
</el-date-picker>
|
|
|
|
|
|
</el-form-item>
|
2025-07-01 18:14:48 +08:00
|
|
|
|
<el-form-item label="付款方式" prop="payMoneyStyle">
|
|
|
|
|
|
<el-radio-group v-model="baseInfo.payMoneyStyle" >
|
|
|
|
|
|
<el-radio label="1" style="font-size: 14px;">一次性付款</el-radio>
|
|
|
|
|
|
<el-radio label="2" style="font-size: 14px;">分期付款</el-radio>
|
2025-06-30 14:22:09 +08:00
|
|
|
|
</el-radio-group>
|
|
|
|
|
|
</el-form-item>
|
2025-07-01 18:14:48 +08:00
|
|
|
|
<el-form-item label="付款日期" prop="payMoneyDate">
|
2025-06-30 14:22:09 +08:00
|
|
|
|
<el-date-picker
|
2025-07-01 18:14:48 +08:00
|
|
|
|
v-model="baseInfo.payMoneyDate"
|
2025-06-30 14:22:09 +08:00
|
|
|
|
type="date" align="right"
|
|
|
|
|
|
format="yyyy-MM-dd" style="width: 240px;"
|
2025-07-01 18:14:48 +08:00
|
|
|
|
:picker-options="pickerOptions" @change="baseInfo.payMoneyDate=formatDate(baseInfo.payMoneyDate)">
|
2025-06-30 14:22:09 +08:00
|
|
|
|
</el-date-picker>
|
|
|
|
|
|
</el-form-item>
|
2025-07-01 18:14:48 +08:00
|
|
|
|
<el-form-item label="收款银行" prop="collectMoneyBank">
|
|
|
|
|
|
<el-input v-model="baseInfo.collectMoneyBank" placeholder="请输入收款银行" maxlength="20" clearable style="width: 240px"/>
|
2025-06-30 14:22:09 +08:00
|
|
|
|
</el-form-item>
|
2025-07-01 18:14:48 +08:00
|
|
|
|
<el-form-item label="收款账户名称" prop="collectMoneyAccountName">
|
|
|
|
|
|
<el-input v-model="baseInfo.collectMoneyAccountName" placeholder="请输入收款账户名称" maxlength="20" clearable style="width: 240px"/>
|
2025-06-30 14:22:09 +08:00
|
|
|
|
</el-form-item>
|
2025-07-01 18:14:48 +08:00
|
|
|
|
<el-form-item label="收款账号" prop="collectMoneyAccount">
|
|
|
|
|
|
<el-input v-model="baseInfo.collectMoneyAccount" placeholder="请输入收款账号" maxlength="20" clearable style="width: 240px"/>
|
2025-06-30 14:22:09 +08:00
|
|
|
|
</el-form-item>
|
2025-07-01 18:14:48 +08:00
|
|
|
|
<el-form-item label="备注" prop="remark">
|
|
|
|
|
|
<el-input v-model="baseInfo.remark" placeholder="请输入备注" maxlength="30" clearable style="width: 240px"/>
|
2025-06-30 14:22:09 +08:00
|
|
|
|
</el-form-item>
|
2025-07-01 18:14:48 +08:00
|
|
|
|
<el-form-item label="负责人" prop="contractPerson">
|
|
|
|
|
|
<el-input v-model="baseInfo.contractPerson" placeholder="请输入负责人" maxlength="20" clearable style="width: 240px"/>
|
2025-06-30 14:22:09 +08:00
|
|
|
|
</el-form-item>
|
2025-07-01 18:14:48 +08:00
|
|
|
|
<el-form-item label="合同总金额" prop="contractAmount">
|
|
|
|
|
|
<el-input v-model="baseInfo.contractAmount" placeholder="请输入合同总金额" maxlength="20" clearable style="width: 240px" @input="(v)=>(baseInfo.contractAmount=v.replace(/[^\d.]/g,''))"/>
|
2025-07-02 16:43:34 +08:00
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="合同附件" prop="contractAttachmentList">
|
|
|
|
|
|
<el-upload
|
|
|
|
|
|
ref="upload"
|
|
|
|
|
|
:http-request="fileUpLoad"
|
|
|
|
|
|
action="#" :limit="5"
|
|
|
|
|
|
accept=".xlsx, .xls, .png, .jpg, .jpeg, .docx, .doc"
|
|
|
|
|
|
:show-file-list="true"
|
|
|
|
|
|
:file-list="attachmentList"
|
|
|
|
|
|
:on-remove="handleRemoveFile"
|
|
|
|
|
|
>
|
|
|
|
|
|
<el-button
|
|
|
|
|
|
:disabled="attachmentList.length==5"
|
|
|
|
|
|
type="primary"
|
|
|
|
|
|
size="mini"
|
|
|
|
|
|
>上传附件
|
|
|
|
|
|
</el-button>
|
|
|
|
|
|
</el-upload>
|
|
|
|
|
|
</el-form-item>
|
2025-06-30 14:22:09 +08:00
|
|
|
|
</el-form>
|
|
|
|
|
|
</div>
|
2025-06-30 18:16:08 +08:00
|
|
|
|
<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 style="display: flex;align-items: center;">
|
|
|
|
|
|
<el-button type="primary" plain @click="addMaterial">添加货品</el-button>
|
2025-07-02 10:48:56 +08:00
|
|
|
|
<el-button type="danger" plain @click="delMaterial">删除</el-button>
|
2025-06-30 18:16:08 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div style="width: 100%;height: 400px;overflow-y: auto;">
|
2025-07-01 18:14:48 +08:00
|
|
|
|
<el-table v-loading="loading" :data="contractMaterialList" ref="multipleTable" height="380" :row-key="(row)=>{return row.materialId}" @selection-change="handleSelectionChange">
|
2025-06-30 18:16:08 +08:00
|
|
|
|
<el-table-column type="selection" width="50" align="center" :reserve-selection="true" />
|
|
|
|
|
|
<el-table-column label="序号" align="center" width="80" type="index" />
|
2025-07-01 11:25:10 +08:00
|
|
|
|
<!-- <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" />
|
2025-07-02 10:33:42 +08:00
|
|
|
|
<el-table-column label="货品规格" align="center" prop="size" :show-overflow-tooltip="true">
|
|
|
|
|
|
<!-- <template slot-scope="scope">
|
2025-07-01 11:25:10 +08:00
|
|
|
|
<span v-if="scope.row.salesMode==1">按份</span>
|
|
|
|
|
|
<span v-if="scope.row.salesMode==2">称重</span>
|
2025-07-02 10:33:42 +08:00
|
|
|
|
</template> -->
|
2025-07-01 11:25:10 +08:00
|
|
|
|
</el-table-column>
|
2025-07-01 18:14:48 +08:00
|
|
|
|
<el-table-column label="单价(元)" align="center" prop="singlePrice" :show-overflow-tooltip="true">
|
2025-07-01 11:25:10 +08:00
|
|
|
|
<template slot-scope="scope">
|
2025-07-01 18:14:48 +08:00
|
|
|
|
<el-input v-model="scope.row.singlePrice" placeholder="请输入" maxlength="10" clearable @input="(v)=>(scope.row.singlePrice=v.replace(/[^\d.]/g,''))"/>
|
2025-07-01 11:25:10 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
2025-07-01 18:14:48 +08:00
|
|
|
|
<el-table-column label="数量" align="center" prop="orderNum" :show-overflow-tooltip="true">
|
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
<el-input v-model.number="scope.row.orderNum" placeholder="请输入" maxlength="10" clearable @input="(v)=>(scope.row.orderNum=v.replace(/[^\d]/g,''))"/>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</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 }}</span>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
<el-table-column label="备注" align="center" prop="remark" :show-overflow-tooltip="true">
|
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
<el-input v-model="scope.row.remark" placeholder="请输入" maxlength="20" clearable/>
|
|
|
|
|
|
</template>
|
2025-07-02 16:43:34 +08:00
|
|
|
|
</el-table-column>
|
2025-06-30 18:16:08 +08:00
|
|
|
|
</el-table>
|
|
|
|
|
|
</div>
|
2025-06-30 14:22:09 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
<div style="width: 100%;height: 80px;padding: 10px;background: #FFF;border-radius: 10px;display: flex;align-items: center;justify-content: center;">
|
2025-07-02 10:48:56 +08:00
|
|
|
|
<el-button type="primary" plain @click="confirmSave" :loading="loadingBtn">保存草稿</el-button>
|
|
|
|
|
|
<el-button type="success" plain @click="confirmSubmit" :loading="loadingBtn">提交</el-button>
|
|
|
|
|
|
<el-button @click="jumpList">返回</el-button>
|
2025-06-30 14:22:09 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 选择菜品 -->
|
2025-06-30 18:16:08 +08:00
|
|
|
|
<el-dialog title="选择货品" :visible.sync="openDialog" width="65%" append-to-body >
|
|
|
|
|
|
<div style="width: 100%;height:620px;">
|
|
|
|
|
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" label-width="68px">
|
2025-07-01 11:25:10 +08:00
|
|
|
|
<el-form-item label="货品类别" prop="materialTypeIds">
|
|
|
|
|
|
<el-cascader v-model="queryParams.materialTypeIds"
|
|
|
|
|
|
:options="materialTreeOptions" :filterable="true" style="width: 240px" :show-all-levels="false"
|
|
|
|
|
|
:props="{
|
|
|
|
|
|
multiple: true,
|
|
|
|
|
|
emitPath: false,// 若设置 false,则只返回该节点的值,只返回最后选择的id
|
|
|
|
|
|
checkStrictly: false,//来设置父子节点取消选中关联,从而达到选择任意一级选项的目的
|
|
|
|
|
|
value:'id',label:'categoryName'
|
|
|
|
|
|
}" collapse-tags>
|
|
|
|
|
|
</el-cascader>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="货品编码" prop="materialCode">
|
|
|
|
|
|
<el-input v-model="queryParams.materialCode" placeholder="请输入货品编码" maxlength="20" clearable style="width: 240px"/>
|
2025-06-30 18:16:08 +08:00
|
|
|
|
</el-form-item>
|
2025-07-01 11:25:10 +08:00
|
|
|
|
<el-form-item label="货品名称" prop="materialName">
|
|
|
|
|
|
<el-input v-model="queryParams.materialName" placeholder="请输入货品名称" maxlength="20" clearable style="width: 240px"/>
|
2025-06-30 18:16:08 +08:00
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item>
|
|
|
|
|
|
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
|
|
|
|
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
</el-form>
|
|
|
|
|
|
<el-table v-loading="loading" :data="tableListData" ref="multipleTable1" height="520" :row-key="(row)=>{return row.materialId}" @selection-change="handleSelectionChange2">
|
|
|
|
|
|
<el-table-column type="selection" width="50" align="center" :reserve-selection="true" />
|
|
|
|
|
|
<el-table-column label="序号" align="center" width="80" type="index">
|
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
<span>{{(queryParams.pageNum - 1) * queryParams.pageSize + scope.$index + 1}}</span>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
2025-07-01 11:25:10 +08:00
|
|
|
|
<!-- <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" />
|
2025-07-02 10:33:42 +08:00
|
|
|
|
<el-table-column label="货品规格" align="center" prop="size" :show-overflow-tooltip="true">
|
|
|
|
|
|
<!-- <template slot-scope="scope">
|
2025-07-01 11:25:10 +08:00
|
|
|
|
<span v-if="scope.row.salesMode==1">按份</span>
|
|
|
|
|
|
<span v-if="scope.row.salesMode==2">称重</span>
|
2025-07-02 10:33:42 +08:00
|
|
|
|
</template> -->
|
2025-07-01 11:25:10 +08:00
|
|
|
|
</el-table-column>
|
|
|
|
|
|
<el-table-column label="单价(元)" align="center" prop="unitPrice" :show-overflow-tooltip="true">
|
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
<span>{{ (scope.row.unitPrice/100).toFixed(2)||"" }}</span>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
2025-06-30 18:16:08 +08:00
|
|
|
|
</el-table>
|
|
|
|
|
|
<pagination
|
|
|
|
|
|
v-show="total>0"
|
|
|
|
|
|
:total="total"
|
|
|
|
|
|
:page.sync="queryParams.pageNum"
|
|
|
|
|
|
:limit.sync="queryParams.pageSize"
|
|
|
|
|
|
@pagination="getList"
|
|
|
|
|
|
/>
|
2025-06-30 14:22:09 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
<div slot="footer" class="dialog-footer">
|
2025-07-01 11:25:10 +08:00
|
|
|
|
<el-button type="primary" @click="confirmChosen">确 定</el-button>
|
2025-06-30 18:16:08 +08:00
|
|
|
|
<el-button @click="openDialog=false">取 消</el-button>
|
2025-06-30 14:22:09 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
2025-07-02 16:43:34 +08:00
|
|
|
|
import { imgUpLoadTwo } from '@/api/system/upload'
|
2025-06-30 14:22:09 +08:00
|
|
|
|
import { systemAreaTreeApi,getCanteenByAreaApi,getStallByCanteenApi } from "@/api/base/stall";
|
2025-07-01 18:14:48 +08:00
|
|
|
|
import { systemMaterialTreeApi,getMaterialListApi,supplierPageApi } from "@/api/foodManage/purchaseManage";
|
|
|
|
|
|
import { getPurchaseContractInfoApi,addPurchaseContractApi,editPurchaseContractApi,delPurchaseContractApi } from "@/api/foodManage/purchaseManage";
|
2025-06-30 14:22:09 +08:00
|
|
|
|
export default {
|
|
|
|
|
|
name: "ContractDetail",
|
|
|
|
|
|
dicts: [],
|
|
|
|
|
|
data() {
|
|
|
|
|
|
return {
|
2025-07-01 18:14:48 +08:00
|
|
|
|
pageJson:{},//页面传参
|
2025-06-30 14:22:09 +08:00
|
|
|
|
loading:false,
|
2025-06-30 18:16:08 +08:00
|
|
|
|
loadingBtn:false,
|
2025-06-30 14:22:09 +08:00
|
|
|
|
baseInfo: {
|
2025-07-01 18:14:48 +08:00
|
|
|
|
contractTitle:undefined,
|
2025-06-30 14:22:09 +08:00
|
|
|
|
contractType:undefined,
|
|
|
|
|
|
areaId:undefined,
|
2025-07-01 18:14:48 +08:00
|
|
|
|
canteenId:undefined,
|
|
|
|
|
|
dateRange:[],
|
2025-06-30 14:22:09 +08:00
|
|
|
|
},
|
|
|
|
|
|
// 表单校验
|
|
|
|
|
|
baseRules: {
|
2025-07-01 18:14:48 +08:00
|
|
|
|
contractTitle: [
|
2025-06-30 14:22:09 +08:00
|
|
|
|
{ required: true, message: "菜谱名称不能为空", trigger: "blur" }
|
|
|
|
|
|
],
|
|
|
|
|
|
areaId: [
|
|
|
|
|
|
{ required: true, message: "所属区域不能为空", trigger: "change" }
|
|
|
|
|
|
],
|
|
|
|
|
|
canteenId: [
|
|
|
|
|
|
{ required: true, message: "所属食堂不能为空", trigger: "change" }
|
|
|
|
|
|
],
|
2025-07-01 18:14:48 +08:00
|
|
|
|
supplierId: [
|
|
|
|
|
|
{ required: true, message: "供应商不能为空", trigger: "change" }
|
2025-06-30 14:22:09 +08:00
|
|
|
|
],
|
2025-07-01 18:14:48 +08:00
|
|
|
|
contractSigningTime: [
|
|
|
|
|
|
{ required: true, message: "签订日期不能为空", trigger: "change" }
|
|
|
|
|
|
],
|
|
|
|
|
|
dateRange: [
|
|
|
|
|
|
{ required: true, message: "合同生效周期不能为空", trigger: "change" }
|
2025-06-30 14:22:09 +08:00
|
|
|
|
]
|
|
|
|
|
|
},
|
|
|
|
|
|
treeAreaOptions:[],
|
|
|
|
|
|
canteenOptions:[],
|
|
|
|
|
|
supplierOptions:[],
|
2025-07-01 11:25:10 +08:00
|
|
|
|
stallOptions:[],
|
2025-06-30 14:22:09 +08:00
|
|
|
|
pickerOptions: {
|
|
|
|
|
|
disabledDate(v) {
|
|
|
|
|
|
return v.getTime() < (new Date().getTime() - 86400000);// - 86400000是否包括当天
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
2025-07-02 16:43:34 +08:00
|
|
|
|
attachmentList:[],
|
2025-07-02 10:48:56 +08:00
|
|
|
|
contractMaterialList:[],//货品信息-表格数据
|
|
|
|
|
|
batchIds:[],//货品信息-表格数据-多选
|
2025-07-01 11:25:10 +08:00
|
|
|
|
openDialog:false,
|
2025-07-02 10:48:56 +08:00
|
|
|
|
materialTreeOptions:[],
|
|
|
|
|
|
queryParams: { // 货品弹窗-货品表格-查询参数
|
2025-06-30 18:16:08 +08:00
|
|
|
|
pageNum: 1,
|
|
|
|
|
|
pageSize: 10,
|
2025-07-02 10:48:56 +08:00
|
|
|
|
},
|
|
|
|
|
|
total: 0, // 总条数
|
|
|
|
|
|
tableListData: [],//货品弹窗-货品表格数据
|
|
|
|
|
|
batchChosenMaterial:[],//货品弹窗-货品表格-选中的货品数组
|
|
|
|
|
|
noMaterial:false,
|
2025-07-02 16:43:34 +08:00
|
|
|
|
|
2025-06-30 14:22:09 +08:00
|
|
|
|
};
|
|
|
|
|
|
},
|
|
|
|
|
|
created() {
|
2025-07-01 18:14:48 +08:00
|
|
|
|
this.getAreaTreeData()
|
|
|
|
|
|
this.getMaterialTree()
|
2025-07-02 16:43:34 +08:00
|
|
|
|
this.attachmentList=[]
|
2025-07-01 18:14:48 +08:00
|
|
|
|
if(this.$route.query.pageJson){
|
|
|
|
|
|
this.pageJson = JSON.parse(this.$route.query.pageJson)
|
|
|
|
|
|
this.getContractInfo()
|
|
|
|
|
|
}
|
2025-06-30 14:22:09 +08:00
|
|
|
|
},
|
|
|
|
|
|
methods: {
|
|
|
|
|
|
// 返回列表页
|
|
|
|
|
|
jumpList() {
|
|
|
|
|
|
const obj = { path: "foodManage/purchaseManage/contractDetail" };
|
|
|
|
|
|
this.$tab.closeOpenPage(obj);
|
|
|
|
|
|
this.$router.replace({ path: "/foodManage/purchaseManage/contractList" }); // 要打开的页面
|
|
|
|
|
|
},
|
2025-07-01 18:14:48 +08:00
|
|
|
|
getContractInfo(){
|
|
|
|
|
|
console.log(this.pageJson)
|
|
|
|
|
|
let param = {
|
|
|
|
|
|
contractId:this.pageJson.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;
|
2025-07-02 16:43:34 +08:00
|
|
|
|
this.contractMaterialList.forEach(item=>{
|
|
|
|
|
|
this.$set(item,"singlePrice",Number(item.singlePrice)/100)
|
|
|
|
|
|
})
|
|
|
|
|
|
if(this.baseInfo.contractAttachmentList.length>0){
|
|
|
|
|
|
this.baseInfo.contractAttachmentList.forEach(item=>{
|
|
|
|
|
|
this.attachmentList.push({name:item,url:item})
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
this.$set(this.baseInfo,"contractAmount",Number(this.baseInfo.contractAmount)/100)
|
2025-07-01 18:14:48 +08:00
|
|
|
|
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)
|
2025-07-02 16:43:34 +08:00
|
|
|
|
});
|
2025-07-01 18:14:48 +08:00
|
|
|
|
});
|
|
|
|
|
|
},
|
2025-06-30 14:22:09 +08:00
|
|
|
|
//区域树
|
|
|
|
|
|
getAreaTreeData() {
|
|
|
|
|
|
systemAreaTreeApi({}).then((response) => {
|
|
|
|
|
|
this.treeAreaOptions = response.data;
|
2025-07-01 11:25:10 +08:00
|
|
|
|
// if(this.treeAreaOptions.length>0){
|
|
|
|
|
|
// this.baseInfo.areaId = this.getFirstChild(this.treeAreaOptions[0]).id;
|
|
|
|
|
|
// this.handleAreaChange()
|
|
|
|
|
|
// }
|
2025-06-30 14:22:09 +08:00
|
|
|
|
});
|
|
|
|
|
|
},
|
|
|
|
|
|
getFirstChild(node) {
|
|
|
|
|
|
if (!node.children || node.children.length === 0) {
|
|
|
|
|
|
return node; // 没有子节点或子节点为空,返回当前节点
|
|
|
|
|
|
} else {
|
|
|
|
|
|
return this.getFirstChild(node.children[0]); // 递归调用最后一个子节点
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
//选中区域-查询食堂
|
2025-07-01 18:14:48 +08:00
|
|
|
|
handleAreaChange(e){
|
|
|
|
|
|
this.getCanteenData()
|
|
|
|
|
|
this.getSupplierData()
|
|
|
|
|
|
},
|
|
|
|
|
|
/** 查询查询食堂下拉结构 */
|
|
|
|
|
|
getCanteenData() {
|
2025-06-30 14:22:09 +08:00
|
|
|
|
let param= {
|
|
|
|
|
|
areaId:this.baseInfo.areaId
|
2025-07-01 18:14:48 +08:00
|
|
|
|
}
|
2025-06-30 14:22:09 +08:00
|
|
|
|
getCanteenByAreaApi(param).then((response) => {
|
2025-07-01 18:14:48 +08:00
|
|
|
|
this.canteenOptions=response.rows||[];
|
|
|
|
|
|
this.$set(this.baseInfo,"canteenId",null)
|
2025-06-30 14:22:09 +08:00
|
|
|
|
});
|
2025-07-01 18:14:48 +08:00
|
|
|
|
},
|
|
|
|
|
|
/** 查询供应商下拉结构 */
|
|
|
|
|
|
getSupplierData() {
|
|
|
|
|
|
supplierPageApi({ isPaging:1,areaIdList:[this.baseInfo.areaId] }).then((response) => {
|
|
|
|
|
|
this.supplierOptions = response.rows||[];
|
|
|
|
|
|
this.$set(this.baseInfo,"supplierId",null)
|
|
|
|
|
|
});
|
|
|
|
|
|
},
|
|
|
|
|
|
/** 查询货品类别下拉树结构 */
|
|
|
|
|
|
getMaterialTree() {
|
|
|
|
|
|
let param = {
|
2025-07-01 11:25:10 +08:00
|
|
|
|
// goodsType:1
|
|
|
|
|
|
}
|
|
|
|
|
|
systemMaterialTreeApi(param).then((response) => {
|
|
|
|
|
|
this.materialTreeOptions = response.data;
|
|
|
|
|
|
});
|
2025-07-01 18:14:48 +08:00
|
|
|
|
},
|
2025-06-30 14:22:09 +08:00
|
|
|
|
//选择日期范围
|
|
|
|
|
|
changeDateRange(e){
|
|
|
|
|
|
//this.formatDate(e[0])
|
2025-06-30 18:16:08 +08:00
|
|
|
|
},
|
2025-07-02 10:48:56 +08:00
|
|
|
|
// 多选框选中数据
|
|
|
|
|
|
handleSelectionChange(selection) {
|
|
|
|
|
|
this.batchIds = selection.map(item => item.materialId)
|
|
|
|
|
|
},
|
|
|
|
|
|
//删除货品
|
|
|
|
|
|
delMaterial(){
|
|
|
|
|
|
this.batchIds.forEach(ID=>{
|
|
|
|
|
|
let index = this.contractMaterialList.findIndex(v=>v.materialId==ID)
|
|
|
|
|
|
if(index>-1){
|
|
|
|
|
|
this.contractMaterialList.splice(index,1)
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
},
|
|
|
|
|
|
//添加货品
|
2025-07-01 11:25:10 +08:00
|
|
|
|
addMaterial(){
|
2025-07-01 18:14:48 +08:00
|
|
|
|
if(this.baseInfo.areaId!=undefined){
|
|
|
|
|
|
this.openDialog=true
|
|
|
|
|
|
this.resetQuery()
|
|
|
|
|
|
setTimeout(()=>{
|
|
|
|
|
|
this.$refs.multipleTable1.clearSelection()
|
|
|
|
|
|
},300)
|
|
|
|
|
|
}else{
|
|
|
|
|
|
this.$modal.msgError("请先选择区域");
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-02 10:48:56 +08:00
|
|
|
|
},
|
2025-06-30 18:16:08 +08:00
|
|
|
|
/** 搜索按钮操作 */
|
|
|
|
|
|
handleQuery() {
|
|
|
|
|
|
this.queryParams.pageNum = 1;
|
|
|
|
|
|
this.getList();
|
|
|
|
|
|
},
|
|
|
|
|
|
/** 重置按钮操作 */
|
|
|
|
|
|
resetQuery() {
|
|
|
|
|
|
this.resetForm("queryForm");
|
|
|
|
|
|
this.handleQuery();
|
|
|
|
|
|
},
|
|
|
|
|
|
/** 查询列表 */
|
|
|
|
|
|
getList() {
|
|
|
|
|
|
this.loading = true;
|
|
|
|
|
|
let param = {
|
2025-07-01 11:25:10 +08:00
|
|
|
|
"pageSize": this.queryParams.pageSize,
|
|
|
|
|
|
"pageNum": this.queryParams.pageNum,
|
|
|
|
|
|
"areaId": this.queryParams.areaId,
|
|
|
|
|
|
"materialName": this.queryParams.materialName,
|
|
|
|
|
|
"materialCode": this.queryParams.materialCode,
|
|
|
|
|
|
"materialTypeIds": this.queryParams.materialTypeIds,
|
2025-06-30 18:16:08 +08:00
|
|
|
|
}
|
2025-07-01 11:25:10 +08:00
|
|
|
|
getMaterialListApi(param).then(response => {
|
|
|
|
|
|
this.tableListData = response.rows;
|
2025-06-30 18:16:08 +08:00
|
|
|
|
this.total = Number(response.total);
|
|
|
|
|
|
this.loading = false;
|
|
|
|
|
|
});
|
2025-07-01 11:25:10 +08:00
|
|
|
|
},
|
|
|
|
|
|
handleSelectionChange2(selection) {
|
|
|
|
|
|
this.batchChosenMaterial = selection;
|
2025-07-01 18:14:48 +08:00
|
|
|
|
this.batchChosenMaterial.forEach(item=>{
|
|
|
|
|
|
this.$set(item,"orderNum",0)
|
|
|
|
|
|
this.$set(item,"singlePrice",item.unitPrice/100)
|
|
|
|
|
|
})
|
2025-07-01 11:25:10 +08:00
|
|
|
|
},
|
|
|
|
|
|
confirmChosen(){
|
2025-07-01 18:14:48 +08:00
|
|
|
|
if(this.batchChosenMaterial.length>0){
|
|
|
|
|
|
this.loading = true
|
|
|
|
|
|
this.contractMaterialList = this.batchChosenMaterial;
|
|
|
|
|
|
setTimeout(()=>{
|
|
|
|
|
|
this.loading = false
|
|
|
|
|
|
this.openDialog=false
|
|
|
|
|
|
},500)
|
|
|
|
|
|
}
|
2025-07-01 11:25:10 +08:00
|
|
|
|
},
|
2025-07-02 10:33:42 +08:00
|
|
|
|
//保存草稿
|
|
|
|
|
|
confirmSave(){
|
|
|
|
|
|
this.$refs["baseInfo"].validate(valid => {
|
|
|
|
|
|
if (valid) {
|
|
|
|
|
|
let param = Object.assign({},this.baseInfo);
|
|
|
|
|
|
param.contractStartTime = this.formatDateTime(this.baseInfo.dateRange[0])
|
|
|
|
|
|
param.contractEndTime = this.formatDateTime(this.baseInfo.dateRange[1])
|
|
|
|
|
|
param.contractSigningTime = this.formatDate(this.baseInfo.contractSigningTime)
|
|
|
|
|
|
param.payMoneyDate = this.formatDate(this.baseInfo.payMoneyDate)
|
|
|
|
|
|
param.contractAmount = this.baseInfo.contractAmount*100;
|
|
|
|
|
|
param.commitStatus=1
|
2025-07-02 16:43:34 +08:00
|
|
|
|
param.purchaseContractDetailList = []
|
|
|
|
|
|
param.contractAttachment = ""
|
|
|
|
|
|
if(this.attachmentList.length>0){
|
|
|
|
|
|
console.log(this.attachmentList)
|
|
|
|
|
|
let arr = this.attachmentList.map(item=>item.url)
|
|
|
|
|
|
param.contractAttachment = arr.join(',')
|
|
|
|
|
|
console.log(param)
|
|
|
|
|
|
}
|
2025-07-02 10:33:42 +08:00
|
|
|
|
this.noMaterial = false;
|
|
|
|
|
|
if(this.contractMaterialList.length>0){
|
|
|
|
|
|
this.contractMaterialList.forEach(item=>{
|
|
|
|
|
|
if(item.singlePrice==0 || item.orderNum==0){
|
|
|
|
|
|
this.noMaterial = true
|
|
|
|
|
|
}else{
|
|
|
|
|
|
let obj = Object.assign({}, item)
|
|
|
|
|
|
obj.singlePrice = Number(obj.singlePrice)*100
|
|
|
|
|
|
param.purchaseContractDetailList.push(obj)
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
if(this.noMaterial){
|
|
|
|
|
|
this.$modal.msgError("请输入单价和数量!");
|
|
|
|
|
|
}else{
|
|
|
|
|
|
this.noMaterial = true;
|
|
|
|
|
|
if(this.contractMaterialList.length>0){
|
|
|
|
|
|
this.noMaterial = false;
|
|
|
|
|
|
}
|
|
|
|
|
|
console.log(param)
|
|
|
|
|
|
if(this.noMaterial){
|
|
|
|
|
|
this.$modal.msgError("请添加货品!");
|
|
|
|
|
|
}else{
|
|
|
|
|
|
this.loadingBtn=true;
|
|
|
|
|
|
if (this.baseInfo.contractId != undefined) {
|
|
|
|
|
|
editPurchaseContractApi(param).then((response) => {
|
|
|
|
|
|
this.$modal.msgSuccess("修改成功");
|
|
|
|
|
|
this.loadingBtn=false
|
|
|
|
|
|
this.jumpList()
|
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
|
this.loadingBtn=false
|
|
|
|
|
|
});
|
|
|
|
|
|
} else {
|
|
|
|
|
|
addPurchaseContractApi(param).then((response) => {
|
|
|
|
|
|
this.$modal.msgSuccess("保存成功");
|
|
|
|
|
|
this.loadingBtn=false
|
|
|
|
|
|
this.jumpList()
|
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
|
this.loadingBtn=false
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
},
|
2025-06-30 14:22:09 +08:00
|
|
|
|
// 提交按钮
|
|
|
|
|
|
confirmSubmit(){
|
|
|
|
|
|
this.$refs["baseInfo"].validate(valid => {
|
2025-07-02 10:33:42 +08:00
|
|
|
|
if (valid) {
|
2025-07-01 18:14:48 +08:00
|
|
|
|
let param = Object.assign({},this.baseInfo);
|
|
|
|
|
|
param.contractStartTime = this.formatDateTime(this.baseInfo.dateRange[0])
|
|
|
|
|
|
param.contractEndTime = this.formatDateTime(this.baseInfo.dateRange[1])
|
|
|
|
|
|
param.contractSigningTime = this.formatDate(this.baseInfo.contractSigningTime)
|
|
|
|
|
|
param.payMoneyDate = this.formatDate(this.baseInfo.payMoneyDate)
|
2025-07-02 10:33:42 +08:00
|
|
|
|
param.contractAmount = this.baseInfo.contractAmount*100;
|
|
|
|
|
|
param.commitStatus=2
|
|
|
|
|
|
param.purchaseContractDetailList = []
|
|
|
|
|
|
this.noMaterial = false;
|
|
|
|
|
|
if(this.contractMaterialList.length>0){
|
2025-07-01 18:14:48 +08:00
|
|
|
|
this.contractMaterialList.forEach(item=>{
|
2025-07-02 10:33:42 +08:00
|
|
|
|
if(item.singlePrice==0 || item.orderNum==0){
|
|
|
|
|
|
this.noMaterial = true
|
|
|
|
|
|
}else{
|
|
|
|
|
|
let obj = Object.assign({}, item)
|
|
|
|
|
|
obj.singlePrice = Number(obj.singlePrice)*100
|
|
|
|
|
|
param.purchaseContractDetailList.push(obj)
|
|
|
|
|
|
}
|
2025-07-01 18:14:48 +08:00
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
if(this.noMaterial){
|
2025-07-02 10:33:42 +08:00
|
|
|
|
this.$modal.msgError("请输入单价和数量!");
|
2025-07-01 18:14:48 +08:00
|
|
|
|
}else{
|
2025-07-02 10:33:42 +08:00
|
|
|
|
this.noMaterial = true;
|
|
|
|
|
|
if(this.contractMaterialList.length>0){
|
|
|
|
|
|
this.noMaterial = false;
|
|
|
|
|
|
}
|
|
|
|
|
|
console.log(param)
|
|
|
|
|
|
if(this.noMaterial){
|
|
|
|
|
|
this.$modal.msgError("请添加货品!");
|
|
|
|
|
|
}else{
|
|
|
|
|
|
this.loadingBtn=true;
|
|
|
|
|
|
if (this.baseInfo.contractId != undefined) {
|
|
|
|
|
|
editPurchaseContractApi(param).then((response) => {
|
|
|
|
|
|
this.$modal.msgSuccess("修改成功");
|
|
|
|
|
|
this.loadingBtn=false
|
|
|
|
|
|
this.jumpList()
|
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
|
this.loadingBtn=false
|
|
|
|
|
|
});
|
|
|
|
|
|
} else {
|
|
|
|
|
|
addPurchaseContractApi(param).then((response) => {
|
|
|
|
|
|
this.$modal.msgSuccess("保存成功");
|
|
|
|
|
|
this.loadingBtn=false
|
|
|
|
|
|
this.jumpList()
|
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
|
this.loadingBtn=false
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-06-30 14:22:09 +08:00
|
|
|
|
}
|
|
|
|
|
|
});
|
2025-07-02 16:43:34 +08:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
//附件上传
|
|
|
|
|
|
fileUpLoad(param){
|
|
|
|
|
|
param.type = 'canteen'
|
|
|
|
|
|
imgUpLoadTwo(param).then((res) => {
|
|
|
|
|
|
if (res.code == 200) {
|
|
|
|
|
|
this.attachmentList.push(res.data)
|
|
|
|
|
|
} else {
|
|
|
|
|
|
this.$modal.msgError(res.msg);
|
|
|
|
|
|
}
|
|
|
|
|
|
}).catch((error) => {
|
|
|
|
|
|
this.$modal.msgError(error)
|
|
|
|
|
|
})
|
|
|
|
|
|
},
|
|
|
|
|
|
handleRemoveFile(file, fileList){
|
|
|
|
|
|
console.log(this.attachmentList)
|
|
|
|
|
|
let sum = 0
|
|
|
|
|
|
this.attachmentList.forEach((item, index) => {
|
|
|
|
|
|
if (item.url == file.url) {
|
|
|
|
|
|
sum = index
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
this.attachmentList.splice(sum, 1)
|
2025-07-02 10:48:56 +08:00
|
|
|
|
},
|
2025-06-30 14:22:09 +08:00
|
|
|
|
//日期
|
|
|
|
|
|
formatDate(date) {
|
|
|
|
|
|
// 格式化为 YYYY-MM-DD
|
2025-07-01 18:14:48 +08:00
|
|
|
|
date = new Date(date)
|
2025-06-30 14:22:09 +08:00
|
|
|
|
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>
|