Delivery.vue 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260
  1. <template>
  2. <view class="content">
  3. <view class="search">
  4. <u-search placeholder="请输入信息搜索配送员" v-model="keyword" @custom="getData" @search="getData"></u-search>
  5. </view>
  6. <view class="card" v-for="(item,index) in dataList" :key="index">
  7. <view class="row">
  8. <view class="row half">
  9. <view class="name">
  10. 公司名称
  11. </view>
  12. <view class="text">
  13. {{item.company}}
  14. </view>
  15. </view>
  16. </view>
  17. <view class="row">
  18. <view class="row half">
  19. <view class="name">
  20. 姓名
  21. </view>
  22. <view class="text">
  23. {{item.name}}
  24. </view>
  25. </view>
  26. <view class="row half">
  27. <view class="name">
  28. 联系方式
  29. </view>
  30. <view class="text">
  31. {{item.mobile}}
  32. </view>
  33. </view>
  34. </view>
  35. <view class="row">
  36. <view class="row half">
  37. <view class="name">
  38. 账号
  39. </view>
  40. <view class="text">
  41. {{item.username}}
  42. </view>
  43. </view>
  44. </view>
  45. <view class="row">
  46. <view class="row half">
  47. <view class="name">
  48. 所属区域
  49. </view>
  50. <view class="text">
  51. {{item.area[0].name}}
  52. </view>
  53. </view>
  54. </view>
  55. <view class="row">
  56. <view class="row half">
  57. <view class="name">
  58. 是否禁用
  59. </view>
  60. <u-switch class="text" style="margin-left: 20rpx;" v-model="item.status"
  61. :active-value="item.id + ',1'" :inactive-value="item.id + ',2'" @change="open"
  62. active-color="#F6B301" inactive-color="#eee" size="25"></u-switch>
  63. </view>
  64. <view class="row half">
  65. <view class="btn" @click="del(item.id)">
  66. 删除
  67. </view>
  68. <view class="btn" @click="eidt(item)">
  69. 编辑
  70. </view>
  71. </view>
  72. </view>
  73. </view>
  74. <view class="bottom-btn">
  75. <view class="buttom-dom" @click="create">
  76. 创建配送员
  77. </view>
  78. </view>
  79. </view>
  80. </template>
  81. <script>
  82. export default {
  83. data() {
  84. return {
  85. // 搜索条件
  86. keyword: "",
  87. // 数量
  88. limit: 10,
  89. // 页码
  90. page: 1,
  91. // 数据
  92. dataList: []
  93. }
  94. },
  95. onLoad() {
  96. this.getData()
  97. },
  98. methods: {
  99. // 禁用
  100. open(e) {
  101. let _this = this
  102. let data = e.split(',')
  103. // 开启
  104. if (data[1] === '1') {
  105. this.request("/admin_user/enable",{user_id:data[0],status:'normal'},"GET").then(res=>{
  106. console.log(res)
  107. if(res.code === 1){
  108. _this.getData()
  109. }
  110. })
  111. }
  112. // 关闭
  113. if (data[1] === '2') {
  114. this.request("/admin_user/enable",{user_id:data[0],status:'hidden'},"GET").then(res=>{
  115. console.log(res)
  116. if(res.code === 1){
  117. _this.getData()
  118. }
  119. })
  120. }
  121. },
  122. // 获取数据列表
  123. getData() {
  124. this.request("/admin_user/senders", {
  125. keyword: this.keyword,
  126. limit: this.limit,
  127. page: this.page
  128. }, "GET").then(res => {
  129. console.log(res)
  130. if (res.code === 1) {
  131. this.dataList = res.data.data
  132. }
  133. })
  134. },
  135. // 点击新建
  136. create() {
  137. uni.navigateTo({
  138. url: './create?type=1'
  139. })
  140. },
  141. // 点击删除
  142. del(id) {
  143. let _this = this;
  144. console.log('del')
  145. uni.showModal({
  146. title: "提示",
  147. content: "确定要删除此配送员吗?",
  148. showCancel: true,
  149. success(e) {
  150. if (e.confirm) {
  151. console.log('确定')
  152. _this.request("/admin_user/delete", {
  153. user_id: id
  154. }, "GET").then(res => {
  155. console.log(res)
  156. if (res.code === 1) {
  157. _this.$u.toast('操作成功')
  158. _this.getData()
  159. }
  160. })
  161. }
  162. }
  163. })
  164. },
  165. // 点击编辑
  166. eidt(info) {
  167. console.log('edit')
  168. uni.navigateTo({
  169. url: "./create?info=" + JSON.stringify(info) + "&type=2"
  170. })
  171. }
  172. }
  173. }
  174. </script>
  175. <style lang="scss">
  176. .content {
  177. padding-top: 120rpx;
  178. overflow-y: scroll;
  179. padding-bottom: 15vh;
  180. .search {
  181. padding: 30rpx;
  182. background-color: #FFFFFF;
  183. position: fixed;
  184. top: 0;
  185. width: 100vw;
  186. }
  187. .card {
  188. background-color: #FFFFFF;
  189. width: 93%;
  190. margin: 0 auto;
  191. margin-top: 40rpx;
  192. padding: 30rpx;
  193. border-radius: 30rpx;
  194. display: flex;
  195. flex-direction: column;
  196. align-items: center;
  197. justify-content: space-between;
  198. .row {
  199. margin-bottom: 10rpx;
  200. }
  201. .row:nth-child(5) {
  202. margin-bottom: 0;
  203. }
  204. .half {
  205. width: 50%;
  206. justify-content: flex-start;
  207. .name {
  208. color: #999;
  209. }
  210. .text {
  211. text-indent: 1em;
  212. }
  213. .btn {
  214. width: 100%;
  215. display: flex;
  216. flex-direction: row;
  217. align-items: center;
  218. justify-content: flex-end;
  219. }
  220. }
  221. }
  222. .bottom-btn {
  223. position: fixed;
  224. bottom: 0;
  225. width: 100vw;
  226. height: 10vh;
  227. background-color: #FFFFFF;
  228. display: flex;
  229. flex-direction: column;
  230. align-items: center;
  231. justify-content: center;
  232. .buttom-dom {
  233. height: 80rpx;
  234. width: 93%;
  235. background-color: #F6B301;
  236. color: #FFFFFF;
  237. text-align: center;
  238. line-height: 80rpx;
  239. color: #FFFFFF;
  240. border-radius: 80rpx;
  241. }
  242. }
  243. }
  244. </style>