xuxueyang
2024-07-24 e7731f1cf08331d23cd0d27549025a2642caa9ab
sub_pages/customer/self/collect.vue
@@ -10,14 +10,14 @@
      </view>
    </view>
    <view class="component-filter-container">
      <view class="flex1">
        排序
      <view class="flex1" @click.stop="order_show=true">
        {{ this.query.columnStr || '排序' }}
        <image src="../../../static/common/icon-arrow-down.png" class="icon-arrow-down"></image>
      </view>
      <view class="flex1">
      <view class="flex1" @click.stop="level_show=true">
        {{ this.query.levelStr || '级别' }}
        <image src="../../../static/common/icon-arrow-down.png" class="icon-arrow-down"
               @click="level_show=true"></image>
        ></image>
      </view>
    </view>
@@ -115,11 +115,15 @@
      this.level_show = false
      this.query.levelStr = e.value[0].label
      this.query.level = e.value[0].value
      this.refreshList()
    },
    select_order(e) {
      this.order_show = false
      this.query.columnStr = e.value[0].label
      this.query.column = e.value[0].value
      this.refreshList()
    },
  }
}