Browse Source

交互优化

dev
nizongfeng 3 years ago
parent
commit
f7cd5d0234
1 changed files with 6 additions and 1 deletions
  1. +6
    -1
      application/admin/view/payment_order/index.html

+ 6
- 1
application/admin/view/payment_order/index.html View File

@@ -129,7 +129,7 @@
<div>
<div class="header-search" style="width: 100%;margin-bottom: 10px">
<span>订单类型:</span>
<el-select v-model="orderMainListSearch.prod_type" style="width: 120px;" placeholder="请选择" >
<el-select v-model="orderMainListSearch.prod_type" style="width: 120px;" placeholder="请选择" >
<el-option
v-for="item in prodTypeList"
:key="item.id"
@@ -358,6 +358,11 @@
this.getItemList()

},
watch: {
"orderMainListSearch.prod_type" : function (newVal,oldVal){
this.getOrderMainData(1)
}
},
methods: {
getProdTypeName(info){
for (let i = 0; i < this.prodTypeList.length; i++) {


Loading…
Cancel
Save