Commit 529795fe authored by 邓春圆's avatar 邓春圆

时间修改

parent 07ac5557
......@@ -18,7 +18,7 @@
</el-col>
<el-col :span="6">
<el-form-item :label="$t('状态')">
<dict-selector :type="DICT_TYPE.ECW_PAYMENT_STATE" v-model="queryParams.state" />
<dict-selector clearable :type="DICT_TYPE.ECW_PAYMENT_STATE" v-model="queryParams.state" />
</el-form-item>
</el-col>
<el-col :span="5">
......@@ -41,7 +41,7 @@
style="width:100%;"
v-model="selectDate"
type="datetimerange"
value-format="yyyy-MM-DD hh:mm:ss"
value-format="yyyy-MM-dd hh:mm:ss"
range-separator="至"
:start-placeholder="$t('开始日期')"
:end-placeholder="$t('结束日期')">
......@@ -51,6 +51,7 @@
<el-col :span="6">
<el-form-item :label="$t('发票状态')">
<el-select
clearable
v-model="queryParams.invoiceStatus"
:placeholder="$t('请选择是否开票')">
<el-option :label="$t('未开票')" value="0" />
......@@ -172,7 +173,7 @@ export default {
selectDate(val){
if(val.length){
this.queryParams.beginCreateTime = val[0]
this.queryParams.endCreateTime = val[0]
this.queryParams.endCreateTime = val[1]
}else {
this.queryParams.beginCreateTime = ''
this.queryParams.endCreateTime = ''
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment