Commit 1288130e authored by youjie's avatar youjie

no message

parent a594deb9
...@@ -154,7 +154,7 @@ ...@@ -154,7 +154,7 @@
<li> <li>
<span> <span>
<em>{{ $t('OrderList.search.status') }}</em> <em>{{ $t('OrderList.search.status') }}</em>
<el-select v-model="msg.OrderState"> <el-select v-model="msg.OrderState" @change="handleCurrentChange(1)">
<el-option :key="0" :value="0" :label="$t('OrderList.orderStatus.normal')"></el-option> <el-option :key="0" :value="0" :label="$t('OrderList.orderStatus.normal')"></el-option>
<el-option v-for="item in OrderStatusType" :key="item.ID" :label="item.Name" :value="item.ID"></el-option> <el-option v-for="item in OrderStatusType" :key="item.ID" :label="item.Name" :value="item.ID"></el-option>
</el-select> </el-select>
...@@ -162,17 +162,19 @@ ...@@ -162,17 +162,19 @@
</li> </li>
<li> <li>
<span><em>{{ $t('OrderList.search.orderId') }}</em> <span><em>{{ $t('OrderList.search.orderId') }}</em>
<el-input clearable type="Number" v-model="msg.MainId" :placeholder="$t('objFill.orderid')" /> <el-input clearable type="Number" v-model="msg.MainId" :placeholder="$t('objFill.orderid')"
@keyup.native="handleCurrentChange(1)"/>
</span> </span>
</li> </li>
<li> <li>
<span><em>{{ $t('OrderList.search.orderId') }}</em> <span><em>{{ $t('OrderList.search.orderId') }}</em>
<el-input clearable type="Number" v-model="msg.OrderId" :placeholder="$t('objFill.orderid')" /> <el-input clearable type="Number" v-model="msg.OrderId" :placeholder="$t('objFill.orderid')"
@keyup.native="handleCurrentChange(1)"/>
</span> </span>
</li> </li>
<li> <li>
<span><em>{{$t('fnc.khmingcheng')}}</em> <span><em>{{$t('fnc.khmingcheng')}}</em>
<el-select v-model="msg.CustomerId" filterable> <el-select v-model="msg.CustomerId" filterable @change="handleCurrentChange(1)">
<el-option :key="0" :value="0" :label="$t('pub.unlimitedSel')"></el-option> <el-option :key="0" :value="0" :label="$t('pub.unlimitedSel')"></el-option>
<el-option v-for="item in CustomerList" :key="item.Id" :label="item.CustomerName" :value="item.Id"></el-option> <el-option v-for="item in CustomerList" :key="item.Id" :label="item.CustomerName" :value="item.Id"></el-option>
</el-select> </el-select>
...@@ -190,7 +192,7 @@ ...@@ -190,7 +192,7 @@
<li> <li>
<input type="button" class="normalBtn" :value="$t('pub.searchBtn')" <input type="button" class="normalBtn" :value="$t('pub.searchBtn')"
@click="msg.pageIndex = 1, currentPage = 1, GetList()" /> @click="handleCurrentChange(1)" />
</li> </li>
</ul> </ul>
</div> </div>
...@@ -318,6 +320,7 @@ export default { ...@@ -318,6 +320,7 @@ export default {
this.msg.UseSTime = '' this.msg.UseSTime = ''
this.msg.UseETime = '' this.msg.UseETime = ''
} }
this.handleCurrentChange(1)
}, },
setEdate() { setEdate() {
return this.addMoth(new Date().Format("yyyy-MM-dd"), 1) return this.addMoth(new Date().Format("yyyy-MM-dd"), 1)
......
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