settledMerchants.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411
  1. <template>
  2. <view class="content">
  3. <view v-if="state == 0">
  4. <view class="box">
  5. <view class="title">商家信息</view>
  6. <view class="hflex acenter jbetween cell">
  7. <view class="left">商家名称</view>
  8. <u-input v-model="info.name" border="none" placeholder="请输入商家名称" inputAlign="right"></u-input>
  9. </view>
  10. <view class="hflex acenter jbetween cell" @click="selectmap">
  11. <view class="left">商家地址</view>
  12. <u-input v-model="addressObj.address" border="none" disabled disabledColor="#fff" placeholder="请选择" inputAlign="right" suffixIcon="map-fill" suffixIconStyle="color: #B7B7B7"></u-input>
  13. </view>
  14. <view class="hflex acenter jbetween cell">
  15. <view class="left">联系人</view>
  16. <u-input v-model="info.contacts" border="none" placeholder="请输入联系人姓名" inputAlign="right"></u-input>
  17. </view>
  18. <view class="hflex acenter jbetween cell">
  19. <view class="left">联系电话</view>
  20. <u-input v-model="info.phone" border="none" placeholder="请输入联系电话" inputAlign="right"></u-input>
  21. </view>
  22. <view class="vflex cell" style="border: none;">
  23. <view class="left">商家简介</view>
  24. <u--textarea v-model="info.introduction" placeholder="在此输入商家简介内容" ></u--textarea>
  25. </view>
  26. </view>
  27. <view class="box">
  28. <view class="cell" style="border: none;padding: none;">
  29. <view class="img_title">上传营业执照</view>
  30. <view class="upload_img vflex acenter jcenter">
  31. <u-upload :fileList="info.fileList1" @afterRead="afterRead" @delete="deletePic" :maxCount="1" name="1" multiple :previewFullImage="true" width="550rpx" height="324rpx">
  32. <image src="/static/images/comment//upload-business.png" style="width: 550rpx;height: 324rpx;"></image>
  33. </u-upload>
  34. <view class="hflex acenter ">
  35. <u-icon name="camera" color="#999999" size="16"></u-icon>
  36. <view class="">点击上传营业执照</view>
  37. </view>
  38. </view>
  39. </view>
  40. </view>
  41. <view class="hflex acenter">
  42. <u-checkbox-group @change="checkboxChange">
  43. <u-checkbox v-model="agree" shape="circle"></u-checkbox>
  44. </u-checkbox-group>
  45. <view class="text">阅读并同意<span class="read" @click="open">《商家入驻规则》</span></view>
  46. </view>
  47. <view class="button hflex acenter jcenter" @click="settled">
  48. <view>{{state == 2?'修改入驻':'立即入驻'}}</view>
  49. </view>
  50. </view>
  51. <view v-if="state == 1">
  52. <view class="box1 vflex acenter jcenter">
  53. <image src="/static/images/comment/wait.png" class="box1_img"></image>
  54. <view class="box1_title">审核中</view>
  55. <view class="box1_subTitle">预计审核时间3个工作日</view>
  56. <view class="box1_subTitle">请留意当前页面变动</view>
  57. <view class="btn" @click="result">返回</view>
  58. </view>
  59. </view>
  60. <view v-if="state == 3">
  61. <view class="box1 vflex acenter jcenter">
  62. <image src="/static/images/comment/error.png" class="box1_img"></image>
  63. <view class="box1_title">审核失败</view>
  64. <view class="box1_subTitle">驳回原因</view>
  65. <view class="box1_subTitle">{{reason}}<span style="color: #506dff;margin-left: 8rpx;" @click="edit">立即修改></span></view>
  66. <view class="btn" @click="result">返回</view>
  67. </view>
  68. </view>
  69. </view>
  70. </template>
  71. <script>
  72. import $api from '@/static/js/api.js'
  73. var that = ''
  74. export default {
  75. data() {
  76. return {
  77. info: {
  78. name: '',
  79. address: '',
  80. contacts: '',
  81. phone: '',
  82. introduction: '',
  83. fileList1: [],
  84. },
  85. addressObj: {},
  86. agree: false,
  87. state: 0,
  88. reason: '',
  89. }
  90. },
  91. onLoad() {
  92. that = this
  93. that.getPreData()
  94. },
  95. methods: {
  96. getPreData() {
  97. var pages = getCurrentPages()
  98. var prePage = pages[pages.length - 2]
  99. var merchants = prePage.$vm.user.merchants
  100. if (merchants) {
  101. that.info = {
  102. name: merchants.name,
  103. contacts: merchants.contact_name,
  104. phone: merchants.contact_phone,
  105. introduction: merchants.intro,
  106. fileList1: merchants.business_img.split(','),
  107. id: merchants.id
  108. }
  109. that.addressObj = {
  110. address: merchants.address,
  111. province: merchants.province,
  112. city:merchants.city,
  113. area:merchants.area,
  114. }
  115. that.state = merchants.audit
  116. that.reason = shipyard.why
  117. }
  118. },
  119. selectmap() {
  120. console.log('选择地址');
  121. uni.getLocation({
  122. type: 'wgs84',
  123. success: (res)=>{
  124. console.log(res);
  125. if(res.longitude && res.latitude){
  126. $api.jump('/pages/user/map?lng='+res.longitude+'&lat='+res.latitude)
  127. }
  128. },
  129. fail:()=>{
  130. uni.getSetting({
  131. success: (res) => {
  132. console.log(res);
  133. var status = res.authSetting;
  134. if(!status['scope.userLocation']){
  135. uni.showModal({
  136. title:"是否授权当前位置",
  137. content:"需要获取您的地理位置,请确认授权,否则地图功能将无法使用",
  138. success:(tip)=>{
  139. if(tip.confirm){
  140. uni.openSetting({
  141. success:(data)=>{
  142. if(data.authSetting['scope.userLocation']===true){
  143. uni.showToast({
  144. title:"授权成功",
  145. icon:"success",
  146. duration:1000
  147. })
  148. uni.getLocation({
  149. type: 'wgs84',
  150. success: (res)=>{
  151. console.log('当前位置的经度:' + res.longitude);
  152. console.log('当前位置的纬度:' + res.latitude);
  153. $api.jump('/pages/user/map?lng='+res.longitude+'&lat='+res.latitude)
  154. }
  155. })
  156. }else{
  157. uni.showToast({
  158. title:"授权失败",
  159. icon:"none",
  160. duration:1000
  161. })
  162. }
  163. }
  164. })
  165. }
  166. }
  167. })
  168. }else{
  169. uni.getLocation({
  170. type: 'wgs84',
  171. success: (res)=>{
  172. console.log('当前位置的经度:' + res.longitude);
  173. console.log('当前位置的纬度:' + res.latitude);
  174. $api.jump('/pages/user/map?lng='+res.longitude+'&lat='+res.latitude)
  175. }
  176. })
  177. }
  178. },
  179. fail: (res) => {
  180. uni.showToast({
  181. title:"调用授权窗口失败",
  182. icon:"none",
  183. duration:1000
  184. })
  185. }
  186. })
  187. }
  188. })
  189. },
  190. // 删除图片
  191. deletePic(event) {
  192. // that.userInfo.imgList.splice(event.index, 1)
  193. console.log(event)
  194. this.info[`fileList${event.name}`].splice(event.index, 1)
  195. },
  196. // 新增图片
  197. async afterRead(event) {
  198. console.log(`fileList${event.name}`);
  199. console.log(this.info[`fileList${event.name}`]);
  200. let lists = [].concat(event.file)
  201. let fileListLen = this.info[`fileList${event.name}`].length
  202. lists.map((item) => {
  203. this.info[`fileList${event.name}`].push({
  204. ...item,
  205. status: 'uploading',
  206. message: '上传中'
  207. })
  208. })
  209. for (let i = 0; i < lists.length; i++) {
  210. const result = await this.uploadFilePromise(lists[i].url)
  211. let item = this.info[`fileList${event.name}`][fileListLen]
  212. this.info[`fileList${event.name}`].splice(fileListLen, 1, Object.assign(item, {
  213. status: 'success',
  214. message: '',
  215. url: result.url
  216. }))
  217. fileListLen++
  218. }
  219. },
  220. // 上传图片
  221. uploadFilePromise(url) {
  222. return new Promise((resolve, reject) => {
  223. let a = uni.uploadFile({
  224. url: $api.config.baseUrl + '/data/api.auth.Center/upload', // 仅为示例,非真实的接口地址
  225. filePath: url,
  226. name: 'file',
  227. header: {
  228. 'content-type': 'application/x-www-form-urlencoded',
  229. 'api-token': uni.getStorageSync('token').token?uni.getStorageSync('token').token:'',
  230. 'api-name': 'wxapp'
  231. },
  232. formData: {
  233. user: 'test'
  234. },
  235. success: (res) => {
  236. setTimeout(() => {
  237. var data = JSON.parse(res.data)
  238. resolve(data.data)
  239. }, 1000)
  240. }
  241. });
  242. })
  243. },
  244. // 阅读并同意
  245. checkboxChange(n) {
  246. that.agree = !that.agree
  247. },
  248. settled() {
  249. var business_img = ""
  250. if ($api.formCheck(that.info.name,'required')&&$api.formCheck(that.addressObj.address,'required')&&$api.formCheck(that.info.contacts,'required')&&$api.formCheck(that.info.phone,'phone')&&$api.formCheck(that.info.introduction,'required')) {
  251. if(that.agree) {
  252. if(that.info.fileList1.length > 0) {
  253. for(var i=0;i<that.info.fileList1.length;i++) {
  254. business_img += that.info.fileList1[i].url
  255. }
  256. }
  257. $api.req({
  258. url: '/data/api.auth.Center/addupmerchants',
  259. method: 'POST',
  260. data: {
  261. name: that.info.name,
  262. province: that.addressObj.province,
  263. city: that.addressObj.city,
  264. area: that.addressObj.area,
  265. address: that.addressObj.address,
  266. contact_name: that.info.contacts,
  267. contact_phone: that.info.phone,
  268. intro: that.info.introduction,
  269. business_img: business_img,
  270. id: that.info.id?that.info.id: ''
  271. }
  272. }, function(res) {
  273. if(res.code == 1) {
  274. $api.info(res.info)
  275. that.state = 1
  276. }
  277. })
  278. }else {
  279. $api.info('请先阅读并同意《商家入驻规则》')
  280. }
  281. }
  282. },
  283. edit() {
  284. that.state = 0
  285. },
  286. result() {
  287. $api.jump('/pages/tabbar/mine/mine',3)
  288. }
  289. },
  290. }
  291. </script>
  292. <style lang="scss" scoped>
  293. .content::v-deep {
  294. background: #F4F4F4;
  295. padding: 20rpx 30rpx;
  296. .box {
  297. width: 100%;
  298. background: #FFFFFF;
  299. border-radius: 28rpx;
  300. padding: 28rpx 20rpx;
  301. box-sizing: border-box;
  302. margin-bottom: 16rpx;
  303. .title {
  304. font-size: 28rpx;
  305. color: #222222;
  306. }
  307. .cell {
  308. width: 100%;
  309. padding: 20rpx 0 28rpx;
  310. border-bottom: 1rpx solid #f4f4f4;
  311. .left {
  312. width: 20%;
  313. font-size: 28rpx;
  314. color: #222;
  315. position: relative;
  316. padding-left: 10rpx;
  317. }
  318. .left::before {
  319. content: "*";
  320. position: absolute;
  321. top: 0rpx;
  322. left: -5rpx;
  323. color: #FF0D0D;
  324. font-size: 20rpx;
  325. }
  326. .u-input {
  327. font-size: 28rpx;
  328. color: #222;
  329. }
  330. .img_title {
  331. font-size: 28rpx;
  332. color: #444;
  333. }
  334. .upload_img {
  335. width: 670rpx;
  336. height: 404rpx;
  337. background-color: #fff;
  338. border-radius: 20rpx;
  339. margin: 28rpx 0 0;
  340. padding: 20rpx 0;
  341. border: 1rpx dashed #e0e0e0;
  342. }
  343. .u-upload__wrap {
  344. display: flex;
  345. align-items: center !important;
  346. justify-content: center !important;
  347. }
  348. .u-textarea {
  349. margin: 28rpx auto 0;
  350. background-color: #f4f4f4;
  351. border-radius: 28rpx;
  352. box-sizing: border-box;
  353. padding: 24rpx;
  354. width: 610rpx;
  355. }
  356. }
  357. }
  358. .text {
  359. font-size: 24rpx;
  360. color: #9c9c9c;
  361. }
  362. .read {
  363. color: #2a63f3;
  364. }
  365. .button {
  366. width: 100%;
  367. height: 88rpx;
  368. background-color: #506dff;
  369. border-radius: 50rpx;
  370. box-shadow: 0 4rpx 28rpx 0 rgba(132,123,255,0.4);
  371. font-size: 40rpx;
  372. color: #fff;
  373. margin: 40rpx 0 36rpx;
  374. }
  375. .box1 {
  376. width: 100%;
  377. // height: 100vh;
  378. background-color: #fff;
  379. padding-bottom: 80rpx;
  380. .box1_img {
  381. width: 124rpx;
  382. height: 124rpx;
  383. margin: 108rpx 0 40rpx;
  384. }
  385. .box1_title {
  386. font-size: 32rpx;
  387. color: #222;
  388. margin-bottom: 24rpx;
  389. }
  390. .box1_subTitle {
  391. margin: 12rpx 0;
  392. font-size: 26rpx;
  393. color: #999999;
  394. }
  395. .btn {
  396. width: 530rpx;
  397. height: 88rpx;
  398. background-color: #506dff;
  399. color: #fff;
  400. text-align: center;
  401. line-height: 88rpx;
  402. border-radius: 44rpx;
  403. font-size: 36rpx;
  404. margin-top: 122rpx;
  405. }
  406. }
  407. }
  408. </style>