applyfor.vue 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314
  1. <template>
  2. <view class="jz_beginCard uni-flex uni-column">
  3. <view class="beginCardImg" style="height: 360upx;"><image src="https://www.jinzun99.com/static/04.png" style="height: 360upx;"></image></view>
  4. <form class="uni-flex uni-flex-item uni-column form" @submit="formSubmit" @reset="formReset">
  5. <view class="uni-flex-item justify-align-center uni-flex uni-column">
  6. <!-- 多选 -->
  7. <view class="beginCard_name uni-flex align-items" v-if="allSelectStatus">
  8. <view class="uni-flex-item">申请商品:(合计: {{agencyArrs.length}})</view>
  9. <view class="uni-flex-item3 uni-flex uni-column " :class="[agencyArrs.length>1?'agencyArrs':'agencyArrsSingle']">
  10. <view class="agencyArr" v-for="(item,index) in agencyArrs" :key="index">
  11. <view class="productPic uni-flex align-items">
  12. <image :src="item.pic"></image>
  13. <text class="uni-flex-item AagencyTitle">{{ item.title }}</text>
  14. </view>
  15. </view>
  16. </view>
  17. </view>
  18. <!-- 单选 -->
  19. <view class="beginCard_name uni-flex align-items" v-if="agency.productTitle">
  20. <view class="uni-flex-item">申请商品:</view>
  21. <view class="uni-flex-item3 uni-flex">
  22. <view class="product_pic uni-flex"><image :src="agency.productPic"></image></view>
  23. <view class="product_title uni-flex justify-align-center">{{ agency.productTitle }}</view>
  24. </view>
  25. </view>
  26. <view class="beginCard_name uni-flex align-items" v-if="agency.address||allSelectStatus==true">
  27. <view class="uni-flex-item">代理地区:</view>
  28. <input type="text" class="uni-flex-item3" v-model="agency.address" name="address" disabled="disabled" />
  29. </view>
  30. <view class="beginCard_name uni-flex align-items">
  31. <view class="uni-flex-item">真实姓名:</view>
  32. <input type="text" class="uni-flex-item3" v-model="nickName" name="nickName" placeholder="请填写姓名" />
  33. </view>
  34. <view class="beginCard_name uni-flex align-items">
  35. <view class="uni-flex-item">手机号码:</view>
  36. <input type="text" class="uni-flex-item3" v-model="mobile" name="mobile" placeholder="请填写手机号码" />
  37. </view>
  38. <view class="beginCard_name uni-flex align-items" v-if="user.licenseUrl == null">
  39. <view class="uni-flex-item">营业执照:</view>
  40. <view class="uni-flex-item3">
  41. <robby-image-upload
  42. v-model="imageData"
  43. fileKeyName="data"
  44. :limit="1"
  45. :server-url="serverUrl"
  46. :showUploadProgress="show"
  47. :form-data="formData"
  48. @delete="deleteImage"
  49. @add="addImage"
  50. ></robby-image-upload>
  51. </view>
  52. </view>
  53. <view class="beginCard_btn"><button formType="submit" class="uni-flex justify-align-center">提交申请</button></view>
  54. </view>
  55. </form>
  56. </view>
  57. </template>
  58. <script>
  59. var graceChecker = require('../../../common/graceChecker.js');
  60. import robbyImageUpload from '../../../components/robby-image-upload/robby-image-upload.vue';
  61. import { mapState, mapMutations } from 'vuex';
  62. export default {
  63. components: {
  64. robbyImageUpload
  65. },
  66. data() {
  67. return {
  68. nickName: '',
  69. mobile: '',
  70. user: {},
  71. show: true,
  72. imageData: [],
  73. serverUrl: this.webUrl + 'Upload',
  74. formData: {
  75. userId: 2
  76. },
  77. agency: {},
  78. allSelectStatus: false,//单选状态,
  79. agencyArrs: []//多选代理产品信息
  80. };
  81. },
  82. computed: {
  83. ...mapState(['hasLogin', 'jyyUser','agencyArr'])
  84. },
  85. onLoad(e) {
  86. if (!this.hasLogin) {
  87. uni.navigateTo({
  88. url: '../login/login'
  89. });
  90. } else {
  91. if(e.key){//多选申请代理
  92. this.agencyArrs = JSON.parse(this.agencyArr);//代理商品信息
  93. this.agency.label = e.key;//代理地址
  94. this.agency.address = e.key;//代理地址
  95. this.agency.id = e.addressId;//代理地址id
  96. this.allSelectStatus = true;//多选状态
  97. this.user = JSON.parse(this.jyyUser);
  98. this.mobile = this.user.mobile;
  99. this.nickName = this.user.nickName;
  100. }
  101. else if (e.path) {//会员中心申请代理
  102. this.agency.productId = 0;
  103. this.agency.productTitle = '';
  104. this.agency.productPic = '';
  105. this.agency.address = '';
  106. this.user = JSON.parse(this.jyyUser);
  107. this.mobile = this.user.mobile;
  108. this.nickName = this.user.nickName;
  109. } else {//单选申请代理
  110. this.agency = JSON.parse(decodeURIComponent(e.agency));
  111. for (var k in this.agency) {
  112. if (k == 'value') {
  113. delete this.agency[k];
  114. }
  115. if (k == 'cityCode') {
  116. delete this.agency[k];
  117. }
  118. }
  119. this.user = JSON.parse(this.jyyUser);
  120. this.mobile = this.user.mobile;
  121. this.nickName = this.user.nickName;
  122. }
  123. }
  124. },
  125. methods: {
  126. deleteImage: function(e) {
  127. console.log(e);
  128. },
  129. addImage: function(e) {
  130. console.log(e);
  131. },
  132. formSubmit: function(e) {
  133. let image = this.imageData.length > 0 ? this.imageData[0] : '';
  134. var rule = [
  135. {
  136. name: 'nickName',
  137. checkType: 'notnull',
  138. checkRule: '1,4',
  139. errorMsg: '请填写真实姓名'
  140. },
  141. {
  142. name: 'mobile',
  143. checkType: 'string',
  144. checkRule: '11',
  145. errorMsg: '手机号码11个字符'
  146. }
  147. ];
  148. //进行表单检查
  149. var formData = e.detail.value;
  150. var checkRes = graceChecker.check(formData, rule);
  151. if (checkRes) {
  152. if (this.user.licenseUrl == null && image == '') {
  153. uni.showToast({
  154. title: '请上传运营执照',
  155. icon: 'none'
  156. });
  157. } else {
  158. if (image == '') {
  159. image = this.user.licenseUrl;
  160. }
  161. let Agency = {};
  162. if(this.allSelectStatus){//多选申请代理
  163. for(let i=0;i<this.agencyArrs.length;i++){
  164. delete this.agencyArrs[i].title;
  165. delete this.agencyArrs[i].pic;
  166. }
  167. console.log(this.agencyArrs)
  168. Agency.agency = this.agencyArrs;
  169. Agency.area ={};
  170. Agency.area.id = this.agency.id;
  171. Agency.area.label = this.agency.label;
  172. }else if(this.agency.productId==0){//会员中心申请代理
  173. Agency = {}
  174. }
  175. else{//单选申请代理
  176. Agency.agency = [{
  177. id:this.agency.productId
  178. }];
  179. Agency.area ={};
  180. Agency.area.id = this.agency.id;
  181. Agency.area.label = this.agency.label;
  182. }
  183. uni.request({
  184. url: this.webUrl + 'AgentApplyfor',
  185. method: 'POST',
  186. data: {
  187. nickName: this.nickName,
  188. mobile: this.mobile,
  189. imageData: image,
  190. userid: this.user.id,
  191. agency: JSON.stringify(Agency)
  192. },
  193. header: {
  194. 'content-type': 'application/x-www-form-urlencoded'
  195. },
  196. success: res => {
  197. uni.hideLoading();
  198. uni.showToast({
  199. title: res.data.result.resultInfo,
  200. icon: 'none'
  201. });
  202. setTimeout(() => {
  203. uni.switchTab({
  204. url: '../user/user'
  205. });
  206. }, 500);
  207. },
  208. fail: () => {},
  209. complete: () => {}
  210. });
  211. }
  212. } else {
  213. uni.showToast({
  214. title: graceChecker.error,
  215. icon: 'none'
  216. });
  217. }
  218. }
  219. }
  220. };
  221. </script>
  222. <style>
  223. /* 修改的*/
  224. /* 一个商品时候的高度 */
  225. .agencyArrsSingle {
  226. height: 124upx;
  227. }
  228. /* 多个商品时候的高度 */
  229. .agencyArrs {
  230. height: 280upx;
  231. overflow-y: scroll;
  232. }
  233. .AagencyTitle {
  234. margin-left: 20upx;
  235. }
  236. .productPic {
  237. margin-bottom: 30upx;
  238. }
  239. .productPic image {
  240. width: 120upx;
  241. height: 120upx;
  242. border: 1upx solid #dfdfdf;
  243. border-radius: 8upx;
  244. }
  245. .jz_beginCard .beginCard_btn {
  246. margin: 50upx 0 0 0;
  247. }
  248. .jz_beginCard .beginCard_btn button {
  249. display: block;
  250. width: 550upx;
  251. height: 115upx;
  252. line-height: 115upx;
  253. font-size: 28upx;
  254. color: #ffffff;
  255. background: url(../../../static/btn.png) no-repeat;
  256. background-size: 550upx 115upx;
  257. }
  258. .product_pic {
  259. width: 120upx;
  260. height: 120upx;
  261. margin: 20upx 0;
  262. }
  263. .product_pic image {
  264. width: 120upx;
  265. height: 120upx;
  266. border: 1upx solid #dfdfdf;
  267. border-radius: 8upx;
  268. }
  269. .product_title {
  270. margin-left: 30upx;
  271. }
  272. .jz_beginCard .beginCard_name {
  273. height: auto;
  274. margin-top: 20upx;
  275. padding: 15upx 40upx;
  276. }
  277. .jz_beginCard .beginCard_name .imageItem,
  278. .jz_beginCard .beginCard_name .imageUpload {
  279. width: 120upx;
  280. height: 120upx;
  281. line-height: 100upx;
  282. font-size: 100upx;
  283. margin: 0 !important;
  284. }
  285. .jz_beginCard .beginCard_name .imageUploadContainer {
  286. margin: 0;
  287. padding: 20upx 0;
  288. margin-left: 0;
  289. padding-left: 0;
  290. }
  291. </style>