repairOrder.vue 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295
  1. <template>
  2. <view class="content">
  3. <view class="box">
  4. <view class="cell">
  5. <view class="label required">产品图片</view>
  6. <view>
  7. <u-upload :fileList="fileList1" @afterRead="afterRead" @delete="deletePic" :maxCount="9" name="1" multiple :previewFullImage="true" width="200rpx" height="200rpx">
  8. <image src="/static/images/comment/add-img.png" style="width: 200rpx;height: 200rpx;"></image>
  9. </u-upload>
  10. </view>
  11. </view>
  12. <view class="cell">
  13. <view class="label required">维修时间</view>
  14. <view class="hflex acenter jbetween">
  15. <view @click="open(1)">
  16. <u-input v-model="startTime" border="none" placeholder="开始时间"></u-input>
  17. </view>
  18. <u-datetime-picker title="开始时间" :show="show_time1" :minDate="newDate" v-model="newDate" ref="datetimePicker" @confirm="confirmTime1" @cancel="cancel" :formatter="formatter" mode="date"></u-datetime-picker>
  19. <view style="margin: 0 20rpx;">-</view>
  20. <view @click="open(2)">
  21. <u-input v-model="endTime" border="none" placeholder="结束时间"></u-input>
  22. </view>
  23. <u-datetime-picker title="结束时间" :show="show_time2" :minDate="newDate" v-model="newDate" ref="datetimePicker" @confirm="confirmTime2" @cancel="cancel" :formatter="formatter" mode="date"></u-datetime-picker>
  24. </view>
  25. </view>
  26. <view class="cell" @click="selectmap">
  27. <view class="label required">维修地点</view>
  28. <view>
  29. <u-input v-model="address" border="none" disabled disabledColor="#fff" placeholder="请选择" suffixIcon="arrow-right"></u-input>
  30. </view>
  31. </view>
  32. <view class="cell">
  33. <view class="label required">故障描述</view>
  34. <view>
  35. <u--textarea v-model="fault" maxlength="300" placeholder="请详细描述故障情况及原因,方便师傅带齐工具,并为您提供准确合理的维修" border="none" count></u--textarea>
  36. </view>
  37. </view>
  38. </view>
  39. <view class="box">
  40. <view class="hflex acenter jbetween">
  41. <view class="label">是否快修</view>
  42. <u-switch v-model="is_quick" activeColor="#506dff" @change="change"></u-switch>
  43. </view>
  44. </view>
  45. <view class="bottom">
  46. <view class="bottom_btn" @click="release">立即发布</view>
  47. </view>
  48. </view>
  49. </template>
  50. <script>
  51. import $api from '@/static/js/api.js'
  52. var that = ''
  53. export default {
  54. data() {
  55. return {
  56. fileList1: [],
  57. fault: '',
  58. is_quick: false,
  59. startTime: '',
  60. endTime: '',
  61. address: '',
  62. show_time1: false,
  63. show_time2: false,
  64. newDate: Number(new Date()),
  65. }
  66. },
  67. onLoad() {
  68. that = this
  69. },
  70. onReady() {
  71. // 微信小程序需要用此写法
  72. this.$refs.datetimePicker.setFormatter(this.formatter)
  73. },
  74. methods: {
  75. selectmap() {
  76. console.log('选择地址');
  77. uni.getLocation({
  78. type: 'wgs84',
  79. success: (res)=>{
  80. console.log(res);
  81. if(res.longitude && res.latitude){
  82. $api.jump('/pages/user/map?lng='+res.longitude+'&lat='+res.latitude)
  83. }
  84. },
  85. fail:()=>{
  86. uni.getSetting({
  87. success: (res) => {
  88. console.log(res);
  89. var status = res.authSetting;
  90. if(!status['scope.userLocation']){
  91. uni.showModal({
  92. title:"是否授权当前位置",
  93. content:"需要获取您的地理位置,请确认授权,否则地图功能将无法使用",
  94. success:(tip)=>{
  95. if(tip.confirm){
  96. uni.openSetting({
  97. success:(data)=>{
  98. if(data.authSetting['scope.userLocation']===true){
  99. uni.showToast({
  100. title:"授权成功",
  101. icon:"success",
  102. duration:1000
  103. })
  104. uni.getLocation({
  105. type: 'wgs84',
  106. success: (res)=>{
  107. console.log('当前位置的经度:' + res.longitude);
  108. console.log('当前位置的纬度:' + res.latitude);
  109. $api.jump('/pages/user/map?lng='+res.longitude+'&lat='+res.latitude)
  110. }
  111. })
  112. }else{
  113. uni.showToast({
  114. title:"授权失败",
  115. icon:"none",
  116. duration:1000
  117. })
  118. }
  119. }
  120. })
  121. }
  122. }
  123. })
  124. }else{
  125. uni.getLocation({
  126. type: 'wgs84',
  127. success: (res)=>{
  128. console.log('当前位置的经度:' + res.longitude);
  129. console.log('当前位置的纬度:' + res.latitude);
  130. $api.jump('/pages/user/map?lng='+res.longitude+'&lat='+res.latitude)
  131. }
  132. })
  133. }
  134. },
  135. fail: (res) => {
  136. uni.showToast({
  137. title:"调用授权窗口失败",
  138. icon:"none",
  139. duration:1000
  140. })
  141. }
  142. })
  143. }
  144. })
  145. },
  146. // 格式化日期选择
  147. formatter(type, value) {
  148. if (type === 'year') {
  149. return `${value}年`
  150. }
  151. if (type === 'month') {
  152. return `${value}月`
  153. }
  154. if (type === 'day') {
  155. return `${value}日`
  156. }
  157. return value
  158. },
  159. // 删除图片
  160. deletePic(event) {
  161. this[`fileList${event.name}`].splice(event.index, 1)
  162. },
  163. // 新增图片
  164. async afterRead(event) {
  165. console.log(event);
  166. // 当设置 multiple 为 true 时, file 为数组格式,否则为对象格式
  167. let lists = [].concat(event.file)
  168. let fileListLen = this[`fileList${event.name}`].length
  169. lists.map((item) => {
  170. this[`fileList${event.name}`].push({
  171. ...item,
  172. status: 'uploading',
  173. message: '上传中'
  174. })
  175. })
  176. for (let i = 0; i < lists.length; i++) {
  177. const result = await this.uploadFilePromise(lists[i].url)
  178. let item = this[`fileList${event.name}`][fileListLen]
  179. this[`fileList${event.name}`].splice(fileListLen, 1, Object.assign(item, {
  180. status: 'success',
  181. message: '',
  182. url: result
  183. }))
  184. fileListLen++
  185. }
  186. },
  187. uploadFilePromise(url) {
  188. return new Promise((resolve, reject) => {
  189. let a = uni.uploadFile({
  190. url: 'http://192.168.2.21:7001/upload', // 仅为示例,非真实的接口地址
  191. filePath: url,
  192. name: 'file',
  193. formData: {
  194. user: 'test'
  195. },
  196. success: (res) => {
  197. setTimeout(() => {
  198. resolve(res.data.data)
  199. }, 1000)
  200. }
  201. });
  202. })
  203. },
  204. // 是否快修
  205. change(e) {
  206. that.is_quick = e
  207. },
  208. // 打开选择器
  209. open(index) {
  210. if(index == 1) {
  211. that.show_time1 = true
  212. } else {
  213. that.show_time2 = true
  214. }
  215. },
  216. cancel() {
  217. that.show_time1 = false
  218. that.show_time2 = false
  219. },
  220. confirmTime1(e) {
  221. that.startTime = $api.formatDate(e)
  222. that.cancel()
  223. },
  224. confirmTime2(e) {
  225. that.endTime = $api.formatDate(e)
  226. that.cancel()
  227. },
  228. // 立即发布
  229. release() {
  230. if($api.formCheck(that.fileList1,'required') &&$api.formCheck(that.fault,'required') && $api.formCheck(that.startTime,'required') && $api.formCheck(that.endTime,'required')&& $api.formCheck(that.endTime,'required') ) {
  231. }
  232. }
  233. },
  234. }
  235. </script>
  236. <style lang="scss" scoped>
  237. .content {
  238. background: #F4F4F4;
  239. .box {
  240. width: 690rpx;
  241. margin: 20rpx 30rpx 0;
  242. background: #FFFFFF;
  243. border-radius: 10px;
  244. box-sizing: border-box;
  245. padding: 20rpx;
  246. .cell {
  247. padding: 32rpx 0 0;
  248. .label {
  249. font-size: 26rpx;
  250. font-weight: 400;
  251. color: #222222;
  252. padding-bottom: 28rpx;
  253. }
  254. .required {
  255. position: relative;
  256. padding-left: 15rpx;
  257. }
  258. .required::after {
  259. content: '*';
  260. position: absolute;
  261. top: 5rpx;
  262. left: 0;
  263. font-size: 26rpx;
  264. font-weight: 400;
  265. color: #FF3232;
  266. }
  267. }
  268. }
  269. .bottom {
  270. width: 100%;
  271. z-index: 9;
  272. position: fixed;
  273. bottom: 0;
  274. height: 166rpx;
  275. background: #FFFFFF;
  276. box-sizing: border-box;
  277. padding: 8rpx 40rpx 74rpx;
  278. .bottom_btn {
  279. width: 100%;
  280. height: 84rpx;
  281. background: #506DFF;
  282. border-radius: 42rpx;
  283. font-size: 36rpx;
  284. font-weight: 500;
  285. color: #FFFFFF;
  286. text-align: center;
  287. line-height: 84rpx;
  288. }
  289. }
  290. }
  291. </style>