修改按钮颜色
This commit is contained in:
parent
f6bd288b5e
commit
ac8a0490ca
|
|
@ -34,7 +34,7 @@
|
||||||
/>
|
/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="4" style="float:right;">
|
<el-col :span="4" style="float:left;">
|
||||||
<el-form-item>
|
<el-form-item>
|
||||||
<el-button class="primary-lease" type="primary" @click="getEquipmentApplyList">
|
<el-button class="primary-lease" type="primary" @click="getEquipmentApplyList">
|
||||||
查询
|
查询
|
||||||
|
|
@ -42,6 +42,13 @@
|
||||||
<el-button class="primary-lease" type="primary" @click="resetForm">
|
<el-button class="primary-lease" type="primary" @click="resetForm">
|
||||||
重置
|
重置
|
||||||
</el-button>
|
</el-button>
|
||||||
|
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="2" style="float:right;">
|
||||||
|
<el-form-item>
|
||||||
|
|
||||||
<el-button
|
<el-button
|
||||||
class="primary-lease"
|
class="primary-lease"
|
||||||
type="primary"
|
type="primary"
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="app-container">
|
<div class="app-container">
|
||||||
<el-row :gutter="24" class="main-content" type="justify">
|
<el-row :gutter="24" class="main-content" type="justify">
|
||||||
<el-col :span="collapsed ? 1: 5" class="tree-column" style="">
|
<el-col :span="collapsed ? 1: 5" class="tree-column" >
|
||||||
<div class="card-container" v-if="!collapsed">
|
<div class="card-container" v-if="!collapsed">
|
||||||
<div class="card-header" v-if="!collapsed">
|
<div class="card-header" v-if="!collapsed">
|
||||||
<!-- 只有在未折叠状态显示标题 -->
|
<!-- 只有在未折叠状态显示标题 -->
|
||||||
|
|
@ -18,10 +18,9 @@
|
||||||
class="tree-container"
|
class="tree-container"
|
||||||
:loading="treeLoading"
|
:loading="treeLoading"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<div style="position: relative;width:20px;height: calc(100vh - 130px);margin-left: 5px">
|
|
||||||
|
<div style="position: relative;width:30px;height: calc(100vh - 130px);margin-left: 5px">
|
||||||
<!-- 右侧折叠/展开按钮 -->
|
<!-- 右侧折叠/展开按钮 -->
|
||||||
<el-button
|
<el-button
|
||||||
icon="el-icon-d-arrow-left"
|
icon="el-icon-d-arrow-left"
|
||||||
|
|
@ -184,13 +183,15 @@
|
||||||
<!-- 状态统计和操作按钮 - 固定定位 -->
|
<!-- 状态统计和操作按钮 - 固定定位 -->
|
||||||
<div class="status-operation-bar sticky-bar">
|
<div class="status-operation-bar sticky-bar">
|
||||||
<div class="operation-buttons">
|
<div class="operation-buttons">
|
||||||
<el-button icon="el-icon-refresh" style="float: right;margin-left: 20px" type="primary" size="mini" @click="resetQuery">
|
|
||||||
重置
|
<el-button type="primary" style="float: left" icon="el-icon-search" size="mini" @click="getDeviceList">
|
||||||
</el-button>
|
|
||||||
<el-button type="primary" style="float: right" icon="el-icon-search" size="mini" @click="getDeviceList"
|
|
||||||
>
|
|
||||||
查询
|
查询
|
||||||
</el-button>
|
</el-button>
|
||||||
|
|
||||||
|
<el-button icon="el-icon-refresh" style="float: left" type="primary" size="mini" @click="resetQuery">
|
||||||
|
重置
|
||||||
|
</el-button>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
@ -1273,6 +1274,8 @@ export default {
|
||||||
font-size: 15px;
|
font-size: 15px;
|
||||||
color: #1f2d3d;
|
color: #1f2d3d;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
|
|
||||||
|
width: 675px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.table-count {
|
.table-count {
|
||||||
|
|
@ -1343,7 +1346,8 @@ export default {
|
||||||
.stat-value {
|
.stat-value {
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
color: #1f2d3d;
|
//color: #1f2d3d;
|
||||||
|
color: #1a73e8;
|
||||||
}
|
}
|
||||||
|
|
||||||
.operation-buttons {
|
.operation-buttons {
|
||||||
|
|
@ -1476,5 +1480,10 @@ export default {
|
||||||
transition: all 0.3s ease;
|
transition: all 0.3s ease;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.el-col-1 {
|
||||||
|
width: 1.5% !important;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
||||||
|
|
@ -65,13 +65,16 @@
|
||||||
</el-row>
|
</el-row>
|
||||||
|
|
||||||
<el-row>
|
<el-row>
|
||||||
<el-col style="text-align: right">
|
<el-col style="text-align: left">
|
||||||
<el-button type="primary" icon="el-icon-search" size="mini" @click="onHandleQuery">
|
<el-button type="primary" icon="el-icon-search" size="mini" @click="onHandleQuery">
|
||||||
查询
|
查询
|
||||||
</el-button>
|
</el-button>
|
||||||
<el-button icon="el-icon-refresh" size="mini" @click="onHandleReset">重置</el-button>
|
<el-button type="primary" icon="el-icon-refresh" size="mini" @click="onHandleReset">重置</el-button>
|
||||||
<el-button icon="el-icon-refresh" size="mini" @click="onHandleBatchRetire">批量退役</el-button>
|
<el-button type="primary" icon="el-icon-refresh" size="mini" @click="onHandleBatchRetire" style="float: right;margin-right: 25px">批量退役</el-button>
|
||||||
|
|
||||||
</el-col>
|
</el-col>
|
||||||
|
|
||||||
|
|
||||||
</el-row>
|
</el-row>
|
||||||
</el-form>
|
</el-form>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<template>
|
<template>
|
||||||
<!-- 装备流转记录 -->
|
<!-- 装备流转记录 -->
|
||||||
<div class="app-container">
|
<div class="app-container">
|
||||||
<el-form ref="queryForm" size="small" inline label-width="auto" :model="queryParams">
|
<el-form ref="queryForm" size="small" inline label-width="auto" :model="queryParams" class="search-form">
|
||||||
<el-form-item prop="keyword">
|
<el-form-item prop="keyword">
|
||||||
<el-input
|
<el-input
|
||||||
clearable
|
clearable
|
||||||
|
|
@ -39,9 +39,15 @@
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item>
|
<el-form-item>
|
||||||
<el-button type="primary" icon="el-icon-search" size="mini" @click="onHandleQuery"> 查询 </el-button>
|
<el-button type="primary" icon="el-icon-search" size="mini" @click="onHandleQuery"> 查询 </el-button>
|
||||||
<el-button icon="el-icon-refresh" size="mini" @click="onHandleReset">重置</el-button>
|
<el-button type="primary" icon="el-icon-refresh" size="mini" @click="onHandleReset">重置</el-button>
|
||||||
<el-button icon="el-icon-refresh" size="mini" @click="onHandleExport">导出数据</el-button>
|
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
|
||||||
|
<el-col :span="2" style="float:right;">
|
||||||
|
<el-form-item>
|
||||||
|
<el-button type="primary" icon="el-icon-refresh" size="mini" @click="onHandleExport" >导出数据</el-button>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
</el-form>
|
</el-form>
|
||||||
|
|
||||||
<el-table :data="tableData" style="width: 100%">
|
<el-table :data="tableData" style="width: 100%">
|
||||||
|
|
@ -258,4 +264,6 @@ export default {
|
||||||
color: #333;
|
color: #333;
|
||||||
line-height: 40px;
|
line-height: 40px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|
|
||||||
|
|
@ -50,6 +50,11 @@
|
||||||
maxlength="20"
|
maxlength="20"
|
||||||
/>
|
/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
|
||||||
|
<el-form-item>
|
||||||
|
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">查询</el-button>
|
||||||
|
<el-button type="primary" icon="el-icon-refresh" size="mini" @click="resetQuery" >重置</el-button>
|
||||||
|
</el-form-item>
|
||||||
</el-row>
|
</el-row>
|
||||||
<!-- <el-form-item prop="lowerBound">
|
<!-- <el-form-item prop="lowerBound">
|
||||||
<el-input
|
<el-input
|
||||||
|
|
@ -72,10 +77,8 @@
|
||||||
style="width:100px"
|
style="width:100px"
|
||||||
/>
|
/>
|
||||||
</el-form-item>-->
|
</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-form>
|
||||||
<template v-if="cardList.length > 0">
|
<template v-if="cardList.length > 0">
|
||||||
<div class="cart-tbody" v-for="(item, index) in cardList" :key="index">
|
<div class="cart-tbody" v-for="(item, index) in cardList" :key="index">
|
||||||
|
|
@ -802,7 +805,7 @@ export default {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped >
|
||||||
/* .uploadImg {
|
/* .uploadImg {
|
||||||
padding-top: 20px;
|
padding-top: 20px;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
@ -1010,4 +1013,7 @@ export default {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|
|
||||||
|
|
@ -61,12 +61,14 @@
|
||||||
maxlength="20"
|
maxlength="20"
|
||||||
/>
|
/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
|
||||||
|
<el-form-item>
|
||||||
|
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">查询</el-button>
|
||||||
|
<el-button type="primary" icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
||||||
|
</el-form-item>
|
||||||
</el-row>
|
</el-row>
|
||||||
|
|
||||||
<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-form>
|
||||||
|
|
||||||
<!-- 订单列表 -->
|
<!-- 订单列表 -->
|
||||||
|
|
@ -210,7 +212,7 @@
|
||||||
<!-- 操作按钮 -->
|
<!-- 操作按钮 -->
|
||||||
<el-col :span="4">
|
<el-col :span="4">
|
||||||
<div>
|
<div>
|
||||||
<el-button @click="handleViewOrder(item)" type="primary" size="small">
|
<el-button @click="handleViewOrder(item)" type="primary" size="small" >
|
||||||
订单详情
|
订单详情
|
||||||
</el-button>
|
</el-button>
|
||||||
<el-button
|
<el-button
|
||||||
|
|
|
||||||
|
|
@ -55,7 +55,7 @@
|
||||||
|
|
||||||
<el-form-item>
|
<el-form-item>
|
||||||
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
<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-button type="primary" icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@
|
||||||
clearable
|
clearable
|
||||||
@keyup.enter.native="handleQuery"
|
@keyup.enter.native="handleQuery"
|
||||||
maxlength="20"
|
maxlength="20"
|
||||||
/>
|
/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item prop="code">
|
<el-form-item prop="code">
|
||||||
<el-input
|
<el-input
|
||||||
|
|
@ -61,7 +61,7 @@
|
||||||
|
|
||||||
<el-form-item>
|
<el-form-item>
|
||||||
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
<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-button type="primary" icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
|
|
||||||
|
|
@ -125,7 +125,7 @@
|
||||||
<!-- 查看租赁详情弹窗 -->
|
<!-- 查看租赁详情弹窗 -->
|
||||||
<el-dialog :title="title" :visible.sync="showDevice" width="1300px" height="1000px" append-to-body>
|
<el-dialog :title="title" :visible.sync="showDevice" width="1300px" height="1000px" append-to-body>
|
||||||
<div style="display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px;">
|
<div style="display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px;">
|
||||||
<div style="width:30%">
|
<div style="width:30%">
|
||||||
<span >装备编号:{{ deviceCode }}</span>
|
<span >装备编号:{{ deviceCode }}</span>
|
||||||
</div>
|
</div>
|
||||||
<div style="width: 30%">
|
<div style="width: 30%">
|
||||||
|
|
@ -133,7 +133,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div style="width: 30%">
|
<div style="width: 30%">
|
||||||
<span >装备状态:{{ deviceStatus }}</span>
|
<span >装备状态:{{ deviceStatus }}</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<el-form :model="queryDevice" ref="queryFormDevice" size="small" :inline="true" v-show="showSearch" label-width="68px">
|
<el-form :model="queryDevice" ref="queryFormDevice" size="small" :inline="true" v-show="showSearch" label-width="68px">
|
||||||
<el-form-item label="订单编号" prop="orderCode">
|
<el-form-item label="订单编号" prop="orderCode">
|
||||||
|
|
@ -193,7 +193,7 @@
|
||||||
<el-table-column label="承租人" align="center" prop="rentPerson" />
|
<el-table-column label="承租人" align="center" prop="rentPerson" />
|
||||||
<el-table-column label="下单时间" align="center" prop="orderTime" width="130px"/>
|
<el-table-column label="下单时间" align="center" prop="orderTime" width="130px"/>
|
||||||
</el-table>
|
</el-table>
|
||||||
|
|
||||||
<pagination
|
<pagination
|
||||||
v-show="totalTwo>0"
|
v-show="totalTwo>0"
|
||||||
:total="totalTwo"
|
:total="totalTwo"
|
||||||
|
|
@ -205,7 +205,7 @@
|
||||||
</el-dialog>
|
</el-dialog>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { getEquipmentTypeApi,getEquipmentListApi,getRentDetailApi,} from "@/api/search/equipment";
|
import { getEquipmentTypeApi,getEquipmentListApi,getRentDetailApi,} from "@/api/search/equipment";
|
||||||
|
|
@ -322,7 +322,7 @@ export default {
|
||||||
this.loading = false;
|
this.loading = false;
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
// 取消按钮
|
// 取消按钮
|
||||||
// cancel() {
|
// cancel() {
|
||||||
|
|
@ -365,7 +365,7 @@ export default {
|
||||||
this.queryParams.typeId = ''
|
this.queryParams.typeId = ''
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
//租赁详情
|
//租赁详情
|
||||||
handleDetail(row){
|
handleDetail(row){
|
||||||
this.deviceId = row.maId;
|
this.deviceId = row.maId;
|
||||||
|
|
@ -442,4 +442,4 @@ export default {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@
|
||||||
clearable
|
clearable
|
||||||
@keyup.enter.native="handleQuery"
|
@keyup.enter.native="handleQuery"
|
||||||
maxlength="20"
|
maxlength="20"
|
||||||
/>
|
/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item prop="orderStatus">
|
<el-form-item prop="orderStatus">
|
||||||
<el-select v-model="queryParams.orderStatus" placeholder="请选择订单状态" clearable>
|
<el-select v-model="queryParams.orderStatus" placeholder="请选择订单状态" clearable>
|
||||||
|
|
@ -24,14 +24,14 @@
|
||||||
<el-form-item prop="dateRange">
|
<el-form-item prop="dateRange">
|
||||||
<el-date-picker
|
<el-date-picker
|
||||||
v-model="time"
|
v-model="time"
|
||||||
type="daterange"
|
type="daterange"
|
||||||
value-format="yyyy-MM-dd"
|
value-format="yyyy-MM-dd"
|
||||||
range-separator="至"
|
range-separator="至"
|
||||||
start-placeholder="开始日期"
|
start-placeholder="开始日期"
|
||||||
end-placeholder="结束日期"
|
end-placeholder="结束日期"
|
||||||
>
|
>
|
||||||
</el-date-picker>
|
</el-date-picker>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item prop="czcompanyName">
|
<el-form-item prop="czcompanyName">
|
||||||
<el-input
|
<el-input
|
||||||
v-model="queryParams.czcompanyName"
|
v-model="queryParams.czcompanyName"
|
||||||
|
|
@ -39,7 +39,7 @@
|
||||||
clearable
|
clearable
|
||||||
@keyup.enter.native="handleQuery"
|
@keyup.enter.native="handleQuery"
|
||||||
maxlength="20"
|
maxlength="20"
|
||||||
/>
|
/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item prop="companyName">
|
<el-form-item prop="companyName">
|
||||||
<el-input
|
<el-input
|
||||||
|
|
@ -48,7 +48,7 @@
|
||||||
clearable
|
clearable
|
||||||
@keyup.enter.native="handleQuery"
|
@keyup.enter.native="handleQuery"
|
||||||
maxlength="20"
|
maxlength="20"
|
||||||
/>
|
/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-row>
|
</el-row>
|
||||||
<el-form-item prop="lowerBound">
|
<el-form-item prop="lowerBound">
|
||||||
|
|
@ -59,8 +59,8 @@
|
||||||
@keyup.enter.native="handleQuery"
|
@keyup.enter.native="handleQuery"
|
||||||
maxlength="20"
|
maxlength="20"
|
||||||
style="width:100px"
|
style="width:100px"
|
||||||
/>
|
/>
|
||||||
<span> ——</span>
|
<span> ——</span>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item prop="upperBound">
|
<el-form-item prop="upperBound">
|
||||||
<el-input
|
<el-input
|
||||||
|
|
@ -70,13 +70,13 @@
|
||||||
@keyup.enter.native="handleQuery"
|
@keyup.enter.native="handleQuery"
|
||||||
maxlength="20"
|
maxlength="20"
|
||||||
style="width:100px"
|
style="width:100px"
|
||||||
/>
|
/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item>
|
<el-form-item>
|
||||||
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">查询</el-button>
|
<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-button type="primary" icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
<template v-if="cardList.length > 0">
|
<template v-if="cardList.length > 0">
|
||||||
<div class="cart-tbody" v-for="(item, index) in cardList" :key="index">
|
<div class="cart-tbody" v-for="(item, index) in cardList" :key="index">
|
||||||
<el-row class="order-title-info">
|
<el-row class="order-title-info">
|
||||||
|
|
@ -345,7 +345,7 @@
|
||||||
<span>{{ overhaulDetails.leaseCompany }}</span>
|
<span>{{ overhaulDetails.leaseCompany }}</span>
|
||||||
</div>
|
</div>
|
||||||
</el-row>
|
</el-row>
|
||||||
|
|
||||||
<div style="padding: 6px 0 0 0; font-size: 18px; font-weight: bold; color: #eb190a">
|
<div style="padding: 6px 0 0 0; font-size: 18px; font-weight: bold; color: #eb190a">
|
||||||
总费用(元): <span>{{ overhaulDetails.totalCost }}</span>
|
总费用(元): <span>{{ overhaulDetails.totalCost }}</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -413,7 +413,7 @@
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
</el-table>
|
</el-table>
|
||||||
|
|
||||||
<TitleTip :titleText="`维修费用明细`" />
|
<TitleTip :titleText="`维修费用明细`" />
|
||||||
<el-table
|
<el-table
|
||||||
:data="repairRecordList"
|
:data="repairRecordList"
|
||||||
|
|
@ -569,7 +569,7 @@
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
</el-table>
|
</el-table>
|
||||||
|
|
||||||
</el-dialog>
|
</el-dialog>
|
||||||
|
|
||||||
<!-- 附件详情 -->
|
<!-- 附件详情 -->
|
||||||
|
|
@ -604,11 +604,11 @@
|
||||||
</el-dialog>
|
</el-dialog>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import TitleTip from '@/components/TitleTip'
|
import TitleTip from '@/components/TitleTip'
|
||||||
import { getOrderListApi,getOrderListInfoApi,getOverhaulApi } from "@/api/search/order";
|
import { getOrderListApi,getOrderListInfoApi,getOverhaulApi } from "@/api/search/order";
|
||||||
import moment from 'moment'
|
import moment from 'moment'
|
||||||
export default {
|
export default {
|
||||||
components: { TitleTip },
|
components: { TitleTip },
|
||||||
|
|
@ -617,15 +617,15 @@
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
// 遮罩层
|
// 遮罩层
|
||||||
loading: false,
|
loading: false,
|
||||||
// 非单个禁用
|
// 非单个禁用
|
||||||
single: true,
|
single: true,
|
||||||
// 非多个禁用
|
// 非多个禁用
|
||||||
multiple: true,
|
multiple: true,
|
||||||
// 显示搜索条件
|
// 显示搜索条件
|
||||||
showSearch: true,
|
showSearch: true,
|
||||||
statusList:
|
statusList:
|
||||||
[
|
[
|
||||||
{ id: '1', name: '待接单' },
|
{ id: '1', name: '待接单' },
|
||||||
{ id: '2', name: '待出库' },
|
{ id: '2', name: '待出库' },
|
||||||
{ id: '3', name: '待收货' },
|
{ id: '3', name: '待收货' },
|
||||||
|
|
@ -641,9 +641,9 @@
|
||||||
],
|
],
|
||||||
ids:[],
|
ids:[],
|
||||||
// 总条数
|
// 总条数
|
||||||
total: 0,
|
total: 0,
|
||||||
//表格数据
|
//表格数据
|
||||||
tableList: [],
|
tableList: [],
|
||||||
// 弹出层标题
|
// 弹出层标题
|
||||||
title: "",
|
title: "",
|
||||||
// 是否显示弹出层
|
// 是否显示弹出层
|
||||||
|
|
@ -676,7 +676,7 @@
|
||||||
viewFileInfoList: [],
|
viewFileInfoList: [],
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
this.getList();
|
this.getList();
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
|
@ -704,7 +704,7 @@
|
||||||
}else{
|
}else{
|
||||||
this.queryParams.startTime=undefined
|
this.queryParams.startTime=undefined
|
||||||
this.queryParams.endTime=undefined
|
this.queryParams.endTime=undefined
|
||||||
}
|
}
|
||||||
getOrderListApi(this.queryParams).then((res) => {
|
getOrderListApi(this.queryParams).then((res) => {
|
||||||
this.cardList = res.data.rows;
|
this.cardList = res.data.rows;
|
||||||
this.total = res.data.total;
|
this.total = res.data.total;
|
||||||
|
|
@ -717,7 +717,7 @@
|
||||||
this.cardList[index].good_list.forEach(item=>{
|
this.cardList[index].good_list.forEach(item=>{
|
||||||
item.isChecked = e;
|
item.isChecked = e;
|
||||||
})
|
})
|
||||||
|
|
||||||
},
|
},
|
||||||
|
|
||||||
// 公司子级list全选事件
|
// 公司子级list全选事件
|
||||||
|
|
@ -733,7 +733,7 @@
|
||||||
path: '/search/order/orderDetail',
|
path: '/search/order/orderDetail',
|
||||||
query: { orderStatus:row.orderStatus,orderId:row.orderId }
|
query: { orderStatus:row.orderStatus,orderId:row.orderId }
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|
||||||
//检修详情
|
//检修详情
|
||||||
handleViewRepair(item){
|
handleViewRepair(item){
|
||||||
|
|
@ -787,8 +787,8 @@
|
||||||
this.ids = selection.map(item => item.taskId)
|
this.ids = selection.map(item => item.taskId)
|
||||||
this.single = selection.length != 1
|
this.single = selection.length != 1
|
||||||
this.multiple = !selection.length
|
this.multiple = !selection.length
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
@ -952,7 +952,7 @@
|
||||||
width: 100%;
|
width: 100%;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
|
|
||||||
align-items: center;
|
align-items: center;
|
||||||
.el-button {
|
.el-button {
|
||||||
width: calc((100% - 50px) / 4);
|
width: calc((100% - 50px) / 4);
|
||||||
|
|
@ -1005,4 +1005,4 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
||||||
|
|
@ -42,7 +42,7 @@
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item>
|
<el-form-item>
|
||||||
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
<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-button type="primary" icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -38,6 +38,7 @@
|
||||||
>搜索</el-button
|
>搜索</el-button
|
||||||
>
|
>
|
||||||
<el-button
|
<el-button
|
||||||
|
type="primary"
|
||||||
icon="el-icon-refresh"
|
icon="el-icon-refresh"
|
||||||
size="mini"
|
size="mini"
|
||||||
@click="resetQuery"
|
@click="resetQuery"
|
||||||
|
|
|
||||||
|
|
@ -47,7 +47,7 @@
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item>
|
<el-form-item>
|
||||||
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
<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-button type="primary" icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -91,6 +91,7 @@
|
||||||
<el-button
|
<el-button
|
||||||
style="margin-left: 20px"
|
style="margin-left: 20px"
|
||||||
class="filter-item"
|
class="filter-item"
|
||||||
|
type="primary"
|
||||||
@click="resetFilter"
|
@click="resetFilter"
|
||||||
>
|
>
|
||||||
重置
|
重置
|
||||||
|
|
|
||||||
|
|
@ -39,7 +39,7 @@
|
||||||
<el-button style="margin-left: 20px" class="filter-item" type="primary" @click="handleFilter">
|
<el-button style="margin-left: 20px" class="filter-item" type="primary" @click="handleFilter">
|
||||||
查询
|
查询
|
||||||
</el-button>
|
</el-button>
|
||||||
<el-button style="margin-left: 20px" class="filter-item" @click="resetFilter">
|
<el-button style="margin-left: 20px" class="filter-item" type="primary" @click="resetFilter">
|
||||||
重置
|
重置
|
||||||
</el-button>
|
</el-button>
|
||||||
<el-button @click="handleBackups" class="filter-item" style="margin-left: 20px" type="warning">
|
<el-button @click="handleBackups" class="filter-item" style="margin-left: 20px" type="warning">
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,7 @@
|
||||||
<el-button style="margin-left: 20px" class="filter-item" type="primary" @click="handleFilter">
|
<el-button style="margin-left: 20px" class="filter-item" type="primary" @click="handleFilter">
|
||||||
查询
|
查询
|
||||||
</el-button>
|
</el-button>
|
||||||
<el-button style="margin-left: 20px" class="filter-item" @click="resetFilter">
|
<el-button style="margin-left: 20px" class="filter-item" type="primary" @click="resetFilter">
|
||||||
重置
|
重置
|
||||||
</el-button>
|
</el-button>
|
||||||
<span style="margin-left: 40px;">总数:{{sumNum}}</span>
|
<span style="margin-left: 40px;">总数:{{sumNum}}</span>
|
||||||
|
|
|
||||||
|
|
@ -39,7 +39,7 @@
|
||||||
<el-button style="margin-left: 20px" class="filter-item" type="primary" @click="handleFilter">
|
<el-button style="margin-left: 20px" class="filter-item" type="primary" @click="handleFilter">
|
||||||
查询
|
查询
|
||||||
</el-button>
|
</el-button>
|
||||||
<el-button style="margin-left: 20px" class="filter-item" @click="resetFilter">
|
<el-button style="margin-left: 20px" class="filter-item" type="primary" @click="resetFilter">
|
||||||
重置
|
重置
|
||||||
</el-button>
|
</el-button>
|
||||||
<el-button @click="handleBackups" class="filter-item" style="margin-left: 20px" type="warning">
|
<el-button @click="handleBackups" class="filter-item" style="margin-left: 20px" type="warning">
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item>
|
<el-form-item>
|
||||||
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
<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-button type="primary" icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -29,7 +29,7 @@
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item>
|
<el-form-item>
|
||||||
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
<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-button type="primary" icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -29,7 +29,7 @@
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item>
|
<el-form-item>
|
||||||
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
<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-button type="primary" icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -47,7 +47,7 @@
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item>
|
<el-form-item>
|
||||||
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
<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-button type="primary" icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
|
|
||||||
|
|
@ -660,4 +660,4 @@ export default {
|
||||||
.disabled-row:hover td {
|
.disabled-row:hover td {
|
||||||
background-color: #f5f7fa !important;
|
background-color: #f5f7fa !important;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item>
|
<el-form-item>
|
||||||
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
<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-button type="primary" icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
|
|
||||||
|
|
@ -824,4 +824,4 @@ export default {
|
||||||
.disabled-row:hover td {
|
.disabled-row:hover td {
|
||||||
background-color: #f5f7fa !important;
|
background-color: #f5f7fa !important;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
||||||
|
|
@ -40,7 +40,7 @@ module.exports = {
|
||||||
// target: `http://192.168.0.110:18080`,//洪
|
// target: `http://192.168.0.110:18080`,//洪
|
||||||
// target: `http://192.168.0.234:18080`,//阮
|
// target: `http://192.168.0.234:18080`,//阮
|
||||||
// target: `http://36.33.26.201:17788/proxyApi`, //测试
|
// target: `http://36.33.26.201:17788/proxyApi`, //测试
|
||||||
target: `http://192.168.0.69:18080`, //测试
|
target: `http://127.0.0.1:28080`, //测试
|
||||||
// target: `http://192.168.137.1:18080`,//
|
// target: `http://192.168.137.1:18080`,//
|
||||||
changeOrigin: true,
|
changeOrigin: true,
|
||||||
pathRewrite: {
|
pathRewrite: {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue