create.vue 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284
  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" color="#F6B301">{{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[0].checked = true
  87. }
  88. if (s.type === "special") {
  89. this.send[1].checked = true
  90. }
  91. }
  92. this.$forceUpdate()
  93. },
  94. // 点击配送区域
  95. location() {
  96. this.$EventBus.$on('listenSetArea', (res) => {
  97. let data = this.info;
  98. data.area = res;
  99. this.info = data
  100. this.$forceUpdate()
  101. })
  102. // 新增
  103. if (this.pageType === 1) {
  104. uni.navigateTo({
  105. url: "./location"
  106. })
  107. }
  108. // 编辑
  109. if (this.pageType === 2) {
  110. uni.navigateTo({
  111. url: "./location?area=" + JSON.stringify(this.info.area)
  112. })
  113. }
  114. },
  115. // 确认新增
  116. create() {
  117. let data = [];
  118. for (let s of this.send) {
  119. if (s.checked) {
  120. data.push(s.value)
  121. }
  122. }
  123. this.info.send = data;
  124. this.$forceUpdate()
  125. if (this.info.send.length === 0) {
  126. this.$u.toast('请选择运送方式')
  127. return false
  128. }
  129. if (!this.info.area || this.info.area.length === 0) {
  130. this.$u.toast('请选择配送区域')
  131. return false
  132. }
  133. if (this.info.company === '') {
  134. this.$u.toast('请填写公司名称')
  135. return false
  136. }
  137. if (this.info.name === '') {
  138. this.$u.toast('请填写姓名')
  139. return false
  140. }
  141. if (this.info.mobile === '') {
  142. this.$u.toast('请填写联系方式')
  143. return false
  144. }
  145. if (this.info.username === '') {
  146. this.$u.toast('请填写账号')
  147. return false
  148. }
  149. if (this.info.password === '') {
  150. this.$u.toast('请填写密码')
  151. return false
  152. }
  153. this.request("/admin_user/store", this.info, "POST").then(res => {
  154. if (res.code === 1) {
  155. this.$u.toast('添加成功')
  156. this.info = {}
  157. uni.navigateBack({
  158. delta: res
  159. })
  160. }
  161. })
  162. },
  163. // 确认修改
  164. edit() {
  165. console.log(this.info, 2222)
  166. let send = [];
  167. for (let s of this.send) {
  168. if (s.checked) {
  169. send.push(s.value)
  170. }
  171. }
  172. let area = [];
  173. console.log(typeof this.info.area[0])
  174. if(typeof this.info.area[0] === 'object'){
  175. for (let s of this.info.area) {
  176. area.push(s.id)
  177. }
  178. }else{
  179. // 没有修改区域
  180. area = this.info.area
  181. }
  182. let data = {};
  183. this.$forceUpdate()
  184. if (send.length === 0) {
  185. this.$u.toast('请选择运送方式')
  186. return false
  187. }
  188. if (!this.info.area || this.info.area.length === 0) {
  189. this.$u.toast('请选择配送区域')
  190. return false
  191. }
  192. if (this.info.company === '') {
  193. this.$u.toast('请填写公司名称')
  194. return false
  195. }
  196. if (this.info.name === '') {
  197. this.$u.toast('请填写姓名')
  198. return false
  199. }
  200. if (this.info.mobile === '') {
  201. this.$u.toast('请填写联系方式')
  202. return false
  203. }
  204. if (this.info.username === '') {
  205. this.$u.toast('请填写账号')
  206. return false
  207. }
  208. data = {
  209. id: this.info.id,
  210. send: send,
  211. company: this.info.company,
  212. name: this.info.name,
  213. mobile: this.info.mobile,
  214. username: this.info.username,
  215. area: area,
  216. }
  217. this.request("/admin_user/store", data, "POST").then(res => {
  218. console.log(res)
  219. if (res.code === 1) {
  220. this.$u.toast('操作成功')
  221. setTimeout(()=>{
  222. uni.navigateBack({
  223. delta:1
  224. })
  225. },2000)
  226. }
  227. })
  228. }
  229. }
  230. }
  231. </script>
  232. <style lang="scss">
  233. .content {
  234. padding-top: 40rpx;
  235. background-color: #F8F8F8;
  236. }
  237. .card {
  238. background-color: #FFFFFF;
  239. width: 93%;
  240. padding: 30rpx;
  241. margin: 0 auto;
  242. margin-bottom: 40rpx;
  243. border-radius: 30rpx;
  244. }
  245. .input-card {
  246. background-color: #fff;
  247. width: 90%;
  248. height: 80rpx;
  249. border-radius: 20rpx;
  250. margin: 0 auto;
  251. margin-top: 40rpx;
  252. padding: 10rpx 0;
  253. padding-left: 1em;
  254. }
  255. .bottom-btn {
  256. position: fixed;
  257. bottom: 0;
  258. width: 100vw;
  259. height: 10vh;
  260. background-color: #FFFFFF;
  261. display: flex;
  262. flex-direction: column;
  263. align-items: center;
  264. justify-content: center;
  265. .buttom-dom {
  266. height: 80rpx;
  267. width: 93%;
  268. background-color: #F6B301;
  269. color: #FFFFFF;
  270. text-align: center;
  271. line-height: 80rpx;
  272. color: #FFFFFF;
  273. border-radius: 80rpx;
  274. }
  275. }
  276. </style>