|
|
@@ -35,51 +35,12 @@
|
|
|
</a-col>
|
|
|
</a-row>
|
|
|
</template>
|
|
|
- <a-row class="contRow"
|
|
|
- v-for="(item, i) in businesserList"
|
|
|
+ <!-- <a-row class="contRow"
|
|
|
+ v-for="(item, i) in traderList"
|
|
|
:key="i + '11'">
|
|
|
<a-col :span="12">{{item.accountname}}-{{item.logincode}}</a-col>
|
|
|
<a-col :span="12">{{getLoginStatus(item.loginstatus)}}</a-col>
|
|
|
- </a-row>
|
|
|
- </a-collapse-panel>
|
|
|
- </a-collapse>
|
|
|
- <a-collapse class="spotCollapse"
|
|
|
- :bordered="false">
|
|
|
- <template #expandIcon="props">
|
|
|
- <svg class="icon svg-icon"
|
|
|
- aria-hidden="true"
|
|
|
- v-if="props.isActive == 0">
|
|
|
- <use xlink:href="#icon-shouqi1"></use>
|
|
|
- </svg>
|
|
|
- <svg class="icon svg-icon"
|
|
|
- aria-hidden="true"
|
|
|
- v-else>
|
|
|
- <use xlink:href="#icon-shouqi2"></use>
|
|
|
- </svg>
|
|
|
- </template>
|
|
|
- <a-collapse-panel>
|
|
|
- <template #header>
|
|
|
- <a-row class="headRow">
|
|
|
- <a-col :span="12">跟单员(3)</a-col>
|
|
|
- <a-col :span="12">
|
|
|
- <BtnList :btnList="commonBtn" />
|
|
|
- </a-col>
|
|
|
- </a-row>
|
|
|
- </template>
|
|
|
- <a-collapse class="spotCollapse"
|
|
|
- v-for="(item, i) in merchandiserList"
|
|
|
- :key="i + '11'"
|
|
|
- :bordered="false">
|
|
|
- <a-collapse-panel :show-arrow="false">
|
|
|
- <template #header>
|
|
|
- <a-row class="headRow">
|
|
|
- <a-col :span="12">{{item.accountname}}-{{item.logincode}}</a-col>
|
|
|
- <a-col :span="12">{{getLoginStatus(item.loginstatus)}}</a-col>
|
|
|
- </a-row>
|
|
|
- </template>
|
|
|
- <BtnList :btnList="forDataBtn" />
|
|
|
- </a-collapse-panel>
|
|
|
- </a-collapse>
|
|
|
+ </a-row> -->
|
|
|
</a-collapse-panel>
|
|
|
</a-collapse>
|
|
|
</div>
|
|
|
@@ -99,12 +60,13 @@ export default defineComponent({
|
|
|
filterCustomTable,
|
|
|
},
|
|
|
setup() {
|
|
|
- const { businesserList, merchandiserList, getBusinesserList } = handleAccountManager();
|
|
|
+ const { traderList, getRoleList } = handleAccountManager();
|
|
|
+ console.log('traderList', traderList);
|
|
|
|
|
|
const { commonBtn, forDataBtn } = getBtnList('account_info_business', true);
|
|
|
const loading = ref<boolean>(false);
|
|
|
initData(() => {
|
|
|
- getBusinesserList();
|
|
|
+ getRoleList();
|
|
|
});
|
|
|
|
|
|
// 查询
|
|
|
@@ -115,9 +77,7 @@ export default defineComponent({
|
|
|
forDataBtn,
|
|
|
loading,
|
|
|
search,
|
|
|
- businesserList,
|
|
|
- merchandiserList,
|
|
|
- getLoginStatus,
|
|
|
+ traderList,
|
|
|
};
|
|
|
},
|
|
|
});
|