|
|
@ -15,11 +15,6 @@ |
|
|
style="width:10vw;" clearable></el-input> |
|
|
style="width:10vw;" clearable></el-input> |
|
|
</div> |
|
|
</div> |
|
|
<div class="rowItem"> |
|
|
<div class="rowItem"> |
|
|
<el-text style="width: 4vw;">{{ t('common.market') }}</el-text> |
|
|
|
|
|
<el-cascader style="width: 9vw;" v-model="searchData.markets" :options="market" |
|
|
|
|
|
:placeholder="t('common.marketPlaceholder')" clearable @change="handleMarketChange" /> |
|
|
|
|
|
</div> |
|
|
|
|
|
<div class="rowItem"> |
|
|
|
|
|
<el-text style="width: 4vw;">{{ t('common.orderStatus') }}</el-text> |
|
|
<el-text style="width: 4vw;">{{ t('common.orderStatus') }}</el-text> |
|
|
<el-select v-model="searchData.status" :placeholder="t('common.orderStatusPlaceholder')" |
|
|
<el-select v-model="searchData.status" :placeholder="t('common.orderStatusPlaceholder')" |
|
|
style="width: 10vw;" clearable> |
|
|
style="width: 10vw;" clearable> |
|
|
@ -106,6 +101,13 @@ |
|
|
<span v-else>{{ scope.row.goodNum }}</span> |
|
|
<span v-else>{{ scope.row.goodNum }}</span> |
|
|
</template> |
|
|
</template> |
|
|
</el-table-column> |
|
|
</el-table-column> |
|
|
|
|
|
<el-table-column prop="numUnit" :label="t('common_add.numUnit')" width="130px"> |
|
|
|
|
|
<template #default="scope"> |
|
|
|
|
|
<span v-if="scope.row.goodsName == t('common_list.goldRecharge')">{{ |
|
|
|
|
|
scope.row.permanentGold }}</span> |
|
|
|
|
|
<span v-else>{{ scope.row.goodNum }}</span> |
|
|
|
|
|
</template> |
|
|
|
|
|
</el-table-column> |
|
|
<el-table-column prop="paymentCurrency" :label="t('common_list.payCurrency')" width="120px" /> |
|
|
<el-table-column prop="paymentCurrency" :label="t('common_list.payCurrency')" width="120px" /> |
|
|
<el-table-column prop="paymentAmount" :label="t('common_list.payAmount')" width="120px" /> |
|
|
<el-table-column prop="paymentAmount" :label="t('common_list.payAmount')" width="120px" /> |
|
|
<el-table-column prop="payType" :label="t('common_list.payModel')" width="130px" /> |
|
|
<el-table-column prop="payType" :label="t('common_list.payModel')" width="130px" /> |
|
|
|