瀏覽代碼

feat: 小麦种植项目

leo 3 小時之前
父節點
當前提交
aec230a315
共有 11 個文件被更改,包括 1385 次插入1283 次删除
  1. 3 3
      App.vue
  2. 二進制
      appIcon/shop.png
  3. 二進制
      appIcon/yfzk.png
  4. 二進制
      appIcon/zk.png
  5. 3 3
      manifest.json
  6. 84 88
      pages/index/components/ImagePopup.vue
  7. 849 789
      pages/index/index.vue
  8. 441 395
      pages/login/login.vue
  9. 1 1
      pages/my/about/about.vue
  10. 2 2
      pages/my/index/index.vue
  11. 2 2
      project.config.json

+ 3 - 3
App.vue

@@ -46,15 +46,15 @@
 	  },
 	  onShareTimeline() {
 	    return {
-	      title:  'AI 诊病虫,智控赋新农~', // 分享标题
+	      title:  '小麦种植科技信息科普', // 分享标题
 	      query: 'id=123', // 页面参数,不同于分享给朋友的path,这里用query
-	      imageUrl: 'http://www.hnyfwlw.com:8006/data/home_logo/log1.jpg' // 分享图片,可选
+	      // imageUrl: 'http://www.hnyfwlw.com:8006/data/home_logo/log1.jpg' // 分享图片,可选
 	    }
 	  },
 	  // 全局分享给朋友
 	  onShareAppMessage() {
 	    return {
-	      title: 'AI 诊病虫,智控赋新农~',
+	      title: '小麦种植科技信息科普',
 	      path: '/pages/index/index',
 	      imageUrl: ''
 	    }

二進制
appIcon/shop.png


二進制
appIcon/yfzk.png


二進制
appIcon/zk.png


+ 3 - 3
manifest.json

@@ -1,5 +1,5 @@
 {
-    "name" : "云飞智控",
+    "name" : "小麦种植科技信息科普",
     "appid" : "__UNI__DBA6730",
     "description" : "",
     "versionName" : "1.0.4",
@@ -22,7 +22,7 @@
             "delay" : 0
         },
         "compatible" : {
-            "ignoreVersion" : true //true表示忽略版本检查提示框,HBuilderX1.9.0及以上版本支持  
+            "ignoreVersion" : true //true表示忽略版本检查提示框,HBuilderX1.9.0及以上版本支持
         },
         /* 模块配置 */
         "modules" : {
@@ -121,7 +121,7 @@
     "quickapp" : {},
     /* 小程序特有相关 */
     "mp-weixin" : {
-        "appid" : "wxa67985a99191095e",
+        "appid" : "wxee55c4d296b11922",
         "setting" : {
             "urlCheck" : false,
             "minified" : true,

+ 84 - 88
pages/index/components/ImagePopup.vue

@@ -1,103 +1,99 @@
 <template>
-	<view class="popup-mask" v-if="visible" @click="handleClose">
-		<view class="popup-content" @click.stop>
-			<view class="close-btn" @click="handleClose">×</view>
-			<image
-				class="popup-image"
-				:src="imageUrl"
-				mode="widthFix"
-			></image>
-		</view>
-	</view>
+  <view class="popup-mask" v-if="visible" @click="handleClose">
+    <view class="popup-content" @click.stop>
+      <view class="close-btn" @click="handleClose">×</view>
+      <image class="popup-image" :src="imageUrl" mode="widthFix"></image>
+    </view>
+  </view>
 </template>
 
 <script>
 export default {
-	name: 'ImagePopup',
-	props: {
-		imageUrl: {
-			type: String,
-			default: ''
-		},
-		storageKey: {
-			type: String,
-			default: 'version_shown'
-		}
-	},
-	data() {
-		return {
-			visible: false
-		}
-	},
-	mounted() {
-		this.checkAndShowPopup()
-	},
-	methods: {
-		checkAndShowPopup() {
-			const hasShown = uni.getStorageSync(this.storageKey)
-			if (!hasShown) {
-				this.visible = true
-			}
-		},
-		handleClose() {
-			this.visible = false
-			uni.setStorage({
-				key: this.storageKey,
-				data: true
-			})
-			this.$emit('close')
-		}
-	}
-}
+  name: 'ImagePopup',
+  props: {
+    imageUrl: {
+      type: String,
+      default: '',
+    },
+    storageKey: {
+      type: String,
+      default: 'version_shown',
+    },
+  },
+  data() {
+    return {
+      visible: false,
+    };
+  },
+  mounted() {
+    // this.checkAndShowPopup();
+  },
+  methods: {
+    checkAndShowPopup() {
+      const hasShown = uni.getStorageSync(this.storageKey);
+      if (!hasShown) {
+        this.visible = true;
+      }
+    },
+    handleClose() {
+      this.visible = false;
+      uni.setStorage({
+        key: this.storageKey,
+        data: true,
+      });
+      this.$emit('close');
+    },
+  },
+};
 </script>
 
 <style lang="less" scoped>
 .popup-mask {
-	position: fixed;
-	top: 0;
-	left: 0;
-	width: 100%;
-	height: 100%;
-	background-color: rgba(0, 0, 0, 0.7);
-	z-index: 9999;
-	display: flex;
-	justify-content: center;
-	align-items: center;
+  position: fixed;
+  top: 0;
+  left: 0;
+  width: 100%;
+  height: 100%;
+  background-color: rgba(0, 0, 0, 0.7);
+  z-index: 9999;
+  display: flex;
+  justify-content: center;
+  align-items: center;
 
-	.popup-content {
-		position: relative;
-		width: 85%;
-		max-width: 600rpx;
-		background-color: transparent;
-		border-radius: 16rpx;
-		box-sizing: border-box;
+  .popup-content {
+    position: relative;
+    width: 85%;
+    max-width: 600rpx;
+    background-color: transparent;
+    border-radius: 16rpx;
+    box-sizing: border-box;
 
-		.close-btn {
-			position: absolute;
-			bottom: -60rpx;
-			left: 50%;
-			transform: translateX(-50%);
-			width: 56rpx;
-			height: 56rpx;
-			line-height: 48rpx;
-			text-align: center;
-			font-size: 40rpx;
-			color: #999;
-			background-color: rgba(255, 255, 255, 0.9);
-			border-radius: 50%;
-			border: 2rpx solid #ddd;
-			z-index: 10;
-			cursor: pointer;
+    .close-btn {
+      position: absolute;
+      bottom: -60rpx;
+      left: 50%;
+      transform: translateX(-50%);
+      width: 56rpx;
+      height: 56rpx;
+      line-height: 48rpx;
+      text-align: center;
+      font-size: 40rpx;
+      color: #999;
+      background-color: rgba(255, 255, 255, 0.9);
+      border-radius: 50%;
+      border: 2rpx solid #ddd;
+      z-index: 10;
+      cursor: pointer;
 
-			&:active {
-				background-color: #f5f5f5;
-			}
-		}
+      &:active {
+        background-color: #f5f5f5;
+      }
+    }
 
-		.popup-image {
-			width: 100%;
-			border-radius: 8rpx;
-		}
-	}
+    .popup-image {
+      width: 100%;
+      border-radius: 8rpx;
+    }
+  }
 }
 </style>

File diff suppressed because it is too large
+ 849 - 789
pages/index/index.vue


+ 441 - 395
pages/login/login.vue

@@ -1,428 +1,474 @@
 <template>
-	<view>
-		<view class="bg">
-			<image :src="$imageURL+'/bigdata_app/log/bg.png'" mode="" class="bgimg"></image>
-		</view>
-		<!-- <view class="status_bar"></view> -->
-		<view class="apptitle">
-			云飞智控
-		</view>
-		<view class="set" @click="set" v-if="setTF">
-			<u-icon name="setting-fill" size="50" color="#fff"></u-icon>
-		</view>
-		<view class="formbox">
-			<form @submit="formSubmit">
-				<view class="uni-form-item uni-column">
-					<view class="username">
-						<u-icon name="account" size="36" style="margin-right:30rpx;color: #fff;"></u-icon>
-						<u-input class="uni-input" name="username" v-model="formdata.username"
-							placeholder-class="icon iconfont icon-bianji1" placeholder="请输入用户名"
-							placeholderStyle="color:#ffffff;" color="#FFFFFF" @blur="blur" />
-					</view>
-					<view class="passwold">
-						<u-icon name="lock" size="36" style="margin-right:30rpx;color: #fff;"></u-icon>
-						<u-input v-model="formdata.passwold" type="password" :password-icon="true" :clearable="false"
-							placeholder="请输入密码" @confirm="formSubmit" @input="passwoldddata"
-							placeholderStyle="color:#fff;" suffixIconStyle="color:#fff;" color="#fff"
-							class="uni-input" />
-					</view>
-					<view class="aboutpass">
-						<u-checkbox-group>
-							<u-checkbox v-model="checked" :label-disabled="false" size="28" @change="rempass">记住密码
-							</u-checkbox>
-						</u-checkbox-group>
-					</view>
-					<view class="uni-btn-v">
-						<button form-type="submit" @click="denglu">登 录</button>
-					</view>
-				</view>
-			</form>
-		</view>
-		<u-modal title="升级中请勿随意操作" :show-confirm-button="false" v-model="showA" :content="contentA">
-			<view class="upgradeBox">
-				<u-line-progress v-show="isShow" active-color="#19be6b" :striped="true" :percent="percentNum"
-					:striped-active="true"></u-line-progress>
-			</view>
-		</u-modal>
-	</view>
+  <view>
+    <view class="bg">
+      <image
+        :src="$imageURL + '/bigdata_app/log/bg.png'"
+        mode=""
+        class="bgimg"
+      ></image>
+    </view>
+    <!-- <view class="status_bar"></view> -->
+    <view class="apptitle"> 小麦种植科技信息科普 </view>
+    <view class="set" @click="set" v-if="setTF">
+      <u-icon name="setting-fill" size="50" color="#fff"></u-icon>
+    </view>
+    <view class="formbox">
+      <form @submit="formSubmit">
+        <view class="uni-form-item uni-column">
+          <view class="username">
+            <u-icon
+              name="account"
+              size="36"
+              style="margin-right: 30rpx; color: #fff"
+            ></u-icon>
+            <u-input
+              class="uni-input"
+              name="username"
+              v-model="formdata.username"
+              placeholder-class="icon iconfont icon-bianji1"
+              placeholder="请输入用户名"
+              placeholderStyle="color:#ffffff;"
+              color="#FFFFFF"
+              @blur="blur"
+            />
+          </view>
+          <view class="passwold">
+            <u-icon
+              name="lock"
+              size="36"
+              style="margin-right: 30rpx; color: #fff"
+            ></u-icon>
+            <u-input
+              v-model="formdata.passwold"
+              type="password"
+              :password-icon="true"
+              :clearable="false"
+              placeholder="请输入密码"
+              @confirm="formSubmit"
+              @input="passwoldddata"
+              placeholderStyle="color:#fff;"
+              suffixIconStyle="color:#fff;"
+              color="#fff"
+              class="uni-input"
+            />
+          </view>
+          <view class="aboutpass">
+            <u-checkbox-group>
+              <u-checkbox
+                v-model="checked"
+                :label-disabled="false"
+                size="28"
+                @change="rempass"
+                >记住密码
+              </u-checkbox>
+            </u-checkbox-group>
+          </view>
+          <view class="uni-btn-v">
+            <button form-type="submit" @click="denglu">登 录</button>
+          </view>
+        </view>
+      </form>
+    </view>
+    <u-modal
+      title="升级中请勿随意操作"
+      :show-confirm-button="false"
+      v-model="showA"
+      :content="contentA"
+    >
+      <view class="upgradeBox">
+        <u-line-progress
+          v-show="isShow"
+          active-color="#19be6b"
+          :striped="true"
+          :percent="percentNum"
+          :striped-active="true"
+        ></u-line-progress>
+      </view>
+    </u-modal>
+  </view>
 </template>
 
 <script>
-	export default {
-		data() {
-			return {
-				checked: false,
-				formdata: {
-					username: '',
-					passwold: ''
-				},
-				setbgtf: false,
-				setTF: false,
-				value: "http://8.136.98.49:8002",
-				httparr: ["http://8.136.98.49:8002", "http://dev.hnyfwlw.com"],
-				arrowtf: false,
-				showA: false, //
-				contentA: '',
-				isShow: false, //进度条
-				percentNum: 0, //在线下载进度
-				passvalue: false
-			}
-		},
-		onLoad() {
-			uni.getStorage({
-				key: 'user_pass',
-				success: (res) => {
-					if (res.data) {
-						this.formdata.passwold = res.data
-						this.checked = true
-					} else {
-						this.checked = false
-					}
-				}
-			})
-			uni.getStorage({
-				key: 'user_name',
-				success: (res) => {
-					this.formdata.username = res.data
-				}
-			})
-			uni.getStorage({
-				key: 'http',
-				success: (res) => {
-					this.value = res.data
-				}
-			})
-			this.getEquipList()
-		},
-		onShow() {
-			
-		},
-		methods: {
-			async getEquipList() {
-				const res = await this.$myRequest({
-					url: '/api/api_gateway?method=home.homes.app_version_record',
-					data: {
-						ret: "first"
-					}
-				})
-				console.log(res)
-				this.appName = res[0].app_name
-				// uni.getStorage({
-				// 	key: 'session_key',
-				// 	success: (res) => {
-				// 		console.log(res)
-				// 		if (res.data != "") {
-				// 			uni.switchTab({
-				// 				url: "../index/index"
-				// 			})
-				// 		}
-				// 	},
-				// })
-				// }
-			},
-			async formSubmit() {
-				const res = await this.$myRequest({
-					url: '/api/api_gateway?method=user.login.login_user',
-					data: {
-						username: this.formdata.username,
-						password: this.formdata.passwold
-					}
-				})
-				console.log(res.session_key)
-				let session_key = res.session_key
-				uni.setStorage({
-					key: 'session_key',
+export default {
+  data() {
+    return {
+      checked: false,
+      formdata: {
+        username: '',
+        passwold: '',
+      },
+      setbgtf: false,
+      setTF: false,
+      value: 'http://8.136.98.49:8002',
+      httparr: ['http://8.136.98.49:8002', 'http://dev.hnyfwlw.com'],
+      arrowtf: false,
+      showA: false, //
+      contentA: '',
+      isShow: false, //进度条
+      percentNum: 0, //在线下载进度
+      passvalue: false,
+    };
+  },
+  onLoad() {
+    uni.getStorage({
+      key: 'user_pass',
+      success: (res) => {
+        if (res.data) {
+          this.formdata.passwold = res.data;
+          this.checked = true;
+        } else {
+          this.checked = false;
+        }
+      },
+    });
+    uni.getStorage({
+      key: 'user_name',
+      success: (res) => {
+        this.formdata.username = res.data;
+      },
+    });
+    uni.getStorage({
+      key: 'http',
+      success: (res) => {
+        this.value = res.data;
+      },
+    });
+    this.getEquipList();
+  },
+  onShow() {},
+  methods: {
+    async getEquipList() {
+      const res = await this.$myRequest({
+        url: '/api/api_gateway?method=home.homes.app_version_record',
+        data: {
+          ret: 'first',
+        },
+      });
+      console.log(res);
+      this.appName = res[0].app_name;
+      // uni.getStorage({
+      // 	key: 'session_key',
+      // 	success: (res) => {
+      // 		console.log(res)
+      // 		if (res.data != "") {
+      // 			uni.switchTab({
+      // 				url: "../index/index"
+      // 			})
+      // 		}
+      // 	},
+      // })
+      // }
+    },
+    async formSubmit() {
+      const res = await this.$myRequest({
+        url: '/api/api_gateway?method=user.login.login_user',
+        data: {
+          username: this.formdata.username,
+          password: this.formdata.passwold,
+        },
+      });
+      console.log(res.session_key);
+      let session_key = res.session_key;
+      uni.setStorage({
+        key: 'session_key',
 
-					data: session_key,
-					success: () => {
-						uni.switchTab({
-							url: "../index/index"
-						})
-					}
-				})
-			},
-			passwoldddata() {
-				this.formdata.passwold = this.formdata.passwold.replace(/[\u4E00-\u9FA5]/g, '')
-			},
-			rempass(val) {
-				this.passvalue = val.value
-				if (val.value) {
-					uni.setStorage({
-						key: 'user_pass',
-						data: this.formdata.passwold,
-						success: function() {
-							console.log('success');
-						}
-					})
-				}
-			},
-			blur(val) {
-				uni.setStorage({
-					key: 'user_name',
-					data: val,
-					success: function() {
-						console.log('success');
-					}
-				})
-			},
-			logoTime() {
-				this.setTF = true
-			},
-			set() {
-				this.setbgtf = true
-			},
-			sethttp() {
-				uni.setStorage({
-					key: 'http',
-					data: this.value,
-					success: () => {
-						// console.log(this.value);
-						this.setbgtf = false
-						uni.showToast({
-							title: "修改成功",
-							icon: "none"
-						})
-						this.getEquipList()
-					}
-				});
-			},
-			arrow() {
-				this.arrowtf = !this.arrowtf
-			},
-			denglu() {
-				if (this.passvalue) {
-					uni.setStorage({
-						key: 'user_pass',
-						data: this.formdata.passwold,
-						success: function() {
-							console.log('success');
-						}
-					})
-				} else {
-					uni.removeStorage({
-						key: 'user_pass',
-						success: function() {
-							console.log('success');
-						}
-					})
-				}
-			}
-		}
-	}
+        data: session_key,
+        success: () => {
+          uni.switchTab({
+            url: '../index/index',
+          });
+        },
+      });
+    },
+    passwoldddata() {
+      this.formdata.passwold = this.formdata.passwold.replace(
+        /[\u4E00-\u9FA5]/g,
+        '',
+      );
+    },
+    rempass(val) {
+      this.passvalue = val.value;
+      if (val.value) {
+        uni.setStorage({
+          key: 'user_pass',
+          data: this.formdata.passwold,
+          success: function () {
+            console.log('success');
+          },
+        });
+      }
+    },
+    blur(val) {
+      uni.setStorage({
+        key: 'user_name',
+        data: val,
+        success: function () {
+          console.log('success');
+        },
+      });
+    },
+    logoTime() {
+      this.setTF = true;
+    },
+    set() {
+      this.setbgtf = true;
+    },
+    sethttp() {
+      uni.setStorage({
+        key: 'http',
+        data: this.value,
+        success: () => {
+          // console.log(this.value);
+          this.setbgtf = false;
+          uni.showToast({
+            title: '修改成功',
+            icon: 'none',
+          });
+          this.getEquipList();
+        },
+      });
+    },
+    arrow() {
+      this.arrowtf = !this.arrowtf;
+    },
+    denglu() {
+      if (this.passvalue) {
+        uni.setStorage({
+          key: 'user_pass',
+          data: this.formdata.passwold,
+          success: function () {
+            console.log('success');
+          },
+        });
+      } else {
+        uni.removeStorage({
+          key: 'user_pass',
+          success: function () {
+            console.log('success');
+          },
+        });
+      }
+    },
+  },
+};
 </script>
 
 <style lang="scss">
-	.bg{
-		width: 100%;
-		height: 100vh;
-		position: absolute;
-		top: 0;
-		left: 0;
-		.bgimg{
-			width: 100%;
-			height: 100%;
-		}
-	}
-	.apptitle{
-		font-size: 52rpx;
-		color: #fff;
-		width: 80%;
-		margin: 600rpx auto 40rpx;
-	}
-	.logo {
-		width: 100%;
-		height: 340rpx;
-		text-align: center;
-		display: flex;
-		align-items: center;
-		padding-top: 240rpx;
+.bg {
+  width: 100%;
+  height: 100vh;
+  position: absolute;
+  top: 0;
+  left: 0;
+  .bgimg {
+    width: 100%;
+    height: 100%;
+  }
+}
+.apptitle {
+  font-size: 52rpx;
+  color: #fff;
+  width: 80%;
+  margin: 600rpx auto 40rpx;
+}
+.logo {
+  width: 100%;
+  height: 340rpx;
+  text-align: center;
+  display: flex;
+  align-items: center;
+  padding-top: 240rpx;
 
-		image {
-			width: 280rpx;
-			margin: 0 auto;
-			height: 120rpx;
-		}
-	}
+  image {
+    width: 280rpx;
+    margin: 0 auto;
+    height: 120rpx;
+  }
+}
 
-	.set {
-		position: absolute;
-		right: 50rpx;
-		top: 150rpx;
-	}
+.set {
+  position: absolute;
+  right: 50rpx;
+  top: 150rpx;
+}
 
-	.bg {
-		width: 100%;
-		position: fixed;
-		bottom: 0;
-		left: 0;
-		z-index: -1;
+.bg {
+  width: 100%;
+  position: fixed;
+  bottom: 0;
+  left: 0;
+  z-index: -1;
 
-		image {
-			width: 100%;
-		}
-	}
+  image {
+    width: 100%;
+  }
+}
 
-	/deep/.u-input__right-icon {
-		line-height: 35px !important;
-	}
-	.uni-form-item {
-		width: 100%;
+/deep/.u-input__right-icon {
+  line-height: 35px !important;
+}
+.uni-form-item {
+  width: 100%;
 
-		.username {
-			width: 80%;
-			margin: 0 auto;
-			display: flex;
-			margin-bottom: 40rpx;
-			padding-bottom: 10rpx;
-			border-bottom: 2rpx solid rgba(249,249,249,0.4);
+  .username {
+    width: 80%;
+    margin: 0 auto;
+    display: flex;
+    margin-bottom: 40rpx;
+    padding-bottom: 10rpx;
+    border-bottom: 2rpx solid rgba(249, 249, 249, 0.4);
 
-			.u-icon__icon {
-				margin-top: 17rpx;
-			}
+    .u-icon__icon {
+      margin-top: 17rpx;
+    }
 
-			.uni-input {
-				width: 100%;
-				color: #fff;
-			}
-			.u-input__input{
-				color: #fff !important;
-			}
-		}
+    .uni-input {
+      width: 100%;
+      color: #fff;
+    }
+    .u-input__input {
+      color: #fff !important;
+    }
+  }
 
-		.passwold {
-			width: 80%;
-			margin: 0 auto;
-			display: flex;
-			margin-bottom: 40rpx;
-			padding-bottom: 10rpx;
-			border-bottom: 2rpx solid rgba(249,249,249,0.4);
+  .passwold {
+    width: 80%;
+    margin: 0 auto;
+    display: flex;
+    margin-bottom: 40rpx;
+    padding-bottom: 10rpx;
+    border-bottom: 2rpx solid rgba(249, 249, 249, 0.4);
 
-			.u-icon__icon {
-				margin-top: 17rpx;
-			}
-			/deep/.u-input__input{
-				color: #fff;
-			}
-			.uni-input {
-				width: 100%;
-				color: #fff;
-			}
-			/deep/.uicon-eye{
-				color: #fff !important;
-			}
-		}
+    .u-icon__icon {
+      margin-top: 17rpx;
+    }
+    /deep/.u-input__input {
+      color: #fff;
+    }
+    .uni-input {
+      width: 100%;
+      color: #fff;
+    }
+    /deep/.uicon-eye {
+      color: #fff !important;
+    }
+  }
 
-		.aboutpass {
-			width: 80%;
-			margin: 0 auto;
-			display: flex;
-			justify-content: flex-end;
+  .aboutpass {
+    width: 80%;
+    margin: 0 auto;
+    display: flex;
+    justify-content: flex-end;
 
-			p {
-				color: #fff;
-				font-size: 28rpx;
-			}
-			/deep/.uicon-checkbox-mark{
-				border-color: #FF0000;
-				// color: #f00 !important;
-			}
-			/deep/.u-checkbox__label {
-				font-size: 28rpx;
-				color: #fff;
-				margin-right: 0;
-			}
-		}
+    p {
+      color: #fff;
+      font-size: 28rpx;
+    }
+    /deep/.uicon-checkbox-mark {
+      border-color: #ff0000;
+      // color: #f00 !important;
+    }
+    /deep/.u-checkbox__label {
+      font-size: 28rpx;
+      color: #fff;
+      margin-right: 0;
+    }
+  }
 
-		.uni-btn-v {
-			width: 80%;
-			margin: 112rpx auto 0;
-			position: relative;
-			z-index: 100;
+  .uni-btn-v {
+    width: 80%;
+    margin: 112rpx auto 0;
+    position: relative;
+    z-index: 100;
 
-			button {
-				width: 100%;
-				height: 90rpx;
-				line-height: 90rpx;
-				color: #FFFFFF;
-				font-size: 36rpx;
-				background-image: linear-gradient(to bottom, rgba(249,249,249,0.6), rgba(249, 249, 249, 0.1));
-				color: #5DC18B;
-			}
-		}
-	}
+    button {
+      width: 100%;
+      height: 90rpx;
+      line-height: 90rpx;
+      color: #ffffff;
+      font-size: 36rpx;
+      background-image: linear-gradient(
+        to bottom,
+        rgba(249, 249, 249, 0.6),
+        rgba(249, 249, 249, 0.1)
+      );
+      color: #5dc18b;
+    }
+  }
+}
 
-	.setbg {
-		width: 100%;
-		height: 100vh;
-		position: absolute;
-		top: 0;
-		z-index: 99999;
+.setbg {
+  width: 100%;
+  height: 100vh;
+  position: absolute;
+  top: 0;
+  z-index: 99999;
 
-		.mengban {
-			width: 100%;
-			height: 100vh;
-			position: absolute;
-			top: 0;
-			background-color: rgba($color: #000000, $alpha: 0.5);
-		}
+  .mengban {
+    width: 100%;
+    height: 100vh;
+    position: absolute;
+    top: 0;
+    background-color: rgba($color: #000000, $alpha: 0.5);
+  }
 
-		.set_http {
-			position: absolute;
-			width: 90%;
-			left: 5%;
-			top: 30%;
+  .set_http {
+    position: absolute;
+    width: 90%;
+    left: 5%;
+    top: 30%;
 
-			.set_http_top {
-				display: flex;
-				justify-content: space-around;
-				background-color: #5DC18B;
-				height: 60px;
-				line-height: 60px;
-				color: #FFFFFF;
-				border-top-right-radius: 20px;
-				border-top-left-radius: 20px;
-				font-size: 32rpx;
-			}
+    .set_http_top {
+      display: flex;
+      justify-content: space-around;
+      background-color: #5dc18b;
+      height: 60px;
+      line-height: 60px;
+      color: #ffffff;
+      border-top-right-radius: 20px;
+      border-top-left-radius: 20px;
+      font-size: 32rpx;
+    }
 
-			.set_http_bot {
-				height: 150px;
-				background-color: #FFFFFF;
-				border-bottom-right-radius: 20px;
-				border-bottom-left-radius: 20px;
-				padding: 30px;
+    .set_http_bot {
+      height: 150px;
+      background-color: #ffffff;
+      border-bottom-right-radius: 20px;
+      border-bottom-left-radius: 20px;
+      padding: 30px;
 
-				.set_http_bot_input {
-					margin-top: 20rpx;
-					border: 2rpx solid #bdb6a6;
-					border-radius: 20rpx;
-					padding: 10rpx 40rpx 0 20rpx;
-					font-size: 32rpx;
-					height: 30px;
-					display: flex;
-					justify-content: space-between;
+      .set_http_bot_input {
+        margin-top: 20rpx;
+        border: 2rpx solid #bdb6a6;
+        border-radius: 20rpx;
+        padding: 10rpx 40rpx 0 20rpx;
+        font-size: 32rpx;
+        height: 30px;
+        display: flex;
+        justify-content: space-between;
 
-					input {
-						width: 90%;
-					}
-				}
-			}
+        input {
+          width: 90%;
+        }
+      }
+    }
 
-			.scroll-Y {
-				border: 2rpx solid #d0d0d0;
-				border-radius: 20rpx;
+    .scroll-Y {
+      border: 2rpx solid #d0d0d0;
+      border-radius: 20rpx;
 
-				.scroll-view-item {
-					padding-left: 20rpx;
-					height: 70rpx;
-					font-size: 28rpx;
-					line-height: 70rpx;
-					border-bottom: 2rpx solid #d0d0d0;
-				}
-			}
-		}
-	}
+      .scroll-view-item {
+        padding-left: 20rpx;
+        height: 70rpx;
+        font-size: 28rpx;
+        line-height: 70rpx;
+        border-bottom: 2rpx solid #d0d0d0;
+      }
+    }
+  }
+}
 
-	.upgradeBox {
-		padding: 15rpx;
-	}
+.upgradeBox {
+  padding: 15rpx;
+}
 </style>

+ 1 - 1
pages/my/about/about.vue

@@ -5,7 +5,7 @@
 			<image :src="$imageURL+'/bigdata_app'+'/image/c9b4eb88c03b2f7460e8479e80f40fc.png'" mode="widthFix"></image>
 			<view class="version">
 				<view>
-					云飞物联网
+					小麦种植科技信息科普
 				</view>
 				<view>
 					V{{id}}

+ 2 - 2
pages/my/index/index.vue

@@ -28,13 +28,13 @@
       </view>
     </view>
     <view class="menu">
-      <view>
+      <!-- <view>
         <view class="AboutUs" @click="about">
           <image :src="personIcon" mode="" class="icon_left"></image>
           关于我们
           <uni-icons type="arrowright" class="icon_right"></uni-icons>
         </view>
-      </view>
+      </view> -->
       <view style="background-color: #ffffff" v-if="isLogin">
         <view class="quit" @click="outto">
           <image :src="logoutIcon" mode="" class="icon_left"></image>

+ 2 - 2
project.config.json

@@ -41,7 +41,7 @@
   },
   "compileType": "miniprogram",
   "libVersion": "2.16.1",
-  "appid": "wxa67985a99191095e",
+  "appid": "wxee55c4d296b11922",
   "projectname": "miniprogram-1",
   "simulatorType": "wechat",
   "simulatorPluginLibVersion": {},
@@ -50,4 +50,4 @@
     "tabIndent": "insertSpaces",
     "tabSize": 2
   }
-}
+}