Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
yoho-shop-manage
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
zhangwenxue
6 years ago
Commit
817d9aa028e2577b622819394e30c6f928dea2ae
1 parent
21421c89
feature(finance): table-btn style
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
133 additions
and
109 deletions
app/pages/finance/clearing/clearing.vue
app/pages/finance/clearing/detail.vue
app/pages/finance/clearing/stock.vue
app/pages/finance/payment/detail.vue
app/pages/finance/payment/payment.vue
app/pages/finance/payment/stock.vue
app/pages/finance/payment/store/detail.js
app/pages/finance/clearing/clearing.vue
View file @
817d9aa
...
...
@@ -27,11 +27,9 @@
<filter-item>
<Button type="primary" @click="search">筛选</Button>
<Button @click="reset">清空条件</Button>
<Button type="warning" class="table-btn" @click="exportData">导出</Button>
</filter-item>
</layout-filter>
<layout-action>
<Button type="warning" class="table-btn" @click="exportData">导出</Button>
</layout-action>
<layout-list>
<Table border :columns="tableCols" :data="tableData"></Table>
<Page
...
...
@@ -157,3 +155,9 @@ export default {
},
};
</script>
<style scoped lang="scss">
.table-btn {
margin-left: 15px;
}
</style>
...
...
app/pages/finance/clearing/detail.vue
View file @
817d9aa
...
...
@@ -24,11 +24,9 @@
<Button @click="returnPage">返回对账单列表</Button>
<Button type="primary" @click="search">筛选</Button>
<Button @click="reset">清空条件</Button>
<Button type="warning" class="table-btn" @click="exportData">导出</Button>
</filter-item>
</layout-filter>
<layout-action>
<Button type="warning" class="table-btn" @click="exportData">导出</Button>
</layout-action>
<layout-list>
<Table border :columns="tableCols" :data="tableData"></Table>
<Page
...
...
@@ -123,3 +121,9 @@ export default {
},
};
</script>
<style scoped lang="scss">
.table-btn {
margin-left: 15px;
}
</style>
...
...
app/pages/finance/clearing/stock.vue
View file @
817d9aa
...
...
@@ -12,12 +12,10 @@
<Button @click="returnPage">返回对账单列表</Button>
<Button type="primary" @click="search">筛选</Button>
<Button @click="reset">清空条件</Button>
<Button type="warning" class="table-btn" @click="exportData">导出</Button>
<Button type="success" @click="print">打印</Button>
</filter-item>
</layout-filter>
<layout-action>
<Button type="warning" class="table-btn" @click="exportData">导出</Button>
<Button type="success" class="table-btn" @click="print">打印</Button>
</layout-action>
<layout-list>
<Table border :columns="tableCols" :data="tableData"></Table>
<Page
...
...
@@ -133,3 +131,9 @@ export default {
},
};
</script>
<style scoped lang="scss">
.table-btn {
margin-left: 15px;
}
</style>
...
...
app/pages/finance/payment/detail.vue
View file @
817d9aa
...
...
@@ -14,12 +14,10 @@
<Button @click="returnPage">返回结算单列表</Button>
<Button type="primary" @click="search">筛选</Button>
<Button @click="reset">清空条件</Button>
<Button type="warning" class="table-btn" @click="exportData">导出</Button>
<Button type="success" @click="print">打印</Button>
</filter-item>
</layout-filter>
<layout-action>
<Button type="warning" class="table-btn" @click="exportData">导出</Button>
<Button type="success" class="table-btn" @click="print">打印</Button>
</layout-action>
<layout-list>
<Table border :columns="tableCols" :data="tableData"></Table>
<Page
...
...
@@ -127,3 +125,9 @@ export default {
},
};
</script>
<style scoped lang="scss">
.table-btn {
margin-left: 15px;
}
</style>
...
...
app/pages/finance/payment/payment.vue
View file @
817d9aa
...
...
@@ -14,11 +14,9 @@
<filter-item>
<Button type="primary" @click="search">筛选</Button>
<Button @click="reset">清空条件</Button>
<Button type="warning" class="table-btn" @click="exportData">导出</Button>
</filter-item>
</layout-filter>
<layout-action>
<Button type="warning" class="table-btn" @click="exportData">导出</Button>
</layout-action>
<layout-list>
<Table border :columns="tableCols" :data="tableData"></Table>
<Page
...
...
@@ -139,3 +137,9 @@ export default {
},
};
</script>
<style scoped lang="scss">
.table-btn {
margin-left: 15px;
}
</style>
...
...
app/pages/finance/payment/stock.vue
View file @
817d9aa
...
...
@@ -12,12 +12,10 @@
<Button @click="returnPage">返回结算单列表</Button>
<Button type="primary" @click="search">筛选</Button>
<Button @click="reset">清空条件</Button>
<Button type="warning" class="table-btn" @click="exportData">导出</Button>
<Button type="success" @click="print">打印</Button>
</filter-item>
</layout-filter>
<layout-action>
<Button type="warning" class="table-btn" @click="exportData">导出</Button>
<Button type="success" class="table-btn" @click="print">打印</Button>
</layout-action>
<layout-list>
<Table border :columns="tableCols" :data="tableData"></Table>
<Page
...
...
@@ -133,3 +131,9 @@ export default {
},
};
</script>
<style scoped lang="scss">
.table-btn {
margin-left: 15px;
}
</style>
...
...
app/pages/finance/payment/store/detail.js
View file @
817d9aa
...
...
@@ -4,92 +4,92 @@
* @date: 2017/07/11
*/
export
default
function
()
{
return
{
tableCols
:
[
{
title
:
'结算单号'
,
key
:
'balanceId'
,
align
:
'center'
},
{
title
:
'SKU'
,
key
:
'productSku'
,
align
:
'center'
},
{
title
:
'产品名称'
,
key
:
'productName'
,
align
:
'center'
,
},
{
title
:
'商家商品编码'
,
key
:
'factoryCode'
,
align
:
'center'
,
},
{
title
:
'尺码'
,
key
:
'sizeName'
,
align
:
'center'
},
{
title
:
'品牌'
,
key
:
'brandName'
,
align
:
'center'
},
{
title
:
'业务类型'
,
key
:
'agencyTypeDesc'
,
align
:
'center'
},
{
title
:
'数量'
,
key
:
'salesNums'
,
align
:
'center'
},
{
title
:
'结算金额'
,
key
:
'salesAmount'
,
align
:
'center'
},
{
title
:
'付款状态'
,
key
:
'payerStatusDesc'
,
align
:
'center'
},
{
title
:
'对账起止日期'
,
key
:
'clearingInterval'
,
align
:
'center'
}
],
tableData
:
[],
pageData
:
{
total
:
0
,
pageNo
:
1
,
pageSize
:
20
},
filters
:
{
sku
:
{
label
:
'SKU'
,
labelSpan
:
6
,
model
:
''
,
holder
:
''
,
fieldSpan
:
18
},
balanceId
:
{
label
:
'结算单号'
,
labelSpan
:
6
,
model
:
this
.
$route
.
query
.
balanceId
,
holder
:
''
,
fieldSpan
:
18
},
brandId
:
{
label
:
'品牌'
,
labelSpan
:
6
,
model
:
this
.
$route
.
query
.
brandId
,
holder
:
''
,
fieldSpan
:
18
},
}
};
return
{
tableCols
:
[
{
title
:
'结算单号'
,
key
:
'balanceId'
,
align
:
'center'
,
},
{
title
:
'SKU'
,
key
:
'productSku'
,
align
:
'center'
,
},
{
title
:
'产品名称'
,
key
:
'productName'
,
align
:
'center'
,
},
{
title
:
'商家商品编码'
,
key
:
'factoryCode'
,
align
:
'center'
,
},
{
title
:
'尺码'
,
key
:
'sizeName'
,
align
:
'center'
,
},
{
title
:
'品牌'
,
key
:
'brandName'
,
align
:
'center'
,
},
{
title
:
'业务类型'
,
key
:
'agencyTypeDesc'
,
align
:
'center'
,
},
{
title
:
'数量'
,
key
:
'salesNums'
,
align
:
'center'
,
},
{
title
:
'结算金额'
,
key
:
'salesAmount'
,
align
:
'center'
,
},
{
title
:
'付款状态'
,
key
:
'payerStatusDesc'
,
align
:
'center'
,
},
{
title
:
'对账起止日期'
,
key
:
'clearingInterval'
,
align
:
'center'
,
},
],
tableData
:
[],
pageData
:
{
total
:
0
,
pageNo
:
1
,
pageSize
:
20
,
},
filters
:
{
sku
:
{
label
:
'SKU'
,
labelSpan
:
6
,
model
:
''
,
holder
:
''
,
fieldSpan
:
18
,
},
balanceId
:
{
label
:
'结算单号'
,
labelSpan
:
6
,
model
:
this
.
$route
.
query
.
balanceId
,
holder
:
''
,
fieldSpan
:
18
,
},
brandId
:
{
label
:
'品牌'
,
labelSpan
:
6
,
model
:
this
.
$route
.
query
.
brandId
,
holder
:
''
,
fieldSpan
:
18
,
},
},
};
}
...
...
Please
register
or
login
to post a comment