Delivery.vue 5.6 KB

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