Commit d910c81b authored by youjie's avatar youjie

no message

parent d58e4430
...@@ -331,6 +331,7 @@ ...@@ -331,6 +331,7 @@
<th>{{ $t("fnc.acc") }}</th> <th>{{ $t("fnc.acc") }}</th>
<th>{{ $t("admin.admin_status") }}</th> <th>{{ $t("admin.admin_status") }}</th>
<th>{{ $t("ground.leijijiaoyi") }}</th> <th>{{ $t("ground.leijijiaoyi") }}</th>
<th>创建人</th>
<th>{{ $t("admin.admin_operate") }}</th> <th>{{ $t("admin.admin_operate") }}</th>
</tr> </tr>
<tr v-for="(item, index) in list"> <tr v-for="(item, index) in list">
...@@ -356,6 +357,10 @@ ...@@ -356,6 +357,10 @@
}}</span> }}</span>
</td> </td>
<td style="color: #ff9c00">{{ moneyFormat(item.PayMoney) }}</td> <td style="color: #ff9c00">{{ moneyFormat(item.PayMoney) }}</td>
<td>
{{item.CreateByName?item.CreateByName:'-'}}
<p>{{item.CreateDate?item.CreateDate:'-'}}</p>
</td>
<td class="empBankAccountIcon"> <td class="empBankAccountIcon">
<el-button-group> <el-button-group>
<el-tooltip <el-tooltip
...@@ -430,7 +435,7 @@ ...@@ -430,7 +435,7 @@
export default { export default {
data() { data() {
return { return {
loading: true, loading: false,
accountList: [], accountList: [],
ClientTypeList: [], ClientTypeList: [],
nameA: this.$t("ground.zhanghumingcheng2"), nameA: this.$t("ground.zhanghumingcheng2"),
...@@ -515,7 +520,13 @@ export default { ...@@ -515,7 +520,13 @@ export default {
(res) => { (res) => {
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
this.ClientTypeList = res.data.data; this.ClientTypeList = res.data.data;
this.msg.Type = this.ClientTypeList[0].ID let obj = {
ID:0,
Name:'不限'
}
this.ClientTypeList.unshift(obj)
this.msg.Type = this.ClientTypeList[0].ID
this.getList(); this.getList();
} }
}, },
...@@ -548,6 +559,7 @@ export default { ...@@ -548,6 +559,7 @@ export default {
}, },
getList() { getList() {
//获取列表数据 //获取列表数据
this.loading = true
this.apipost( this.apipost(
"admin_get_GetEmpBankAccountPageList", "admin_get_GetEmpBankAccountPageList",
this.msg, this.msg,
......
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