settledShipyard.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412
  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>立即入驻</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 == 2">
  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 shipyard = prePage.$vm.user.shipyard
  100. if (shipyard) {
  101. that.info = {
  102. name: shipyard.name,
  103. contacts: shipyard.contact_name,
  104. phone: shipyard.contact_phone,
  105. introduction: shipyard.intro,
  106. fileList1: shipyard.business_img.split(','),
  107. id: shipyard.id
  108. }
  109. that.addressObj = {
  110. address: shipyard.address,
  111. province: shipyard.province,
  112. city:shipyard.city,
  113. area:shipyard.area,
  114. }
  115. that.state = shipyard.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. console.log(that.addressObj);
  251. if ($api.formCheck(that.info.name,'required')&&$api.formCheck(that.addressObj.address,'required')&&$api.formCheck(that.info.fileList1,'required')&&$api.formCheck(that.info.contacts,'required')&&$api.formCheck(that.info.phone,'phone')&&$api.formCheck(that.info.introduction,'required')) {
  252. if(that.agree) {
  253. if(that.info.fileList1.length > 0) {
  254. for(var i=0;i<that.info.fileList1.length;i++) {
  255. business_img += that.info.fileList1[i].url
  256. }
  257. }
  258. $api.req({
  259. url: '/data/api.auth.Center/addupshipyard',
  260. method: 'POST',
  261. data: {
  262. name: that.info.name,
  263. province: that.addressObj.province,
  264. city: that.addressObj.city,
  265. area: that.addressObj.area,
  266. address: that.addressObj.address,
  267. contact_name: that.info.contacts,
  268. contact_phone: that.info.phone,
  269. intro: that.info.introduction,
  270. business_img: business_img,
  271. id: that.id?that.id: ''
  272. }
  273. }, function(res) {
  274. if(res.code == 1) {
  275. $api.info(res.info)
  276. that.state = 1
  277. }
  278. })
  279. }else {
  280. $api.info('请先阅读并同意《商家入驻规则》')
  281. }
  282. }
  283. },
  284. edit() {
  285. that.state = 0
  286. },
  287. result() {
  288. $api.jump('/pages/tabbar/mine/mine',3)
  289. }
  290. },
  291. }
  292. </script>
  293. <style lang="scss" scoped>
  294. .content::v-deep {
  295. background: #F4F4F4;
  296. padding: 20rpx 30rpx;
  297. .box {
  298. width: 100%;
  299. background: #FFFFFF;
  300. border-radius: 28rpx;
  301. padding: 28rpx 20rpx;
  302. box-sizing: border-box;
  303. margin-bottom: 16rpx;
  304. .title {
  305. font-size: 28rpx;
  306. color: #222222;
  307. }
  308. .cell {
  309. width: 100%;
  310. padding: 20rpx 0 28rpx;
  311. border-bottom: 1rpx solid #f4f4f4;
  312. .left {
  313. width: 20%;
  314. font-size: 28rpx;
  315. color: #222;
  316. position: relative;
  317. padding-left: 10rpx;
  318. }
  319. .left::before {
  320. content: "*";
  321. position: absolute;
  322. top: 0rpx;
  323. left: -5rpx;
  324. color: #FF0D0D;
  325. font-size: 20rpx;
  326. }
  327. .u-input {
  328. font-size: 28rpx;
  329. color: #222;
  330. }
  331. .img_title {
  332. font-size: 28rpx;
  333. color: #444;
  334. }
  335. .upload_img {
  336. width: 670rpx;
  337. height: 404rpx;
  338. background-color: #fff;
  339. border-radius: 20rpx;
  340. margin: 28rpx 0 0;
  341. padding: 20rpx 0;
  342. border: 1rpx dashed #e0e0e0;
  343. }
  344. .u-upload__wrap {
  345. display: flex;
  346. align-items: center !important;
  347. justify-content: center !important;
  348. }
  349. .u-textarea {
  350. margin: 28rpx auto 0;
  351. background-color: #f4f4f4;
  352. border-radius: 28rpx;
  353. box-sizing: border-box;
  354. padding: 24rpx;
  355. width: 610rpx;
  356. }
  357. }
  358. }
  359. .text {
  360. font-size: 24rpx;
  361. color: #9c9c9c;
  362. }
  363. .read {
  364. color: #2a63f3;
  365. }
  366. .button {
  367. width: 100%;
  368. height: 88rpx;
  369. background-color: #506dff;
  370. border-radius: 50rpx;
  371. box-shadow: 0 4rpx 28rpx 0 rgba(132,123,255,0.4);
  372. font-size: 40rpx;
  373. color: #fff;
  374. margin: 40rpx 0 36rpx;
  375. }
  376. .box1 {
  377. width: 100%;
  378. // height: 100vh;
  379. background-color: #fff;
  380. padding-bottom: 80rpx;
  381. .box1_img {
  382. width: 124rpx;
  383. height: 124rpx;
  384. margin: 108rpx 0 40rpx;
  385. }
  386. .box1_title {
  387. font-size: 32rpx;
  388. color: #222;
  389. margin-bottom: 24rpx;
  390. }
  391. .box1_subTitle {
  392. margin: 12rpx 0;
  393. font-size: 26rpx;
  394. color: #999999;
  395. }
  396. .btn {
  397. width: 530rpx;
  398. height: 88rpx;
  399. background-color: #506dff;
  400. color: #fff;
  401. text-align: center;
  402. line-height: 88rpx;
  403. border-radius: 44rpx;
  404. font-size: 36rpx;
  405. margin-top: 122rpx;
  406. }
  407. }
  408. }
  409. </style>