diff --git a/src/api/addressBook/phoneList.js b/src/api/addressBook/phoneList.js new file mode 100644 index 00000000..5bf1df4d --- /dev/null +++ b/src/api/addressBook/phoneList.js @@ -0,0 +1,10 @@ +import request from '@/utils/request' + +//通讯录查询 +export function ListPhones(query) { + return request({ + url: '/system/phones/query', + method: 'get', + params: query + }) +} diff --git a/src/views/addressBook/index.vue b/src/views/addressBook/index.vue index cf91b0a0..71fb1a93 100644 --- a/src/views/addressBook/index.vue +++ b/src/views/addressBook/index.vue @@ -1,32 +1,101 @@ \ No newline at end of file + .app-container { + } + .van-tag--medium{ + padding: 18px 10px; + } + .icon{ + position: absolute; + right: 0; + top: 0.05rem; + } + .nameTit{ + background: #1989fa; + color: #fff; + width: 1rem; + height: 1rem; + display: inline-block; + text-align: center; + line-height: 1rem; + border-radius: 0.1rem; + margin-right: 0.1rem; + } + .nameSize{ + display: inline-block; + line-height: 0.5rem; + } + diff --git a/src/views/index.vue b/src/views/index.vue index d4bd0d06..3b99698c 100644 --- a/src/views/index.vue +++ b/src/views/index.vue @@ -72,4 +72,4 @@ export default { \ No newline at end of file +