|
@@ -1,7 +1,7 @@
|
|
|
<template>
|
|
<template>
|
|
|
<div class="app-container">
|
|
<div class="app-container">
|
|
|
<el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px">
|
|
<el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px">
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
<el-form-item label="所属部门" prop="deptId">
|
|
<el-form-item label="所属部门" prop="deptId">
|
|
|
<treeselect style="width:220px" v-model="queryParams.deptId" :options="deptOptions" :show-count="true" placeholder="请选择所属部门" />
|
|
<treeselect style="width:220px" v-model="queryParams.deptId" :options="deptOptions" :show-count="true" placeholder="请选择所属部门" />
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
@@ -28,7 +28,7 @@
|
|
|
|
|
|
|
|
<el-form-item label="员工姓名" prop="companyUserNickName">
|
|
<el-form-item label="员工姓名" prop="companyUserNickName">
|
|
|
<el-input
|
|
<el-input
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
v-model="queryParams.companyUserNickName"
|
|
v-model="queryParams.companyUserNickName"
|
|
|
placeholder="请输入员工姓名"
|
|
placeholder="请输入员工姓名"
|
|
|
clearable
|
|
clearable
|
|
@@ -46,7 +46,7 @@
|
|
|
/>
|
|
/>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
|
|
|
|
|
- <el-form-item label="退款时间" prop="createTimeRange">
|
|
|
|
|
|
|
+ <el-form-item label="退款时间" prop="createTimeRange">
|
|
|
<el-date-picker
|
|
<el-date-picker
|
|
|
style="width:220px"
|
|
style="width:220px"
|
|
|
clearable size="small"
|
|
clearable size="small"
|
|
@@ -90,6 +90,17 @@
|
|
|
/>
|
|
/>
|
|
|
</el-select>
|
|
</el-select>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
|
|
+
|
|
|
|
|
+ <el-form-item label="互医用户" prop="companyUserNickName">
|
|
|
|
|
+ <el-input
|
|
|
|
|
+ v-model="queryParams.huYiUserId"
|
|
|
|
|
+ placeholder="请输入互医用户ID"
|
|
|
|
|
+ clearable
|
|
|
|
|
+ size="small"
|
|
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
|
|
+ />
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+
|
|
|
<el-form-item>
|
|
<el-form-item>
|
|
|
<el-button type="cyan" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
|
<el-button type="cyan" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
|
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
|
@@ -102,10 +113,10 @@
|
|
|
icon="el-icon-download"
|
|
icon="el-icon-download"
|
|
|
size="mini"
|
|
size="mini"
|
|
|
@click="handleExport"
|
|
@click="handleExport"
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
>导出</el-button>
|
|
>导出</el-button>
|
|
|
</el-col>
|
|
</el-col>
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
</el-row>
|
|
</el-row>
|
|
|
<el-table height="500" border v-loading="loading" :data="storeAfterSalesList" @selection-change="handleSelectionChange">
|
|
<el-table height="500" border v-loading="loading" :data="storeAfterSalesList" @selection-change="handleSelectionChange">
|
|
@@ -143,11 +154,11 @@
|
|
|
@click="handleShow(scope.row)"
|
|
@click="handleShow(scope.row)"
|
|
|
v-hasPermi="['store:storeAfterSales:query']"
|
|
v-hasPermi="['store:storeAfterSales:query']"
|
|
|
>查看</el-button>
|
|
>查看</el-button>
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
</template>
|
|
</template>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
</el-table>
|
|
</el-table>
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
<pagination
|
|
<pagination
|
|
|
v-show="total>0"
|
|
v-show="total>0"
|
|
|
:total="total"
|
|
:total="total"
|
|
@@ -223,6 +234,7 @@ export default {
|
|
|
consignee: null,
|
|
consignee: null,
|
|
|
phoneNumber: null,
|
|
phoneNumber: null,
|
|
|
address: null,
|
|
address: null,
|
|
|
|
|
+ huYiUserId: null,
|
|
|
},
|
|
},
|
|
|
// 表单参数
|
|
// 表单参数
|
|
|
form: {},
|
|
form: {},
|
|
@@ -248,7 +260,7 @@ export default {
|
|
|
this.getDicts("store_after_sales_service_type").then((response) => {
|
|
this.getDicts("store_after_sales_service_type").then((response) => {
|
|
|
this.serviceTypeOptions = response.data;
|
|
this.serviceTypeOptions = response.data;
|
|
|
});
|
|
});
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
this.getList();
|
|
this.getList();
|
|
|
},
|
|
},
|
|
|
methods: {
|
|
methods: {
|
|
@@ -276,7 +288,7 @@ export default {
|
|
|
}, 200);
|
|
}, 200);
|
|
|
|
|
|
|
|
},
|
|
},
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
/** 查询售后记录列表 */
|
|
/** 查询售后记录列表 */
|
|
|
getList() {
|
|
getList() {
|
|
|
this.loading = true;
|
|
this.loading = true;
|