create.vue 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331
  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-16位密码" class="input-card" v-model="info.password"
  19. maxlength="12" />
  20. <!-- <picker mode="region" @change="location" level="city"> -->
  21. <view class="card" style="margin-top: 40rpx;" @click="show = true">
  22. <view class="row">
  23. <view>{{areaStr}}</view>
  24. <view class="">
  25. <u-icon name="arrow-right"></u-icon>
  26. </view>
  27. </view>
  28. </view>
  29. <!-- </picker> -->
  30. <view class="bottom-btn">
  31. <view class="buttom-dom" @click="create" v-if="pageType === 1">
  32. 创建配送员
  33. </view>
  34. <view class="buttom-dom" @click="edit" v-if="pageType === 2">
  35. 确认编辑
  36. </view>
  37. </view>
  38. <u-select v-model="show" :list="citylist" mode="mutil-column-auto" value-name="value" label-name="label"
  39. child-name="children" @confirm="location"></u-select>
  40. </view>
  41. </template>
  42. <script>
  43. export default {
  44. data() {
  45. return {
  46. // 运送类型
  47. type: [],
  48. // 1添加 2修改
  49. pageType: 1,
  50. // 编辑的信息
  51. info: {},
  52. // 配送类型
  53. send: [{
  54. name: '快车',
  55. value: 'fast',
  56. checked: false,
  57. },
  58. {
  59. name: '空运',
  60. value: 'air',
  61. checked: false,
  62. },
  63. {
  64. name: '专车',
  65. value: 'special',
  66. checked: false,
  67. },
  68. ],
  69. // 选中区域
  70. areaStr: "请选择配送区域",
  71. citylist: [],
  72. show: false
  73. }
  74. },
  75. onLoad(e) {
  76. this.pageType = Number(e.type);
  77. this.getcity()
  78. if (this.pageType === 2) {
  79. uni.setNavigationBarTitle({
  80. title: "编辑信息"
  81. })
  82. this.info = JSON.parse(e.info);
  83. this.areaStr = this.info.area[0].parent.name + " " + this.info.area[0].name
  84. this.info.area = [this.info.area[0].id]
  85. console.log(this.info);
  86. this.setSend()
  87. }
  88. },
  89. methods: {
  90. getcity() {
  91. this.request("/common/area_tree").then(res => {
  92. res.data.forEach(val => {
  93. var arr = []
  94. val.children.forEach(item => {
  95. arr.push({
  96. value: item.value,
  97. label: item.label
  98. })
  99. })
  100. this.citylist.push({
  101. value: val.value,
  102. label: val.label,
  103. children: arr
  104. })
  105. })
  106. })
  107. },
  108. // 获取配送类型
  109. setSend() {
  110. let data = this.info.send
  111. for (let s of data) {
  112. if (s.type === "air") {
  113. this.send[1].checked = true
  114. }
  115. if (s.type === "fast") {
  116. this.send[0].checked = true
  117. }
  118. if (s.type === "special") {
  119. this.send[2].checked = true
  120. }
  121. }
  122. this.$forceUpdate()
  123. },
  124. // 点击配送区域
  125. location(e) {
  126. var arr = []
  127. arr.push(e[0].label)
  128. arr.push(e[1].label)
  129. var arr1 = []
  130. // arr1.push(e[0].value)
  131. arr1.push(e[1].value)
  132. this.areaStr = arr.join(" ")
  133. this.info.area = arr1
  134. console.log(this.info);
  135. // this.$EventBus.$on('listenSetArea', (res) => {
  136. // console.log(res);
  137. // let data = this.info;
  138. // data.area = res.data;
  139. // this.info = data
  140. // this.areaStr = res.areaStr
  141. // this.$forceUpdate()
  142. // })
  143. // // 新增
  144. // if (this.pageType === 1) {
  145. // uni.navigateTo({
  146. // url: "./location"
  147. // })
  148. // }
  149. // // 编辑
  150. // if (this.pageType === 2) {
  151. // uni.navigateTo({
  152. // url: "./location?area=" + JSON.stringify(this.info.area)
  153. // })
  154. // }
  155. },
  156. // 确认新增
  157. create() {
  158. let data = [];
  159. for (let s of this.send) {
  160. if (s.checked) {
  161. data.push(s.value)
  162. }
  163. }
  164. this.info.send = data;
  165. this.$forceUpdate()
  166. console.log(this.info)
  167. if (this.info.send.length === 0) {
  168. this.$u.toast('请选择运送方式')
  169. return false
  170. }
  171. if (!this.info.area || this.info.area.length === 0) {
  172. this.$u.toast('请选择配送区域')
  173. return false
  174. }
  175. if (this.info.company === '' || this.info.company === undefined) {
  176. this.$u.toast('请填写公司名称')
  177. return false
  178. }
  179. if (this.info.name === '' || this.info.name === undefined) {
  180. this.$u.toast('请填写姓名')
  181. return false
  182. }
  183. if (this.info.mobile === '' || this.info.mobile === undefined) {
  184. this.$u.toast('请填写联系方式')
  185. return false
  186. }
  187. if (this.info.username === '' || this.info.username === undefined) {
  188. this.$u.toast('请填写账号')
  189. return false
  190. }
  191. if (this.info.password === '' || this.info.password === undefined) {
  192. this.$u.toast('请填写密码')
  193. return false
  194. }
  195. if (this.info.password.length > 16 || this.info.password.length < 8 || this.info.password === undefined) {
  196. this.$u.toast('密码长度在8-16之间')
  197. return false
  198. }
  199. this.request("/admin_user/store", this.info, "POST").then(res => {
  200. if (res.code === 1) {
  201. this.$u.toast('添加成功')
  202. this.info = {}
  203. uni.navigateBack({
  204. delta: res
  205. })
  206. }
  207. })
  208. },
  209. // 确认修改
  210. edit() {
  211. console.log(this.info, 2222)
  212. let send = [];
  213. for (let s of this.send) {
  214. if (s.checked) {
  215. send.push(s.value)
  216. }
  217. }
  218. let area = [];
  219. console.log(typeof this.info.area[0])
  220. if (typeof this.info.area[0] === 'object') {
  221. for (let s of this.info.area) {
  222. area.push(s.id)
  223. }
  224. } else {
  225. // 没有修改区域
  226. area = this.info.area
  227. }
  228. let data = {};
  229. this.$forceUpdate()
  230. if (send.length === 0) {
  231. this.$u.toast('请选择运送方式')
  232. return false
  233. }
  234. if (!this.info.area || this.info.area.length === 0) {
  235. this.$u.toast('请选择配送区域')
  236. return false
  237. }
  238. if (this.info.company === '') {
  239. this.$u.toast('请填写公司名称')
  240. return false
  241. }
  242. if (this.info.name === '') {
  243. this.$u.toast('请填写姓名')
  244. return false
  245. }
  246. if (this.info.mobile === '') {
  247. this.$u.toast('请填写联系方式')
  248. return false
  249. }
  250. if (this.info.username === '') {
  251. this.$u.toast('请填写账号')
  252. return false
  253. }
  254. data = {
  255. id: this.info.id,
  256. send: send,
  257. company: this.info.company,
  258. name: this.info.name,
  259. mobile: this.info.mobile,
  260. username: this.info.username,
  261. area: area,
  262. }
  263. this.request("/admin_user/store", data, "POST").then(res => {
  264. console.log(res)
  265. if (res.code === 1) {
  266. this.$u.toast('操作成功')
  267. setTimeout(() => {
  268. uni.navigateBack({
  269. delta: 1
  270. })
  271. }, 2000)
  272. }
  273. })
  274. }
  275. }
  276. }
  277. </script>
  278. <style lang="scss">
  279. .content {
  280. padding-top: 40rpx;
  281. background-color: #F8F8F8;
  282. }
  283. .card {
  284. background-color: #FFFFFF;
  285. width: 93%;
  286. padding: 30rpx;
  287. margin: 0 auto;
  288. margin-bottom: 40rpx;
  289. border-radius: 30rpx;
  290. }
  291. .input-card {
  292. background-color: #fff;
  293. width: 90%;
  294. height: 80rpx;
  295. border-radius: 20rpx;
  296. margin: 0 auto;
  297. margin-top: 40rpx;
  298. padding: 10rpx 0;
  299. padding-left: 1em;
  300. }
  301. .bottom-btn {
  302. position: fixed;
  303. bottom: 0;
  304. width: 100vw;
  305. height: 10vh;
  306. background-color: #FFFFFF;
  307. display: flex;
  308. flex-direction: column;
  309. align-items: center;
  310. justify-content: center;
  311. .buttom-dom {
  312. height: 80rpx;
  313. width: 93%;
  314. background-color: #F6B301;
  315. color: #FFFFFF;
  316. text-align: center;
  317. line-height: 80rpx;
  318. color: #FFFFFF;
  319. border-radius: 80rpx;
  320. }
  321. }
  322. </style>