|
@@ -84,7 +84,30 @@
|
|
|
</el-col>
|
|
|
|
|
|
<el-col :span="24">
|
|
|
- <el-col :span="4" style="width: 150px;margin-top:10px;margin-left:-80px">
|
|
|
+ <el-col :span="3" style="margin-right: 10px;margin-top: 10px;">
|
|
|
+ <el-select
|
|
|
+ :size="searchSize"
|
|
|
+ v-model="parmValue.use_type"
|
|
|
+ style="width: 100%;"
|
|
|
+ filterable
|
|
|
+ clearable
|
|
|
+ placeholder="平台类型"
|
|
|
+ @change="
|
|
|
+ pageInfo.curr = 1;
|
|
|
+ parmValue.page = 1;
|
|
|
+ searchList();
|
|
|
+ "
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="item in usetypeOtions"
|
|
|
+ :key="'use_type' + item.id"
|
|
|
+ :label="item.label"
|
|
|
+ :value="item.value"
|
|
|
+ />
|
|
|
+ </el-select>
|
|
|
+ </el-col>
|
|
|
+
|
|
|
+ <el-col :span="4" style="margin-top:10px;">
|
|
|
<el-select
|
|
|
:size="searchSize"
|
|
|
v-model="parmValue.order_type"
|
|
@@ -122,6 +145,12 @@
|
|
|
></el-tag>
|
|
|
</template>
|
|
|
|
|
|
+ <template #use_type="{ scope }">
|
|
|
+ <el-tag size="mini">
|
|
|
+ {{(usetypeOtions.find(({value}) => value === scope.row.use_type) || {}).label || '---'}}
|
|
|
+ </el-tag>
|
|
|
+ </template>
|
|
|
+
|
|
|
<template #returnWsm="{scope}">
|
|
|
<el-popover placement="top" width="360" trigger="hover">
|
|
|
<i class="el-icon-warning-outline" slot="reference"></i>
|
|
@@ -210,7 +239,7 @@
|
|
|
import mixinPage from "@/mixins/elPaginationHandle";
|
|
|
import resToken from "@/mixins/resToken";
|
|
|
import asyncRequest from "@/apis/service/sellOut/beforeReturnGoodWorkOrder";
|
|
|
-import { xs_order_type_options ,xs_order_source_options} from "@/assets/js/statusList";
|
|
|
+import { xs_order_type_options ,xs_order_source_options,usetypeOtions} from "@/assets/js/statusList";
|
|
|
import companyHelper from "@/mixins/companyHelper"
|
|
|
import urlConfig from "@/apis/url-config";
|
|
|
import { mapGetters } from "vuex";
|
|
@@ -234,6 +263,7 @@ export default {
|
|
|
data() {
|
|
|
return {
|
|
|
companyNo:"",
|
|
|
+ usetypeOtions,
|
|
|
xs_order_type_options,
|
|
|
xs_order_source_options,
|
|
|
fileUrl: urlConfig.baseURL,
|