cateringindustry.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373
  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:680rpx;height:417rpx;' 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:680rpx;height:417rpx;' 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="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. export default {
  105. data() {
  106. return {
  107. content:'确定提交入驻信息',
  108. isSubmit:false,
  109. form:{
  110. commonId:uni.getStorageSync("userInfo").id,
  111. mainBody:'商铺',
  112. lookFlag:0,
  113. startDate:'',
  114. city: '',
  115. area: '',
  116. province: '',
  117. location: '',
  118. detailedAddress: '',
  119. businessLicense:'',
  120. operateCertificate:'',
  121. coverImage:'',
  122. indoorImage:'',
  123. timesection:'09:00~21:00',
  124. startDate:'09:00',
  125. endDate:'21:00',
  126. operateCertificateDate:'',
  127. },
  128. indoorImageArray:[],
  129. tips:'发送验证码',
  130. startDate:'',
  131. show:false,
  132. labelList:[{value:''},{value:''}],
  133. fileList2:[],
  134. fileList3:[],
  135. fileList4:[],
  136. fileList5:[],
  137. }
  138. },
  139. onLoad() {
  140. that = this
  141. },
  142. onShow(){
  143. var date = new Date().toISOString().slice(0, 10)
  144. this.startDate=date
  145. console.log(date)
  146. },
  147. methods: {
  148. submit(){
  149. if(this.labelList.length>0){
  150. var arr=[]
  151. for(var i=0;i<this.labelList.length;i++){
  152. if(!this.labelList[i].value){
  153. uni.showToast({
  154. icon: "none",
  155. title: '标签请输入内容!',
  156. duration: 3000
  157. });
  158. return
  159. }
  160. if(this.labelList[i].value.length>5){
  161. uni.showToast({
  162. icon: "none",
  163. title: '标签最多5个字!',
  164. duration: 3000
  165. });
  166. return
  167. }
  168. arr.push(this.labelList[i].value)
  169. }
  170. this.form.label=arr.toString()
  171. }
  172. this.isSubmit = true
  173. },
  174. confirmSubmit() {
  175. uni.showLoading({
  176. title: '加载中',
  177. mask: true
  178. })
  179. this.$request.baseRequest('admin.tourism.foodInfo', 'add', {
  180. foodInfo: JSON.stringify(this.form)
  181. }, failres => {
  182. uni.showToast({
  183. icon: "none",
  184. title: failres.errmsg,
  185. duration: 3000
  186. });
  187. uni.hideLoading()
  188. }).then(res => {
  189. this.isSubmit = false
  190. uni.showToast({
  191. icon: "success",
  192. title: '提交成功,请等待平台审核',
  193. duration: 2000
  194. });
  195. that.indoorImageArray=[]
  196. uni.navigateBack()
  197. })
  198. },
  199. concel(e){
  200. this.show=false
  201. console.log(e)
  202. },
  203. confrim(e){
  204. console.log(e)
  205. this.show=false
  206. this.form.timesection=e.time
  207. this.form.startDate=e.start
  208. this.form.endDate=e.end
  209. },
  210. selectTime(){
  211. this.show=true
  212. },
  213. addLabel(){
  214. if(this.labelList.length>=4){
  215. uni.showToast({
  216. icon: "success",
  217. title: '最多4个标签!',
  218. duration: 2000
  219. });
  220. return
  221. }
  222. this.labelList.push({value:''})
  223. },
  224. codeChange(text) {
  225. this.tips = text;
  226. },
  227. getCode() {
  228. if(!this.form.operaterPhone){
  229. uni.showToast({
  230. icon: "none",
  231. title: '请输入手机号再获取验证码!',
  232. duration: 2000
  233. });
  234. return
  235. }
  236. if (this.$refs.uCode.canGetCode) {
  237. // 模拟向后端请求验证码
  238. uni.showLoading({
  239. title: '正在获取验证码'
  240. })
  241. this.$request.baseRequest('user', 'sendVerifyCode', {
  242. phone: this.form.operaterPhone
  243. }, failres => {
  244. uni.showToast({
  245. icon: "none",
  246. title: failres.errmsg,
  247. duration: 3000
  248. });
  249. uni.hideLoading()
  250. }).then(res => {
  251. })
  252. setTimeout(() => {
  253. uni.hideLoading();
  254. // 这里此提示会被this.start()方法中的提示覆盖
  255. // 通知验证码组件内部开始倒计时
  256. this.$refs.uCode.start();
  257. }, 2000);
  258. } else {
  259. uni.showToast({
  260. icon: "success",
  261. title: '提交成功!',
  262. duration: 2000
  263. });
  264. }
  265. },
  266. confirm(e){
  267. this.form.operateCertificateDate = e.fulldate
  268. this.$forceUpdate()
  269. console.log(e)
  270. },
  271. openjyxkz(){
  272. this.$refs.calendar.open();
  273. },
  274. placeSelect() {
  275. uni.chooseLocation({
  276. success: function(res) {
  277. console.log(res);
  278. that.form.location = res.latitude + ',' + res.longitude
  279. let _address = that.$helper.formatLocation(res.address)
  280. console.log(_address)
  281. that.form.province = _address.Province
  282. that.form.city = _address.City
  283. that.form.area = _address.Country
  284. that.form.detailedAddress = _address.Village
  285. that.$forceUpdate()
  286. }
  287. });
  288. },
  289. hideKeyboard() {
  290. uni.hideKeyboard()
  291. },
  292. // 删除图片
  293. deletePic(event,status) {
  294. this[`fileList${event.name}`].splice(event.index, 1)
  295. that.indoorImageArray.splice(event.index, 1)
  296. that.form.indoorImage =that.indoorImageArray.toString()
  297. },
  298. // 新增图片
  299. async afterRead(event,status) {
  300. // 当设置 multiple 为 true 时, file 为数组格式,否则为对象格式
  301. let lists = [].concat(event.file)
  302. let fileListLen = this[`fileList${event.name}`].length
  303. lists.map((item) => {
  304. this[`fileList${event.name}`].push({
  305. ...item,
  306. status: 'uploading',
  307. message: '上传中'
  308. })
  309. })
  310. for (let i = 0; i < lists.length; i++) {
  311. const result = await this.uploadFilePromise(lists[i].url,status)
  312. let item = this[`fileList${event.name}`][fileListLen]
  313. this[`fileList${event.name}`].splice(fileListLen, 1, Object.assign(item, {
  314. status: 'success',
  315. message: '',
  316. url: result
  317. }))
  318. fileListLen++
  319. console.log(that.form, this[`fileList${event.name}`])
  320. }
  321. },
  322. uploadFilePromise(res,status) {
  323. return new Promise((resolve, reject) => {
  324. uploadImage(res, 'cardImages/',
  325. result => {
  326. if(status==1){
  327. that.form.businessLicense = result
  328. }else if(status==2){
  329. that.form.operateCertificate = result
  330. }else if(status==3){
  331. that.form.coverImage = result
  332. }else if(status==4){
  333. that.indoorImageArray.push(result)
  334. that.form.indoorImage =that.indoorImageArray.toString()
  335. }
  336. resolve(res)
  337. }
  338. )
  339. })
  340. },
  341. }
  342. }
  343. </script>
  344. <style lang='scss' scoped>
  345. .icon_merchants_enterjianshao{
  346. margin-left:10rpx;
  347. font-size:50rpx;
  348. color:#666;
  349. }
  350. .add_label,.get_code{
  351. background: #5F7DE9;
  352. color: #fff;
  353. padding: 10rpx 20rpx;
  354. border-radius: 10rpx;
  355. font-size: 26rpx;
  356. }
  357. </style>