Browse Source

新增全部文化数据查询的委托状态

master
ltlzx 4 years ago
parent
commit
4092f6b728
  1. 18
      src/components/page/classification/DataQuery.vue

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

@ -41,7 +41,7 @@
</a-col> </a-col>
<a-col :span="5" class="query_item"> <a-col :span="5" class="query_item">
<span>交易方式</span> <span>交易方式</span>
<a-select v-model="query.goods_entrust"> <a-select v-model="query.transaction" >
<a-select-option value="">全部</a-select-option> <a-select-option value="">全部</a-select-option>
<a-select-option value="1">转让</a-select-option> <a-select-option value="1">转让</a-select-option>
<a-select-option value="2">授权</a-select-option> <a-select-option value="2">授权</a-select-option>
@ -49,12 +49,13 @@
</a-col> </a-col>
<a-col :span="5" class="query_item"> <a-col :span="5" class="query_item">
<span>委托状态</span> <span>委托状态</span>
<a-select > <a-select v-model="query.entrust_status" >
<a-select-option value="">全部</a-select-option> <a-select-option value="">全部</a-select-option>
<a-select-option value="1">委托中</a-select-option> <a-select-option value="1">委托中</a-select-option>
<a-select-option value="2">撤销中</a-select-option>
<a-select-option value="2">撤销失败</a-select-option>
<a-select-option value="2">撤销成功</a-select-option> <a-select-option value="2">撤销成功</a-select-option>
<a-select-option value="3">委托结束</a-select-option>
<a-select-option value="4">撤销中</a-select-option>
<a-select-option value="5">撤销失败</a-select-option>
</a-select> </a-select>
</a-col> </a-col>
<a-col :span="5" class="query_item query_item2"> <a-col :span="5" class="query_item query_item2">
@ -81,6 +82,9 @@
<template slot="goods_type" slot-scope="goods_type"> <template slot="goods_type" slot-scope="goods_type">
<span>{{goods_type==1?'文化资源数据':'文化数字内容'}}</span> <span>{{goods_type==1?'文化资源数据':'文化数字内容'}}</span>
</template> </template>
<template slot="entrust_status" slot-scope="entrust_status">
<span>{{entrust_status==1?'委托中':entrust_status==2?'撤销成功':entrust_status==3?'委托结束':entrust_status==4?'撤销中':'撤销失败'}}</span>
</template>
<template slot="operation" slot-scope="item"> <template slot="operation" slot-scope="item">
<a-space :size="24" > <a-space :size="24" >
<span class="table_operation" @click="SelectDate(item.goods_islicode)">数据查看</span> <span class="table_operation" @click="SelectDate(item.goods_islicode)">数据查看</span>
@ -125,6 +129,8 @@ export default {
goods_type:'', goods_type:'',
data_type:'', data_type:'',
createtime:[], createtime:[],
entrust_status:'',
transaction:''
}, },
visible:false, visible:false,
// //
@ -179,8 +185,8 @@ export default {
}, },
{ {
title: '委托状态', title: '委托状态',
dataIndex: '', dataIndex: 'entrust_status',
// scopedSlots:{customRender:'goods_status'}, scopedSlots:{customRender:'entrust_status'},
align:'center' align:'center'
}, },
{ {

Loading…
Cancel
Save