Bläddra i källkod

移除E服务tabbar

zhaoxiaohai 2 år sedan
förälder
incheckning
5526fdb19f

+ 0 - 3
Eservice/agent/serviceBillList/index.js

@@ -50,9 +50,6 @@ Page({
    */
   onLoad(options) {
     // this.listData()
-    this.setData({
-      tabbarlist:getApp().globalData.tabbarList
-    })
   },
 
   /**

+ 0 - 1
Eservice/agent/serviceBillList/index.json

@@ -2,7 +2,6 @@
   "usingComponents": {
     "t-fab": "weui-miniprogram/fab/fab",
     "t-card": "../../components/listCard/listCard",
-    "tab-bar":"../../components/tabbar/index",
     "t-tabs": "weui-miniprogram/tabs/tabs",
     "t-tab-panel": "weui-miniprogram/tab-panel/tab-panel"
   }

+ 1 - 2
Eservice/agent/serviceBillList/index.wxml

@@ -37,5 +37,4 @@
   </t-card>
   <t-fab icon="add" style="position:fixed;right:16px;bottom:72px" bind:click="handleClick" aria-label="增加"></t-fab>
 </view>
-</t-pull-down-refresh>
-<tab-bar tabbarlist="{{tabbarlist}}"></tab-bar>
+</t-pull-down-refresh>

+ 0 - 35
Eservice/components/tabbar/index.js

@@ -1,35 +0,0 @@
-// components/tabbar/index.js
-const app = getApp()
-
-Component({
-  /**
-   * 组件的属性列表
-   */
-  properties: {
-    tabbarlist:{
-      value:[],
-      type:Array
-    }
-  },
-
-  /**
-   * 组件的初始数据
-   */
-  data: {
-
-  },
-
-  /**
-   * 组件的方法列表
-   */
-  methods: {
-    onChange (e) {
-      let path = e.detail.value
-      let page = getCurrentPages()[getCurrentPages().length - 1]
-      if (path.includes(page.route)) return false
-      wx.redirectTo({
-        url: path,
-      })
-    }
-  }
-})

+ 0 - 7
Eservice/components/tabbar/index.json

@@ -1,7 +0,0 @@
-{
-  "component": true,
-  "usingComponents": {
-    "t-tab-bar": "weui-miniprogram/tab-bar/tab-bar",
-    "t-tab-bar-item": "weui-miniprogram/tab-bar-item/tab-bar-item"
-  }
-}

+ 0 - 5
Eservice/components/tabbar/index.wxml

@@ -1,5 +0,0 @@
-<!--components/tabbar/index.wxml-->
-<t-tab-bar value="{{value}}" bindchange="onChange" theme="tag" split="{{false}}">
-  <t-tab-bar-item wx:for="{{tabbarlist}}" icon="file" wx:key="index" value="{{item.path}}"> {{item.title}}</t-tab-bar-item>
-  <t-tab-bar-item icon="user" value="/pages/userCenter/index" icon="user">我的</t-tab-bar-item>
-</t-tab-bar>

+ 0 - 4
Eservice/components/tabbar/index.wxss

@@ -1,4 +0,0 @@
-/* components/tabbar/index.wxss */
-t-tab-bar-item{
-  flex:1
-}

+ 0 - 116
Eservice/login/login.js

@@ -1,116 +0,0 @@
-// pages/login/login.js
-import api from '../api/api'
-const md5 = require('../../utils/md5');
-const app = getApp()
-Page({
-
-  /**
-   * 页面的初始数据
-   */
-  data: {
-    form:{
-      username:'000175',
-      password:'123456789'
-    }
-  },
-  inputChange (data) {
-    let name = data.currentTarget.dataset.name
-    this.data.form[name] = data.detail.value
-    this.setData({
-      form:this.data.form
-    })
-  },
-  async login () {
-    const res = await api._post({
-      "accountno": this.data.form.username,
-      "password": md5.hexMD5(this.data.form.password),
-      "systemclient":"wechatsaletool"
-    },'/loginbyaccount')
-    if (res.account_list.length === 1) {
-      wx.setStorageSync('token', res.account_list[0].token)
-      this.query_userauth()
-    }
-  },
-  async query_userauth() {
-    const res = await api._post({
-        "classname": "sysmanage.develop.userauth.userauth",
-        "method": "query_userauth",
-        content: {
-            nocache: true
-        }
-    })
-    if (res.msg != '成功') return wx.showToast({
-        title: '权限查询失败,请稍后再试',
-        icon: "none"
-    })
-    app.globalData.tabbarList = res.data[0].modules[0].apps.map(e=>{
-      return {
-        title:e.meta.title,
-        name:e.name,
-        path:e.path
-      }
-    })
-    console.log(app.globalData.tabbarList)
-
-    wx.setStorageSync('userauth', res.data);
-
-    wx.navigateTo({
-      url: app.globalData.tabbarList[0].path,
-    })
-  },
-  /**
-   * 生命周期函数--监听页面加载
-   */
-  onLoad(options) {
-
-  },
-
-  /**
-   * 生命周期函数--监听页面初次渲染完成
-   */
-  onReady() {
-
-  },
-
-  /**
-   * 生命周期函数--监听页面显示
-   */
-  onShow() {
-
-  },
-
-  /**
-   * 生命周期函数--监听页面隐藏
-   */
-  onHide() {
-
-  },
-
-  /**
-   * 生命周期函数--监听页面卸载
-   */
-  onUnload() {
-
-  },
-
-  /**
-   * 页面相关事件处理函数--监听用户下拉动作
-   */
-  onPullDownRefresh() {
-
-  },
-
-  /**
-   * 页面上拉触底事件的处理函数
-   */
-  onReachBottom() {
-
-  },
-
-  /**
-   * 用户点击右上角分享
-   */
-  onShareAppMessage() {
-
-  }
-})

+ 0 - 1
Eservice/saler/serviceBillList/index.json

@@ -2,7 +2,6 @@
   "usingComponents": {
     "t-fab": "weui-miniprogram/fab/fab",
     "t-card": "../../components/listCard/listCard",
-    "tab-bar":"../../components/tabbar/index",
     "t-tabs": "weui-miniprogram/tabs/tabs",
     "t-tab-panel": "weui-miniprogram/tab-panel/tab-panel"
   }

+ 17 - 66
Eservice/workOrder/index.js

@@ -22,97 +22,48 @@ Page({
     duration: 500,
     interval: 5000,
     swiperList,
-    list:[],
-    pageNumber:1,
-    pageSize:20,
-    status:'待接单'
+    list: [],
+    pageNumber: 1,
+    pageSize: 20,
+    status: '待接单'
   },
-  async listData () {
+  async listData() {
     const res = await api._post({
       "id": "20230208140203",
-      "version":1,
+      "version": 1,
       "content": {
-        "pageNumber":this.data.pageNumber,
-        "pageSize":this.data.pageSize,
-        "where":{
-          "status":this.data.status,
-          "condition":""
+        "pageNumber": this.data.pageNumber,
+        "pageSize": this.data.pageSize,
+        "where": {
+          "status": this.data.status,
+          "condition": ""
         }
       }
     })
     if (res.data.length === 0) return false
     this.setData({
-      list:this.data.list.concat(res.data)
+      list: this.data.list.concat(res.data)
     })
   },
-  onTabsChange (e) {
+  onTabsChange(e) {
     this.data.status = e.detail.label
     this.onPullDownRefresh()
   },
-  /**
-   * 生命周期函数--监听页面加载
-   */
   onLoad(options) {
     this.listData()
-    this.setData({
-      tabbarlist:app.globalData.tabbarList
-    })
-  },
-
-  /**
-   * 生命周期函数--监听页面初次渲染完成
-   */
-  onReady() {
-
-  },
-
-  /**
-   * 生命周期函数--监听页面显示
-   */
-  onShow() {
-
-  },
-
-  /**
-   * 生命周期函数--监听页面隐藏
-   */
-  onHide() {
-
   },
-
-  /**
-   * 生命周期函数--监听页面卸载
-   */
-  onUnload() {
-
-  },
-
-  /**
-   * 页面相关事件处理函数--监听用户下拉动作
-   */
   onPullDownRefresh() {
     this.setData({
-      pageNumber:1,
-      list:[]
+      pageNumber: 1,
+      list: []
     })
     this.listData()
   },
-
-  /**
-   * 页面上拉触底事件的处理函数
-   */
   onReachBottom() {
-    this.data.pageNumber ++
+    this.data.pageNumber++
     this.setData({
-      pageNumber:this.data.pageNumber,
+      pageNumber: this.data.pageNumber,
     })
     this.listData()
   },
-
-  /**
-   * 用户点击右上角分享
-   */
-  onShareAppMessage() {
-
-  }
 })

+ 1 - 2
Eservice/workOrder/index.json

@@ -4,7 +4,6 @@
     "t-swiper-nav": "weui-miniprogram/swiper-nav/swiper-nav",
     "t-tabs": "weui-miniprogram/tabs/tabs",
     "t-tab-panel": "weui-miniprogram/tab-panel/tab-panel",
-    "card": "../components/listCard/listCard",
-    "tab-bar": "../components/tabbar/index"
+    "card": "../components/listCard/listCard"
   }
 }

+ 1 - 2
Eservice/workOrder/index.wxml

@@ -38,5 +38,4 @@
     </card>
   </view>
 </view>
-</t-pull-down-refresh>
-<tab-bar tabbarlist="{{tabbarlist}}"></tab-bar>
+</t-pull-down-refresh>

+ 1 - 5
Eservice/workerLeader/serviceBillList/index.js

@@ -21,8 +21,7 @@ Page({
           "status":'待指派'
         }
       }
-    },
-    tabbarlist:[]
+    }
   },
   async listData () {
     const res = await api._post(this.data.param)
@@ -58,9 +57,6 @@ Page({
    */
   onLoad(options) {
     // this.listData()
-    this.setData({
-      tabbarlist:app.globalData.tabbarList
-    })
   },
 
   /**

+ 0 - 1
Eservice/workerLeader/serviceBillList/index.json

@@ -2,7 +2,6 @@
   "usingComponents": {
     "t-fab": "weui-miniprogram/fab/fab",
     "t-card": "../../components/listCard/listCard",
-    "tab-bar":"../../components/tabbar/index",
     "t-tabs": "weui-miniprogram/tabs/tabs",
     "t-tab-panel": "weui-miniprogram/tab-panel/tab-panel"
   }

+ 1 - 2
Eservice/workerLeader/serviceBillList/index.wxml

@@ -38,5 +38,4 @@
   </t-card>
   <t-fab icon="add" style="position:fixed;right:16px;bottom:72px" bind:click="handleClick" aria-label="增加"></t-fab>
 </view>
-</t-pull-down-refresh>
-<tab-bar tabbarlist="{{tabbarlist}}"></tab-bar>
+</t-pull-down-refresh>