This commit is contained in:
parent
63ee272f06
commit
775fd1060d
|
@ -2,11 +2,11 @@
|
|||
ENV = 'development'
|
||||
|
||||
# base api
|
||||
VUE_APP_BASE_API = 'http://192.168.1.24:8080'
|
||||
VUE_APP_BASE_API = 'http://192.168.1.12:8080'
|
||||
# VUE_APP_BASE_API = 'https://plus.hwms.shop'
|
||||
|
||||
# socket 连接地址
|
||||
VUE_APP_WS_URL = 'ws://192.168.1.24:8080'
|
||||
VUE_APP_WS_URL = 'ws://192.168.1.12:8080'
|
||||
# VUE_APP_WS_URL = 'ws://plus.hwms.shop'
|
||||
|
||||
# vue-cli uses the VUE_CLI_BABEL_TRANSPILE_MODULES environment variable,
|
||||
|
|
|
@ -17,6 +17,20 @@
|
|||
<el-form-item label="时间选择:">
|
||||
<el-date-picker v-model="timeVal" value-format="yyyy/MM/dd" format="yyyy/MM/dd" size="small" type="daterange" placement="bottom-end" placeholder="自定义时间" style="width: 280px;" :picker-options="pickerOptions" @change="onchangeTime" />
|
||||
</el-form-item>
|
||||
<el-form-item label="完成时间:">
|
||||
<el-date-picker
|
||||
v-model="finishTime"
|
||||
value-format="yyyy/MM/dd HH:mm:ss"
|
||||
format="yyyy/MM/dd HH:mm:ss"
|
||||
size="small"
|
||||
type="datetimerange"
|
||||
placement="bottom-end"
|
||||
placeholder="自定义时间"
|
||||
style="width: 280px;"
|
||||
:picker-options="pickerOptions"
|
||||
@change="onchangeFinishTime"
|
||||
/>
|
||||
</el-form-item>
|
||||
<!-- <el-form-item label="发货方式:" prop="filter_delivery">
|
||||
<el-select
|
||||
v-model="tableFrom.filter_delivery"
|
||||
|
@ -559,6 +573,7 @@ export default {
|
|||
], // 商品类型
|
||||
orderChartType: {},
|
||||
timeVal: [],
|
||||
finishTime: [],
|
||||
fromList: {
|
||||
title: '选择时间',
|
||||
custom: true,
|
||||
|
@ -734,10 +749,20 @@ export default {
|
|||
/** 重置 */
|
||||
searchReset() {
|
||||
this.timeVal = []
|
||||
this.finishTime = []
|
||||
this.tableFrom.finish_time = ""
|
||||
this.tableFrom.date = ''
|
||||
this.$refs.searchForm.resetFields()
|
||||
this.getList(1)
|
||||
},
|
||||
// 具体日期
|
||||
onchangeFinishTime(e) {
|
||||
this.finishTime = e;
|
||||
this.tableFrom.finish_time = e ? this.finishTime.join("-") : "";
|
||||
this.tableFrom.page = 1;
|
||||
this.getCardList()
|
||||
this.getList(1);
|
||||
},
|
||||
// 回
|
||||
limitCount(row) {
|
||||
if (row.stock > row.product_num)row.stock = row.product_num
|
||||
|
|
Loading…
Reference in New Issue