|
@@ -1,44 +1,46 @@
|
|
|
<template>
|
|
<template>
|
|
|
- <!--选择朋友-->
|
|
|
|
|
- <Drawer :title="'选择朋友'" :placement="'right'" :visible="visible" @cancel="cancel" class="top486">
|
|
|
|
|
- <a-spin :spinning="loading">
|
|
|
|
|
- <div class="listed">
|
|
|
|
|
- <a-form class="inlineForm dialogForm">
|
|
|
|
|
- <a-input-search
|
|
|
|
|
- placeholder="搜索朋友编码或名称"
|
|
|
|
|
- class="searchFriendInput noSuffixInput"
|
|
|
|
|
- enter-button
|
|
|
|
|
- v-model:value="searchValue"
|
|
|
|
|
- @search="handleSearch"
|
|
|
|
|
- >
|
|
|
|
|
- <template #prefix>
|
|
|
|
|
- <SearchOutlined />
|
|
|
|
|
- </template>
|
|
|
|
|
- </a-input-search>
|
|
|
|
|
- <div class="formBar">
|
|
|
|
|
- <a-checkbox-group class="commonCheckboxGroup">
|
|
|
|
|
- <div
|
|
|
|
|
- class="item"
|
|
|
|
|
- v-for="(item, index) in getViewFriends()"
|
|
|
|
|
- :key="index + '11'"
|
|
|
|
|
- >
|
|
|
|
|
- <a-checkbox v-model:checked="item.checked">
|
|
|
|
|
- <span>{{item.frienduserid}} {{ item.friendname }}</span>
|
|
|
|
|
- </a-checkbox>
|
|
|
|
|
- </div>
|
|
|
|
|
- </a-checkbox-group>
|
|
|
|
|
- </div>
|
|
|
|
|
- <a-row :gutter="24">
|
|
|
|
|
- <a-col :span="24" class="fixedBtns">
|
|
|
|
|
- <a-form-item class="btnCenter">
|
|
|
|
|
- <a-button class="listedBtn" @click="submit">确定</a-button>
|
|
|
|
|
- </a-form-item>
|
|
|
|
|
- </a-col>
|
|
|
|
|
- </a-row>
|
|
|
|
|
- </a-form>
|
|
|
|
|
|
|
+ <!--选择朋友-->
|
|
|
|
|
+ <Drawer :title="'选择朋友'"
|
|
|
|
|
+ :placement="'right'"
|
|
|
|
|
+ :visible="visible"
|
|
|
|
|
+ @cancel="cancel"
|
|
|
|
|
+ class="top486">
|
|
|
|
|
+ <a-spin :spinning="loading">
|
|
|
|
|
+ <div class="listed">
|
|
|
|
|
+ <a-form class="inlineForm dialogForm">
|
|
|
|
|
+ <a-input-search placeholder="搜索朋友编码或名称"
|
|
|
|
|
+ class="searchFriendInput noSuffixInput"
|
|
|
|
|
+ enter-button
|
|
|
|
|
+ v-model:value="searchValue"
|
|
|
|
|
+ @search="handleSearch">
|
|
|
|
|
+ <template #prefix>
|
|
|
|
|
+ <SearchOutlined />
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </a-input-search>
|
|
|
|
|
+ <div class="formBar">
|
|
|
|
|
+ <!-- <a-checkbox-group class="commonCheckboxGroup"> -->
|
|
|
|
|
+ <div class="item"
|
|
|
|
|
+ v-for="(item, index) in getViewFriends()"
|
|
|
|
|
+ :key="index + '11'">
|
|
|
|
|
+ <a-checkbox v-model:checked="item.checked">
|
|
|
|
|
+ <span>{{item.frienduserid}} {{ item.friendname }}</span>
|
|
|
|
|
+ </a-checkbox>
|
|
|
</div>
|
|
</div>
|
|
|
- </a-spin>
|
|
|
|
|
- </Drawer>
|
|
|
|
|
|
|
+ <!-- </a-checkbox-group> -->
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <a-row :gutter="24">
|
|
|
|
|
+ <a-col :span="24"
|
|
|
|
|
+ class="fixedBtns">
|
|
|
|
|
+ <a-form-item class="btnCenter">
|
|
|
|
|
+ <a-button class="listedBtn"
|
|
|
|
|
+ @click="submit">确定</a-button>
|
|
|
|
|
+ </a-form-item>
|
|
|
|
|
+ </a-col>
|
|
|
|
|
+ </a-row>
|
|
|
|
|
+ </a-form>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </a-spin>
|
|
|
|
|
+ </Drawer>
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
<script lang="ts">
|