瀏覽代碼

bug 修复

lilei 2 年之前
父節點
當前提交
8f3f8c3843
共有 3 個文件被更改,包括 9 次插入6 次删除
  1. 1 1
      App.vue
  2. 2 2
      manifest.json
  3. 6 3
      pages/approveStore/list.vue

+ 1 - 1
App.vue

@@ -5,7 +5,7 @@
 			token: '',
 			changeOrg:'',
 			version: '', // 当前版本号
-			buildType: 'dev', // 打包环境对应类型,pro 生产 uat 预发布 dev 本地开发
+			buildType: 'uat', // 打包环境对应类型,pro 生产 uat 预发布 dev 本地开发
 			envTips: '', // 环境文字提示
 			theme: 'default', // 主题,default
 			isIphoneXup: false //是否iphonex以及以上的版本

+ 2 - 2
manifest.json

@@ -2,8 +2,8 @@
     "name" : "iSCM智慧供应链",
     "appid" : "__UNI__5B57B68",
     "description" : "iSCM智慧供应链系统",
-    "versionName" : "1.1.4",
-    "versionCode" : 114,
+    "versionName" : "1.1.5",
+    "versionCode" : 115,
     "transformPx" : false,
     /* 5+App特有相关 */
     "app-plus" : {

+ 6 - 3
pages/approveStore/list.vue

@@ -2,7 +2,7 @@
 	<view class="pagesCons">
 		<view class="utabs">
 			<u-tabs-swiper ref="uTabs" :list="tabList" name="dispName" :current="current" @change="tabsChange" :is-scroll="false" swiperWidth="750"></u-tabs-swiper>
-			<view class="message">我的邀请码:1A2B <copyText text="1A2B" label="邀请码"></copyText></view>
+			<view class="message">我的邀请码:{{yqcode}} <copyText :text="yqcode" label="邀请码"></copyText></view>
 		</view>
 		<swiper class="check-list" :current="swiperCurrent" @transition="transition" @change="swiperChange" @animationfinish="animationfinish">
 			<swiper-item class="swiper-item" v-for="(tabs, index) in tabList" :key="index">
@@ -68,13 +68,16 @@
 					background: this.$config('primaryColor'),
 					marginLeft: '20rpx'
 				},
+				yqcode: ''
 			}
 		},
 		onLoad(options) {
 			const _this = this
 			_this.tabList = this.$store.state.vuex_storeAuthState
-			_this.getRow()
-			
+			// 邀请码
+			_this.yqcode = this.$store.state.vuex_userData.extInfo.dealer.dealerInviteCode
+			// 获取数据
+			_this.getRow(1)
 			uni.$on("updateAuthState",function(){
 				_this.getRow(1)
 			})