Commit 5c64452e by 罗鑫霖

lxl

1 parent 6f6a48e2
{"commit":"4b64e700aabddfd8a3571739b1bece4194641df5","commitDate":"2021-9-27 18:45","buildDate":"2021-11-11 16:23","version":"2.1.0","info":"【BUG】存储配置导出"} {"commit":"6f6a48e2b677829ac314a8a72547c506f9546278","commitDate":"2021-11-11 16:27","buildDate":"2021-11-12 18:36","version":"2.1.0","info":"合并冲突"}
\ No newline at end of file \ No newline at end of file
...@@ -9,21 +9,21 @@ ...@@ -9,21 +9,21 @@
let baseUrl = "/api"; // 本地代理 let baseUrl = "/api"; // 本地代理
import axios from "axios"; import axios from "axios";
switch (process.env.NODE_ENV) { switch (process.env.NODE_ENV) {
case "development": case "development":
// baseUrl = "http://192.168.9.234:20080"; // 测试环境url // baseUrl = "http://192.168.9.234:20080"; // 测试环境url
baseUrl = window.config.https?"https://192.168.9.245:20070":"http://123.6.38.39:20080"; // 测试环境url baseUrl = window.config.https ? "https://192.168.9.245:20070" : "http://192.168.9.233:20080"; // 测试环境url
// baseUrl = "http://192.168.9.82:8080"; // 测试环境url // baseUrl = "http://192.168.9.82:8080"; // 测试环境url
// baseUrl = "http://192.168.9.61:8086"; // baseUrl = "http://192.168.9.61:8086";
// baseUrl = 'http://vion-panda.51vip.biz:52510'; // baseUrl = 'http://vion-panda.51vip.biz:52510';
break; break;
case "pre": case "pre":
baseUrl = "https://pre-server.feleti.cn"; // 预上线环境url baseUrl = "https://pre-server.feleti.cn"; // 预上线环境url
break; break;
case "production": case "production":
baseUrl = window.config.https?`https://${location.host}`:`http://${location.host}`; // 生产环境url baseUrl = window.config.https ? `https://${location.host}` : `http://${location.host}`; // 生产环境url
break; break;
} }
export default baseUrl; export default baseUrl;
\ No newline at end of file \ No newline at end of file
...@@ -107,10 +107,20 @@ ...@@ -107,10 +107,20 @@
v-show="conditions.event_type == 'xcycle'" v-show="conditions.event_type == 'xcycle'"
> >
<span class="inputBox"> <span class="inputBox">
<el-input <el-select
placeholder="请输入公司名称" filterable
placeholder="请选择"
:popper-append-to-body="false"
v-model="conditions.company" v-model="conditions.company"
></el-input> >
<el-option value="" label="全部"></el-option>
<el-option
v-for="item in companyList"
:value="item.code"
:key="item.code"
:label="item.name"
></el-option>
</el-select>
</span> </span>
</el-form-item> </el-form-item>
<el-form-item <el-form-item
...@@ -192,9 +202,9 @@ ...@@ -192,9 +202,9 @@
<el-option value="" label="全部"></el-option> <el-option value="" label="全部"></el-option>
<el-option <el-option
v-for="item in bodyColorList" v-for="item in bodyColorList"
:value="item.value" :value="item.code"
:key="item.value" :key="item.code"
:label="item.label" :label="item.name"
></el-option> ></el-option>
</el-select> </el-select>
</span> </span>
...@@ -213,9 +223,9 @@ ...@@ -213,9 +223,9 @@
<el-option value="" label="全部"></el-option> <el-option value="" label="全部"></el-option>
<el-option <el-option
v-for="item in bodyColorList" v-for="item in bodyColorList"
:value="item.value" :value="item.code"
:key="item.value" :key="item.code"
:label="item.label" :label="item.name"
></el-option> ></el-option>
</el-select> </el-select>
</span> </span>
...@@ -502,6 +512,7 @@ export default { ...@@ -502,6 +512,7 @@ export default {
detailObj: {}, detailObj: {},
carImg: require("@/assets/img/home/defaultImg.png"), carImg: require("@/assets/img/home/defaultImg.png"),
bodyColorList: this.$buildCode.getCodeList("车身颜色"), bodyColorList: this.$buildCode.getCodeList("车身颜色"),
companyList: this.$buildCode.getCodeList("外卖公司"),
detailImg: "", detailImg: "",
detailVisible: false, detailVisible: false,
loading: false, loading: false,
...@@ -610,7 +621,7 @@ export default { ...@@ -610,7 +621,7 @@ export default {
this.conditions.task_id + this.conditions.task_id +
"&subtask_id=" + "&subtask_id=" +
this.conditions.subtask_id + this.conditions.subtask_id +
"&company_like=" + "&company=" +
this.conditions.company + this.conditions.company +
"&with_hats=" + "&with_hats=" +
this.conditions.with_hats + this.conditions.with_hats +
...@@ -742,7 +753,7 @@ export default { ...@@ -742,7 +753,7 @@ export default {
}; };
if (this.conditions.event_type == "xcycle") { if (this.conditions.event_type == "xcycle") {
search_params.xcycle_type = this.conditions.xcycle_type; search_params.xcycle_type = this.conditions.xcycle_type;
search_params.company_like = this.conditions.company; search_params.company = this.conditions.company;
search_params.plate_number__like = this.conditions.plate; search_params.plate_number__like = this.conditions.plate;
} else { } else {
search_params.upbodyColor = this.conditions.upbodyColor; search_params.upbodyColor = this.conditions.upbodyColor;
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!