create.vue 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  1. <template>
  2. <view class="content">
  3. <view class="card">
  4. <view class="row">
  5. <view>
  6. 运送方式(多选)
  7. </view>
  8. <u-checkbox-group>
  9. <u-checkbox shape="square" v-for="(item,index) in send" :name="item.name" v-model="item.checked"
  10. :key="index">{{item.name}}</u-checkbox>
  11. </u-checkbox-group>
  12. </view>
  13. </view>
  14. <input type="text" placeholder="请输入公司名称" class="input-card" v-model="info.company" />
  15. <input type="text" placeholder="请输入姓名" class="input-card" v-model="info.name" />
  16. <input type="text" placeholder="请输入联系方式" class="input-card" v-model="info.mobile" />
  17. <input type="text" placeholder="请输入账号" class="input-card" v-model="info.username" />
  18. <input type="password" v-if="pageType === 1" placeholder="请输入6-12位密码" class="input-card"
  19. v-model="info.password" />
  20. <view class="card" style="margin-top: 40rpx;" @click="location">
  21. <view class="row">
  22. <view>请选择配送区域</view>
  23. <view class="">
  24. <u-icon name="arrow-right"></u-icon>
  25. </view>
  26. </view>
  27. </view>
  28. <view class="bottom-btn">
  29. <view class="buttom-dom" @click="create" v-if="pageType === 1">
  30. 创建配送员
  31. </view>
  32. <view class="buttom-dom" @click="edit" v-if="pageType === 2">
  33. 确认编辑
  34. </view>
  35. </view>
  36. </view>
  37. </template>
  38. <script>
  39. export default {
  40. data() {
  41. return {
  42. // 运送类型
  43. type: [],
  44. // 1添加 2修改
  45. pageType: 1,
  46. // 编辑的信息
  47. info: {},
  48. // 配送类型
  49. send: [{
  50. name: '快车',
  51. value: 'fast',
  52. checked: false,
  53. },
  54. {
  55. name: '空运',
  56. value: 'air',
  57. checked: false,
  58. },
  59. {
  60. name: '专车',
  61. value: 'special',
  62. checked: false,
  63. },
  64. ]
  65. }
  66. },
  67. onLoad(e) {
  68. this.pageType = Number(e.type);
  69. if (this.pageType === 2) {
  70. uni.setNavigationBarTitle({
  71. title: "编辑信息"
  72. })
  73. this.info = JSON.parse(e.info);
  74. this.setSend()
  75. }
  76. },
  77. methods: {
  78. // 获取配送类型
  79. setSend() {
  80. let data = this.info.send
  81. for (let s of data) {
  82. if (s.type === "air") {
  83. this.send[1].checked = true
  84. }
  85. if (s.type === "fast") {
  86. this.send[2].checked = true
  87. }
  88. if (s.type === "special") {
  89. this.send[0].checked = true
  90. }
  91. }
  92. },
  93. // 点击配送区域
  94. location() {
  95. this.$EventBus.$on('listenSetArea',(res)=>{
  96. let data = this.info;
  97. data.area = res;
  98. this.info = data
  99. this.$forceUpdate()
  100. })
  101. uni.navigateTo({
  102. url: "./location"
  103. })
  104. },
  105. // 确认新增
  106. create() {
  107. let data = [];
  108. for (let s of this.send) {
  109. if(s.checked){
  110. data.push(s.value)
  111. }
  112. }
  113. this.info.send = data;
  114. this.$forceUpdate()
  115. if(this.info.send.length === 0){
  116. this.$u.toast('请选择运送方式')
  117. return false
  118. }
  119. if( !this.info.area || this.info.area.length === 0){
  120. this.$u.toast('请选择配送区域')
  121. return false
  122. }
  123. if(this.info.company === ''){
  124. this.$u.toast('请填写公司名称')
  125. return false
  126. }if(this.info.name === ''){
  127. this.$u.toast('请填写姓名')
  128. return false
  129. }if(this.info.mobile === ''){
  130. this.$u.toast('请填写联系方式')
  131. return false
  132. }if(this.info.username === ''){
  133. this.$u.toast('请填写账号')
  134. return false
  135. }if(this.info.password === ''){
  136. this.$u.toast('请填写密码')
  137. return false
  138. }
  139. this.request("/admin_user/store",this.info,"POST").then(res=>{
  140. if(res.code === 1){
  141. this.$u.toast('添加成功')
  142. this.info = {}
  143. uni.navigateBack({
  144. delta:res
  145. })
  146. }
  147. })
  148. },
  149. // 确认修改
  150. edit() {
  151. console.log(this.info, 2222)
  152. let send = [];
  153. for (let s of this.send) {
  154. if (s.checked) {
  155. send.push(s.value)
  156. }
  157. }
  158. let data = {};
  159. if(this.pageType === 1){
  160. data = {
  161. send: send,
  162. company: this.info.company,
  163. name: this.info.name,
  164. mobile: this.info.mobile,
  165. username: this.info.username,
  166. area: this.info.area,
  167. }
  168. this.request("/admin_user/store",data,"POST").then(res=>{
  169. console.log(res)
  170. })
  171. }
  172. if(this.pageType === 2){
  173. data = {
  174. id: this.info.id,
  175. send: send,
  176. company: this.info.company,
  177. name: this.info.name,
  178. mobile: this.info.mobile,
  179. username: this.info.username,
  180. area: this.info.area,
  181. }
  182. console.log(data,333)
  183. this.request("/admin_user/store",data,"POST").then(res=>{
  184. console.log(res)
  185. })
  186. }
  187. }
  188. }
  189. }
  190. </script>
  191. <style lang="scss">
  192. .content {
  193. padding-top: 40rpx;
  194. background-color: #F8F8F8;
  195. }
  196. .card {
  197. background-color: #FFFFFF;
  198. width: 93%;
  199. padding: 30rpx;
  200. margin: 0 auto;
  201. margin-bottom: 40rpx;
  202. border-radius: 30rpx;
  203. }
  204. .input-card {
  205. background-color: #fff;
  206. width: 90%;
  207. height: 80rpx;
  208. border-radius: 20rpx;
  209. margin: 0 auto;
  210. margin-top: 40rpx;
  211. padding: 10rpx 0;
  212. padding-left: 1em;
  213. }
  214. .bottom-btn {
  215. position: fixed;
  216. bottom: 0;
  217. width: 100vw;
  218. height: 10vh;
  219. background-color: #FFFFFF;
  220. display: flex;
  221. flex-direction: column;
  222. align-items: center;
  223. justify-content: center;
  224. .buttom-dom {
  225. height: 80rpx;
  226. width: 93%;
  227. background-color: #F6B301;
  228. color: #FFFFFF;
  229. text-align: center;
  230. line-height: 80rpx;
  231. color: #FFFFFF;
  232. border-radius: 80rpx;
  233. }
  234. }
  235. </style>