create.vue 7.0 KB

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