diff --git a/App.vue b/App.vue
index c9a945c..c02357a 100644
--- a/App.vue
+++ b/App.vue
@@ -10,6 +10,9 @@ export default {
});
}
console.log("App Launch",value);
+ const userInfo = uni.getStorageSync("userinfo");
+ // 处理用户数据
+ this.$store.dispatch("changeTabbar", userInfo.role_id);
// this.$common.getStorage("user").then((res) => {
// if (res == null || res == "") {
// uni.redirectTo({
diff --git a/api/api.js b/api/api.js
index dbec00a..a7c150b 100644
--- a/api/api.js
+++ b/api/api.js
@@ -57,7 +57,7 @@ const install = (Vue, vm) => {
// 评价提交
let evaluateSign = (params) => http.post('/workOrder/evaluateSign', params, {
authorization: false,
- isparams: true
+ isparams: false
})
// 将各个定义的接口名称,统一放进对象挂载到vm.$u.api(因为vm就是this,也即this.$u.api)下
vm.$u.api = { getTenantInfo, login, logout, register, getworkbench, getLoginRecords, getEditRecords, subEditRecords, getChildList, getDeviceList,workOrderSave,getWorkOrderRecords,getBreakdownInfo,workOrderupdate,evaluateSign };
diff --git a/common/betone_components/betone-list.vue b/common/betone_components/betone-list.vue
new file mode 100644
index 0000000..a77eda0
--- /dev/null
+++ b/common/betone_components/betone-list.vue
@@ -0,0 +1,391 @@
+
+
+
+
+
+
+
+
+
+
+
+
+ 单号:{{ item.requirementCode }}
+ {{ item.fillingTime }}
+
+
+ {{ item.reportUnit }}
+ 单号:{{ item.requirementCode }} {{ item.fillingTime }}
+
+
+
+
+
+
+
+
+
+
+ 提报类型:{{ item.faultType }}
+
+ {{ item.faultDescribe }}
+
+
+
+ 查看
+
+
+ 提报
+ 修改
+
+
+
+ 查看位置
+
+
+
+ 评价
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pages.json b/pages.json
index 2b402d4..c9602cf 100644
--- a/pages.json
+++ b/pages.json
@@ -76,11 +76,7 @@
"navigationBarBackgroundColor": "rgba(248,248,248,1)",
"app-plus": {
"titleNView": {
- "backButton":{
- "color":"#FF0000",
- "colorPressed":"#660000",
- "fontSize":"32px"
- }
+
}
}
}
@@ -92,13 +88,9 @@
"enablePullDownRefresh": false,
"navigationBarTextStyle": "black",
"navigationBarBackgroundColor": "rgba(248,248,248,1)",
- "app-plus": {
+ "app-plus": {
"titleNView": {
- "backButton":{
- "color":"#FF0000",
- "colorPressed":"#660000",
- "fontSize":"32px"
- }
+
}
}
}
@@ -106,8 +98,8 @@
{
"path": "pages/order/tasking",
"style": {
- "onReachBottomDistance": 50,
- "enablePullDownRefresh": true
+ "navigationStyle": "custom",
+ "navigationBarTextStyle": "white"
}
},
{
diff --git a/pages/my/my.vue b/pages/my/my.vue
index 8a16b7a..3f00cea 100644
--- a/pages/my/my.vue
+++ b/pages/my/my.vue
@@ -2,7 +2,7 @@