Browse Source

下拉框

master
luyisha 3 years ago
parent
commit
d41ba1155d
  1. 7829
      package-lock.json
  2. 6
      src/components/page/admission/index.vue
  3. 4
      src/components/page/afterService/invoice.vue
  4. 12
      src/components/page/classification/Category.vue
  5. 6
      src/components/page/classification/DataQuery.vue
  6. 2
      src/components/page/fundSettlement/index.vue
  7. 4
      src/components/page/order/closed.vue
  8. 4
      src/components/page/order/completed.vue
  9. 8
      src/components/page/order/index.vue
  10. 6
      src/components/page/order/pendingPayment.vue
  11. 6
      src/components/page/order/toBeDelivered.vue
  12. 4
      src/components/page/order/toBeSettled.vue

7829
package-lock.json

File diff suppressed because it is too large

6
src/components/page/admission/index.vue

@ -23,7 +23,7 @@
</a-col>
<a-col :lg="12" :xl="12" :xxl="6" class="query_item" >
<span>交易品种</span>
<a-select default-value="" v-model="query.goods_type">
<a-select default-value="" v-model="query.goods_type" :getPopupContainer="(triggerNode) => triggerNode.parentNode">
<a-select-option value="">全部</a-select-option>
<a-select-option value="1">文化资源数据</a-select-option>
<a-select-option value="2">文化数字内容</a-select-option>
@ -31,7 +31,7 @@
</a-col>
<a-col :lg="12" :xl="12" :xxl="6" class="query_item" >
<span>发布状态</span>
<a-select default-value="" v-model="query.data_type">
<a-select default-value="" v-model="query.data_type" :getPopupContainer="(triggerNode) => triggerNode.parentNode">
<a-select-option value="">全部文化数据</a-select-option>
<a-select-option value="1">已发布文化数据</a-select-option>
<a-select-option value="5">暂停中文化数据</a-select-option>
@ -42,7 +42,7 @@
</a-col>
<a-col :lg="12" :xl="12" :xxl="6" class="query_item">
<span>交易方式</span>
<a-select default-value="" v-model="query.goods_entrust">
<a-select default-value="" v-model="query.goods_entrust" :getPopupContainer="(triggerNode) => triggerNode.parentNode">
<a-select-option value="">全部</a-select-option>
<a-select-option value="1">转让</a-select-option>
<a-select-option value="2">授权</a-select-option>

4
src/components/page/afterService/invoice.vue

@ -27,7 +27,7 @@
</a-col>
<a-col :lg="8" :xl="8" :xxl="6" class="query_item">
<span>开票状态</span>
<a-select v-model="query.ticketstatus">
<a-select v-model="query.ticketstatus" :getPopupContainer="(triggerNode) => triggerNode.parentNode">
<a-select-option value="">全部</a-select-option>
<a-select-option value="1">未开票</a-select-option>
<a-select-option value="2">开票中</a-select-option>
@ -46,7 +46,7 @@
<a-col :lg="8" :xl="8" :xxl="6" class="query_item">
<span>订单状态</span>
<a-select v-model="query.status">
<a-select v-model="query.status" :getPopupContainer="(triggerNode) => triggerNode.parentNode">
<a-select-option value="">全部</a-select-option>
<a-select-option value="2">待交付订单</a-select-option>
<a-select-option value="3">待结算订单</a-select-option>

12
src/components/page/classification/Category.vue

@ -11,7 +11,7 @@
<a-row type="flex" justify="space-between" >
<a-col :lg="8" :xl="7" :xxl="6" class="query_item">
<span>一级分类</span>
<a-select default-value="" @change="handleChange(0)" v-model="query.top_class">
<a-select default-value="" @change="handleChange(0)" v-model="query.top_class" :getPopupContainer="(triggerNode) => triggerNode.parentNode">
<a-select-option :value="item" v-for="(item,index) in oneList" :key="index">
{{item}}
</a-select-option>
@ -19,7 +19,7 @@
</a-col>
<a-col :lg="8" :xl="7" :xxl="6" class="query_item">
<span>二级分类</span>
<a-select default-value="" v-model="query.son_class">
<a-select default-value="" v-model="query.son_class" :getPopupContainer="(triggerNode) => triggerNode.parentNode">
<a-select-option :value="item" v-for="(item,index) in twoList" :key="index">
{{item}}
</a-select-option>
@ -27,7 +27,7 @@
</a-col>
<a-col :lg="8" :xl="7" :xxl="6" class="query_item">
<span>创建人员</span>
<a-select default-value="" v-model="query.user_id">
<a-select default-value="" v-model="query.user_id" :getPopupContainer="(triggerNode) => triggerNode.parentNode">
<a-select-option :value="item.id" v-for="(item,index) in userList" :key="index">
{{item.account_name}}
</a-select-option>
@ -35,7 +35,7 @@
</a-col>
<a-col :lg="8" :xl="7" :xxl="6" class="query_item" >
<span>使用状态</span>
<a-select default-value="" v-model="query.usestatus">
<a-select default-value="" v-model="query.usestatus" :getPopupContainer="(triggerNode) => triggerNode.parentNode">
<a-select-option value="">全部</a-select-option>
<a-select-option value="0">启用</a-select-option>
<a-select-option value="1">禁用</a-select-option>
@ -93,7 +93,7 @@
<a-row justify="space-between" >
<a-col :span="10" class="query_item">
<span>一级分类</span>
<a-select default-value="" @change="handleChange(1)" v-model="query1.pull_top_class">
<a-select default-value="" @change="handleChange(1)" v-model="query1.pull_top_class" :getPopupContainer="(triggerNode) => triggerNode.parentNode">
<a-select-option :value="item" v-for="(item,index) in oneList" :key="index">
{{item}}
</a-select-option>
@ -107,7 +107,7 @@
<a-row justify="space-between" >
<a-col :span="10" class="query_item">
<span>二级分类</span>
<a-select default-value="" v-model="query1.pull2_top_class">
<a-select default-value="" v-model="query1.pull2_top_class" :getPopupContainer="(triggerNode) => triggerNode.parentNode">
<a-select-option :value="item" v-for="(item,index) in twoList" :key="index">
{{item}}
</a-select-option>

6
src/components/page/classification/DataQuery.vue

@ -23,7 +23,7 @@
</a-col>
<a-col :lg="8" :xl="7" :xxl="6" class="query_item" >
<span>交易品种</span>
<a-select v-model="query.goods_type">
<a-select v-model="query.goods_type" :getPopupContainer="(triggerNode) => triggerNode.parentNode">
<a-select-option value="">全部</a-select-option>
<a-select-option value="1">文化资源数据</a-select-option>
<a-select-option value="2">文化数字内容</a-select-option>
@ -31,7 +31,7 @@
</a-col>
<a-col :lg="8" :xl="7" :xxl="6" class="query_item" >
<span>发布状态</span>
<a-select v-model="query.data_type">
<a-select v-model="query.data_type" :getPopupContainer="(triggerNode) => triggerNode.parentNode">
<a-select-option value="">全部文化数据</a-select-option>
<a-select-option value="1">已发布文化数据</a-select-option>
<a-select-option value="5">暂停中文化数据</a-select-option>
@ -42,7 +42,7 @@
</a-col>
<a-col :lg="8" :xl="7" :xxl="6" class="query_item">
<span>交易方式</span>
<a-select v-model="query.transaction" >
<a-select v-model="query.transaction" :getPopupContainer="(triggerNode) => triggerNode.parentNode">
<a-select-option value="">全部</a-select-option>
<a-select-option value="1">转让</a-select-option>
<a-select-option value="2">授权</a-select-option>

2
src/components/page/fundSettlement/index.vue

@ -23,7 +23,7 @@
</a-col>
<a-col :lg="8" :xl="8" :xxl="6" class="query_item" >
<span>结算状态</span>
<a-select default-value="" v-model="query.status">
<a-select default-value="" v-model="query.status" :getPopupContainer="(triggerNode) => triggerNode.parentNode">
<a-select-option value="">全部</a-select-option>
<a-select-option value="1">待结算</a-select-option>
<a-select-option value="2">已结算</a-select-option>

4
src/components/page/order/closed.vue

@ -37,7 +37,7 @@
</a-col> -->
<a-col :lg="12" :xl="8" :xxl="6" class="query_item">
<span>收费类型</span>
<a-select v-model="query.charges_type">
<a-select v-model="query.charges_type" :getPopupContainer="(triggerNode) => triggerNode.parentNode">
<a-select-option value="">全部</a-select-option>
<a-select-option value="1">免费</a-select-option>
<a-select-option value="2">付费</a-select-option>
@ -45,7 +45,7 @@
</a-col>
<a-col :lg="12" :xl="8" :xxl="6" class="query_item">
<span>交易方式</span>
<a-select v-model="query.entrust_type">
<a-select v-model="query.entrust_type" :getPopupContainer="(triggerNode) => triggerNode.parentNode">
<a-select-option value="">全部</a-select-option>
<a-select-option value="1">转让</a-select-option>
<a-select-option value="2">授权</a-select-option>

4
src/components/page/order/completed.vue

@ -37,7 +37,7 @@
</a-col> -->
<a-col :lg="12" :xl="8" :xxl="6" class="query_item">
<span>收费类型</span>
<a-select default-value="" v-model="query.charges_type">
<a-select default-value="" v-model="query.charges_type" :getPopupContainer="(triggerNode) => triggerNode.parentNode">
<a-select-option value="">全部</a-select-option>
<a-select-option value="1">免费</a-select-option>
<a-select-option value="2">付费</a-select-option>
@ -45,7 +45,7 @@
</a-col>
<a-col :lg="12" :xl="8" :xxl="6" class="query_item">
<span>交易方式</span>
<a-select default-value="" v-model="query.entrust_type">
<a-select default-value="" v-model="query.entrust_type" :getPopupContainer="(triggerNode) => triggerNode.parentNode">
<a-select-option value="">全部</a-select-option>
<a-select-option value="1">转让</a-select-option>
<a-select-option value="2">授权</a-select-option>

8
src/components/page/order/index.vue

@ -28,7 +28,7 @@
<!-- <a-col :span="5" class="query_item" >
<span>订单类型</span>
<a-select default-value="" v-model="query.order_type">
<a-select default-value="" v-model="query.order_type" :getPopupContainer="(triggerNode) => triggerNode.parentNode">
<a-select-option value="">全部</a-select-option>
<a-select-option value="1">委托订单</a-select-option>
<a-select-option value="2">认证订单</a-select-option>
@ -37,7 +37,7 @@
</a-col> -->
<a-col :lg="12" :xl="8" :xxl="6" class="query_item">
<span>收费类型</span>
<a-select default-value="" v-model="query.charges_type">
<a-select default-value="" v-model="query.charges_type" :getPopupContainer="(triggerNode) => triggerNode.parentNode">
<a-select-option value="">全部</a-select-option>
<a-select-option value="1">免费</a-select-option>
<a-select-option value="2">付费</a-select-option>
@ -45,7 +45,7 @@
</a-col>
<a-col :lg="12" :xl="8" :xxl="6" class="query_item">
<span>交易方式</span>
<a-select default-value="" v-model="query.entrust_type">
<a-select default-value="" v-model="query.entrust_type" :getPopupContainer="(triggerNode) => triggerNode.parentNode">
<a-select-option value="">全部</a-select-option>
<a-select-option value="1">转让</a-select-option>
<a-select-option value="2">授权</a-select-option>
@ -53,7 +53,7 @@
</a-col>
<a-col :lg="12" :xl="8" :xxl="6" class="query_item" >
<span>订单状态</span>
<a-select default-value="" v-model="query.transaction_status" mode="multiple" :maxTagCount="1" :maxTagTextLength="1">
<a-select default-value="" v-model="query.transaction_status" mode="multiple" :maxTagCount="1" :maxTagTextLength="1" :getPopupContainer="(triggerNode) => triggerNode.parentNode">
<a-select-option value="" @click.native='selectAll'>全部</a-select-option>
<a-select-option value="1">待付款</a-select-option>
<a-select-option value="2">待交付</a-select-option>

6
src/components/page/order/pendingPayment.vue

@ -28,7 +28,7 @@
<!-- <a-col :span="5" class="query_item" >
<span>订单类型</span>
<a-select default-value="" v-model="query.order_type">
<a-select default-value="" v-model="query.order_type" :getPopupContainer="(triggerNode) => triggerNode.parentNode">
<a-select-option value="">全部</a-select-option>
<a-select-option value="1">委托订单</a-select-option>
<a-select-option value="2">认证订单</a-select-option>
@ -37,7 +37,7 @@
</a-col> -->
<a-col :lg="12" :xl="8" :xxl="6" class="query_item">
<span>收费类型</span>
<a-select default-value="" v-model="query.charges_type">
<a-select default-value="" v-model="query.charges_type" :getPopupContainer="(triggerNode) => triggerNode.parentNode">
<a-select-option value="">全部</a-select-option>
<a-select-option value="1">免费</a-select-option>
<a-select-option value="2">付费</a-select-option>
@ -45,7 +45,7 @@
</a-col>
<a-col :lg="12" :xl="8" :xxl="6" class="query_item">
<span>交易方式</span>
<a-select default-value="" v-model="query.entrust_type">
<a-select default-value="" v-model="query.entrust_type" :getPopupContainer="(triggerNode) => triggerNode.parentNode">
<a-select-option value="">全部</a-select-option>
<a-select-option value="1">转让</a-select-option>
<a-select-option value="2">授权</a-select-option>

6
src/components/page/order/toBeDelivered.vue

@ -28,7 +28,7 @@
<!-- <a-col :span="5" class="query_item" >
<span>订单类型</span>
<a-select default-value="" v-model="query.order_type">
<a-select default-value="" v-model="query.order_type" :getPopupContainer="(triggerNode) => triggerNode.parentNode">
<a-select-option value="">全部</a-select-option>
<a-select-option value="1">委托订单</a-select-option>
<a-select-option value="2">认证订单</a-select-option>
@ -37,7 +37,7 @@
</a-col> -->
<a-col :lg="12" :xl="8" :xxl="6" class="query_item">
<span>收费类型</span>
<a-select default-value="" v-model="query.charges_type">
<a-select default-value="" v-model="query.charges_type" :getPopupContainer="(triggerNode) => triggerNode.parentNode">
<a-select-option value="">全部</a-select-option>
<a-select-option value="1">免费</a-select-option>
<a-select-option value="2">付费</a-select-option>
@ -45,7 +45,7 @@
</a-col>
<a-col :lg="12" :xl="8" :xxl="6" class="query_item">
<span>交易方式</span>
<a-select default-value="" v-model="query.entrust_type">
<a-select default-value="" v-model="query.entrust_type" :getPopupContainer="(triggerNode) => triggerNode.parentNode">
<a-select-option value="">全部</a-select-option>
<a-select-option value="1">转让</a-select-option>
<a-select-option value="2">授权</a-select-option>

4
src/components/page/order/toBeSettled.vue

@ -37,7 +37,7 @@
</a-col> -->
<a-col :lg="12" :xl="8" :xxl="6" class="query_item">
<span>收费类型</span>
<a-select default-value="" v-model="query.charges_type">
<a-select default-value="" v-model="query.charges_type" :getPopupContainer="(triggerNode) => triggerNode.parentNode">
<a-select-option value="">全部</a-select-option>
<a-select-option value="1">免费</a-select-option>
<a-select-option value="2">付费</a-select-option>
@ -45,7 +45,7 @@
</a-col>
<a-col :lg="12" :xl="8" :xxl="6" class="query_item">
<span>交易方式</span>
<a-select default-value="" v-model="query.entrust_type">
<a-select default-value="" v-model="query.entrust_type" :getPopupContainer="(triggerNode) => triggerNode.parentNode">
<a-select-option value="">全部</a-select-option>
<a-select-option value="1">转让</a-select-option>
<a-select-option value="2">授权</a-select-option>

Loading…
Cancel
Save