Commit d910c81b authored by youjie's avatar youjie

no message

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