|
@@ -5,7 +5,15 @@
|
|
@selection-change="selectionChange" @current-change="currentChange" @size-change="sizeChange"
|
|
@selection-change="selectionChange" @current-change="currentChange" @size-change="sizeChange"
|
|
@refresh-change="refreshChange" @on-load="onLoad">
|
|
@refresh-change="refreshChange" @on-load="onLoad">
|
|
<template slot="corpIdSearch">
|
|
<template slot="corpIdSearch">
|
|
- <select-component v-model="search.corpId" :configuration="configuration"></select-component>
|
|
|
|
|
|
+<!-- <select-component v-model="search.corpId" :configuration="configuration"></select-component>-->
|
|
|
|
+ <el-select v-model="search.corpId" clearable placeholder="请选择">
|
|
|
|
+ <el-option
|
|
|
|
+ v-for="item in corpsList"
|
|
|
|
+ :key="item.id"
|
|
|
|
+ :label="item.cname"
|
|
|
|
+ :value="item.id">
|
|
|
|
+ </el-option>
|
|
|
|
+ </el-select>
|
|
</template>
|
|
</template>
|
|
<template slot-scope="scope" slot="checkType">
|
|
<template slot-scope="scope" slot="checkType">
|
|
<span v-if="scope.row.checkType == 'ffsq'">付费申请</span>
|
|
<span v-if="scope.row.checkType == 'ffsq'">付费申请</span>
|
|
@@ -88,6 +96,7 @@ import checkSchedule from "@/components/check/checkSchedule";
|
|
import check from "./check";
|
|
import check from "./check";
|
|
import { getUserInfo } from "@/api/system/user";
|
|
import { getUserInfo } from "@/api/system/user";
|
|
import { gainUser } from "@/api/basicData/customerInquiry";
|
|
import { gainUser } from "@/api/basicData/customerInquiry";
|
|
|
|
+import {corpsDescListAll} from "../../api/tirePartsMall/salesManagement/saleOrder";
|
|
let previousRouterName = "";
|
|
let previousRouterName = "";
|
|
let checkRefresh = "";
|
|
let checkRefresh = "";
|
|
export default {
|
|
export default {
|
|
@@ -97,6 +106,7 @@ export default {
|
|
},
|
|
},
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
|
|
+ corpsList: [],
|
|
loading: false,
|
|
loading: false,
|
|
form: {},
|
|
form: {},
|
|
search: {},
|
|
search: {},
|
|
@@ -154,11 +164,14 @@ export default {
|
|
this.findObject(this.option.column, "sendUserId").dicData =
|
|
this.findObject(this.option.column, "sendUserId").dicData =
|
|
res.data.data;
|
|
res.data.data;
|
|
});
|
|
});
|
|
- this.getWorkDicts("Approval_business_type").then(res => {
|
|
|
|
|
|
+ this.getWorkDicts("tire_audit").then(res => {
|
|
this.findObject(this.option.column, "processType").dicData =
|
|
this.findObject(this.option.column, "processType").dicData =
|
|
res.data.data;
|
|
res.data.data;
|
|
});
|
|
});
|
|
});
|
|
});
|
|
|
|
+ corpsDescListAll({corpType: "GYS"}).then(res => {
|
|
|
|
+ this.corpsList = res.data.data
|
|
|
|
+ })
|
|
},
|
|
},
|
|
mounted() {
|
|
mounted() {
|
|
// option.height = window.innerHeight - 200 ;
|
|
// option.height = window.innerHeight - 200 ;
|