Browse Source

代码提交

fanghuisheng 1 year ago
parent
commit
444e859a25

+ 2 - 0
src/config.js

@@ -24,6 +24,8 @@ export default {
     hotline: "021-65376655",
     // 官方网站
     site_url: "http://www.usky.cn/",
+    // 版权
+    copyright:"Copyright © 2021- 2025 Usky. All Rights Reserved. 永天股份 版权所有",
     // 政策协议
     agreements: [
       {

+ 44 - 54
src/pages/business/fireIot/facilitiesGather/mapGather.vue

@@ -1,15 +1,14 @@
 <template>
-  <view id="mapF">
-    <web-view
-      ref="amapView"
-      src="/static/amap/mapGather.html"
-      bindmessage="receiveMessage"
-      :webview-styles="{
-        height: proxy.$settingStore.webViewHeight,
-      }"
-      @message="onMessage"
-    ></web-view>
-  </view>
+  <web-view
+    id="amapView"
+    ref="amapView"
+    src="/static/amap/mapGather.html"
+    bindmessage="receiveMessage"
+    :webview-styles="{
+      height: proxy.$settingStore.webViewHeight,
+    }"
+    @message="onMessage"
+  ></web-view>
 </template>
 
 <script setup>
@@ -21,58 +20,49 @@ const publicStore = publicStores(); //全局公共Store
 
 const { proxy } = getCurrentInstance();
 
-const webviewStyle = ref({});
+const pages = getCurrentPages();
 
-function onMessage(e) {
-  console.log("Received message from web page:", e.detail.data);
-  uni.showToast({
-    title: e.detail.data,
-    icon: "none",
-  });
-}
+const dataArray = publicStore.$state.facilitiesGatherArray;
+const dataType = publicStore.$state.facilitiesGatherType;
 
 // #ifdef APP-PLUS
-let wv = plus.webview.create(
-  "/static/amap/mapGather.html?t=" + new Date().getTime(), //date保证不走缓存
-  "batch_view",
-  {
-    top: "0",
-    left: "0",
-    height: "100%",
-    width: "100%",
-  },
-  {
-    data: {
-      token: 1,
-      userInfo: 1,
-      implantType: "uniapp",
-    },
-  }
-); //不用data键值对的方式传的话,h5接收后会是多个字段,而非一个对象
-let pages = getCurrentPages();
-let page = pages[pages.length - 1];
-let ws = page.$getAppWebview();
+setTimeout(() => {
+  var currentWebview = pages[pages.length - 1].$getAppWebview();
+  var wv = currentWebview.children()[0];
+  wv.evalJS(`receiveData(${JSON.stringify({ dataArray: dataArray, dataType: dataType })})`);
+}, 1000);
 // #endif
 
+function onMessage(e) {
+  console.log("父页面:", e.detail.data);
+  publicStore.$state.facilitiesGatherArray = JSON.parse(e.detail.data);
+  uni.redirectTo({
+    url: "/pages/business/fireIot/facilitiesGather/index",
+  });
+}
+
 // #ifdef H5
-window.addEventListener(
-  "message",
-  (event) => {
-    console.log("父页面:", event);
-  },
-  false
-);
-// #endif
+setTimeout(() => {
+  var iframe = document.getElementById("amapView");
+  var message = {
+    funcName: "children",
+    param: JSON.stringify(dataArray),
+    typeName: dataType,
+  };
+
+  iframe.contentWindow.postMessage(message, "*");
+}, 1000);
 
-// 自定义导航事件
-onNavigationBarButtonTap((e) => {
-  if (e.float == "right") {
-    uni.navigateTo({
-      url: "pages/business/fireIot/facilitiesGather/index",
+window.onmessage = function (event) {
+  if ("funcName" in event.data) {
+    console.log("父页面:", event);
+    publicStore.$state.facilitiesGatherArray = JSON.parse(event.data.param);
+    uni.redirectTo({
+      url: "/pages/business/fireIot/facilitiesGather/index",
     });
-  } else {
   }
-});
+};
+// #endif
 
 onLoad((options) => {});
 

+ 12 - 21
src/pages/business/mhxf/needMatter/index.vue

@@ -426,29 +426,20 @@ function leftscroll(dista) {
  */
 function tabsClick(e) {
   current.value = e.index;
+  goSearch();
 }
 
 /**
  * @列表查询
  */
 function goSearch() {
-  if (current.value == 0) {
-    classifySearch({
-      companyId: "", //	单位Id
-      reformId: "", //整改单编号
-      reformStatus: "", //整改状态(1 已接收、2 整改中、3 整改完成、4 审核不通过、5 审核通过)
-      pageNum: 1, //当前页
-      pageSize: 20, //每页条数
-    });
-  } else {
-    classifySearch({
-      companyId: "", //	单位Id
-      reformId: "", //整改单编号
-      reformStatus: current.value, //整改状态(1 已接收、2 整改中、3 整改完成、4 审核不通过、5 审核通过)
-      pageNum: 1, //当前页
-      pageSize: 20, //每页条数
-    });
-  }
+  classifySearch({
+    companyId: "", //	单位Id
+    reformId: "", //整改单编号
+    reformStatus: current.value == 0 ? "" : current.value, //整改状态(1 已接收、2 整改中、3 整改完成、4 审核不通过、5 审核通过)
+    pageNum: 1, //当前页
+    pageSize: 20, //每页条数
+  });
 }
 
 /**
@@ -479,9 +470,7 @@ async function classifySearch(params) {
   });
 }
 
-watchEffect(() => {
-  goSearch();
-});
+watchEffect(() => {});
 
 // 自定义导航事件
 onNavigationBarButtonTap((e) => {
@@ -493,7 +482,9 @@ onNavigationBarButtonTap((e) => {
   }
 });
 
-onLoad((options) => {});
+onLoad((options) => {
+  goSearch();
+});
 
 onShow(() => {
   //调用系统主题颜色

+ 7 - 4
src/pages/common/invoicing/index.vue

@@ -3,9 +3,9 @@
     <u-tabs :list="tabsList" :current="tabsCurrent" @click="tabsClick" lineColor="#333" :activeStyle="{ color: '#333' }" :inactiveStyle="{ color: '#909399' }" :scrollable="false"></u-tabs>
   </u-sticky>
 
-  <scroll-view class="invoicing-container scroll-height" :scroll-y="true" :data-theme="'theme-' + proxy.$settingStore.themeColor.name">
+  <scroll-view class="invoicing-container scroll-height" :scroll-y="true" :scroll-into-view="scrollIntoView" :data-theme="'theme-' + proxy.$settingStore.themeColor.name">
     <view v-show="tabsCurrent == 0">
-      <u-notice-bar v-if="promptStatus" text="注:查询到您近期有开票记录,请勿重复开票" :duration="9000" color="#FF0000" bgColor="#FFFFFF"></u-notice-bar>
+      <u-notice-bar id="noticeBar" v-if="promptStatus" text="注:查询到您近期有开票记录,请勿重复开票" :duration="9000" color="#FF0000" bgColor="#FFFFFF"></u-notice-bar>
 
       <view class="menu-list" style="font-size: 15px; line-height: 30px">
         <view class="list-cell">
@@ -135,7 +135,7 @@
           <view class="menu-item-box">
             <view style="width: 90px">开户行</view>
             <view style="color: #666666">上海银行徐家汇支行</view>
-          </view>
+          </view> 
         </view>
         <view class="list-cell">
           <view class="menu-item-box">
@@ -281,15 +281,17 @@ const data = reactive({
     ],
   },
 
+  scrollIntoView: "",
   promptStatus: false,
 });
 
-const { tabsList, tabsCurrent, form, rules, promptStatus } = toRefs(data);
+const { tabsList, tabsCurrent, form, rules, scrollIntoView, promptStatus } = toRefs(data);
 
 /**
  * @提交
  */
 function handleSubmit(value) {
+  scrollIntoView.value = "";
   uForm.value
     .validate()
     .then((res) => {
@@ -305,6 +307,7 @@ function handleSubmit(value) {
         if (requset.status === "SUCCESS") {
           if (requset.data.records.length > 0) {
             promptStatus.value = true;
+            scrollIntoView.value = "noticeBar";
           } else {
             var param = {
               customId: parseInt(form.value.customId), //客户管理id

+ 3 - 1
src/pages/mine/about/index.vue

@@ -47,7 +47,8 @@
     </view>
 
     <view class="copyright">
-      <view>Copyright &copy; 2021 - 2025 Usky. All Rights Reserved. 永天股份 版权所有</view>
+      <!-- <view>Copyright &copy; 2021 - 2025 Usky. All Rights Reserved. 永天股份 版权所有</view> -->
+      <view>{{ copyright }}</view>
     </view>
   </view>
 </template>
@@ -66,6 +67,7 @@ const url = ref(config.appInfo.site_url);
 const version = ref(config.appInfo.version);
 const email = ref(config.appInfo.email);
 const hotline = ref(config.appInfo.hotline);
+const copyright = ref(config.appInfo.copyright);
 
 onShow(() => {
   //调用系统主题颜色

+ 0 - 17
src/pages/mine/help/index.vue

@@ -34,23 +34,6 @@ const { proxy } = getCurrentInstance();
 
 const data = reactive({
   list: [
-    // {
-    //   icon: 'iconfont icon-github',
-    //   title: '若依问题',
-    //   childList: [{
-    //     title: '若依开源吗?',
-    //     content: '开源'
-    //   }, {
-    //     title: '若依可以商用吗?',
-    //     content: '可以'
-    //   }, {
-    //     title: '若依官网地址多少?',
-    //     content: 'http://ruoyi.vip'
-    //   }, {
-    //     title: '若依文档地址多少?',
-    //     content: 'http://doc.ruoyi.vip'
-    //   }]
-    // },
     {
       icon: "iconfont ucicon-Help",
       title: "其他问题",

+ 8 - 13
src/static/amap/coordination.html

@@ -34,21 +34,16 @@
         <div class="content"> </div>
     </div>
 
-
-    <!-- 高德地图web端 -->
-    <!-- <script type="text/javascript">
-		window._AMapSecurityConfig = {
-			securityJsCode: 'be916fcd16d0b33d228c49f0ff096b17',
-		}
-	</script> -->
-    <!-- <script type="text/javascript" src="https://webapi.amap.com/maps?v=2.0&key=d4d73a7d572b6ff6028d5f67de62029a">
-	</script> -->
-
-
-
     <script src="https://a.amap.com/jsapi_demos/static/china.js"></script>
-    <script type="text/javascript" src="https://webapi.amap.com/maps?v=2.0&key=ffc71dfd4e576596027f8f45a1b8fb2f">
+    <script type="text/javascript">
+        window._AMapSecurityConfig = {
+            securityJsCode: 'ce0e44758ad6b69607e23bf8e6a6ac11',
+        }
+    </script>
+    <script type="text/javascript" src="https://webapi.amap.com/maps?v=2.0&key=14aefebea926bb958032d5daf836fadf">
     </script>
+
+
     <!-- <script type="text/javascript" src="https://webapi.amap.com/maps?v=2.0&key=8e266e1ac2ad2383c7773ff504ac248f">
     </script> -->
     <!-- <script src="https://webapi.amap.com/loader.js"></script> -->

File diff suppressed because it is too large
+ 0 - 0
src/static/amap/js/uni.webview.1.5.4.js


+ 268 - 83
src/static/amap/mapGather.html

@@ -22,83 +22,52 @@
 <body>
     <div id="mapF" class="map" tabindex="0"></div>
 
-    <div style="padding: 0 10px;">
-        <div style="position: absolute;top: 0;display:inline-block;width: 50%;padding-top: 10px;">
-            <select id="selectId" class="select02">
-            </select>
-        </div>
+    <div id="myPageTop">
+        <input id="tipinput" />
     </div>
 
-    <div id="notification" style="display: none;">
-        <div class="mask"> </div>
-        <div class="content"> </div>
-    </div>
-
-    <div class="input-card" style="width: 120px;bottom: 40px;">
-        <button class="btn" onclick="handlePolygon('新增')" style="margin-bottom: 5px">新建</button>
-        <button class="btn" onclick="handlePolygon('编辑')" style="margin-bottom: 5px">开始编辑</button>
-        <button class="btn" onclick="handlePolygon('保存')" style="margin-bottom: 5px">结束编辑</button>
-
-        <button class="btn btn-red" type="button" id="postMessage" onclick="sendMessage()"> postMessage</button>
+    <div style="display:flex; width: 100%; position: absolute; bottom: 50px;justify-content: center;">
+        <button class="btn" onclick="handleButtom('重画')"
+            style="width: 80px;border: 0;background-color: #d9001b; color:#fff;padding: 0.60rem 0.5rem;margin-right: 15px;">重画</button>
+        <button class="btn" onclick="handleButtom('保存')"
+            style="width: 80px;border: 0;background-color: #25A5F7; color:#fff;padding: 0.60rem 0.5rem;margin-left: 15px;">保存</button>
     </div>
 
     <script src="https://a.amap.com/jsapi_demos/static/china.js"></script>
-    <script type="text/javascript"
-        src="https://webapi.amap.com/maps?v=2.0&key=8e266e1ac2ad2383c7773ff504ac248f&plugin=AMap.PolygonEditor"></script>
+    <script type="text/javascript">
+        window._AMapSecurityConfig = {
+            securityJsCode: 'ce0e44758ad6b69607e23bf8e6a6ac11',
+        }
+    </script>
+    <script type="text/javascript" src="https://webapi.amap.com/maps?v=2.0&key=14aefebea926bb958032d5daf836fadf">
+    </script>
+
     <script type="text/javascript" src="https://webapi.amap.com/ui/1.1/main.js"></script>
     <script type="text/javascript" src="./js/jquery-2.2.1.min.js"></script>
-    <script src="./js/M_select/M_select.js"></script>
 
     <!-- uni 的 SDK -->
     <!-- 需要把 uni.webview.1.5.4.js 下载到自己的服务器 -->
-    <script type="text/javascript" src="https://unpkg.com/@dcloudio/uni-webview-js@0.0.3/index.js"></script>
+    <script type="text/javascript" src="./js/uni.webview.1.5.4.js"></script>
 
     <script type="text/javascript">
-        var checkedArray = {
-            checkedData: 1,
-            checkedList: [
-                { value: 1, label: "消防站" },
-                { value: 2, label: "消防车" },
-                { value: 3, label: "监控" },
-                { value: 4, label: "重点单位" },
-                { value: 5, label: "消火栓/天然水源" },
-            ],
-        }//类型筛选
-
-        $.each(checkedArray.checkedList, function (i, item) {
-            $("#selectId").append(`<option value="${item.value}">${item.label}</option>`)
-        })
-        $(function () {
-            $(".select02").M_select({
-                // 手动添加下拉款图片(以html页面为起始位置写路径)
-                "Img": "./js/M_select/up4.png",
-                "Img2": "./js/M_select/down4.png",
-                "radius": "15px",
-                "Title": "--请选择--",
-                "inputName": "selected_value",
-                // 默认选中的值(参数值写需要选中的select的value值)
-                "selected": "1",
-                Succee: function () {
-                    checkedArray.checkedData = parseInt($(".inputHidden").val())
-                    mapCluster();
-                }
-            });
-        });
 
-        //点击遮罩层关闭
-        $('#notification .mask').on('click', function (e) {
-            $('#notification').css('display', 'none')
+        var form = {};
+        var typeName = "";
 
-            $('#notification .content #xxxx').remove()
-        })
-    </script>
+        var map = [];
 
-    <script type="text/javascript">
+        var marker = null;//创建点标记
+        var regeocode = {};//获取解析详细地址数据存储
+        var longitude = "";//点标记经度数据存储
+        var latitude = "";//点标记纬度数据存储
 
-        var map = [];
-        var polyEditor = null; //创建画布数据存储
-        var polygon1 = null; //选中地图区域数据存储
+        var polyEditor = null; //创建画布
+        var polyEditorArray = [];//画布数据存储
 
+
+        /**
+         * 初始化
+         */
         function initMap() {
             map = new AMap.Map("mapF", {
                 // mapStyle: 'amap://styles/d0ddc09bd7cbd7331a8e8fa691e5b0da', //设置地图的显示样式
@@ -110,50 +79,266 @@
 
             map.setFitView();
 
-            polyEditor = new AMap.PolygonEditor(map);
+            setTimeout(() => {
+                AMap.plugin(["AMap.PolygonEditor,AMap.PolylineEditor"], function () {
+                    handleAutoComplete();//调用输入提示功能
+
+                    if (typeName === "点") {
+                        marker = new AMap.Marker({});//初始化点标记
+                        handleMarker();
+                    } else if (typeName === "线") {
+                        polyEditor = new AMap.PolylineEditor(map);//初始化画布
+                        handlePolyline();
+                    } else if (typeName === "面") {
+                        polyEditor = new AMap.PolygonEditor(map);//初始化画布
+                        handlePolygon();
+                    }
+                })
+            }, 1000);
         }
 
         /**
-         * 面
+         * 输入提示
          */
-        function handlePolygon(clickType) {
-            if (clickType === "新增") {
+        function handleAutoComplete() {
+            AMap.plugin(["AMap.PlaceSearch", "AMap.AutoComplete", "AMap.Geocoder"], function () {
+                var autoOptions = {
+                    input: "tipinput",
+                };
+                var auto = new AMap.AutoComplete(autoOptions);
+
+                var placeSearch = new AMap.PlaceSearch({
+                    city: "全国",
+                    map: map,
+                }); //构造地点查询类
+                auto.on("select", select); //注册监听,当选中某条记录时会触发
+                function select(e) {
+                    longitude = e.lnglat.getLng()
+                    latitude = e.lnglat.getLat()
+
+                    placeSearch.setCity(e.poi.adcode);
+                    placeSearch.search(e.poi.name); //关键字查询查询
+
+                    handleAddress()
+                }
+            });
+        }
+
+        /**
+         * 点
+         */
+        function handleMarker() {
+            //地图点标记回显
+            if (form.longitude && form.latitude) {
+                longitude = form.longitude
+                latitude = form.latitude
+
+                marker = new AMap.Marker({
+                    position: new AMap.LngLat(form.longitude, form.latitude), // 经纬度对象,也可以是经纬度构成的一维数组[116.39, 39.9]
+                });
+
+                handleAddress()
+            }
+
+            //为地图注册click事件获取鼠标点击出的经纬度坐标
+            map.on("click", function (e) {
+                longitude = e.lnglat.getLng()
+                latitude = e.lnglat.getLat()
+
+                map.remove([marker]);
+                marker = new AMap.Marker({
+                    position: new AMap.LngLat(e.lnglat.getLng(), e.lnglat.getLat()), // 经纬度对象,也可以是经纬度构成的一维数组[116.39, 39.9]
+                });
+
+                handleAddress()
+            });
+        }
+
+        /**
+         * 线
+         */
+        function handlePolyline() {
+            var polygon = new AMap.Polyline({
+                path: form.gpsAreas
+            })
+
+            if (form.gpsAreas.length > 0) {
+                map.add([polygon]);
+
                 polyEditor.close();
-                polyEditor.setTarget();
+                polyEditor.setTarget(polygon);
                 polyEditor.open();
-            } else if (clickType === "编辑") {
-                polyEditor.open();
-            } else if (clickType === "保存") {
+
+                polyEditorArray = form.gpsAreas
+            } else {
                 polyEditor.close();
+                polyEditor.setTarget();
+                polyEditor.open();
             }
+
+            polyEditor.on("end", function (event) {
+                //绘制结束后坐标集合
+                polyEditorArray = event.target.$x[0]
+            });
         }
 
-        initMap();
+        /**
+         * 面
+         */
+        function handlePolygon() {
+            var polygon = new AMap.Polygon({
+                path: form.gpsAreas
+            })
+
+            if (form.gpsAreas.length > 0) {
+                map.add([polygon]);
 
+                polyEditor.close();
+                polyEditor.setTarget(polygon);
+                polyEditor.open();
 
-        if (window.plus) {
-            plusReady();
-        }//加上此判断以免再浏览器打开h5页面时报plus is not define
-        function plusReady() {
-            if (plus.webview.getWebviewById("batch_view")) {
-                const appData = plus.webview.getWebviewById("batch_view").data;
-                alert(JSON.stringfy(appData))
+                polyEditorArray = form.gpsAreas
+            } else {
+                polyEditor.close();
+                polyEditor.setTarget();
+                polyEditor.open();
             }
+
+            polyEditor.on("end", function (event) {
+                //绘制结束后坐标集合
+                polyEditorArray = event.target._opts.path
+            });
         }
 
-        function sendMessage() {
-            uni.postMessage({
-                data: 'Hello from web page!'
+        /**
+         * 反解析地址
+         */
+        function handleAddress() {
+            AMap.plugin(["AMap.Geocoder"], function () {
+                let zb = [longitude, latitude];
+                map.add(marker);
+                marker.setPosition(zb);
+                var geocoder = new AMap.Geocoder({
+                    city: "", //城市设为北京,默认:“全国”
+                    radius: 1000, //范围,默认:500
+                });
+                geocoder.getAddress(zb, function (status, result) {
+                    if (status === "complete" && result.regeocode) {
+                        regeocode = result.regeocode
+                    } else {
+                        alert("根据经纬度查询地址失败");
+                    }
+                });
             });
+        }
 
+        /**
+         * APP-PLUS
+         * 接收父页面传过来的值
+         */
+        window.receiveData = function (msg) {
+            // console.log("子页面:", msg)
+            // alert(msg.dataType)
+            form = msg.dataArray
+            typeName = msg.dataType
+            initMap();
+        }
 
-            var item = "previewFile";
-            if (window.parent) {
-                window.parent.postMessage(item, '*');
+        /**
+         * H5
+         * 接收父页面传过来的值
+         */
+        window.addEventListener("message", function (event) {
+            if ("funcName" in event.data) {
+                console.log("子页面:", event);
+                form = JSON.parse(event.data.param)
+                typeName = event.data.typeName
             }
-        }
+            initMap();
+        });
+
+        /**
+         * 按钮点击事件
+         */
+        function handleButtom(value) {
+            if (value == '重画') {
+                if (typeName === "点") {
+                    map.remove([marker]);
+                    form.longitude = ""
+                    form.latitude = ""
+                    form.province = ""
+                    form.city = ""
+                    form.area = ""
+                    form.streetTown = ""
+                    form.facilityAddress = ""
+                    form.address = ""
+                } else if (typeName === "线" || typeName === "面") {
+                    polyEditor.close();
+                    polyEditor.setTarget();
+                    polyEditor.open();
+                    map.clearMap();
+                    polyEditorArray = []
+                }
+
+            } else if (value == '保存') {
+
+                if (typeName === "点") {
+                    form.longitude = longitude
+                    form.latitude = latitude
+
+                    form.province = regeocode.addressComponent.province
+                    form.city = regeocode.addressComponent.city
+                    form.area = regeocode.addressComponent.district
+                    form.streetTown = regeocode.addressComponent.township;
+                    form.facilityAddress = regeocode.addressComponent.street + regeocode.addressComponent.streetNumber;
+                    form.address =
+                        form.province + form.city + form.area + form.streetTown + regeocode.addressComponent.street + regeocode.addressComponent.streetNumber;
+                } else if (typeName === "线" || typeName === "面") {
+                    polyEditor.close();
+                    form.gpsAreas = polyEditorArray
+                }
+
+                //向主页面推送消息
 
+                //APP-PLUS
+                uni.postMessage({
+                    data: JSON.stringify(form)
+                });
+
+                //H5
+                var message = {
+                    funcName: "message",
+                    param: JSON.stringify(form),
+                };
+                if (window.parent) {
+                    window.parent.postMessage(message, '*');
+                }
+            }
+        }
     </script>
+    <style>
+        #myPageTop {
+            position: absolute;
+            left: 10px;
+            top: 10px;
+            background: transparent;
+            font-family: "Microsoft Yahei", "微软雅黑", "Pinghei";
+            font-size: 13px;
+        }
+
+        #myPageTop input {
+            width: 18rem;
+            border: 1px solid #ced4da;
+            border-radius: 5px;
+            padding: 5px;
+        }
+
+        #myPageTop input:focus {
+            outline: none;
+            border-radius: 5px;
+            border: 1px solid #25A5F7;
+        }
+    </style>
 </body>
 
 </html>

+ 2 - 1
src/uni_modules/uview-plus/components/u-form-item/u-form-item.vue

@@ -151,7 +151,8 @@
 			},
 			// 点击组件
 			clickHandler() {
-				this.$emit('click')
+				// console.log(1)
+				// this.$emit('click')
 			}
 		},
 	}

+ 0 - 1
src/uni_modules/uview-plus/components/u-picker/u-picker.vue

@@ -214,7 +214,6 @@ export default {
 		},
 		// 设置整体各列的columns的值
 		setColumns(columns) {
-			console.log(columns)
 			this.innerColumns = uni.$u.deepClone(columns)
 			// 如果在设置各列数据时,没有被设置默认的各列索引defaultIndex,那么用0去填充它,数组长度为列的数量
 			if (this.innerIndex.length === 0) {

+ 1 - 0
src/uni_modules/uview-plus/components/u-tabbar/u-tabbar.vue

@@ -122,6 +122,7 @@
 		@include flex(column);
 		flex: 1;
 		justify-content: center;
+		box-shadow: 1px 1px 20px rgb(26 26 26 / 10%);
 		
 		&__content {
 			@include flex(column);

+ 0 - 2
src/utils/jssdk.js

@@ -10,9 +10,7 @@ export function configWeiXin(callback) {
 	if (window.location.host) {
 		url = window.location.host;
 	}
-	//#endif
 
-	//#ifdef APP-PLUS || MP-WEIXIN
 	if (uni.getStorageSync("serveUrl")) {
 		url = uni.getStorageSync("serveUrl");
 	}

Some files were not shown because too many files changed in this diff