|
@@ -1,696 +1,694 @@
|
|
|
// 订单审核
|
|
|
<template>
|
|
|
- <div class="center">
|
|
|
- <div class="center_css">
|
|
|
- <div class="top_css">
|
|
|
- <el-row>
|
|
|
- <el-col :span="14">
|
|
|
- <el-button type="primary" @click="billing" style="margin-right:10px">批量开票</el-button>
|
|
|
- <el-date-picker v-model="value1" value-format="yyyy-MM-dd" @change="dateChange" type="daterange"
|
|
|
- range-separator="至" start-placeholder="开始日期" end-placeholder="结束日期">
|
|
|
- </el-date-picker>
|
|
|
- </el-col>
|
|
|
- <el-col :span="10">
|
|
|
- <div class="screen">
|
|
|
- <el-input placeholder="可按订单编号、姓名、账号查找" v-model="searchkeyWord" clearable></el-input>
|
|
|
- <el-button class="search" @click="find"><img width="16" height="16"
|
|
|
- style="margin-left: -8px" src="../../../public/img/sousuo.png" /></el-button><span
|
|
|
- class="count_css">共{{ deptBudgetTotal }}条</span>
|
|
|
- </div>
|
|
|
- </el-col>
|
|
|
- </el-row>
|
|
|
- <el-row>
|
|
|
- <el-col>
|
|
|
- <div class="search_btn">
|
|
|
- <div :class="search == '' ? 'search' : 'searchNo'" class="search_item"
|
|
|
- @click="searchBtn('')">
|
|
|
- 全部
|
|
|
- </div>
|
|
|
- <div :class="search == 1 ? 'search' : 'searchNo'" class="search_item" @click="searchBtn(1)">
|
|
|
- 待审核
|
|
|
- </div>
|
|
|
- <div :class="search == 2 ? 'search' : 'searchNo'" class="search_item" @click="searchBtn(2)">
|
|
|
- 待付款
|
|
|
- </div>
|
|
|
- <div :class="search == 3 ? 'search' : 'searchNo'" class="search_item" @click="searchBtn(3)">
|
|
|
- 待还款
|
|
|
- </div>
|
|
|
- <div :class="search == 4 ? 'search' : 'searchNo'" class="search_item" @click="searchBtn(4)">
|
|
|
- 待开票
|
|
|
- </div>
|
|
|
- <div :class="search == 5 ? 'search' : 'searchNo'" class="search_item" @click="searchBtn(5)">
|
|
|
- 已完结
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </el-col>
|
|
|
- </el-row>
|
|
|
- </div>
|
|
|
- <el-table :data="tableData" style="width: 98%; margin: 0 auto; border-radius: 10px" height="60vh" border @row-click="handleRowClick" @selection-change="handleSelectionChange">
|
|
|
- <el-table-column
|
|
|
- type="selection"
|
|
|
- width="55" :selectable="selectInit">
|
|
|
- </el-table-column>
|
|
|
- <el-table-column type="index" label="序号" width="50">
|
|
|
- <template scope="scope">
|
|
|
- <span v-if="scope.$index < 9">0{{ scope.$index + 1 }}</span>
|
|
|
- <span v-else>{{ scope.$index + 1 }}</span>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column prop="orderNo" label="订单编号" min-width="150"></el-table-column>
|
|
|
- <el-table-column prop="cargoOwner" label="货主"></el-table-column>
|
|
|
- <el-table-column prop="driverName" label="司机"></el-table-column>
|
|
|
- <el-table-column prop="freight" label="运费(元)">
|
|
|
- </el-table-column>
|
|
|
- <el-table-column prop="amountMoney" label="已付(元)"></el-table-column>
|
|
|
- <el-table-column prop="amountMon" label="超期费(元)">
|
|
|
- <template slot-scope="scope">
|
|
|
- <span class="btn_css"
|
|
|
- @click="costLook(scope.row)">{{scope.row.freightAdvance == 0 ? "" : 0}}</span>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column prop="amountMoney" label="应还(元)"></el-table-column>
|
|
|
- <el-table-column prop="amountMoney" label="已还(元)">
|
|
|
- <template slot-scope="scope">
|
|
|
- <span>{{scope.row.freightAdvance == 0 ? "" : scope.row.alreadyRepaid}}</span>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column prop="invoicing" label="发票">
|
|
|
- <template slot-scope="scope">
|
|
|
- <span>{{scope.row.invoicing == 0 ? "未开":"已开"}}</span>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column prop="payee" label="合同">
|
|
|
- <span @click="account" class="btn_css">查看</span>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column prop="updateDate" label="更新时间" min-width="110"></el-table-column>
|
|
|
- <el-table-column prop="orderStatus" label="状态" min-width="92"></el-table-column>
|
|
|
- <el-table-column label="操作" min-width="350">
|
|
|
- <template slot-scope="scope">
|
|
|
- <el-link target="_blank" @click="see(scope.row)" type="primary" :underline="false"
|
|
|
- :disabled="scope.row.orderStatusKey != 9 && scope.row.orderStatusKey != 19">确认
|
|
|
- </el-link>
|
|
|
- <el-divider direction="vertical"></el-divider>
|
|
|
- <el-link target="_blank" @click="see(scope.row)" type="primary" :underline="false"
|
|
|
- :disabled="scope.row.orderStatusKey != 9 && scope.row.orderStatusKey != 19">驳回
|
|
|
- </el-link>
|
|
|
- <el-divider direction="vertical"></el-divider>
|
|
|
- <el-link target="_blank" @click="see(scope.row)" type="primary" :underline="false">查看</el-link>
|
|
|
- <el-divider direction="vertical"></el-divider>
|
|
|
- <el-dropdown>
|
|
|
- <span class="btn_css">•••</span>
|
|
|
- <el-dropdown-menu slot="dropdown">
|
|
|
- <el-dropdown-item>
|
|
|
- <el-link target="_blank" @click="end(scope.row)" type="primary" :underline="false"
|
|
|
- :disabled="scope.row.cargoOwnerStatusKey > 18">终止</el-link>
|
|
|
- </el-dropdown-item>
|
|
|
- <el-dropdown-item>
|
|
|
- <el-link target="_blank" @click="see(scope.row)" type="primary" :underline="false"
|
|
|
- :disabled="scope.row.cargoOwnerStatusKey != 29">完结</el-link>
|
|
|
- </el-dropdown-item>
|
|
|
- <el-dropdown-item>
|
|
|
- <el-link target="_blank" type="primary" :underline="false">预付</el-link>
|
|
|
- </el-dropdown-item>
|
|
|
- <el-dropdown-item>
|
|
|
- <el-link target="_blank" type="primary" :underline="false">尾款</el-link>
|
|
|
- </el-dropdown-item>
|
|
|
- </el-dropdown-menu>
|
|
|
- </el-dropdown>
|
|
|
-
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- </el-table>
|
|
|
- </div>
|
|
|
- <el-pagination @size-change="handleSizeChange" @current-change="handleCurrentChange" :current-page="currentPage"
|
|
|
- style="text-align: center; margin-top: 10px" :page-size="deptCircularPage.pageSize"
|
|
|
- layout="total, sizes, prev, pager, next, jumper" :total="deptBudgetTotal">
|
|
|
- </el-pagination>
|
|
|
- <el-dialog title="超期费用" :visible.sync="costInfo" width="500px" :before-close="costClose">
|
|
|
- <div class="cost_css">
|
|
|
- <div class="cost_item">
|
|
|
- <div class="cost_title">起计日期</div>
|
|
|
- <div class="cost_value">2022-02-15</div>
|
|
|
- </div>
|
|
|
- <div class="cost_item">
|
|
|
- <div class="cost_title">终止日期</div>
|
|
|
- <div class="cost_value">2022-02-15</div>
|
|
|
- </div>
|
|
|
- <div class="cost_item">
|
|
|
- <div class="cost_title">超期费率</div>
|
|
|
- <div class="cost_value">{{costData.interestRate}}</div>
|
|
|
- </div>
|
|
|
- <el-divider></el-divider>
|
|
|
- <div class="cost_item">
|
|
|
- <div class="cost_title">已付运费</div>
|
|
|
- <div class="cost_value">{{costData.interestRate}}</div>
|
|
|
- </div>
|
|
|
- <div class="cost_item">
|
|
|
- <div class="cost_title">超期费用</div>
|
|
|
- <div class="cost_value">{{costData.interestRate}}</div>
|
|
|
- </div>
|
|
|
- <div class="right_btn">
|
|
|
- <el-button @click="costInfo = false" type="primary">关闭</el-button>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </el-dialog>
|
|
|
- <el-dialog title="账户信息" :visible.sync="userInfo" width="500px" :before-close="userClose">
|
|
|
- <div class="user" v-for="item in 2">
|
|
|
- <div class="user_id">
|
|
|
- <div class="id_css">12121212121212121212</div>
|
|
|
- <div class="name_css">张三</div>
|
|
|
- </div>
|
|
|
- <div>中国银行-鲅鱼圈支行</div>
|
|
|
- <img src="../../../public/img/yonghu.jpg" class="user_item" />
|
|
|
- </div>
|
|
|
- </el-dialog>
|
|
|
-
|
|
|
- <el-drawer title="任务详情" :visible.sync="rightSee" style="overflow-y: auto !important">
|
|
|
- <div class="right_css">
|
|
|
- <div class="title_name">基本信息</div>
|
|
|
- <div class="right_item">订单编号:{{costData.orderNo}}</div>
|
|
|
- <div class="right_title">货主</div>
|
|
|
- <div class="right_item">{{costData.cargoOwner}}</div>
|
|
|
- <div class="right_title">司机</div>
|
|
|
- <div class="right_item">{{costData.driverName}}</div>
|
|
|
- <div class="right_title">发货单位</div>
|
|
|
- <div class="right_item">{{costData.compName}}</div>
|
|
|
- <div class="right_title">发货地</div>
|
|
|
- <div class="right_item">
|
|
|
- {{costData.sendPrivate}}{{costData.sendCity}}{{costData.sendArea}}{{costData.sendDetailedAddress}}
|
|
|
- </div>
|
|
|
- <div class="right_title">卸货地</div>
|
|
|
- <div class="right_item">
|
|
|
- {{costData.unloadPrivate}}{{costData.unloadCity}}{{costData.unloadArea}}{{costData.unloadDetailedAddress}}
|
|
|
- </div>
|
|
|
- <div class="right_title">货名</div>
|
|
|
- <div class="right_item">{{costData.goodsName}}</div>
|
|
|
- <div class="right_title">距离</div>
|
|
|
- <div class="right_item">约{{costData.distance ? costData.distance : 0}}km</div>
|
|
|
- <div class="right_title">运费</div>
|
|
|
- <div class="right_item">{{costData.freight}}</div>
|
|
|
- <el-divider></el-divider>
|
|
|
- <div v-if="costData.carrierInfo">
|
|
|
- <div class="title_name">承运信息</div>
|
|
|
- <div class="right_title">承运合同编号</div>
|
|
|
- <div class="right_item">{{costData.carrierInfo.orderNo}}</div>
|
|
|
- <div class="right_title">委托合同编号</div>
|
|
|
- <div class="right_item">{{costData.carrierInfo.orderNo}}</div>
|
|
|
- <div class="right_title">车牌号</div>
|
|
|
- <div class="right_item">{{costData.carrierInfo.carNo}}</div>
|
|
|
- <div class="right_title">预计运费</div>
|
|
|
- <div class="right_item">{{costData.carrierInfo.estimatedFreight}}</div>
|
|
|
- <div class="right_title">装车时间</div>
|
|
|
- <div class="right_item">{{costData.carrierInfo.loadingDate}}</div>
|
|
|
- <div class="right_title">装车照片</div>
|
|
|
- <div style="display: flex;">
|
|
|
- <div v-for="(item,index) in costData.carrierInfo.loadingImg.split(',')">
|
|
|
- <img :src="item" class="img_css">
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- <el-divider></el-divider>
|
|
|
- <div v-if="costData.freightInfo">
|
|
|
- <div class="title_name">运费信息(单位:元)</div>
|
|
|
- <div class="right_title">预付运费</div>
|
|
|
- <div class="right_item">{{costData.freightInfo.prepaidFreight}} <span
|
|
|
- style="margin-left: 100px;">{{costData.freightInfo.prepaidFreightDate}}</span></div>
|
|
|
- <div class="right_title">运费尾款</div>
|
|
|
- <div class="right_item">{{costData.freightInfo.freightBalance}} <span
|
|
|
- style="margin-left: 100px;">{{costData.freightInfo.freightBalanceDate}}</span></div>
|
|
|
- <div class="right_title">明细</div>
|
|
|
- <div class="right_item">
|
|
|
- 预付{{costData.freightInfo.prepaidFreight ? costData.freightInfo.prepaidFreight : 0}}元,扣款{{costData.freightInfo.deduction ? costData.freightInfo.deduction : 0}}元,服务费{{costData.freightInfo.serviceCharge ? costData.freightInfo.serviceCharge:0}}元,尾款{{costData.freightInfo.freightBalance ? costData.freightInfo.freightBalance:0}}元,合计收款{{costData.freightInfo.totalRepayable ? costData.freightInfo.totalRepayable:0}}元。
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- <el-divider></el-divider>
|
|
|
- <div v-if="costData.repaymentInfo">
|
|
|
- <div class="title_name">还款信息</div>
|
|
|
- <div class="right_title">运费</div>
|
|
|
- <div class="right_item">{{costData.freight}}</div>
|
|
|
- <div class="right_title">超期费(每天3%)</div>
|
|
|
- <div class="right_item">{{costData.repaymentInfo.overdueFee}}</div>
|
|
|
- <div class="right_title">合计应还</div>
|
|
|
- <div class="right_item">{{costData.repaymentInfo.totalRepayable}}</div>
|
|
|
- <div class="right_title">还款(尾号6666)</div>
|
|
|
- <div class="right_item">{{costData.repaymentInfo.alreadyRepaid}}</div>
|
|
|
- </div>
|
|
|
- <div class="right_btn">
|
|
|
- <el-button @click="submit(1)" v-if="costData.orderStatusKey == 9 && costData.orderStatusKey == 19">
|
|
|
- 确认</el-button>
|
|
|
- <el-button @click="submit(2)" v-if="costData.orderStatusKey == 9 && costData.orderStatusKey == 19">
|
|
|
- 驳回</el-button>
|
|
|
- <el-button @click="complete" v-if="costData.cargoOwnerStatusKey == 29">完结</el-button>
|
|
|
- <el-button @click="rightSee = false">关闭</el-button>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </el-drawer>
|
|
|
- </div>
|
|
|
+ <div class="center">
|
|
|
+ <div class="center_css">
|
|
|
+ <div class="top_css">
|
|
|
+ <el-row>
|
|
|
+ <el-col :span="14">
|
|
|
+ <el-button type="primary" @click="billing" style="margin-right:10px">批量开票</el-button>
|
|
|
+ <el-date-picker v-model="value1" value-format="yyyy-MM-dd" @change="dateChange" type="daterange"
|
|
|
+ range-separator="至" start-placeholder="开始日期" end-placeholder="结束日期">
|
|
|
+ </el-date-picker>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="10">
|
|
|
+ <div class="screen">
|
|
|
+ <el-input placeholder="可按订单编号、姓名、账号查找" v-model="searchkeyWord" clearable></el-input>
|
|
|
+ <el-button class="search" @click="find"><img width="16" height="16" style="margin-left: -8px"
|
|
|
+ src="../../../public/img/sousuo.png" /></el-button><span
|
|
|
+ class="count_css">共{{ deptBudgetTotal }}条</span>
|
|
|
+ </div>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+ <el-row>
|
|
|
+ <el-col>
|
|
|
+ <div class="search_btn">
|
|
|
+ <div :class="search == '' ? 'search' : 'searchNo'" class="search_item search_block" @click="searchBtn('')">
|
|
|
+ 全部
|
|
|
+ </div>
|
|
|
+ <div :class="search == 1 ? 'search' : 'searchNo'" class="search_item" @click="searchBtn(1)">
|
|
|
+ 待审核
|
|
|
+ </div>
|
|
|
+ <div :class="search == 2 ? 'search' : 'searchNo'" class="search_item" @click="searchBtn(2)">
|
|
|
+ 待付款
|
|
|
+ </div>
|
|
|
+ <div :class="search == 3 ? 'search' : 'searchNo'" class="search_item" @click="searchBtn(3)">
|
|
|
+ 待还款
|
|
|
+ </div>
|
|
|
+ <div :class="search == 4 ? 'search' : 'searchNo'" class="search_item" @click="searchBtn(4)">
|
|
|
+ 待开票
|
|
|
+ </div>
|
|
|
+ <div :class="search == 5 ? 'search' : 'searchNo'" class="search_item" @click="searchBtn(5)">
|
|
|
+ 已完结
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+ </div>
|
|
|
+ <el-table :data="tableData" style="width: 98%; margin: 0 auto; border-radius: 10px" height="60vh" border
|
|
|
+ @row-click="handleRowClick" @selection-change="handleSelectionChange">
|
|
|
+ <el-table-column type="selection" width="55" :selectable="selectInit">
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column type="index" label="序号" width="50">
|
|
|
+ <template scope="scope">
|
|
|
+ <span v-if="scope.$index < 9">0{{ scope.$index + 1 }}</span>
|
|
|
+ <span v-else>{{ scope.$index + 1 }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="orderNo" label="订单编号" min-width="150"></el-table-column>
|
|
|
+ <el-table-column prop="cargoOwner" label="货主"></el-table-column>
|
|
|
+ <el-table-column prop="driverName" label="司机"></el-table-column>
|
|
|
+ <el-table-column prop="freight" label="运费(元)">
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="amountMoney" label="已付(元)"></el-table-column>
|
|
|
+ <el-table-column prop="amountMon" label="超期费(元)">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span class="btn_css" @click="costLook(scope.row)">{{scope.row.freightAdvance == 0 ? "" : 0}}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="amountMoney" label="应还(元)"></el-table-column>
|
|
|
+ <el-table-column prop="amountMoney" label="已还(元)">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span>{{scope.row.freightAdvance == 0 ? "" : scope.row.alreadyRepaid}}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="invoicing" label="发票">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span>{{scope.row.invoicing == 0 ? "未开":"已开"}}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="payee" label="合同">
|
|
|
+ <span @click="account" class="btn_css">查看</span>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="updateDate" label="更新时间" min-width="110"></el-table-column>
|
|
|
+ <el-table-column prop="orderStatus" label="状态" min-width="92"></el-table-column>
|
|
|
+ <el-table-column label="操作" min-width="350">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-link target="_blank" @click="see(scope.row)" type="primary" :underline="false"
|
|
|
+ :disabled="scope.row.orderStatusKey != 9 && scope.row.orderStatusKey != 19">确认
|
|
|
+ </el-link>
|
|
|
+ <el-divider direction="vertical"></el-divider>
|
|
|
+ <el-link target="_blank" @click="see(scope.row)" type="primary" :underline="false"
|
|
|
+ :disabled="scope.row.orderStatusKey != 9 && scope.row.orderStatusKey != 19">驳回
|
|
|
+ </el-link>
|
|
|
+ <el-divider direction="vertical"></el-divider>
|
|
|
+ <el-link target="_blank" @click="see(scope.row)" type="primary" :underline="false">查看</el-link>
|
|
|
+ <el-divider direction="vertical"></el-divider>
|
|
|
+ <el-dropdown>
|
|
|
+ <span class="btn_css">•••</span>
|
|
|
+ <el-dropdown-menu slot="dropdown">
|
|
|
+ <el-dropdown-item>
|
|
|
+ <el-link target="_blank" @click="end(scope.row)" type="primary" :underline="false"
|
|
|
+ :disabled="scope.row.cargoOwnerStatusKey > 18">终止</el-link>
|
|
|
+ </el-dropdown-item>
|
|
|
+ <el-dropdown-item>
|
|
|
+ <el-link target="_blank" @click="see(scope.row)" type="primary" :underline="false"
|
|
|
+ :disabled="scope.row.cargoOwnerStatusKey != 29">完结</el-link>
|
|
|
+ </el-dropdown-item>
|
|
|
+ <el-dropdown-item>
|
|
|
+ <el-link target="_blank" type="primary" :underline="false">预付</el-link>
|
|
|
+ </el-dropdown-item>
|
|
|
+ <el-dropdown-item>
|
|
|
+ <el-link target="_blank" type="primary" :underline="false">尾款</el-link>
|
|
|
+ </el-dropdown-item>
|
|
|
+ </el-dropdown-menu>
|
|
|
+ </el-dropdown>
|
|
|
+
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ </el-table>
|
|
|
+ </div>
|
|
|
+ <el-pagination @size-change="handleSizeChange" @current-change="handleCurrentChange" :current-page="currentPage"
|
|
|
+ style="text-align: center; margin-top: 10px" :page-size="deptCircularPage.pageSize"
|
|
|
+ layout="total, sizes, prev, pager, next, jumper" :total="deptBudgetTotal">
|
|
|
+ </el-pagination>
|
|
|
+ <el-dialog title="超期费用" :visible.sync="costInfo" width="500px" :before-close="costClose">
|
|
|
+ <div class="cost_css">
|
|
|
+ <div class="cost_item">
|
|
|
+ <div class="cost_title">起计日期</div>
|
|
|
+ <div class="cost_value">2022-02-15</div>
|
|
|
+ </div>
|
|
|
+ <div class="cost_item">
|
|
|
+ <div class="cost_title">终止日期</div>
|
|
|
+ <div class="cost_value">2022-02-15</div>
|
|
|
+ </div>
|
|
|
+ <div class="cost_item">
|
|
|
+ <div class="cost_title">超期费率</div>
|
|
|
+ <div class="cost_value">{{costData.interestRate}}</div>
|
|
|
+ </div>
|
|
|
+ <el-divider></el-divider>
|
|
|
+ <div class="cost_item">
|
|
|
+ <div class="cost_title">已付运费</div>
|
|
|
+ <div class="cost_value">{{costData.interestRate}}</div>
|
|
|
+ </div>
|
|
|
+ <div class="cost_item">
|
|
|
+ <div class="cost_title">超期费用</div>
|
|
|
+ <div class="cost_value">{{costData.interestRate}}</div>
|
|
|
+ </div>
|
|
|
+ <div class="right_btn">
|
|
|
+ <el-button @click="costInfo = false" type="primary">关闭</el-button>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </el-dialog>
|
|
|
+ <el-dialog title="账户信息" :visible.sync="userInfo" width="500px" :before-close="userClose">
|
|
|
+ <div class="user" v-for="item in 2">
|
|
|
+ <div class="user_id">
|
|
|
+ <div class="id_css">12121212121212121212</div>
|
|
|
+ <div class="name_css">张三</div>
|
|
|
+ </div>
|
|
|
+ <div>中国银行-鲅鱼圈支行</div>
|
|
|
+ <img src="../../../public/img/yonghu.jpg" class="user_item" />
|
|
|
+ </div>
|
|
|
+ </el-dialog>
|
|
|
+
|
|
|
+ <el-drawer title="任务详情" :visible.sync="rightSee" style="overflow-y: auto !important">
|
|
|
+ <div class="right_css">
|
|
|
+ <div class="title_name">基本信息</div>
|
|
|
+ <div class="right_item">订单编号:{{costData.orderNo}}</div>
|
|
|
+ <div class="right_title">货主</div>
|
|
|
+ <div class="right_item">{{costData.cargoOwner}}</div>
|
|
|
+ <div class="right_title">司机</div>
|
|
|
+ <div class="right_item">{{costData.driverName}}</div>
|
|
|
+ <div class="right_title">发货单位</div>
|
|
|
+ <div class="right_item">{{costData.compName}}</div>
|
|
|
+ <div class="right_title">发货地</div>
|
|
|
+ <div class="right_item">
|
|
|
+ {{costData.sendPrivate}}{{costData.sendCity}}{{costData.sendArea}}{{costData.sendDetailedAddress}}
|
|
|
+ </div>
|
|
|
+ <div class="right_title">卸货地</div>
|
|
|
+ <div class="right_item">
|
|
|
+ {{costData.unloadPrivate}}{{costData.unloadCity}}{{costData.unloadArea}}{{costData.unloadDetailedAddress}}
|
|
|
+ </div>
|
|
|
+ <div class="right_title">货名</div>
|
|
|
+ <div class="right_item">{{costData.goodsName}}</div>
|
|
|
+ <div class="right_title">距离</div>
|
|
|
+ <div class="right_item">约{{costData.distance ? costData.distance : 0}}km</div>
|
|
|
+ <div class="right_title">运费</div>
|
|
|
+ <div class="right_item">{{costData.freight}}</div>
|
|
|
+ <el-divider></el-divider>
|
|
|
+ <div v-if="costData.carrierInfo">
|
|
|
+ <div class="title_name">承运信息</div>
|
|
|
+ <div class="right_title">承运合同编号</div>
|
|
|
+ <div class="right_item">{{costData.carrierInfo.orderNo}}</div>
|
|
|
+ <div class="right_title">委托合同编号</div>
|
|
|
+ <div class="right_item">{{costData.carrierInfo.orderNo}}</div>
|
|
|
+ <div class="right_title">车牌号</div>
|
|
|
+ <div class="right_item">{{costData.carrierInfo.carNo}}</div>
|
|
|
+ <div class="right_title">预计运费</div>
|
|
|
+ <div class="right_item">{{costData.carrierInfo.estimatedFreight}}</div>
|
|
|
+ <div class="right_title">装车时间</div>
|
|
|
+ <div class="right_item">{{costData.carrierInfo.loadingDate}}</div>
|
|
|
+ <div class="right_title">装车照片</div>
|
|
|
+ <div style="display: flex;">
|
|
|
+ <div v-for="(item,index) in costData.carrierInfo.loadingImg.split(',')">
|
|
|
+ <img :src="item" class="img_css">
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <el-divider></el-divider>
|
|
|
+ <div v-if="costData.freightInfo">
|
|
|
+ <div class="title_name">运费信息(单位:元)</div>
|
|
|
+ <div class="right_title">预付运费</div>
|
|
|
+ <div class="right_item">{{costData.freightInfo.prepaidFreight}} <span
|
|
|
+ style="margin-left: 100px;">{{costData.freightInfo.prepaidFreightDate}}</span></div>
|
|
|
+ <div class="right_title">运费尾款</div>
|
|
|
+ <div class="right_item">{{costData.freightInfo.freightBalance}} <span
|
|
|
+ style="margin-left: 100px;">{{costData.freightInfo.freightBalanceDate}}</span></div>
|
|
|
+ <div class="right_title">明细</div>
|
|
|
+ <div class="right_item">
|
|
|
+ 预付{{costData.freightInfo.prepaidFreight ? costData.freightInfo.prepaidFreight : 0}}元,扣款{{costData.freightInfo.deduction ? costData.freightInfo.deduction : 0}}元,服务费{{costData.freightInfo.serviceCharge ? costData.freightInfo.serviceCharge:0}}元,尾款{{costData.freightInfo.freightBalance ? costData.freightInfo.freightBalance:0}}元,合计收款{{costData.freightInfo.totalRepayable ? costData.freightInfo.totalRepayable:0}}元。
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <el-divider></el-divider>
|
|
|
+ <div v-if="costData.repaymentInfo">
|
|
|
+ <div class="title_name">还款信息</div>
|
|
|
+ <div class="right_title">运费</div>
|
|
|
+ <div class="right_item">{{costData.freight}}</div>
|
|
|
+ <div class="right_title">超期费(每天3%)</div>
|
|
|
+ <div class="right_item">{{costData.repaymentInfo.overdueFee}}</div>
|
|
|
+ <div class="right_title">合计应还</div>
|
|
|
+ <div class="right_item">{{costData.repaymentInfo.totalRepayable}}</div>
|
|
|
+ <div class="right_title">还款(尾号6666)</div>
|
|
|
+ <div class="right_item">{{costData.repaymentInfo.alreadyRepaid}}</div>
|
|
|
+ </div>
|
|
|
+ <div class="right_btn">
|
|
|
+ <el-button @click="submit(1)" v-if="costData.orderStatusKey == 9 && costData.orderStatusKey == 19">
|
|
|
+ 确认</el-button>
|
|
|
+ <el-button @click="submit(2)" v-if="costData.orderStatusKey == 9 && costData.orderStatusKey == 19">
|
|
|
+ 驳回</el-button>
|
|
|
+ <el-button @click="complete" v-if="costData.cargoOwnerStatusKey == 29">完结</el-button>
|
|
|
+ <el-button @click="rightSee = false">关闭</el-button>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </el-drawer>
|
|
|
+ </div>
|
|
|
</template>
|
|
|
<script>
|
|
|
- import {
|
|
|
- getListData,
|
|
|
- getData,
|
|
|
- auditData,
|
|
|
- endData,
|
|
|
- editEndData,
|
|
|
+ import {
|
|
|
+ getListData,
|
|
|
+ getData,
|
|
|
+ auditData,
|
|
|
+ endData,
|
|
|
+ editEndData,
|
|
|
batchData
|
|
|
- } from '@/api/orderManagement'
|
|
|
- export default {
|
|
|
- data() {
|
|
|
- return {
|
|
|
- tableData: [],
|
|
|
- //分页
|
|
|
- searchkeyWord: "",
|
|
|
- currentPage: 1,
|
|
|
- pageSize: 10,
|
|
|
- deptBudgetTotal: 0,
|
|
|
- deptCircularPage: {},
|
|
|
- search: "",
|
|
|
- addressUrl: [],
|
|
|
- disabled: false,
|
|
|
- costInfo: false,
|
|
|
- userInfo: false,
|
|
|
- rejectInfo: false,
|
|
|
- startDate: "",
|
|
|
- endDate: "",
|
|
|
- form: {
|
|
|
- checkList: [],
|
|
|
- textarea: "",
|
|
|
- },
|
|
|
- value1: "",
|
|
|
- costData: {},
|
|
|
- rightSee: false,
|
|
|
- modification:[],
|
|
|
- };
|
|
|
- },
|
|
|
- mounted() {
|
|
|
- this.getList()
|
|
|
- },
|
|
|
- methods: {
|
|
|
- getList() {
|
|
|
- this.loading = true
|
|
|
- let _obj = {}
|
|
|
- _obj.currentPage = this.currentPage
|
|
|
- _obj.pageSize = this.pageSize
|
|
|
- _obj.searchKeyWord = this.searchkeyWord
|
|
|
- _obj.searchType = this.search
|
|
|
- _obj.startDate = this.startDate
|
|
|
- _obj.endDate = this.endDate
|
|
|
- getListData(_obj).then(response => {
|
|
|
- this.tableData = response.data.records
|
|
|
- this.deptBudgetTotal = response.data.total
|
|
|
- this.listLoading = false
|
|
|
- })
|
|
|
- .catch(() => {
|
|
|
- this.listLoading = false
|
|
|
- })
|
|
|
- },
|
|
|
+ } from '@/api/orderManagement'
|
|
|
+ export default {
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ tableData: [],
|
|
|
+ //分页
|
|
|
+ searchkeyWord: "",
|
|
|
+ currentPage: 1,
|
|
|
+ pageSize: 10,
|
|
|
+ deptBudgetTotal: 0,
|
|
|
+ deptCircularPage: {},
|
|
|
+ search: "",
|
|
|
+ addressUrl: [],
|
|
|
+ disabled: false,
|
|
|
+ costInfo: false,
|
|
|
+ userInfo: false,
|
|
|
+ rejectInfo: false,
|
|
|
+ startDate: "",
|
|
|
+ endDate: "",
|
|
|
+ form: {
|
|
|
+ checkList: [],
|
|
|
+ textarea: "",
|
|
|
+ },
|
|
|
+ value1: "",
|
|
|
+ costData: {},
|
|
|
+ rightSee: false,
|
|
|
+ modification: [],
|
|
|
+ };
|
|
|
+ },
|
|
|
+ mounted() {
|
|
|
+ this.getList()
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ getList() {
|
|
|
+ this.loading = true
|
|
|
+ let _obj = {}
|
|
|
+ _obj.currentPage = this.currentPage
|
|
|
+ _obj.pageSize = this.pageSize
|
|
|
+ _obj.searchKeyWord = this.searchkeyWord
|
|
|
+ _obj.searchType = this.search
|
|
|
+ _obj.startDate = this.startDate
|
|
|
+ _obj.endDate = this.endDate
|
|
|
+ getListData(_obj).then(response => {
|
|
|
+ this.tableData = response.data.records
|
|
|
+ this.deptBudgetTotal = response.data.total
|
|
|
+ this.listLoading = false
|
|
|
+ })
|
|
|
+ .catch(() => {
|
|
|
+ this.listLoading = false
|
|
|
+ })
|
|
|
+ },
|
|
|
//开票
|
|
|
- billing(){
|
|
|
- console.log(this.modification)
|
|
|
- let data = {
|
|
|
- orderInfoList: this.modification,
|
|
|
- }
|
|
|
+ billing() {
|
|
|
+ let data = {
|
|
|
+ orderInfoList: this.modification,
|
|
|
+ }
|
|
|
this.listLoading = true
|
|
|
- debugger
|
|
|
batchData(data).then(response => {
|
|
|
- debugger
|
|
|
- console.log(response)
|
|
|
- // this.tableData = response.data.records
|
|
|
- // this.deptBudgetTotal = response.data.total
|
|
|
- this.listLoading = false
|
|
|
- })
|
|
|
- .catch(() => {
|
|
|
- this.listLoading = false
|
|
|
- })
|
|
|
+ this.getList()
|
|
|
+ this.listLoading = false
|
|
|
+ })
|
|
|
+ .catch(() => {
|
|
|
+ this.listLoading = false
|
|
|
+ })
|
|
|
},
|
|
|
- selectInit(){
|
|
|
+ selectInit() {
|
|
|
return true;
|
|
|
},
|
|
|
- handleRowClick(){},
|
|
|
- handleSelectionChange(val){
|
|
|
- this.modification = val
|
|
|
+ handleRowClick() {},
|
|
|
+ handleSelectionChange(val) {
|
|
|
+ this.modification = val
|
|
|
+ },
|
|
|
+ see(row) {
|
|
|
+ this.loading = true
|
|
|
+ getData({
|
|
|
+ id: row.id
|
|
|
+ }).then(response => {
|
|
|
+ this.costData = response.data
|
|
|
+ this.rightSee = true
|
|
|
+ // this.deptBudgetTotal = response.data.total
|
|
|
+ this.listLoading = false
|
|
|
+ })
|
|
|
+ .catch(() => {
|
|
|
+ this.listLoading = false
|
|
|
+ })
|
|
|
+ },
|
|
|
+ complete() {
|
|
|
+ this.$confirm('确定订单已完结?', '提示', {
|
|
|
+ confirmButtonText: '确定',
|
|
|
+ cancelButtonText: '取消',
|
|
|
+ type: 'warning',
|
|
|
+ })
|
|
|
+ .then(() => {
|
|
|
+ this.listLoading = true
|
|
|
+ editEndData({
|
|
|
+ id: this.costData.id
|
|
|
+ }).then(response => {
|
|
|
+ this.getList()
|
|
|
+ this.listLoading = false
|
|
|
+ })
|
|
|
+ .catch(() => {
|
|
|
+ this.listLoading = false
|
|
|
+ })
|
|
|
+ })
|
|
|
+
|
|
|
+ },
|
|
|
+ end(row) {
|
|
|
+ this.$confirm('确定终止该订单?', '提示', {
|
|
|
+ confirmButtonText: '确定',
|
|
|
+ cancelButtonText: '取消',
|
|
|
+ type: 'warning',
|
|
|
+ })
|
|
|
+ .then(() => {
|
|
|
+ this.listLoading = true
|
|
|
+ endData({
|
|
|
+ id: row.id,
|
|
|
+ terminator: '3'
|
|
|
+ }).then(response => {
|
|
|
+ this.$notify({
|
|
|
+ title: '成功',
|
|
|
+ message: '终止成功!',
|
|
|
+ type: 'success'
|
|
|
+ });
|
|
|
+ this.getList()
|
|
|
+ this.listLoading = false
|
|
|
+ })
|
|
|
+ .catch(() => {
|
|
|
+ this.listLoading = false
|
|
|
+ })
|
|
|
+ })
|
|
|
+ },
|
|
|
+ dateChange(e) {
|
|
|
+ this.startDate = e[0]
|
|
|
+ this.endDate = e[1]
|
|
|
+ this.getList()
|
|
|
+ },
|
|
|
+ account() {
|
|
|
+ this.userInfo = true;
|
|
|
+ },
|
|
|
+ userClose() {
|
|
|
+ this.userInfo = false;
|
|
|
+ },
|
|
|
+ costLook(row) {
|
|
|
+ this.costData = row
|
|
|
+ this.costInfo = true;
|
|
|
+ },
|
|
|
+ costClose() {
|
|
|
+ this.costInfo = false;
|
|
|
+ },
|
|
|
+ searchBtn(num) {
|
|
|
+ this.search = num;
|
|
|
+ this.getList();
|
|
|
+ },
|
|
|
+ find() {
|
|
|
+ this.getList();
|
|
|
+ },
|
|
|
+ submit(num) {
|
|
|
+ var _data = {}
|
|
|
+ _data.id = this.costData.id
|
|
|
+ _data.examineFlag = num
|
|
|
+ if (this.costData.orderStatusKey == 9) {
|
|
|
+ _data.loadingFlag = 1
|
|
|
+ } else if (this.costData.orderStatusKey == 19) {
|
|
|
+ _data.loadingFlag = 2
|
|
|
+ }
|
|
|
+ this.$confirm('确定订单已完结?', '提示', {
|
|
|
+ confirmButtonText: '确定',
|
|
|
+ cancelButtonText: '取消',
|
|
|
+ type: 'warning',
|
|
|
+ })
|
|
|
+ .then(() => {
|
|
|
+ this.listLoading = true
|
|
|
+ auditData(_data).then(response => {
|
|
|
+ this.$notify({
|
|
|
+ title: '成功',
|
|
|
+ message: '操作成功!',
|
|
|
+ type: 'success'
|
|
|
+ });
|
|
|
+ this.rightSee = false
|
|
|
+ this.getList()
|
|
|
+ this.listLoading = false
|
|
|
+ })
|
|
|
+ .catch(() => {
|
|
|
+ this.listLoading = false
|
|
|
+ })
|
|
|
+ })
|
|
|
+ },
|
|
|
+ reject(row) {
|
|
|
+ this.rejectInfo = true
|
|
|
+ },
|
|
|
+ rejectClose() {
|
|
|
+ this.form = {}
|
|
|
+ this.form.checkList = []
|
|
|
+ this.rejectInfo = false
|
|
|
+ },
|
|
|
+ onChange() {
|
|
|
+ this.$refs.upload
|
|
|
+ .handleSaveBill()
|
|
|
+ .then(async (response) => {
|
|
|
+ this.formData.addressUrl = response;
|
|
|
+ })
|
|
|
+ .catch((res) => {
|
|
|
+ EventBus.$emit("error", (JSON.parse(res) || {}).message);
|
|
|
+ this.$refs.upload.clearFiles();
|
|
|
+ });
|
|
|
+ },
|
|
|
+ handleSizeChange(val) {
|
|
|
+ console.log(`每页 ${val} 条`);
|
|
|
+ this.pageSize = val;
|
|
|
+ this.getList();
|
|
|
+ },
|
|
|
+ handleCurrentChange(val) {
|
|
|
+ this.currentPage = val;
|
|
|
+ console.log(`当前页: ${val}`);
|
|
|
+ this.getList();
|
|
|
},
|
|
|
- see(row) {
|
|
|
- this.loading = true
|
|
|
- getData({
|
|
|
- id: row.id
|
|
|
- }).then(response => {
|
|
|
- this.costData = response.data
|
|
|
- this.rightSee = true
|
|
|
- // this.deptBudgetTotal = response.data.total
|
|
|
- this.listLoading = false
|
|
|
- })
|
|
|
- .catch(() => {
|
|
|
- this.listLoading = false
|
|
|
- })
|
|
|
- },
|
|
|
- complete() {
|
|
|
- this.$confirm('确定订单已完结?', '提示', {
|
|
|
- confirmButtonText: '确定',
|
|
|
- cancelButtonText: '取消',
|
|
|
- type: 'warning',
|
|
|
- })
|
|
|
- .then(() => {
|
|
|
- this.listLoading = true
|
|
|
- editEndData({
|
|
|
- id: this.costData.id
|
|
|
- }).then(response => {
|
|
|
- this.getList()
|
|
|
- this.listLoading = false
|
|
|
- })
|
|
|
- .catch(() => {
|
|
|
- this.listLoading = false
|
|
|
- })
|
|
|
- })
|
|
|
-
|
|
|
- },
|
|
|
- end(row) {
|
|
|
- this.$confirm('确定终止该订单?', '提示', {
|
|
|
- confirmButtonText: '确定',
|
|
|
- cancelButtonText: '取消',
|
|
|
- type: 'warning',
|
|
|
- })
|
|
|
- .then(() => {
|
|
|
- this.listLoading = true
|
|
|
- endData({
|
|
|
- id: row.id,
|
|
|
- terminator: '3'
|
|
|
- }).then(response => {
|
|
|
- this.$notify({
|
|
|
- title: '成功',
|
|
|
- message: '终止成功!',
|
|
|
- type: 'success'
|
|
|
- });
|
|
|
- this.getList()
|
|
|
- this.listLoading = false
|
|
|
- })
|
|
|
- .catch(() => {
|
|
|
- this.listLoading = false
|
|
|
- })
|
|
|
- })
|
|
|
- },
|
|
|
- dateChange(e) {
|
|
|
- this.startDate = e[0]
|
|
|
- this.endDate = e[1]
|
|
|
- this.getList()
|
|
|
- },
|
|
|
- account() {
|
|
|
- this.userInfo = true;
|
|
|
- },
|
|
|
- userClose() {
|
|
|
- this.userInfo = false;
|
|
|
- },
|
|
|
- costLook(row) {
|
|
|
- this.costData = row
|
|
|
- this.costInfo = true;
|
|
|
- },
|
|
|
- costClose() {
|
|
|
- this.costInfo = false;
|
|
|
- },
|
|
|
- searchBtn(num) {
|
|
|
- this.search = num;
|
|
|
- this.getList();
|
|
|
- },
|
|
|
- find() {
|
|
|
- this.getList();
|
|
|
- },
|
|
|
- submit(num) {
|
|
|
- var _data = {}
|
|
|
- _data.id = this.costData.id
|
|
|
- _data.examineFlag = num
|
|
|
- if (this.costData.orderStatusKey == 9) {
|
|
|
- _data.loadingFlag = 1
|
|
|
- } else if (this.costData.orderStatusKey == 19) {
|
|
|
- _data.loadingFlag = 2
|
|
|
- }
|
|
|
- this.$confirm('确定订单已完结?', '提示', {
|
|
|
- confirmButtonText: '确定',
|
|
|
- cancelButtonText: '取消',
|
|
|
- type: 'warning',
|
|
|
- })
|
|
|
- .then(() => {
|
|
|
- this.listLoading = true
|
|
|
- auditData(_data).then(response => {
|
|
|
- this.$notify({
|
|
|
- title: '成功',
|
|
|
- message: '操作成功!',
|
|
|
- type: 'success'
|
|
|
- });
|
|
|
- this.rightSee = false
|
|
|
- this.getList()
|
|
|
- this.listLoading = false
|
|
|
- })
|
|
|
- .catch(() => {
|
|
|
- this.listLoading = false
|
|
|
- })
|
|
|
- })
|
|
|
- },
|
|
|
- reject(row) {
|
|
|
- this.rejectInfo = true
|
|
|
- },
|
|
|
- rejectClose() {
|
|
|
- this.form = {}
|
|
|
- this.form.checkList = []
|
|
|
- this.rejectInfo = false
|
|
|
- },
|
|
|
- onChange() {
|
|
|
- this.$refs.upload
|
|
|
- .handleSaveBill()
|
|
|
- .then(async (response) => {
|
|
|
- this.formData.addressUrl = response;
|
|
|
- })
|
|
|
- .catch((res) => {
|
|
|
- EventBus.$emit("error", (JSON.parse(res) || {}).message);
|
|
|
- this.$refs.upload.clearFiles();
|
|
|
- });
|
|
|
- },
|
|
|
- handleSizeChange(val) {
|
|
|
- console.log(`每页 ${val} 条`);
|
|
|
- this.pageSize = val;
|
|
|
- this.getList();
|
|
|
- },
|
|
|
- handleCurrentChange(val) {
|
|
|
- this.currentPage = val;
|
|
|
- console.log(`当前页: ${val}`);
|
|
|
- this.getList();
|
|
|
- },
|
|
|
- },
|
|
|
- };
|
|
|
+ },
|
|
|
+ };
|
|
|
</script>
|
|
|
<style lang="scss" scoped>
|
|
|
- .center {
|
|
|
- padding: 10px 20px;
|
|
|
- background: #f5f6f7;
|
|
|
- height: calc(100vh - 5vh);
|
|
|
-
|
|
|
-
|
|
|
- .top_css {
|
|
|
- padding: 10px;
|
|
|
-
|
|
|
- .search_btn {
|
|
|
- display: flex;
|
|
|
- margin-top: 20px;
|
|
|
-
|
|
|
- .search_item {
|
|
|
- text-align: center;
|
|
|
- font-size: 14px;
|
|
|
- font-weight: 600;
|
|
|
- line-height: 40px;
|
|
|
- width: 112px;
|
|
|
- height: 40px;
|
|
|
- background: #f7f8f9;
|
|
|
- cursor: pointer
|
|
|
- }
|
|
|
-
|
|
|
- .searchNo {
|
|
|
- color: #323233;
|
|
|
- }
|
|
|
-
|
|
|
- .search {
|
|
|
- color: #2f53eb;
|
|
|
- background: #ffffff;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- .center_css {
|
|
|
- background: #ffffff;
|
|
|
- border-radius: 1px;
|
|
|
- margin-top: 10px;
|
|
|
- padding-bottom: 10px;
|
|
|
- }
|
|
|
-
|
|
|
- .screen {
|
|
|
- display: flex;
|
|
|
-
|
|
|
- .search {
|
|
|
- width: 40px;
|
|
|
- height: 40px;
|
|
|
- background: #f7f8fa;
|
|
|
- border-radius: 0px 2px 2px 0px;
|
|
|
- border: 1px solid #f0f1f2;
|
|
|
- }
|
|
|
-
|
|
|
- .count_css {
|
|
|
- width: 80px;
|
|
|
- text-align: center;
|
|
|
- line-height: 40px;
|
|
|
- color: #666666;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- .el-button {
|
|
|
- padding: 10px 20px !important;
|
|
|
- }
|
|
|
-
|
|
|
- .center_css {
|
|
|
-
|
|
|
- ::v-deep .el-table th,
|
|
|
- ::v-deep .el-table td {
|
|
|
- text-align: center;
|
|
|
- }
|
|
|
-
|
|
|
- .fujian {
|
|
|
- font-size: 24px;
|
|
|
- color: #409eff;
|
|
|
- }
|
|
|
-
|
|
|
- .warning {
|
|
|
- font-size: 14px;
|
|
|
- color: #ed1d1d;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- .cost_css {
|
|
|
- .cost_item {
|
|
|
- width: 100%;
|
|
|
- display: flex;
|
|
|
- margin-bottom: 20px;
|
|
|
-
|
|
|
- .cost_title {
|
|
|
- width: 50%;
|
|
|
- text-align: left;
|
|
|
- color: #9D9D9D;
|
|
|
- }
|
|
|
-
|
|
|
- .cost_value {
|
|
|
- width: 50%;
|
|
|
- color: #0D0D0D;
|
|
|
- text-align: right;
|
|
|
- }
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- .right_btn {
|
|
|
- text-align: right;
|
|
|
- margin-top: 10px;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- .user {
|
|
|
- margin-bottom: 20px;
|
|
|
-
|
|
|
- .user_id {
|
|
|
- display: flex;
|
|
|
- height: 30px;
|
|
|
- }
|
|
|
-
|
|
|
- .name_css,
|
|
|
- .id_css {
|
|
|
- width: 50%;
|
|
|
- }
|
|
|
-
|
|
|
- .name_css {
|
|
|
- text-align: right;
|
|
|
- }
|
|
|
-
|
|
|
- .user_item {
|
|
|
- width: 450px;
|
|
|
- height: 300px;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- ::v-deep .el-table--border .el-table__header th {
|
|
|
- background: #f7f8f9;
|
|
|
- }
|
|
|
-
|
|
|
- .btn_css {
|
|
|
- color: #409EFF;
|
|
|
- cursor: pointer
|
|
|
- }
|
|
|
-
|
|
|
- .sign {
|
|
|
- font-size: 14px;
|
|
|
- color: red;
|
|
|
- }
|
|
|
-
|
|
|
- .form_css {
|
|
|
- width: 100%;
|
|
|
- margin: 20px auto 20px;
|
|
|
-
|
|
|
- ::v-deep .el-checkbox {
|
|
|
- width: 40%;
|
|
|
- height: 30px;
|
|
|
- }
|
|
|
-
|
|
|
- // ::v-deep .el-dialog__body{
|
|
|
- // padding: 10px 20px;
|
|
|
- // }
|
|
|
- ::v-deep .el-dialog__title {
|
|
|
- font-size: 16px;
|
|
|
- }
|
|
|
-
|
|
|
- ::v-deep .el-textarea__inner {
|
|
|
- background: #F0F1F2;
|
|
|
- }
|
|
|
-
|
|
|
- .form_btn {
|
|
|
- text-align: right;
|
|
|
- margin-top: 10px;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- .right_css {
|
|
|
- // overflow-y: auto !important;
|
|
|
- min-height: 1266px;
|
|
|
- padding: 0 20px;
|
|
|
-
|
|
|
- .right_title {
|
|
|
- color: #9D9D9D;
|
|
|
- font-size: 14px;
|
|
|
- margin-bottom: 4px;
|
|
|
- }
|
|
|
-
|
|
|
- .title_name {
|
|
|
- margin-bottom: 10px;
|
|
|
- }
|
|
|
-
|
|
|
- .right_item {
|
|
|
- color: #0D0D0D;
|
|
|
- font-size: 14px;
|
|
|
- margin-bottom: 10px;
|
|
|
- }
|
|
|
-
|
|
|
- .right_btn {
|
|
|
- text-align: right;
|
|
|
- margin: 10px 0;
|
|
|
- }
|
|
|
-
|
|
|
- .img_css {
|
|
|
- width: 100px;
|
|
|
- height: 80px;
|
|
|
- margin-right: 5px;
|
|
|
- }
|
|
|
-
|
|
|
- .right_img {
|
|
|
- width: 200px;
|
|
|
- height: 120px;
|
|
|
- margin-top: 10px;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- ::v-deep .el-drawer {
|
|
|
- overflow: auto;
|
|
|
- }
|
|
|
+ .center {
|
|
|
+ padding: 10px 20px;
|
|
|
+ background: #f5f6f7;
|
|
|
+ height: calc(100vh - 5vh);
|
|
|
+
|
|
|
+
|
|
|
+ .top_css {
|
|
|
+ padding: 10px;
|
|
|
+
|
|
|
+ .search_btn {
|
|
|
+ height: 80px;
|
|
|
+ background: linear-gradient(#fafbfb, #ffffff);
|
|
|
+ display: flex;
|
|
|
+ margin-top: 20px;
|
|
|
+ .search_block{
|
|
|
+ margin-left: 20px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .search_item {
|
|
|
+ text-align: center;
|
|
|
+ font-size: 14px;
|
|
|
+ font-weight: 600;
|
|
|
+ line-height: 40px;
|
|
|
+ width: 112px;
|
|
|
+ height: 40px;
|
|
|
+ background: #f7f8f9;
|
|
|
+ cursor: pointer;
|
|
|
+ margin-top: 30px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .searchNo {
|
|
|
+ color: #323233;
|
|
|
+ }
|
|
|
+
|
|
|
+ .search {
|
|
|
+ color: #2f53eb;
|
|
|
+ background: #ffffff;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .center_css {
|
|
|
+ background: #ffffff;
|
|
|
+ border-radius: 1px;
|
|
|
+ margin-top: 10px;
|
|
|
+ padding-bottom: 10px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .screen {
|
|
|
+ display: flex;
|
|
|
+
|
|
|
+ .search {
|
|
|
+ width: 40px;
|
|
|
+ height: 40px;
|
|
|
+ background: #f7f8fa;
|
|
|
+ border-radius: 0px 2px 2px 0px;
|
|
|
+ border: 1px solid #f0f1f2;
|
|
|
+ }
|
|
|
+
|
|
|
+ .count_css {
|
|
|
+ width: 80px;
|
|
|
+ text-align: center;
|
|
|
+ line-height: 40px;
|
|
|
+ color: #666666;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .el-button {
|
|
|
+ padding: 10px 20px !important;
|
|
|
+ }
|
|
|
+
|
|
|
+ .center_css {
|
|
|
+
|
|
|
+ ::v-deep .el-table th,
|
|
|
+ ::v-deep .el-table td {
|
|
|
+ text-align: center;
|
|
|
+ }
|
|
|
+
|
|
|
+ .fujian {
|
|
|
+ font-size: 24px;
|
|
|
+ color: #409eff;
|
|
|
+ }
|
|
|
+
|
|
|
+ .warning {
|
|
|
+ font-size: 14px;
|
|
|
+ color: #ed1d1d;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .cost_css {
|
|
|
+ .cost_item {
|
|
|
+ width: 100%;
|
|
|
+ display: flex;
|
|
|
+ margin-bottom: 20px;
|
|
|
+
|
|
|
+ .cost_title {
|
|
|
+ width: 50%;
|
|
|
+ text-align: left;
|
|
|
+ color: #9D9D9D;
|
|
|
+ }
|
|
|
+
|
|
|
+ .cost_value {
|
|
|
+ width: 50%;
|
|
|
+ color: #0D0D0D;
|
|
|
+ text-align: right;
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ .right_btn {
|
|
|
+ text-align: right;
|
|
|
+ margin-top: 10px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .user {
|
|
|
+ margin-bottom: 20px;
|
|
|
+
|
|
|
+ .user_id {
|
|
|
+ display: flex;
|
|
|
+ height: 30px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .name_css,
|
|
|
+ .id_css {
|
|
|
+ width: 50%;
|
|
|
+ }
|
|
|
+
|
|
|
+ .name_css {
|
|
|
+ text-align: right;
|
|
|
+ }
|
|
|
+
|
|
|
+ .user_item {
|
|
|
+ width: 450px;
|
|
|
+ height: 300px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ ::v-deep .el-table--border .el-table__header th {
|
|
|
+ background: #f7f8f9;
|
|
|
+ }
|
|
|
+
|
|
|
+ .btn_css {
|
|
|
+ color: #409EFF;
|
|
|
+ cursor: pointer
|
|
|
+ }
|
|
|
+
|
|
|
+ .sign {
|
|
|
+ font-size: 14px;
|
|
|
+ color: red;
|
|
|
+ }
|
|
|
+
|
|
|
+ .form_css {
|
|
|
+ width: 100%;
|
|
|
+ margin: 20px auto 20px;
|
|
|
+
|
|
|
+ ::v-deep .el-checkbox {
|
|
|
+ width: 40%;
|
|
|
+ height: 30px;
|
|
|
+ }
|
|
|
+
|
|
|
+ // ::v-deep .el-dialog__body{
|
|
|
+ // padding: 10px 20px;
|
|
|
+ // }
|
|
|
+ ::v-deep .el-dialog__title {
|
|
|
+ font-size: 16px;
|
|
|
+ }
|
|
|
+
|
|
|
+ ::v-deep .el-textarea__inner {
|
|
|
+ background: #F0F1F2;
|
|
|
+ }
|
|
|
+
|
|
|
+ .form_btn {
|
|
|
+ text-align: right;
|
|
|
+ margin-top: 10px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .right_css {
|
|
|
+ // overflow-y: auto !important;
|
|
|
+ min-height: 1266px;
|
|
|
+ padding: 0 20px;
|
|
|
+
|
|
|
+ .right_title {
|
|
|
+ color: #9D9D9D;
|
|
|
+ font-size: 14px;
|
|
|
+ margin-bottom: 4px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .title_name {
|
|
|
+ margin-bottom: 10px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .right_item {
|
|
|
+ color: #0D0D0D;
|
|
|
+ font-size: 14px;
|
|
|
+ margin-bottom: 10px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .right_btn {
|
|
|
+ text-align: right;
|
|
|
+ margin: 10px 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ .img_css {
|
|
|
+ width: 100px;
|
|
|
+ height: 80px;
|
|
|
+ margin-right: 5px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .right_img {
|
|
|
+ width: 200px;
|
|
|
+ height: 120px;
|
|
|
+ margin-top: 10px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ ::v-deep .el-drawer {
|
|
|
+ overflow: auto;
|
|
|
+ }
|
|
|
</style>
|