Commit d67c5491 by wangguangchao

diasel列表数据展现

parent d0ccf062
...@@ -134,16 +134,36 @@ ...@@ -134,16 +134,36 @@
</c-list-search> </c-list-search>
<div style="margin-top: 20px"> <div style="margin-top: 20px">
<c-button size="small" type="primary" @click="onButdet" disabled="disabled"> <c-button
size="small"
type="primary"
@click="onButdet"
disabled="disabled"
>
Display Display
</c-button> </c-button>
<c-button size="small" type="primary" @click="onButdia" disabled="disabled"> <c-button
size="small"
type="primary"
@click="onButdia"
disabled="disabled"
>
Modify Modify
</c-button> </c-button>
<c-button size="small" type="primary" @click="onButdel" disabled="disabled"> <c-button
size="small"
type="primary"
@click="onButdel"
disabled="disabled"
>
Delete Delete
</c-button> </c-button>
<c-button size="small" type="primary" @click="onButprt" disabled="disabled"> <c-button
size="small"
type="primary"
@click="onButprt"
disabled="disabled"
>
Print Print
</c-button> </c-button>
<c-button <c-button
...@@ -154,10 +174,17 @@ ...@@ -154,10 +174,17 @@
> >
Selection Selection
</c-button> </c-button>
<c-button size="small" type="primary" @click="onButconcal" disabled="disabled"> <c-button
size="small"
type="primary"
@click="onButconcal"
disabled="disabled"
>
Process Process
</c-button> </c-button>
<c-button size="small" type="primary" disabled="disabled" > 导Excel </c-button> <c-button size="small" type="primary" disabled="disabled">
导Excel
</c-button>
</div> </div>
<el-row> <el-row>
...@@ -350,12 +377,17 @@ export default { ...@@ -350,12 +377,17 @@ export default {
stmData: { stmData: {
columns: [ columns: [
'1 1 "Date" 1', '1 1 "Date" 1',
'1 2 "Reason" 1', '2 2 "Reason" 1',
'1 3 "Reference" 1', '3 3 "Reference" 1',
'1 4 "Description" 1', '4 4 "Description" 1',
'1 5 "Transaction" 1', '5 5 "Transaction" 1',
'1 6 "User" 1', '6 6 "User" 1',
'1 7 "Group" 1', '7 7 "Group" 1',
'8 8 "客户号" 1',
'9 9 "客户名称" 1',
'10 10 "币种" 1',
'11 11 "金额" 1',
'12 12 "预计核验" 1',
], ],
data: [], data: [],
}, },
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
<!--PD000001 --> <!--PD000001 -->
<el-tab-pane label="Diary Selection" name="diaselp"> <el-tab-pane label="Diary Selection" name="diaselp">
<m-diaselp :model="model" :codes="codes"/> <m-diaselp :model="model" :codes="codes" ref="diaselp"/>
</el-tab-pane> </el-tab-pane>
</c-tabs> </c-tabs>
</el-form> </el-form>
...@@ -70,7 +70,8 @@ export default { ...@@ -70,7 +70,8 @@ export default {
let rtnmsg = await this.init({}) let rtnmsg = await this.init({})
if(rtnmsg.respCode == SUCCESS) if(rtnmsg.respCode == SUCCESS)
{ {
//TODO 处理数据逻辑 debugger;
this.$refs.diaselp.stmData.data = rtnmsg.data.dspstm.rows;
} }
else else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment