添加批发字段 添加交易类型字段
This commit is contained in:
parent
3afb4f0cd7
commit
ed1c1a8a96
@ -54,11 +54,7 @@
|
||||
<el-table-column prop="financial_record_sn" label="交易流水号" min-width="100" />
|
||||
<el-table-column prop="create_time" label="交易时间" min-width="100" sortable />
|
||||
<el-table-column prop="user_info" label="对方信息" min-width="80" />
|
||||
<el-table-column label="交易类型" min-width="100">
|
||||
<template slot-scope="scope">
|
||||
<span>{{ scope.row.financial_type | transactionTypeFilter }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="financial_type_cn" label="交易类型" min-width="100"/>
|
||||
<el-table-column label="收支金额(元)" min-width="100">
|
||||
<template slot-scope="scope">
|
||||
<span>{{ scope.row.financial_pm === 1 ? scope.row.number : -scope.row.number }}</span>
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -4,49 +4,30 @@
|
||||
<div slot="header" class="clearfix">
|
||||
<el-button size="small" type="primary" @click="onAdd">添加商品标签</el-button>
|
||||
</div>
|
||||
<el-table
|
||||
v-loading="listLoading"
|
||||
:data="tableData.data"
|
||||
style="width: 100%"
|
||||
size="small"
|
||||
>
|
||||
<el-table v-loading="listLoading" :data="tableData.data" style="width: 100%" size="small">
|
||||
<el-table-column prop="label_name" label="标签名称" min-width="60" />
|
||||
<el-table-column prop="info" label="标签说明" min-width="150" />
|
||||
<el-table-column prop="value" label="value" min-width="150" />
|
||||
<el-table-column prop="sort" label="排序" min-width="50" />
|
||||
<el-table-column prop="status" label="是否显示" min-width="100">
|
||||
<template slot-scope="scope">
|
||||
<el-switch
|
||||
v-model="scope.row.status"
|
||||
:active-value="1"
|
||||
:inactive-value="0"
|
||||
active-text="显示"
|
||||
inactive-text="隐藏"
|
||||
@change="onchangeIsShow(scope.row)"
|
||||
/>
|
||||
<el-switch v-model="scope.row.status" :active-value="1" :inactive-value="0" active-text="显示"
|
||||
inactive-text="隐藏" @change="onchangeIsShow(scope.row)" />
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="create_time" label="创建时间" min-width="150" />
|
||||
<el-table-column label="操作" min-width="100" fixed="right">
|
||||
<template slot-scope="scope">
|
||||
<el-button type="text" size="small" @click="onEdit(scope.row.product_label_id)">编辑</el-button>
|
||||
<el-button
|
||||
type="text"
|
||||
size="small"
|
||||
@click="handleDelete(scope.row.product_label_id, scope.$index)"
|
||||
>删除</el-button>
|
||||
<el-button type="text" size="small"
|
||||
@click="handleDelete(scope.row.product_label_id, scope.$index)">删除</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
<div class="block">
|
||||
<el-pagination
|
||||
:page-sizes="[20, 40, 60, 80]"
|
||||
:page-size="tableFrom.limit"
|
||||
:current-page="tableFrom.page"
|
||||
layout="total, sizes, prev, pager, next, jumper"
|
||||
:total="tableData.total"
|
||||
@size-change="handleSizeChange"
|
||||
@current-change="pageChange"
|
||||
/>
|
||||
<el-pagination :page-sizes="[20, 40, 60, 80]" :page-size="tableFrom.limit" :current-page="tableFrom.page"
|
||||
layout="total, sizes, prev, pager, next, jumper" :total="tableData.total" @size-change="handleSizeChange"
|
||||
@current-change="pageChange" />
|
||||
</div>
|
||||
</el-card>
|
||||
</div>
|
||||
@ -67,7 +48,8 @@ import {
|
||||
labelCreateApi,
|
||||
labelUpdateApi,
|
||||
labelDeleteApi,
|
||||
labelStatusApi } from '@/api/product'
|
||||
labelStatusApi
|
||||
} from '@/api/product'
|
||||
export default {
|
||||
name: 'LabelList',
|
||||
data() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user