cateringindustry.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392
  1. <template>
  2. <view class='content'>
  3. <view class='wrap'>
  4. <u--form ref="uForm">
  5. <u-form-item labelWidth='80' labelPosition='top' label="营业执照">
  6. <u-upload height='208' width='320' :fileList="fileList2" @afterRead="afterRead($event,1)" @delete="deletePic($event,1)" name="2" multiple
  7. :maxCount="1">
  8. <image style='width:594rpx;height:378rpx;' src="../../static/image/enter/yingyezhizhao.png" mode=""></image>
  9. </u-upload>
  10. </u-form-item>
  11. <u-form-item labelWidth='80' labelPosition='top' label="经营许可证">
  12. <u-upload height='208' width='320' :fileList="fileList3" @afterRead="afterRead($event,2)" @delete="deletePic($event,2)" name="3" multiple
  13. :maxCount="1">
  14. <image style='width:594rpx;height:378rpx;' src="../../static/image/enter/jingyingxukezheng.png" mode=""></image>
  15. </u-upload>
  16. </u-form-item>
  17. <u-form-item labelWidth='150' labelPosition='left' label="经营许可证有效期">
  18. <view style='text-align:right;' @click='openjyxkz'>{{form.operateCertificateDate?form.operateCertificateDate:'选择日期'}}<image src="@/static/image/yjt.png" mode=""
  19. style="margin-left:10rpx;width:12rpx;height: 21rpx;"></image></view>
  20. </u-form-item>
  21. <uni-calendar
  22. :insert="false"
  23. :lunar="true"
  24. ref="calendar"
  25. :start-date="startDate"
  26. @confirm="confirm"
  27. />
  28. <u-form-item labelWidth='150' labelPosition='left' label="店铺名称">
  29. <u-input inputAlign='right' border='none' placeholder='输入店铺名称' v-model="form.shopNames" />
  30. </u-form-item>
  31. <u-form-item labelWidth='150' labelPosition='left' label="经营者">
  32. <u-input inputAlign='right' border='none' placeholder='输入经营者姓名' v-model="form.operater" />
  33. </u-form-item>
  34. <u-form-item labelWidth='150' labelPosition='left' label="经营者手机号">
  35. <u-input inputAlign='right' maxlength="15" border='none' placeholder='输入经营者手机号' v-model="form.operaterPhone" />
  36. </u-form-item>
  37. <u-form-item labelWidth='150' labelPosition='left' label="验证码">
  38. <u-input inputAlign='right' border='none' placeholder='输入验证码' v-model="form.verifyCode" >
  39. <template slot="suffix">
  40. <u-code ref="uCode"
  41. @change="codeChange"
  42. seconds="60"
  43. changeText="X秒重新获取"
  44. ></u-code>
  45. <view class='get_code' @click='getCode'>{{tips}}</view>
  46. </template>
  47. </u-input>
  48. </u-form-item>
  49. <u-form-item labelWidth='150' labelPosition='left' label="业务联系人(选填)">
  50. <u-input inputAlign='right' border='none' placeholder='输入联系人姓名' v-model="form.contacts" />
  51. </u-form-item>
  52. <u-form-item labelWidth='150' labelPosition='left' label="业务联系电话(选填)">
  53. <u-input inputAlign='right' maxlength="15" border='none' placeholder='输入联系电话' v-model="form.contactsPhone" />
  54. </u-form-item>
  55. <u-form-item labelWidth='80' labelPosition='left' @click='placeSelect(),hideKeyboard()' label="店铺位置">
  56. <view style='text-align:right;' v-if="form.province">{{ form.province }}{{ form.city }}{{ form.area }}</view>
  57. <view style='text-align:right;' v-else>
  58. <text style='text-align:right;'>选择位置 </text>
  59. <image src="@/static/image/yjt.png" mode=""
  60. style="margin-left:10rpx;width:12rpx;height: 21rpx;"></image>
  61. </view>
  62. </u-form-item>
  63. <u-form-item labelWidth='80' labelPosition='left' label="详细地址">
  64. <u-input inputAlign='right' maxlength="15" border='none' placeholder='输入详细地址,不超过15个字' v-model="form.detailedAddress" />
  65. </u-form-item>
  66. <u-form-item labelWidth='150' labelPosition='left' label="营业时间">
  67. <view style='text-align:right;' @click='selectTime'>{{form.timesection}}<image src="@/static/image/yjt.png" mode=""
  68. style="margin-left:10rpx;width:12rpx;height: 21rpx;"></image></view>
  69. </u-form-item>
  70. <smh-time-range :is-under='show' :time="['18','0','42']" @confrim="confrim" @cancel="cancel"></smh-time-range>
  71. <!-- label -->
  72. <view class='flex justify-space-between align-item-center'>
  73. <view>标签(2-4个,最多5个字)</view>
  74. <view class='add_label' @click='addLabel'>新增</view>
  75. </view>
  76. <view style='flex-wrap: wrap;' class='flex'>
  77. <view style='margin:10rpx;width:47%;' class='flex align-item-center' v-for='item in labelList'>
  78. <u-input inputAlign='right' placeholder='输入标签文字' v-model="item.value" />
  79. <view class="iconfont_no icon_merchants_enterjianshao"></view>
  80. </view>
  81. </view>
  82. <u-form-item labelWidth='240' labelPosition='top' label="门面及门头照片(1张,店名文字清晰)">
  83. <u-upload :fileList="fileList4" @afterRead="afterRead($event,3)" @delete="deletePic($event,3)" name="4" multiple
  84. :maxCount="1">
  85. </u-upload>
  86. </u-form-item>
  87. <u-form-item labelWidth='120' labelPosition='top' label="室内照片(1-6张)">
  88. <u-upload :fileList="fileList5" @afterRead="afterRead($event,4)" @delete="deletePic($event,4)" name="5" multiple
  89. :maxCount="6">
  90. </u-upload>
  91. </u-form-item>
  92. </u--form>
  93. <view class="mercharts_footer">
  94. <button @click='submit' class="submit">提交</button>
  95. </view>
  96. </view>
  97. <u-modal :show="isSubmit" :content='content' @confirm="$u.debounce(confirmSubmit, 500)" showCancelButton
  98. @cancel="isSubmit=false" @close="isSubmit=false" closeOnClickOverlay></u-modal>
  99. </view>
  100. </template>
  101. <script>
  102. var that
  103. import uploadImage from '@/components/ossutil/uploadFile.js';
  104. import uniCalendar from '@/uni_modules/uni-calendar/components/uni-calendar/uni-calendar.vue'
  105. export default {
  106. components: {
  107. "uniCalendar": uniCalendar
  108. },
  109. data() {
  110. return {
  111. content:'确定提交入驻信息?',
  112. isSubmit:false,
  113. userInfo:{},
  114. form:{
  115. commonId:uni.getStorageSync("userInfo").id,
  116. mainBody:'商铺',
  117. lookFlag:0,
  118. startDate:'',
  119. city: '',
  120. area: '',
  121. province: '',
  122. location: '',
  123. detailedAddress: '',
  124. businessLicense:'',
  125. operateCertificate:'',
  126. coverImage:'',
  127. indoorImage:'',
  128. timesection:'09:00~21:00',
  129. startDate:'09:00',
  130. endDate:'21:00',
  131. operateCertificateDate:'',
  132. },
  133. indoorImageArray:[],
  134. tips:'发送验证码',
  135. startDate:'',
  136. show:false,
  137. labelList:[{value:''},{value:''}],
  138. fileList2:[],
  139. fileList3:[],
  140. fileList4:[],
  141. fileList5:[],
  142. }
  143. },
  144. onLoad() {
  145. that = this
  146. },
  147. onShow(){
  148. var date = new Date().toISOString().slice(0, 10)
  149. this.startDate=date
  150. console.log(date)
  151. },
  152. methods: {
  153. submit(){
  154. if(this.labelList.length>0){
  155. var arr=[]
  156. for(var i=0;i<this.labelList.length;i++){
  157. if(!this.labelList[i].value){
  158. uni.showToast({
  159. icon: "none",
  160. title: '标签请输入内容!',
  161. duration: 3000
  162. });
  163. return
  164. }
  165. if(this.labelList[i].value.length>5){
  166. uni.showToast({
  167. icon: "none",
  168. title: '标签最多5个字!',
  169. duration: 3000
  170. });
  171. return
  172. }
  173. arr.push(this.labelList[i].value)
  174. }
  175. this.form.label=arr.toString()
  176. }
  177. uni.showModal({
  178. title: '提示',
  179. content: '确定提交入驻信息?',
  180. success (res) {
  181. if (res.confirm) {
  182. that.$u.debounce(that.confirmSubmit, 500)
  183. } else if (res.cancel) {
  184. console.log('用户点击取消')
  185. }
  186. }
  187. })
  188. },
  189. confirmSubmit() {
  190. uni.showLoading({
  191. title: '加载中',
  192. mask: true
  193. })
  194. this.$request.baseRequest('admin.tourism.foodInfo', 'add', {
  195. foodInfo: JSON.stringify(this.form)
  196. }, failres => {
  197. uni.showToast({
  198. icon: "none",
  199. title: failres.errmsg,
  200. duration: 3000
  201. });
  202. uni.hideLoading()
  203. }).then(res => {
  204. this.isSubmit = false
  205. uni.showToast({
  206. icon: "success",
  207. title: '提交成功,请等待平台审核',
  208. duration: 2000
  209. });
  210. this.userInfo=uni.getStorageSync("userInfo")
  211. this.userInfo.foodEntry+=1
  212. uni.setStorageSync("userInfo",this.userInfo)
  213. that.indoorImageArray=[]
  214. uni.navigateBack()
  215. })
  216. },
  217. concel(e){
  218. this.show=false
  219. console.log(e)
  220. },
  221. confrim(e){
  222. console.log(e)
  223. this.show=false
  224. this.form.timesection=e.time
  225. this.form.startDate=e.start
  226. this.form.endDate=e.end
  227. },
  228. selectTime(){
  229. this.show=true
  230. },
  231. addLabel(){
  232. if(this.labelList.length>=4){
  233. uni.showToast({
  234. icon: "success",
  235. title: '最多4个标签!',
  236. duration: 2000
  237. });
  238. return
  239. }
  240. this.labelList.push({value:''})
  241. },
  242. codeChange(text) {
  243. this.tips = text;
  244. },
  245. getCode() {
  246. if(!this.form.operaterPhone){
  247. uni.showToast({
  248. icon: "none",
  249. title: '请输入手机号再获取验证码!',
  250. duration: 2000
  251. });
  252. return
  253. }
  254. if (this.$refs.uCode.canGetCode) {
  255. // 模拟向后端请求验证码
  256. uni.showLoading({
  257. title: '正在获取验证码'
  258. })
  259. this.$request.baseRequest('user', 'sendVerifyCode', {
  260. phone: this.form.operaterPhone
  261. }, failres => {
  262. uni.showToast({
  263. icon: "none",
  264. title: failres.errmsg,
  265. duration: 3000
  266. });
  267. uni.hideLoading()
  268. }).then(res => {
  269. })
  270. setTimeout(() => {
  271. uni.hideLoading();
  272. // 这里此提示会被this.start()方法中的提示覆盖
  273. // 通知验证码组件内部开始倒计时
  274. this.$refs.uCode.start();
  275. }, 2000);
  276. } else {
  277. uni.showToast({
  278. icon: "success",
  279. title: '提交成功!',
  280. duration: 2000
  281. });
  282. }
  283. },
  284. confirm(e){
  285. this.form.operateCertificateDate = e.fulldate
  286. this.$forceUpdate()
  287. console.log(e)
  288. },
  289. openjyxkz(){
  290. this.$refs.calendar.open();
  291. },
  292. placeSelect() {
  293. uni.chooseLocation({
  294. success: function(res) {
  295. console.log(res);
  296. that.form.location = res.latitude + ',' + res.longitude
  297. let _address = that.$helper.formatLocation(res.address)
  298. console.log(_address)
  299. that.form.province = _address.Province
  300. that.form.city = _address.City
  301. that.form.area = _address.Country
  302. that.form.detailedAddress = _address.Village
  303. that.$forceUpdate()
  304. }
  305. });
  306. },
  307. hideKeyboard() {
  308. uni.hideKeyboard()
  309. },
  310. // 删除图片
  311. deletePic(event,status) {
  312. this[`fileList${event.name}`].splice(event.index, 1)
  313. that.indoorImageArray.splice(event.index, 1)
  314. that.form.indoorImage =that.indoorImageArray.toString()
  315. },
  316. // 新增图片
  317. async afterRead(event,status) {
  318. // 当设置 multiple 为 true 时, file 为数组格式,否则为对象格式
  319. let lists = [].concat(event.file)
  320. let fileListLen = this[`fileList${event.name}`].length
  321. lists.map((item) => {
  322. this[`fileList${event.name}`].push({
  323. ...item,
  324. status: 'uploading',
  325. message: '上传中'
  326. })
  327. })
  328. for (let i = 0; i < lists.length; i++) {
  329. const result = await this.uploadFilePromise(lists[i].url,status)
  330. let item = this[`fileList${event.name}`][fileListLen]
  331. this[`fileList${event.name}`].splice(fileListLen, 1, Object.assign(item, {
  332. status: 'success',
  333. message: '',
  334. url: result
  335. }))
  336. fileListLen++
  337. console.log(that.form, this[`fileList${event.name}`])
  338. }
  339. },
  340. uploadFilePromise(res,status) {
  341. return new Promise((resolve, reject) => {
  342. uploadImage(res, 'cardImages/',
  343. result => {
  344. if(status==1){
  345. that.form.businessLicense = result
  346. }else if(status==2){
  347. that.form.operateCertificate = result
  348. }else if(status==3){
  349. that.form.coverImage = result
  350. }else if(status==4){
  351. that.indoorImageArray.push(result)
  352. that.form.indoorImage =that.indoorImageArray.toString()
  353. }
  354. resolve(res)
  355. }
  356. )
  357. })
  358. },
  359. }
  360. }
  361. </script>
  362. <style lang='scss' scoped>
  363. .icon_merchants_enterjianshao{
  364. margin-left:10rpx;
  365. font-size:50rpx;
  366. color:#666;
  367. }
  368. .add_label,.get_code{
  369. background: #5F7DE9;
  370. color: #fff;
  371. padding: 10rpx 20rpx;
  372. border-radius: 10rpx;
  373. font-size: 26rpx;
  374. }
  375. </style>