detail.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476
  1. <template>
  2. <view class="content">
  3. <view class="box hflex acenter">
  4. <view class="img_box" @click="replace">
  5. <image :src="pageData.head_img" class="img"></image>
  6. <view class="img_bottom hflex acenter jcenter">点击替换</view>
  7. </view>
  8. <view class="vflex img_right">
  9. <view class="top_title">{{pageData.company}}</view>
  10. <view class="hflex acenter jbetween">
  11. <view class="addr">{{pageData.address}}</view>
  12. <image src="/static/images/mine/address_icon.png" style="width: 44rpx;height: 44rpx;" @click="openMap"></image>
  13. </view>
  14. </view>
  15. </view>
  16. <view class="box">
  17. <view class="box_top hflex acenter jbetween">
  18. <view class="title">商家信息</view>
  19. <view class="hflex acenter" @click="edit">
  20. <view class="top_text">可编辑</view>
  21. <image src="/static/images/mine/edit.png" style="width: 36rpx;height: 36rpx;"></image>
  22. </view>
  23. </view>
  24. <view class="cell hflex acenter">
  25. <view class="left">联系人</view>
  26. <u-input v-model="pageData.contact_name" border="none" :disabled="!is_edit" disabledColor="#fff"></u-input>
  27. </view>
  28. <view class="cell hflex acenter">
  29. <view class="left">联系电话</view>
  30. <u-input v-model="pageData.contact_phone" border="none" :disabled="!is_edit" disabledColor="#fff"></u-input>
  31. </view>
  32. <view class="cell">
  33. <view class="left">商家简介</view>
  34. <u-textarea v-model="pageData.intro" confirmType="done" :disabled="!is_edit"></u-textarea >
  35. </view>
  36. <view class="cell">
  37. <view class="left">图片及视频</view>
  38. </view>
  39. <view class="imgs hflex acenter fwrap">
  40. <block v-for="(item,index) in pageData.imgs_videos" :key="index">
  41. <view v-if="item.type == 'image'" style="position: relative;">
  42. <image :src="item.url" class="img" mode="aspectFill" v-if="item.type == 'image'"></image>
  43. <image v-if="is_edit" src="/static/images/common/popu_close.png" class="close_icon" @click="deletePic(index)"></image>
  44. </view>
  45. <view v-if="item.type == 'video'" style="position: relative;">
  46. <video :src="item.url" direction="0" class="img" v-if="item.type == 'video'"></video>
  47. <image v-if="is_edit" src="/static/images/common/popu_close.png" class="close_icon" @click="deletePic(index)"></image>
  48. </view>
  49. </block>
  50. <image src="/static/images/common/upload_img.png" class="img" @click="choose"></image>
  51. </view>
  52. </view>
  53. <view class="box">
  54. <view class="title">营业执照</view>
  55. <view class="cell">
  56. <image :src="pageData.business_img" class="bus_img"></image>
  57. </view>
  58. </view>
  59. <view class="btn hflex acenter jcenter" @click="save">
  60. 保存
  61. </view>
  62. <u-popup :show="show_choose" @close="close">
  63. <view class="vflex acenter">
  64. <view class="hflex acenter jcenter choose" @click="choose_img">
  65. <view>图片</view>
  66. </view>
  67. <view class="hflex acenter jcenter choose" @click="choose_video">
  68. <view>视频</view>
  69. </view>
  70. <view class="hflex acenter jcenter choose" @click="close">
  71. <view>取消</view>
  72. </view>
  73. </view>
  74. </u-popup>
  75. </view>
  76. </template>
  77. <script>
  78. import $api from '@/static/js/api.js'
  79. var that = ''
  80. export default {
  81. data() {
  82. return {
  83. pageData: {},
  84. is_edit: false,
  85. show_choose: false
  86. }
  87. },
  88. onLoad() {
  89. that = this
  90. that.getData()
  91. },
  92. methods: {
  93. getData() {
  94. var pages = getCurrentPages()
  95. var prePage = pages[pages.length - 2]
  96. that.pageData = prePage.$vm.user.merchant
  97. // that.pageData.imgs_videos = that.pageData.imgs_videos[0].split(',')
  98. console.log(that.pageData.imgs_videos);
  99. for(var i=0;i<that.pageData.imgs_videos.length;i++) {
  100. if(that.pageData.imgs_videos[i].substr(-3) == 'mp4' || that.pageData.imgs_videos[i].substr(-3) == 'flv') {
  101. that.pageData.imgs_videos[i] = {
  102. url: that.pageData.imgs_videos[i],
  103. type: 'video'
  104. }
  105. } else {
  106. that.pageData.imgs_videos[i] = {
  107. url: that.pageData.imgs_videos[i],
  108. type: 'image'
  109. }
  110. }
  111. }
  112. },
  113. replace() {
  114. uni.chooseImage({
  115. count: 1, //默认9
  116. sizeType: ['original', 'compressed'], //可以指定是原图还是压缩图,默认二者都有
  117. sourceType: ['album','camera'], //从相册选择
  118. success: function (res) {
  119. // console.log(JSON.stringify(res.tempFilePaths));
  120. const tempFilePaths = res.tempFilePaths
  121. uni.uploadFile({
  122. url: $api.config.baseUrl + '/data/api.auth.Center/upload',
  123. filePath: tempFilePaths[0],
  124. name: 'file',
  125. header: {
  126. 'token': uni.getStorageSync('token')?uni.getStorageSync('token'):'',
  127. 'api-name': 'iosapp'
  128. },
  129. formData: {
  130. 'user': 'test'
  131. },
  132. success: (res) => {
  133. const data = JSON.parse(res.data)
  134. if (data.code == 1) {
  135. that.pageData.head_img = data.data.url
  136. }
  137. }
  138. });
  139. }
  140. });
  141. },
  142. openMap() {
  143. console.log(typeof(that.pageData.latitude));
  144. uni.openLocation({
  145. latitude: Number(that.pageData.latitude),
  146. longitude: Number(that.pageData.longitude),
  147. success: function (res) {
  148. console.log('success',res);
  149. },
  150. fail: function (err) {
  151. console.log('err',err);
  152. }
  153. });
  154. },
  155. edit() {
  156. that.is_edit = true
  157. },
  158. close() {
  159. that.show_choose = false
  160. },
  161. // 删除图片
  162. deletePic(event) {
  163. that.pageData.imgs_videos.splice(event, 1)
  164. },
  165. // 新增图片
  166. async afterRead(event) {
  167. uni.showLoading({
  168. title: '上传中',
  169. mask: true
  170. })
  171. let lists = [].concat(event.file)
  172. let fileListLen = that.pageData.imgs_videos.length
  173. lists.map((item) => {
  174. that.pageData.imgs_videos.push({
  175. ...item,
  176. // status: 'uploading',
  177. // message: '上传中'
  178. })
  179. })
  180. for (let i = 0; i < lists.length; i++) {
  181. const result = await this.uploadFilePromise(lists[i].url)
  182. let item = that.pageData.imgs_videos[fileListLen]
  183. that.pageData.imgs_videos.splice(fileListLen, 1, Object.assign(item, {
  184. // status: 'success',
  185. type: result.type,
  186. url: result.url
  187. }))
  188. fileListLen++
  189. if(lists.length - 1 == i) {
  190. uni.hideLoading()
  191. }
  192. }
  193. },
  194. uploadFilePromise(url) {
  195. return new Promise((resolve, reject) => {
  196. let a = uni.uploadFile({
  197. url: $api.config.baseUrl + '/data/api.auth.Center/upload',
  198. filePath: url,
  199. name: 'file',
  200. header: {
  201. 'token': uni.getStorageSync('token')?uni.getStorageSync('token'):'',
  202. 'api-name': 'iosapp'
  203. },
  204. formData: {
  205. user: 'test'
  206. },
  207. success: (res) => {
  208. setTimeout(() => {
  209. var data = JSON.parse(res.data)
  210. console.log('data:',data);
  211. var type = data.data.key.split('.')
  212. if(type[1] == 'mp4') {
  213. that.$set(data.data,'type','video')
  214. } else {
  215. that.$set(data.data,'type','image')
  216. }
  217. resolve(data.data)
  218. }, 1000)
  219. }
  220. });
  221. })
  222. },
  223. save() {
  224. console.log(that.pageData.imgs_videos);
  225. var imgs_videos = ""
  226. for(var i=0;i<that.pageData.imgs_videos.length;i++) {
  227. imgs_videos+=that.pageData.imgs_videos[i].url + ','
  228. }
  229. imgs_videos = imgs_videos.substr(0,imgs_videos.length - 1)
  230. // that.pageData.imgs_videos = JSON.stringify(that.pageData.imgs_videos)
  231. $api.req({
  232. url: '/data/api.business.User/edit',
  233. method: 'POST',
  234. data: {
  235. head_img: that.pageData.head_img,
  236. contact_name: that.pageData.contact_name,
  237. contact_phone: that.pageData.contact_phone,
  238. intro: that.pageData.intro,
  239. imgs_videos: imgs_videos
  240. }
  241. }, function(res) {
  242. if(res.code == 1) {
  243. $api.info(res.info)
  244. $api.jump(-1)
  245. }
  246. })
  247. },
  248. choose() {
  249. that.show_choose = true
  250. },
  251. async choose_img() {
  252. that.close()
  253. uni.chooseImage({
  254. count: 9, //默认9
  255. sizeType: ['original', 'compressed'], //可以指定是原图还是压缩图,默认二者都有
  256. sourceType: ['album','camera'], //从相册选择
  257. success: function (res) {
  258. uni.showLoading({
  259. title: '上传中',
  260. mask: true
  261. })
  262. let fileListLen = that.pageData.imgs_videos.length
  263. let file = res.tempFiles[0].path
  264. console.log(file);
  265. uni.uploadFile({
  266. url: $api.config.baseUrl + '/data/api.auth.Center/upload',
  267. filePath: file,
  268. name: 'file',
  269. header: {
  270. 'token': uni.getStorageSync('token')?uni.getStorageSync('token'):'',
  271. 'api-name': 'iosapp'
  272. },
  273. formData: {
  274. user: 'test'
  275. },
  276. success: (res2) => {
  277. var data = JSON.parse(res2.data)
  278. console.log('data:',data);
  279. let item = {
  280. type: 'image',
  281. url: data.data.url
  282. }
  283. that.pageData.imgs_videos.push(item)
  284. console.log('上传完图片内容',that.pageData.imgs_videos);
  285. uni.hideLoading()
  286. },
  287. fail(err) {
  288. console.log(err);
  289. }
  290. });
  291. }
  292. });
  293. },
  294. choose_video() {
  295. that.close()
  296. uni.chooseVideo({
  297. sourceType: ['camera', 'album'],
  298. success: function (res) {
  299. uni.showLoading({
  300. title: '上传中',
  301. mask: true
  302. })
  303. console.log('选择视频',res);
  304. let fileListLen = that.pageData.imgs_videos.length
  305. let file = res.tempFilePath
  306. console.log(file);
  307. uni.uploadFile({
  308. url: $api.config.baseUrl + '/data/api.auth.Center/upload',
  309. filePath: file,
  310. name: 'file',
  311. header: {
  312. 'token': uni.getStorageSync('token')?uni.getStorageSync('token'):'',
  313. 'api-name': 'iosapp'
  314. },
  315. formData: {
  316. user: 'test'
  317. },
  318. success: (res2) => {
  319. var data = JSON.parse(res2.data)
  320. console.log('data:',data);
  321. let item = {
  322. type: 'video',
  323. url: data.data.url
  324. }
  325. that.pageData.imgs_videos.push(item)
  326. uni.hideLoading()
  327. console.log('上传完图片内容',that.pageData.imgs_videos);
  328. },
  329. fail(err) {
  330. console.log(err);
  331. }
  332. });
  333. }
  334. });
  335. }
  336. },
  337. }
  338. </script>
  339. <style lang="scss" scoped>
  340. .content::v-deep {
  341. background: #F5F5F5;
  342. padding: 0 30rpx;
  343. .box {
  344. width: 100%;
  345. background: #FFFFFF;
  346. border-radius: 20rpx;
  347. box-sizing: border-box;
  348. padding: 28rpx 20rpx;
  349. margin-top: 20rpx;
  350. .img_box {
  351. width: 112rpx;
  352. height: 112rpx;
  353. border-radius: 16rpx;
  354. overflow: hidden;
  355. margin-right: 20rpx;
  356. position: relative;
  357. .img {
  358. width: 200rpx;
  359. height: 200rpx;
  360. }
  361. video {
  362. width: 200rpx;
  363. height: 200rpx;
  364. }
  365. .img_bottom {
  366. position: absolute;
  367. bottom: 0;
  368. left: 0;
  369. width: 100%;
  370. height: 36rpx;
  371. background: rgba(0,0,0,0.5);
  372. border-radius: 0px 0px 16rpx 16rpx;
  373. font-size: 20rpx;
  374. font-weight: 400;
  375. color: #FFFFFF;
  376. line-height: 28rpx;
  377. }
  378. }
  379. .img_right {
  380. width: calc(100% - 132rpx);
  381. .top_title {
  382. width: 100%;
  383. font-size: 36rpx;
  384. font-weight: 600;
  385. color: #222222;
  386. line-height: 50px;
  387. }
  388. .addr {
  389. width: 424rpx;
  390. font-size: 24rpx;
  391. font-weight: 400;
  392. color: #777777;
  393. line-height: 28rpx;
  394. }
  395. }
  396. .box_top {
  397. padding: 0 0 24rpx;
  398. border-bottom: 1rpx solid #F5F5F5;
  399. .title {
  400. font-size: 32rpx;
  401. font-weight: 600;
  402. color: #222222;
  403. line-height: 44rpx;
  404. }
  405. .top_text {
  406. font-size: 22rpx;
  407. font-weight: 400;
  408. color: #656565;
  409. line-height: 32rpx;
  410. }
  411. }
  412. .cell {
  413. padding: 32rpx 0 0;
  414. .left {
  415. width: 150rpx;
  416. font-size: 28rpx;
  417. font-weight: 400;
  418. color: #333333;
  419. line-height: 40rpx;
  420. }
  421. .u-textarea {
  422. margin-top: 24rpx;
  423. background: #F5F5F5;
  424. border-radius: 24rpx;
  425. padding: 20rpx;
  426. box-sizing: border-box;
  427. }
  428. .bus_img {
  429. width: 100%;
  430. height: 348rpx;
  431. border-radius: 16rpx;
  432. }
  433. }
  434. .imgs {
  435. padding: 32rpx 0 0;
  436. .img {
  437. width: 200rpx;
  438. height: 200rpx;
  439. border-radius: 20rpx;
  440. margin: 0 14rpx 20rpx 0;
  441. }
  442. .img:nth-child(3n+3) {
  443. margin: 0 0 20rpx;
  444. }
  445. .close_icon {
  446. position: absolute;
  447. top: 0;
  448. right: 15rpx;
  449. width: 30rpx;
  450. height: 30rpx;
  451. z-index: 99;
  452. }
  453. }
  454. }
  455. .btn {
  456. width: 100%;
  457. height: 84rpx;
  458. background: #506DFF;
  459. border-radius: 42rpx;
  460. margin: 56rpx 0 68rpx;
  461. font-size: 36rpx;
  462. font-weight: 600;
  463. color: #FFFFFF;
  464. line-height: 50rpx;
  465. }
  466. .choose {
  467. padding: 20rpx 0;
  468. }
  469. }
  470. </style>