1/2新增修改

This commit is contained in:
FrancisHu 2024-01-02 13:26:42 +08:00
parent 4ad32263d9
commit 22d722fe66
28 changed files with 3035 additions and 3128 deletions

View File

@ -1,27 +0,0 @@
import {
login,
index,
user,
fetchMaterial,
fetchExam,
fetchMaterialOutStore,
exitMaterial,
fix,
exitExam,
repairTestInStore,
backMaterialReceive
} from './apiTest.js'
export default{
login: login,
index: index,
user: user,
fetchMaterial: fetchMaterial,
fetchExam: fetchExam,
fetchMaterialOutStore: fetchMaterialOutStore,
exitMaterial: exitMaterial,
fix: fix,
exitExam: exitExam,
repairTestInStore: repairTestInStore,
backMaterialReceive: backMaterialReceive
}

View File

@ -233,6 +233,14 @@ const fix = {
header
)
},
async completeFix (data = {} , header = {}){
return await Http.post(
HttpConfig.basePath,
HttpConfig.serviceUrl.fix.completeFix,
data,
header
)
},
}
const repairTestInStore = {
@ -328,7 +336,7 @@ const backMaterialReceive = {
// fetchMaterialOutStore
}
export {
export default{
login,
index,
user,

View File

@ -74,6 +74,7 @@ class HttpConfig {
fixList: '/repair/getAppRepairTaskList', // 获取维修列表
fixDetail: '/repair/getAppRepairMaTypeList', // 获取维修明细
fixExam: '/repair/endRepairTask', // 提交维修审核
completeFix: '/repair/completeRepair', // 维修完成
},
repairTestInStore: {
repairTestInStoreList: '/RepairTestInput/getAppRepairedList', // 获取修试后入库列表

View File

@ -8,7 +8,7 @@ import {
import Vue from 'vue'
import uView from '@/uni_modules/uview-ui'
import './uni.promisify.adaptor'
import $api from "@/apis/_.js"
import $api from '@/apis/apis.js'
Vue.config.productionTip = false
Vue.prototype.$api = $api

View File

@ -72,18 +72,19 @@
"uniStatistics" : {
"enable" : false
},
"h5" : {
"devServer":{
"proxy":{
"^/api":{
"target":"http://112.29.103.165:21624",
"ws": true,
"changeOrigin": true,
"pathRewrite":{"^/api":""}
}
}
}
},
"h5" : {
"devServer" : {
"proxy" : {
"^/api" : {
"target" : "http://112.29.103.165:21624",
"ws" : true,
"changeOrigin" : true,
"pathRewrite" : {
"^/api" : ""
}
}
}
}
},
"vueVersion" : "2"
}

View File

@ -205,6 +205,7 @@
width: 100%;
box-sizing: border-box;
padding: 20rpx 40rpx;
background-color: #fff;
display: flex;
justify-content: flex-end;
border-top: 2px solid #F6F8FF;

View File

@ -8,7 +8,7 @@
</swiper>
</view>
<h4 class="device-name">{{ deviceName }}</h4>
<h4 class="device-price">{{ devicePrice }}</h4>
<!-- <h4 class="device-price">{{ devicePrice }}</h4> -->
<h5 class="tit">规格型号</h5>
<view class="drop-menu">
<uni-data-select

View File

@ -327,7 +327,7 @@ import { basePath } from '../../public'
},
onShow() {
let that = this
that.$api.fetchExam.fetchExamList({}, null).then(res => {
that.$api.fetchExam.fetchExamList().then(res => {
console.log(res);
if (res.data.code == 200) {
for (let i = 0; i < res.data.data.rows.length; i++) {

View File

@ -56,9 +56,9 @@
<view class="name">
{{ item.typeName }}
</view>
<view class="price">
<!-- <view class="price">
<span style="font-weight: bold; color: #F29907;"></span>{{ item.leasePrice }}
</view>
</view> -->
</view>
</view>

View File

@ -76,7 +76,7 @@
</view>
<view>
<h4>出库数量</h4>
<uni-number-box v-model="multiNum" @change="multiNumChange" :min="1" :max="infoList.outNum"/>
<uni-number-box v-model="multiNum" @change="multiNumChange" :min="0" :max="infoList.outNum"/>
</view>
</view>
<view
@ -100,7 +100,7 @@
codeVal: '',
manageType: '',
infoList: '',
multiNum: 1,
multiNum: 0,
subList: {},
taskId:null
}
@ -145,32 +145,39 @@
},
multiOut () {
let that = this
that.subList = {
parentId: that.infoList.parenntId,
typeId: that.infoList.typeId,
outNum: that.multiNum,
companyId: uni.getStorageSync('userInfo').sysUser.companyId
}
that.$api.fetchMaterialOutStore.subOutStore(that.subList).then(res => {
if (res.data.code == 200) {
uni.showToast({
icon: 'none',
title: '出库成功',
duration:2000,
success: () => {
this.$refs.popup2.close()
that.init()
}
})
} else {
uni.showToast({
icon: 'none',
title: res.data.msg
})
if (that.multiNum == 0) {
uni.showToast({
icon: 'none',
title: '未选择出库数量!'
})
} else {
that.subList = {
parentId: that.infoList.parenntId,
typeId: that.infoList.typeId,
outNum: that.multiNum,
companyId: uni.getStorageSync('userInfo').sysUser.companyId
}
}).catch(err => {
console.log(err);
})
that.$api.fetchMaterialOutStore.subOutStore(that.subList).then(res => {
if (res.data.code == 200) {
uni.showToast({
icon: 'none',
title: '出库成功',
duration:2000,
success: () => {
that.$refs.popup2.close()
that.init()
}
})
} else {
uni.showToast({
icon: 'none',
title: res.data.msg
})
}
}).catch(err => {
console.log(err);
})
}
},
@ -181,6 +188,7 @@
taskId:this.taskId
}
const res = await that.$api.fetchExam.fetchExamList(params)
console.log(res);
that.fetchList = []
if (res.data.code == 200) {
for (let i = 0; i < res.data.data.rows[0].leaseApplyInfoList.length; i++) {

View File

@ -272,7 +272,7 @@ import { basePath } from '../../public'
onShow() {
let that = this
//
that.$api.fix.fixList({}, null).then(res => {
that.$api.fix.fixList().then(res => {
console.log(res);
if (res.data.code == 200) {
for (let i = 0; i < res.data.data.length; i++) {

View File

@ -150,21 +150,14 @@ import { basePath } from '../../public';
that.idList.push(that.fetchList[i].id)
}
//
uni.request({
url: basePath + '/repair/completeRepair',
method: 'POST',
header: {
'content-type': 'application/json',
'Authorization': uni.getStorageSync('token')
},
data: that.idList,
success: (res) => {
console.log(res);
uni.showToast({
icon: 'none',
title: res.data.msg
})
}
that.$api.fix.completeFix(that.idList).then(res => {
console.log(res);
uni.showToast({
icon: 'none',
title: res.data.msg
})
}).catch(err => {
console.log(err);
})
}
},
@ -174,7 +167,7 @@ import { basePath } from '../../public';
//
that.$api.fix.fixDetail({
taskId: params.id
}, null).then(res => {
}).then(res => {
console.log(res);
if (res.data.code == 200) {
that.fetchList = res.data.data
@ -183,7 +176,7 @@ import { basePath } from '../../public';
console.log(!that.btnStatus);
}
}).catch(err => {
console.log(err);
})
}
}

View File

@ -12,7 +12,7 @@
<view class="text">
<text>{{item.name}}</text>
<text>规格{{item.spec}}</text>
<text>{{item.price}}</text>
<!-- <text>{{item.price}}</text> -->
</view>
</view>
<view class="action">
@ -31,10 +31,10 @@
<text>全选</text>
</view>
<view class="total">
<view class="price">
<!-- <view class="price">
<text>总计</text>
<text>{{totalPrice}}</text>
</view>
</view> -->
<view class="bill" @click="finishCart">
<text>确认申请</text>
</view>
@ -479,7 +479,7 @@ import { basePath } from '../../public';
}
.dataInfo .dataList .details .text text:last-child {
color: red;
/* color: red; */
font-size: 25rpx;
}

Binary file not shown.

View File

@ -1 +1 @@
https://ide.dcloud.net.cn/build/download/7bfcfd90-a1ac-11ee-aa87-21e31a2d1d8f
https://ide.dcloud.net.cn/build/download/19295bf0-a478-11ee-a0ba-6377b82c8237

View File

@ -1 +1 @@
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

View File

@ -1,8 +1,8 @@
var isReady=false;var onReadyCallbacks=[];
var isServiceReady=false;var onServiceReadyCallbacks=[];
var __uniConfig = {"pages":["pages/index/index","pages/user/user","pages/workSpace/workSpace","pages/login/login","pages/fetchMaterial/fetchMaterial","pages/exitMaterial/exitMaterial","pages/workFetchMaterial/workFetchMaterial","pages/workExitMaterial/workExitMaterial","pages/deviceDetail/deviceDetail","pages/orderCart/orderCart","pages/fetchExam/fetchExam","pages/exitMaterialDetail/exitMaterialDetail","pages/fetchMaterialDetail/fetchMaterialDetail","pages/exitExam/exitExam","pages/newInStore/newInStore","pages/newBuyDetail/newBuyDetail","pages/newInAfterScan/newInAfterScan","pages/fix/fix","pages/fixDetail/fixDetail","pages/innerFix/innerFix","pages/returnFix/returnFix","pages/waitCrash/waitCrash","pages/backMaterialInStore/backMaterialInStore","pages/backMaterialInStoreDetail/backMaterialInStoreDetail","pages/repairTestInStore/repairTestInStore","pages/fetchMaterialOutStore/fetchMaterialOutStore","pages/backMaterialReceive/backMaterialReceive","pages/repairTestInStoreDetail/repairTestInStoreDetail","pages/exitMaterialSelect/exitMaterialSelect","pages/exitExamDetail/exitExamDetail","pages/crashExam/crashExam","pages/testExam/testExam","pages/fetchMaterialOutStoreDetail/fetchMaterialOutStoreDetail","pages/codeOutStore/codeOutStore","pages/scanOutStore/scanOutStore","pages/backMaterialReceiveDetail/backMaterialReceiveDetail","pages/scanReceive/scanReceive","pages/codeReceive/codeReceive"],"window":{"navigationBarTextStyle":"black","navigationBarTitleText":"uni-app","navigationBarBackgroundColor":"#F8F8F8","backgroundColor":"#F8F8F8"},"tabBar":{"color":"#2c2c2c","selectedColor":"#1296db","borderStyle":"black","backgroundColor":"#FFFFFF","iconWidth":"24px","list":[{"pagePath":"pages/index/index","iconPath":"static/home.png","selectedIconPath":"static/homeSelected.png","text":"首页"},{"pagePath":"pages/workSpace/workSpace","iconPath":"static/workSpace.png","selectedIconPath":"static/workSpaceSelected.png","text":"工作台"},{"pagePath":"pages/user/user","iconPath":"static/my.png","selectedIconPath":"static/mySelected.png","text":"个人中心"}]},"darkmode":false,"nvueCompiler":"uni-app","nvueStyleCompiler":"uni-app","renderer":"auto","splashscreen":{"alwaysShowBeforeRender":true,"autoclose":false},"appname":"SmartStorage","compilerVersion":"3.8.7","entryPagePath":"pages/index/index","networkTimeout":{"request":60000,"connectSocket":60000,"uploadFile":60000,"downloadFile":60000}};
var __uniRoutes = [{"path":"/pages/index/index","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"首页"}},{"path":"/pages/user/user","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"个人中心"}},{"path":"/pages/workSpace/workSpace","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"工作台"}},{"path":"/pages/login/login","meta":{},"window":{"navigationBarTitleText":"登录"}},{"path":"/pages/fetchMaterial/fetchMaterial","meta":{},"window":{"navigationStyle":"custom"}},{"path":"/pages/exitMaterial/exitMaterial","meta":{},"window":{"navigationBarTitleText":"退料申请","titleNView":{"buttons":[{"float":"right","text":"新增","fontSize":"16px","onclick":"Function"}]}}},{"path":"/pages/workFetchMaterial/workFetchMaterial","meta":{},"window":{"navigationBarTitleText":"工器具领料申请"}},{"path":"/pages/workExitMaterial/workExitMaterial","meta":{},"window":{"navigationBarTitleText":"工器具退料申请"}},{"path":"/pages/deviceDetail/deviceDetail","meta":{},"window":{"navigationBarTitleText":"机具详情"}},{"path":"/pages/orderCart/orderCart","meta":{},"window":{"navigationBarTitleText":"预约车","titleNView":{"buttons":[{"float":"right","text":"删除","fontSize":"16px","onclick":"Function"}]}}},{"path":"/pages/fetchExam/fetchExam","meta":{},"window":{"navigationBarTitleText":"领料审批"}},{"path":"/pages/exitMaterialDetail/exitMaterialDetail","meta":{},"window":{"navigationBarTitleText":"退料申请明细"}},{"path":"/pages/fetchMaterialDetail/fetchMaterialDetail","meta":{},"window":{"navigationBarTitleText":"领料明细"}},{"path":"/pages/exitExam/exitExam","meta":{},"window":{"navigationBarTitleText":"退料审批"}},{"path":"/pages/newInStore/newInStore","meta":{},"window":{"navigationBarTitleText":"新购入库"}},{"path":"/pages/newBuyDetail/newBuyDetail","meta":{},"window":{"navigationBarTitleText":"新购明细"}},{"path":"/pages/newInAfterScan/newInAfterScan","meta":{},"window":{"navigationBarTitleText":"新购机具详情"}},{"path":"/pages/fix/fix","meta":{},"window":{"navigationBarTitleText":"维修"}},{"path":"/pages/fixDetail/fixDetail","meta":{},"window":{"navigationBarTitleText":"维修明细"}},{"path":"/pages/innerFix/innerFix","meta":{},"window":{"navigationBarTitleText":"内部维修"}},{"path":"/pages/returnFix/returnFix","meta":{},"window":{"navigationBarTitleText":"返厂维修"}},{"path":"/pages/waitCrash/waitCrash","meta":{},"window":{"navigationBarTitleText":"待报废"}},{"path":"/pages/backMaterialInStore/backMaterialInStore","meta":{},"window":{"navigationBarTitleText":"退料入库"}},{"path":"/pages/backMaterialInStoreDetail/backMaterialInStoreDetail","meta":{},"window":{"navigationBarTitleText":"退料入库明细"}},{"path":"/pages/repairTestInStore/repairTestInStore","meta":{},"window":{"navigationBarTitleText":"修试入库"}},{"path":"/pages/fetchMaterialOutStore/fetchMaterialOutStore","meta":{},"window":{"navigationBarTitleText":"领料出库"}},{"path":"/pages/backMaterialReceive/backMaterialReceive","meta":{},"window":{"navigationBarTitleText":"退料接收"}},{"path":"/pages/repairTestInStoreDetail/repairTestInStoreDetail","meta":{},"window":{"navigationBarTitleText":"修试入库明细"}},{"path":"/pages/exitMaterialSelect/exitMaterialSelect","meta":{},"window":{"navigationBarTitleText":"退料物料选择"}},{"path":"/pages/exitExamDetail/exitExamDetail","meta":{},"window":{"navigationBarTitleText":"退料明细"}},{"path":"/pages/crashExam/crashExam","meta":{},"window":{"navigationBarTitleText":"报废审核"}},{"path":"/pages/testExam/testExam","meta":{},"window":{"navigationBarTitleText":"试验检验审核"}},{"path":"/pages/fetchMaterialOutStoreDetail/fetchMaterialOutStoreDetail","meta":{},"window":{"navigationBarTitleText":"领料出库明细"}},{"path":"/pages/codeOutStore/codeOutStore","meta":{},"window":{"navigationBarTitleText":"编码出库"}},{"path":"/pages/scanOutStore/scanOutStore","meta":{},"window":{"navigationBarTitleText":"二维码出库"}},{"path":"/pages/backMaterialReceiveDetail/backMaterialReceiveDetail","meta":{},"window":{"navigationBarTitleText":"退料接收明细"}},{"path":"/pages/scanReceive/scanReceive","meta":{},"window":{"navigationBarTitleText":"二维码接收"}},{"path":"/pages/codeReceive/codeReceive","meta":{},"window":{"navigationBarTitleText":"编码接收"}}];
var __uniConfig = {"pages":["pages/index/index","pages/user/user","pages/workSpace/workSpace","pages/login/login","pages/fetchMaterial/fetchMaterial","pages/exitMaterial/exitMaterial","pages/workFetchMaterial/workFetchMaterial","pages/workExitMaterial/workExitMaterial","pages/deviceDetail/deviceDetail","pages/orderCart/orderCart","pages/fetchExam/fetchExam","pages/exitMaterialDetail/exitMaterialDetail","pages/fetchMaterialDetail/fetchMaterialDetail","pages/exitExam/exitExam","pages/newInStore/newInStore","pages/newBuyDetail/newBuyDetail","pages/newInAfterScan/newInAfterScan","pages/fix/fix","pages/fixDetail/fixDetail","pages/innerFix/innerFix","pages/returnFix/returnFix","pages/waitCrash/waitCrash","pages/backMaterialInStore/backMaterialInStore","pages/backMaterialInStoreDetail/backMaterialInStoreDetail","pages/repairTestInStore/repairTestInStore","pages/fetchMaterialOutStore/fetchMaterialOutStore","pages/backMaterialReceive/backMaterialReceive","pages/repairTestInStoreDetail/repairTestInStoreDetail","pages/exitMaterialSelect/exitMaterialSelect","pages/exitExamDetail/exitExamDetail","pages/crashExam/crashExam","pages/testExam/testExam","pages/fetchMaterialOutStoreDetail/fetchMaterialOutStoreDetail","pages/codeOutStore/codeOutStore","pages/scanOutStore/scanOutStore","pages/backMaterialReceiveDetail/backMaterialReceiveDetail","pages/scanReceive/scanReceive","pages/codeReceive/codeReceive","pages/numReceive/numReceive"],"window":{"navigationBarTextStyle":"black","navigationBarTitleText":"uni-app","navigationBarBackgroundColor":"#F8F8F8","backgroundColor":"#F8F8F8"},"tabBar":{"color":"#2c2c2c","selectedColor":"#1296db","borderStyle":"black","backgroundColor":"#FFFFFF","iconWidth":"24px","list":[{"pagePath":"pages/index/index","iconPath":"static/home.png","selectedIconPath":"static/homeSelected.png","text":"首页"},{"pagePath":"pages/workSpace/workSpace","iconPath":"static/workSpace.png","selectedIconPath":"static/workSpaceSelected.png","text":"工作台"},{"pagePath":"pages/user/user","iconPath":"static/my.png","selectedIconPath":"static/mySelected.png","text":"个人中心"}]},"darkmode":false,"nvueCompiler":"uni-app","nvueStyleCompiler":"uni-app","renderer":"auto","splashscreen":{"alwaysShowBeforeRender":true,"autoclose":false},"appname":"SmartStorage","compilerVersion":"3.8.7","entryPagePath":"pages/index/index","networkTimeout":{"request":60000,"connectSocket":60000,"uploadFile":60000,"downloadFile":60000}};
var __uniRoutes = [{"path":"/pages/index/index","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"首页"}},{"path":"/pages/user/user","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"个人中心"}},{"path":"/pages/workSpace/workSpace","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"工作台"}},{"path":"/pages/login/login","meta":{},"window":{"navigationBarTitleText":"登录"}},{"path":"/pages/fetchMaterial/fetchMaterial","meta":{},"window":{"navigationStyle":"custom"}},{"path":"/pages/exitMaterial/exitMaterial","meta":{},"window":{"navigationBarTitleText":"退料申请","titleNView":{"buttons":[{"float":"right","text":"新增","fontSize":"16px","onclick":"Function"}]}}},{"path":"/pages/workFetchMaterial/workFetchMaterial","meta":{},"window":{"navigationBarTitleText":"工器具领料申请"}},{"path":"/pages/workExitMaterial/workExitMaterial","meta":{},"window":{"navigationBarTitleText":"工器具退料申请"}},{"path":"/pages/deviceDetail/deviceDetail","meta":{},"window":{"navigationBarTitleText":"机具详情"}},{"path":"/pages/orderCart/orderCart","meta":{},"window":{"navigationBarTitleText":"预约车","titleNView":{"buttons":[{"float":"right","text":"删除","fontSize":"16px","onclick":"Function"}]}}},{"path":"/pages/fetchExam/fetchExam","meta":{},"window":{"navigationBarTitleText":"领料审批"}},{"path":"/pages/exitMaterialDetail/exitMaterialDetail","meta":{},"window":{"navigationBarTitleText":"退料申请明细"}},{"path":"/pages/fetchMaterialDetail/fetchMaterialDetail","meta":{},"window":{"navigationBarTitleText":"领料明细"}},{"path":"/pages/exitExam/exitExam","meta":{},"window":{"navigationBarTitleText":"退料审批"}},{"path":"/pages/newInStore/newInStore","meta":{},"window":{"navigationBarTitleText":"新购入库"}},{"path":"/pages/newBuyDetail/newBuyDetail","meta":{},"window":{"navigationBarTitleText":"新购明细"}},{"path":"/pages/newInAfterScan/newInAfterScan","meta":{},"window":{"navigationBarTitleText":"新购机具详情"}},{"path":"/pages/fix/fix","meta":{},"window":{"navigationBarTitleText":"维修"}},{"path":"/pages/fixDetail/fixDetail","meta":{},"window":{"navigationBarTitleText":"维修明细"}},{"path":"/pages/innerFix/innerFix","meta":{},"window":{"navigationBarTitleText":"内部维修"}},{"path":"/pages/returnFix/returnFix","meta":{},"window":{"navigationBarTitleText":"返厂维修"}},{"path":"/pages/waitCrash/waitCrash","meta":{},"window":{"navigationBarTitleText":"待报废"}},{"path":"/pages/backMaterialInStore/backMaterialInStore","meta":{},"window":{"navigationBarTitleText":"退料入库"}},{"path":"/pages/backMaterialInStoreDetail/backMaterialInStoreDetail","meta":{},"window":{"navigationBarTitleText":"退料入库明细"}},{"path":"/pages/repairTestInStore/repairTestInStore","meta":{},"window":{"navigationBarTitleText":"修试入库"}},{"path":"/pages/fetchMaterialOutStore/fetchMaterialOutStore","meta":{},"window":{"navigationBarTitleText":"领料出库"}},{"path":"/pages/backMaterialReceive/backMaterialReceive","meta":{},"window":{"navigationBarTitleText":"退料接收"}},{"path":"/pages/repairTestInStoreDetail/repairTestInStoreDetail","meta":{},"window":{"navigationBarTitleText":"修试入库明细"}},{"path":"/pages/exitMaterialSelect/exitMaterialSelect","meta":{},"window":{"navigationBarTitleText":"退料物料选择"}},{"path":"/pages/exitExamDetail/exitExamDetail","meta":{},"window":{"navigationBarTitleText":"退料明细"}},{"path":"/pages/crashExam/crashExam","meta":{},"window":{"navigationBarTitleText":"报废审核"}},{"path":"/pages/testExam/testExam","meta":{},"window":{"navigationBarTitleText":"试验检验审核"}},{"path":"/pages/fetchMaterialOutStoreDetail/fetchMaterialOutStoreDetail","meta":{},"window":{"navigationBarTitleText":"领料出库明细"}},{"path":"/pages/codeOutStore/codeOutStore","meta":{},"window":{"navigationBarTitleText":"编码出库"}},{"path":"/pages/scanOutStore/scanOutStore","meta":{},"window":{"navigationBarTitleText":"二维码出库"}},{"path":"/pages/backMaterialReceiveDetail/backMaterialReceiveDetail","meta":{},"window":{"navigationBarTitleText":"退料接收明细","titleNView":{"buttons":[{"text":"结束任务","fontSize":"12px","color":"#4e6ef2","width":"auto"}]}}},{"path":"/pages/scanReceive/scanReceive","meta":{},"window":{"navigationBarTitleText":"二维码接收"}},{"path":"/pages/codeReceive/codeReceive","meta":{},"window":{"navigationBarTitleText":"编码接收"}},{"path":"/pages/numReceive/numReceive","meta":{},"window":{"navigationBarTitleText":"数量接收"}}];
__uniConfig.onReady=function(callback){if(__uniConfig.ready){callback()}else{onReadyCallbacks.push(callback)}};Object.defineProperty(__uniConfig,"ready",{get:function(){return isReady},set:function(val){isReady=val;if(!isReady){return}const callbacks=onReadyCallbacks.slice(0);onReadyCallbacks.length=0;callbacks.forEach(function(callback){callback()})}});
__uniConfig.onServiceReady=function(callback){if(__uniConfig.serviceReady){callback()}else{onServiceReadyCallbacks.push(callback)}};Object.defineProperty(__uniConfig,"serviceReady",{get:function(){return isServiceReady},set:function(val){isServiceReady=val;if(!isServiceReady){return}const callbacks=onServiceReadyCallbacks.slice(0);onServiceReadyCallbacks.length=0;callbacks.forEach(function(callback){callback()})}});
service.register("uni-app-config",{create(a,b,c){if(!__uniConfig.viewport){var d=b.weex.config.env.scale,e=b.weex.config.env.deviceWidth,f=Math.ceil(e/d);Object.assign(__uniConfig,{viewport:f,defaultFontSize:Math.round(f/20)})}return{instance:{__uniConfig:__uniConfig,__uniRoutes:__uniRoutes,global:void 0,window:void 0,document:void 0,frames:void 0,self:void 0,location:void 0,navigator:void 0,localStorage:void 0,history:void 0,Caches:void 0,screen:void 0,alert:void 0,confirm:void 0,prompt:void 0,fetch:void 0,XMLHttpRequest:void 0,WebSocket:void 0,webkit:void 0,print:void 0}}}});

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1,8 +1,8 @@
var isReady=false;var onReadyCallbacks=[];
var isServiceReady=false;var onServiceReadyCallbacks=[];
var __uniConfig = {"pages":["pages/index/index","pages/user/user","pages/workSpace/workSpace","pages/login/login","pages/fetchMaterial/fetchMaterial","pages/exitMaterial/exitMaterial","pages/workFetchMaterial/workFetchMaterial","pages/workExitMaterial/workExitMaterial","pages/deviceDetail/deviceDetail","pages/orderCart/orderCart","pages/fetchExam/fetchExam","pages/exitMaterialDetail/exitMaterialDetail","pages/fetchMaterialDetail/fetchMaterialDetail","pages/exitExam/exitExam","pages/newInStore/newInStore","pages/newBuyDetail/newBuyDetail","pages/newInAfterScan/newInAfterScan","pages/fix/fix","pages/fixDetail/fixDetail","pages/innerFix/innerFix","pages/returnFix/returnFix","pages/waitCrash/waitCrash","pages/backMaterialInStore/backMaterialInStore","pages/backMaterialInStoreDetail/backMaterialInStoreDetail","pages/repairTestInStore/repairTestInStore","pages/fetchMaterialOutStore/fetchMaterialOutStore","pages/backMaterialReceive/backMaterialReceive","pages/repairTestInStoreDetail/repairTestInStoreDetail","pages/exitMaterialSelect/exitMaterialSelect","pages/exitExamDetail/exitExamDetail","pages/crashExam/crashExam","pages/testExam/testExam","pages/fetchMaterialOutStoreDetail/fetchMaterialOutStoreDetail","pages/codeOutStore/codeOutStore","pages/scanOutStore/scanOutStore","pages/backMaterialReceiveDetail/backMaterialReceiveDetail","pages/scanReceive/scanReceive","pages/codeReceive/codeReceive"],"window":{"navigationBarTextStyle":"black","navigationBarTitleText":"uni-app","navigationBarBackgroundColor":"#F8F8F8","backgroundColor":"#F8F8F8"},"tabBar":{"color":"#2c2c2c","selectedColor":"#1296db","borderStyle":"black","backgroundColor":"#FFFFFF","iconWidth":"24px","list":[{"pagePath":"pages/index/index","iconPath":"static/home.png","selectedIconPath":"static/homeSelected.png","text":"首页"},{"pagePath":"pages/workSpace/workSpace","iconPath":"static/workSpace.png","selectedIconPath":"static/workSpaceSelected.png","text":"工作台"},{"pagePath":"pages/user/user","iconPath":"static/my.png","selectedIconPath":"static/mySelected.png","text":"个人中心"}]},"darkmode":false,"nvueCompiler":"uni-app","nvueStyleCompiler":"uni-app","renderer":"auto","splashscreen":{"alwaysShowBeforeRender":true,"autoclose":false},"appname":"SmartStorage","compilerVersion":"3.8.7","entryPagePath":"pages/index/index","networkTimeout":{"request":60000,"connectSocket":60000,"uploadFile":60000,"downloadFile":60000}};
var __uniRoutes = [{"path":"/pages/index/index","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"首页"}},{"path":"/pages/user/user","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"个人中心"}},{"path":"/pages/workSpace/workSpace","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"工作台"}},{"path":"/pages/login/login","meta":{},"window":{"navigationBarTitleText":"登录"}},{"path":"/pages/fetchMaterial/fetchMaterial","meta":{},"window":{"navigationStyle":"custom"}},{"path":"/pages/exitMaterial/exitMaterial","meta":{},"window":{"navigationBarTitleText":"退料申请","titleNView":{"buttons":[{"float":"right","text":"新增","fontSize":"16px","onclick":"Function"}]}}},{"path":"/pages/workFetchMaterial/workFetchMaterial","meta":{},"window":{"navigationBarTitleText":"工器具领料申请"}},{"path":"/pages/workExitMaterial/workExitMaterial","meta":{},"window":{"navigationBarTitleText":"工器具退料申请"}},{"path":"/pages/deviceDetail/deviceDetail","meta":{},"window":{"navigationBarTitleText":"机具详情"}},{"path":"/pages/orderCart/orderCart","meta":{},"window":{"navigationBarTitleText":"预约车","titleNView":{"buttons":[{"float":"right","text":"删除","fontSize":"16px","onclick":"Function"}]}}},{"path":"/pages/fetchExam/fetchExam","meta":{},"window":{"navigationBarTitleText":"领料审批"}},{"path":"/pages/exitMaterialDetail/exitMaterialDetail","meta":{},"window":{"navigationBarTitleText":"退料申请明细"}},{"path":"/pages/fetchMaterialDetail/fetchMaterialDetail","meta":{},"window":{"navigationBarTitleText":"领料明细"}},{"path":"/pages/exitExam/exitExam","meta":{},"window":{"navigationBarTitleText":"退料审批"}},{"path":"/pages/newInStore/newInStore","meta":{},"window":{"navigationBarTitleText":"新购入库"}},{"path":"/pages/newBuyDetail/newBuyDetail","meta":{},"window":{"navigationBarTitleText":"新购明细"}},{"path":"/pages/newInAfterScan/newInAfterScan","meta":{},"window":{"navigationBarTitleText":"新购机具详情"}},{"path":"/pages/fix/fix","meta":{},"window":{"navigationBarTitleText":"维修"}},{"path":"/pages/fixDetail/fixDetail","meta":{},"window":{"navigationBarTitleText":"维修明细"}},{"path":"/pages/innerFix/innerFix","meta":{},"window":{"navigationBarTitleText":"内部维修"}},{"path":"/pages/returnFix/returnFix","meta":{},"window":{"navigationBarTitleText":"返厂维修"}},{"path":"/pages/waitCrash/waitCrash","meta":{},"window":{"navigationBarTitleText":"待报废"}},{"path":"/pages/backMaterialInStore/backMaterialInStore","meta":{},"window":{"navigationBarTitleText":"退料入库"}},{"path":"/pages/backMaterialInStoreDetail/backMaterialInStoreDetail","meta":{},"window":{"navigationBarTitleText":"退料入库明细"}},{"path":"/pages/repairTestInStore/repairTestInStore","meta":{},"window":{"navigationBarTitleText":"修试入库"}},{"path":"/pages/fetchMaterialOutStore/fetchMaterialOutStore","meta":{},"window":{"navigationBarTitleText":"领料出库"}},{"path":"/pages/backMaterialReceive/backMaterialReceive","meta":{},"window":{"navigationBarTitleText":"退料接收"}},{"path":"/pages/repairTestInStoreDetail/repairTestInStoreDetail","meta":{},"window":{"navigationBarTitleText":"修试入库明细"}},{"path":"/pages/exitMaterialSelect/exitMaterialSelect","meta":{},"window":{"navigationBarTitleText":"退料物料选择"}},{"path":"/pages/exitExamDetail/exitExamDetail","meta":{},"window":{"navigationBarTitleText":"退料明细"}},{"path":"/pages/crashExam/crashExam","meta":{},"window":{"navigationBarTitleText":"报废审核"}},{"path":"/pages/testExam/testExam","meta":{},"window":{"navigationBarTitleText":"试验检验审核"}},{"path":"/pages/fetchMaterialOutStoreDetail/fetchMaterialOutStoreDetail","meta":{},"window":{"navigationBarTitleText":"领料出库明细"}},{"path":"/pages/codeOutStore/codeOutStore","meta":{},"window":{"navigationBarTitleText":"编码出库"}},{"path":"/pages/scanOutStore/scanOutStore","meta":{},"window":{"navigationBarTitleText":"二维码出库"}},{"path":"/pages/backMaterialReceiveDetail/backMaterialReceiveDetail","meta":{},"window":{"navigationBarTitleText":"退料接收明细"}},{"path":"/pages/scanReceive/scanReceive","meta":{},"window":{"navigationBarTitleText":"二维码接收"}},{"path":"/pages/codeReceive/codeReceive","meta":{},"window":{"navigationBarTitleText":"编码接收"}}];
var __uniConfig = {"pages":["pages/index/index","pages/user/user","pages/workSpace/workSpace","pages/login/login","pages/fetchMaterial/fetchMaterial","pages/exitMaterial/exitMaterial","pages/workFetchMaterial/workFetchMaterial","pages/workExitMaterial/workExitMaterial","pages/deviceDetail/deviceDetail","pages/orderCart/orderCart","pages/fetchExam/fetchExam","pages/exitMaterialDetail/exitMaterialDetail","pages/fetchMaterialDetail/fetchMaterialDetail","pages/exitExam/exitExam","pages/newInStore/newInStore","pages/newBuyDetail/newBuyDetail","pages/newInAfterScan/newInAfterScan","pages/fix/fix","pages/fixDetail/fixDetail","pages/innerFix/innerFix","pages/returnFix/returnFix","pages/waitCrash/waitCrash","pages/backMaterialInStore/backMaterialInStore","pages/backMaterialInStoreDetail/backMaterialInStoreDetail","pages/repairTestInStore/repairTestInStore","pages/fetchMaterialOutStore/fetchMaterialOutStore","pages/backMaterialReceive/backMaterialReceive","pages/repairTestInStoreDetail/repairTestInStoreDetail","pages/exitMaterialSelect/exitMaterialSelect","pages/exitExamDetail/exitExamDetail","pages/crashExam/crashExam","pages/testExam/testExam","pages/fetchMaterialOutStoreDetail/fetchMaterialOutStoreDetail","pages/codeOutStore/codeOutStore","pages/scanOutStore/scanOutStore","pages/backMaterialReceiveDetail/backMaterialReceiveDetail","pages/scanReceive/scanReceive","pages/codeReceive/codeReceive","pages/numReceive/numReceive"],"window":{"navigationBarTextStyle":"black","navigationBarTitleText":"uni-app","navigationBarBackgroundColor":"#F8F8F8","backgroundColor":"#F8F8F8"},"tabBar":{"color":"#2c2c2c","selectedColor":"#1296db","borderStyle":"black","backgroundColor":"#FFFFFF","iconWidth":"24px","list":[{"pagePath":"pages/index/index","iconPath":"static/home.png","selectedIconPath":"static/homeSelected.png","text":"首页"},{"pagePath":"pages/workSpace/workSpace","iconPath":"static/workSpace.png","selectedIconPath":"static/workSpaceSelected.png","text":"工作台"},{"pagePath":"pages/user/user","iconPath":"static/my.png","selectedIconPath":"static/mySelected.png","text":"个人中心"}]},"darkmode":false,"nvueCompiler":"uni-app","nvueStyleCompiler":"uni-app","renderer":"auto","splashscreen":{"alwaysShowBeforeRender":true,"autoclose":false},"appname":"SmartStorage","compilerVersion":"3.8.7","entryPagePath":"pages/index/index","networkTimeout":{"request":60000,"connectSocket":60000,"uploadFile":60000,"downloadFile":60000}};
var __uniRoutes = [{"path":"/pages/index/index","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"首页"}},{"path":"/pages/user/user","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"个人中心"}},{"path":"/pages/workSpace/workSpace","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"工作台"}},{"path":"/pages/login/login","meta":{},"window":{"navigationBarTitleText":"登录"}},{"path":"/pages/fetchMaterial/fetchMaterial","meta":{},"window":{"navigationStyle":"custom"}},{"path":"/pages/exitMaterial/exitMaterial","meta":{},"window":{"navigationBarTitleText":"退料申请","titleNView":{"buttons":[{"float":"right","text":"新增","fontSize":"16px","onclick":"Function"}]}}},{"path":"/pages/workFetchMaterial/workFetchMaterial","meta":{},"window":{"navigationBarTitleText":"工器具领料申请"}},{"path":"/pages/workExitMaterial/workExitMaterial","meta":{},"window":{"navigationBarTitleText":"工器具退料申请"}},{"path":"/pages/deviceDetail/deviceDetail","meta":{},"window":{"navigationBarTitleText":"机具详情"}},{"path":"/pages/orderCart/orderCart","meta":{},"window":{"navigationBarTitleText":"预约车","titleNView":{"buttons":[{"float":"right","text":"删除","fontSize":"16px","onclick":"Function"}]}}},{"path":"/pages/fetchExam/fetchExam","meta":{},"window":{"navigationBarTitleText":"领料审批"}},{"path":"/pages/exitMaterialDetail/exitMaterialDetail","meta":{},"window":{"navigationBarTitleText":"退料申请明细"}},{"path":"/pages/fetchMaterialDetail/fetchMaterialDetail","meta":{},"window":{"navigationBarTitleText":"领料明细"}},{"path":"/pages/exitExam/exitExam","meta":{},"window":{"navigationBarTitleText":"退料审批"}},{"path":"/pages/newInStore/newInStore","meta":{},"window":{"navigationBarTitleText":"新购入库"}},{"path":"/pages/newBuyDetail/newBuyDetail","meta":{},"window":{"navigationBarTitleText":"新购明细"}},{"path":"/pages/newInAfterScan/newInAfterScan","meta":{},"window":{"navigationBarTitleText":"新购机具详情"}},{"path":"/pages/fix/fix","meta":{},"window":{"navigationBarTitleText":"维修"}},{"path":"/pages/fixDetail/fixDetail","meta":{},"window":{"navigationBarTitleText":"维修明细"}},{"path":"/pages/innerFix/innerFix","meta":{},"window":{"navigationBarTitleText":"内部维修"}},{"path":"/pages/returnFix/returnFix","meta":{},"window":{"navigationBarTitleText":"返厂维修"}},{"path":"/pages/waitCrash/waitCrash","meta":{},"window":{"navigationBarTitleText":"待报废"}},{"path":"/pages/backMaterialInStore/backMaterialInStore","meta":{},"window":{"navigationBarTitleText":"退料入库"}},{"path":"/pages/backMaterialInStoreDetail/backMaterialInStoreDetail","meta":{},"window":{"navigationBarTitleText":"退料入库明细"}},{"path":"/pages/repairTestInStore/repairTestInStore","meta":{},"window":{"navigationBarTitleText":"修试入库"}},{"path":"/pages/fetchMaterialOutStore/fetchMaterialOutStore","meta":{},"window":{"navigationBarTitleText":"领料出库"}},{"path":"/pages/backMaterialReceive/backMaterialReceive","meta":{},"window":{"navigationBarTitleText":"退料接收"}},{"path":"/pages/repairTestInStoreDetail/repairTestInStoreDetail","meta":{},"window":{"navigationBarTitleText":"修试入库明细"}},{"path":"/pages/exitMaterialSelect/exitMaterialSelect","meta":{},"window":{"navigationBarTitleText":"退料物料选择"}},{"path":"/pages/exitExamDetail/exitExamDetail","meta":{},"window":{"navigationBarTitleText":"退料明细"}},{"path":"/pages/crashExam/crashExam","meta":{},"window":{"navigationBarTitleText":"报废审核"}},{"path":"/pages/testExam/testExam","meta":{},"window":{"navigationBarTitleText":"试验检验审核"}},{"path":"/pages/fetchMaterialOutStoreDetail/fetchMaterialOutStoreDetail","meta":{},"window":{"navigationBarTitleText":"领料出库明细"}},{"path":"/pages/codeOutStore/codeOutStore","meta":{},"window":{"navigationBarTitleText":"编码出库"}},{"path":"/pages/scanOutStore/scanOutStore","meta":{},"window":{"navigationBarTitleText":"二维码出库"}},{"path":"/pages/backMaterialReceiveDetail/backMaterialReceiveDetail","meta":{},"window":{"navigationBarTitleText":"退料接收明细","titleNView":{"buttons":[{"text":"结束任务","fontSize":"12px","color":"#4e6ef2","width":"auto"}]}}},{"path":"/pages/scanReceive/scanReceive","meta":{},"window":{"navigationBarTitleText":"二维码接收"}},{"path":"/pages/codeReceive/codeReceive","meta":{},"window":{"navigationBarTitleText":"编码接收"}},{"path":"/pages/numReceive/numReceive","meta":{},"window":{"navigationBarTitleText":"数量接收"}}];
__uniConfig.onReady=function(callback){if(__uniConfig.ready){callback()}else{onReadyCallbacks.push(callback)}};Object.defineProperty(__uniConfig,"ready",{get:function(){return isReady},set:function(val){isReady=val;if(!isReady){return}const callbacks=onReadyCallbacks.slice(0);onReadyCallbacks.length=0;callbacks.forEach(function(callback){callback()})}});
__uniConfig.onServiceReady=function(callback){if(__uniConfig.serviceReady){callback()}else{onServiceReadyCallbacks.push(callback)}};Object.defineProperty(__uniConfig,"serviceReady",{get:function(){return isServiceReady},set:function(val){isServiceReady=val;if(!isServiceReady){return}const callbacks=onServiceReadyCallbacks.slice(0);onServiceReadyCallbacks.length=0;callbacks.forEach(function(callback){callback()})}});
service.register("uni-app-config",{create(a,b,c){if(!__uniConfig.viewport){var d=b.weex.config.env.scale,e=b.weex.config.env.deviceWidth,f=Math.ceil(e/d);Object.assign(__uniConfig,{viewport:f,defaultFontSize:Math.round(f/20)})}return{instance:{__uniConfig:__uniConfig,__uniRoutes:__uniRoutes,global:void 0,window:void 0,document:void 0,frames:void 0,self:void 0,location:void 0,navigator:void 0,localStorage:void 0,history:void 0,Caches:void 0,screen:void 0,alert:void 0,confirm:void 0,prompt:void 0,fetch:void 0,XMLHttpRequest:void 0,WebSocket:void 0,webkit:void 0,print:void 0}}}});

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1,7 +1,7 @@
var isReady=false;var onReadyCallbacks=[];
var isServiceReady=false;var onServiceReadyCallbacks=[];
var __uniConfig = {"pages":["pages/index/index","pages/user/user","pages/workSpace/workSpace","pages/login/login","pages/fetchMaterial/fetchMaterial","pages/exitMaterial/exitMaterial","pages/workFetchMaterial/workFetchMaterial","pages/workExitMaterial/workExitMaterial","pages/deviceDetail/deviceDetail","pages/orderCart/orderCart","pages/fetchExam/fetchExam","pages/exitMaterialDetail/exitMaterialDetail","pages/fetchMaterialDetail/fetchMaterialDetail","pages/exitExam/exitExam","pages/newInStore/newInStore","pages/newBuyDetail/newBuyDetail","pages/newInAfterScan/newInAfterScan","pages/fix/fix","pages/fixDetail/fixDetail","pages/innerFix/innerFix","pages/returnFix/returnFix","pages/waitCrash/waitCrash","pages/backMaterialInStore/backMaterialInStore","pages/backMaterialInStoreDetail/backMaterialInStoreDetail","pages/repairTestInStore/repairTestInStore","pages/fetchMaterialOutStore/fetchMaterialOutStore","pages/backMaterialReceive/backMaterialReceive","pages/repairTestInStoreDetail/repairTestInStoreDetail","pages/exitMaterialSelect/exitMaterialSelect","pages/exitExamDetail/exitExamDetail","pages/crashExam/crashExam","pages/testExam/testExam","pages/fetchMaterialOutStoreDetail/fetchMaterialOutStoreDetail","pages/codeOutStore/codeOutStore","pages/scanOutStore/scanOutStore","pages/backMaterialReceiveDetail/backMaterialReceiveDetail","pages/scanReceive/scanReceive","pages/codeReceive/codeReceive","pages/numReceive/numReceive"],"window":{"navigationBarTextStyle":"black","navigationBarTitleText":"uni-app","navigationBarBackgroundColor":"#F8F8F8","backgroundColor":"#F8F8F8"},"tabBar":{"color":"#2c2c2c","selectedColor":"#1296db","borderStyle":"black","backgroundColor":"#FFFFFF","iconWidth":"24px","list":[{"pagePath":"pages/index/index","iconPath":"static/home.png","selectedIconPath":"static/homeSelected.png","text":"首页"},{"pagePath":"pages/workSpace/workSpace","iconPath":"static/workSpace.png","selectedIconPath":"static/workSpaceSelected.png","text":"工作台"},{"pagePath":"pages/user/user","iconPath":"static/my.png","selectedIconPath":"static/mySelected.png","text":"个人中心"}]},"darkmode":false,"nvueCompiler":"uni-app","nvueStyleCompiler":"uni-app","renderer":"auto","splashscreen":{"alwaysShowBeforeRender":true,"autoclose":false},"appname":"SmartStorage","compilerVersion":"3.8.12","entryPagePath":"pages/index/index","networkTimeout":{"request":60000,"connectSocket":60000,"uploadFile":60000,"downloadFile":60000}};
var __uniConfig = {"pages":["pages/index/index","pages/user/user","pages/workSpace/workSpace","pages/login/login","pages/fetchMaterial/fetchMaterial","pages/exitMaterial/exitMaterial","pages/workFetchMaterial/workFetchMaterial","pages/workExitMaterial/workExitMaterial","pages/deviceDetail/deviceDetail","pages/orderCart/orderCart","pages/fetchExam/fetchExam","pages/exitMaterialDetail/exitMaterialDetail","pages/fetchMaterialDetail/fetchMaterialDetail","pages/exitExam/exitExam","pages/newInStore/newInStore","pages/newBuyDetail/newBuyDetail","pages/newInAfterScan/newInAfterScan","pages/fix/fix","pages/fixDetail/fixDetail","pages/innerFix/innerFix","pages/returnFix/returnFix","pages/waitCrash/waitCrash","pages/backMaterialInStore/backMaterialInStore","pages/backMaterialInStoreDetail/backMaterialInStoreDetail","pages/repairTestInStore/repairTestInStore","pages/fetchMaterialOutStore/fetchMaterialOutStore","pages/backMaterialReceive/backMaterialReceive","pages/repairTestInStoreDetail/repairTestInStoreDetail","pages/exitMaterialSelect/exitMaterialSelect","pages/exitExamDetail/exitExamDetail","pages/crashExam/crashExam","pages/testExam/testExam","pages/fetchMaterialOutStoreDetail/fetchMaterialOutStoreDetail","pages/codeOutStore/codeOutStore","pages/scanOutStore/scanOutStore","pages/backMaterialReceiveDetail/backMaterialReceiveDetail","pages/scanReceive/scanReceive","pages/codeReceive/codeReceive","pages/numReceive/numReceive"],"window":{"navigationBarTextStyle":"black","navigationBarTitleText":"uni-app","navigationBarBackgroundColor":"#F8F8F8","backgroundColor":"#F8F8F8"},"tabBar":{"color":"#2c2c2c","selectedColor":"#1296db","borderStyle":"black","backgroundColor":"#FFFFFF","iconWidth":"24px","list":[{"pagePath":"pages/index/index","iconPath":"static/home.png","selectedIconPath":"static/homeSelected.png","text":"首页"},{"pagePath":"pages/workSpace/workSpace","iconPath":"static/workSpace.png","selectedIconPath":"static/workSpaceSelected.png","text":"工作台"},{"pagePath":"pages/user/user","iconPath":"static/my.png","selectedIconPath":"static/mySelected.png","text":"个人中心"}]},"darkmode":false,"nvueCompiler":"uni-app","nvueStyleCompiler":"uni-app","renderer":"auto","splashscreen":{"alwaysShowBeforeRender":true,"autoclose":false},"appname":"SmartStorage","compilerVersion":"3.8.7","entryPagePath":"pages/index/index","networkTimeout":{"request":60000,"connectSocket":60000,"uploadFile":60000,"downloadFile":60000}};
var __uniRoutes = [{"path":"/pages/index/index","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"首页"}},{"path":"/pages/user/user","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"个人中心"}},{"path":"/pages/workSpace/workSpace","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"工作台"}},{"path":"/pages/login/login","meta":{},"window":{"navigationBarTitleText":"登录"}},{"path":"/pages/fetchMaterial/fetchMaterial","meta":{},"window":{"navigationStyle":"custom"}},{"path":"/pages/exitMaterial/exitMaterial","meta":{},"window":{"navigationBarTitleText":"退料申请","titleNView":{"buttons":[{"float":"right","text":"新增","fontSize":"16px","onclick":"Function"}]}}},{"path":"/pages/workFetchMaterial/workFetchMaterial","meta":{},"window":{"navigationBarTitleText":"工器具领料申请"}},{"path":"/pages/workExitMaterial/workExitMaterial","meta":{},"window":{"navigationBarTitleText":"工器具退料申请"}},{"path":"/pages/deviceDetail/deviceDetail","meta":{},"window":{"navigationBarTitleText":"机具详情"}},{"path":"/pages/orderCart/orderCart","meta":{},"window":{"navigationBarTitleText":"预约车","titleNView":{"buttons":[{"float":"right","text":"删除","fontSize":"16px","onclick":"Function"}]}}},{"path":"/pages/fetchExam/fetchExam","meta":{},"window":{"navigationBarTitleText":"领料审批"}},{"path":"/pages/exitMaterialDetail/exitMaterialDetail","meta":{},"window":{"navigationBarTitleText":"退料申请明细"}},{"path":"/pages/fetchMaterialDetail/fetchMaterialDetail","meta":{},"window":{"navigationBarTitleText":"领料明细"}},{"path":"/pages/exitExam/exitExam","meta":{},"window":{"navigationBarTitleText":"退料审批"}},{"path":"/pages/newInStore/newInStore","meta":{},"window":{"navigationBarTitleText":"新购入库"}},{"path":"/pages/newBuyDetail/newBuyDetail","meta":{},"window":{"navigationBarTitleText":"新购明细"}},{"path":"/pages/newInAfterScan/newInAfterScan","meta":{},"window":{"navigationBarTitleText":"新购机具详情"}},{"path":"/pages/fix/fix","meta":{},"window":{"navigationBarTitleText":"维修"}},{"path":"/pages/fixDetail/fixDetail","meta":{},"window":{"navigationBarTitleText":"维修明细"}},{"path":"/pages/innerFix/innerFix","meta":{},"window":{"navigationBarTitleText":"内部维修"}},{"path":"/pages/returnFix/returnFix","meta":{},"window":{"navigationBarTitleText":"返厂维修"}},{"path":"/pages/waitCrash/waitCrash","meta":{},"window":{"navigationBarTitleText":"待报废"}},{"path":"/pages/backMaterialInStore/backMaterialInStore","meta":{},"window":{"navigationBarTitleText":"退料入库"}},{"path":"/pages/backMaterialInStoreDetail/backMaterialInStoreDetail","meta":{},"window":{"navigationBarTitleText":"退料入库明细"}},{"path":"/pages/repairTestInStore/repairTestInStore","meta":{},"window":{"navigationBarTitleText":"修试入库"}},{"path":"/pages/fetchMaterialOutStore/fetchMaterialOutStore","meta":{},"window":{"navigationBarTitleText":"领料出库"}},{"path":"/pages/backMaterialReceive/backMaterialReceive","meta":{},"window":{"navigationBarTitleText":"退料接收"}},{"path":"/pages/repairTestInStoreDetail/repairTestInStoreDetail","meta":{},"window":{"navigationBarTitleText":"修试入库明细"}},{"path":"/pages/exitMaterialSelect/exitMaterialSelect","meta":{},"window":{"navigationBarTitleText":"退料物料选择"}},{"path":"/pages/exitExamDetail/exitExamDetail","meta":{},"window":{"navigationBarTitleText":"退料明细"}},{"path":"/pages/crashExam/crashExam","meta":{},"window":{"navigationBarTitleText":"报废审核"}},{"path":"/pages/testExam/testExam","meta":{},"window":{"navigationBarTitleText":"试验检验审核"}},{"path":"/pages/fetchMaterialOutStoreDetail/fetchMaterialOutStoreDetail","meta":{},"window":{"navigationBarTitleText":"领料出库明细"}},{"path":"/pages/codeOutStore/codeOutStore","meta":{},"window":{"navigationBarTitleText":"编码出库"}},{"path":"/pages/scanOutStore/scanOutStore","meta":{},"window":{"navigationBarTitleText":"二维码出库"}},{"path":"/pages/backMaterialReceiveDetail/backMaterialReceiveDetail","meta":{},"window":{"navigationBarTitleText":"退料接收明细","titleNView":{"buttons":[{"text":"结束任务","fontSize":"12px","color":"#4e6ef2","width":"auto"}]}}},{"path":"/pages/scanReceive/scanReceive","meta":{},"window":{"navigationBarTitleText":"二维码接收"}},{"path":"/pages/codeReceive/codeReceive","meta":{},"window":{"navigationBarTitleText":"编码接收"}},{"path":"/pages/numReceive/numReceive","meta":{},"window":{"navigationBarTitleText":"数量接收"}}];
__uniConfig.onReady=function(callback){if(__uniConfig.ready){callback()}else{onReadyCallbacks.push(callback)}};Object.defineProperty(__uniConfig,"ready",{get:function(){return isReady},set:function(val){isReady=val;if(!isReady){return}const callbacks=onReadyCallbacks.slice(0);onReadyCallbacks.length=0;callbacks.forEach(function(callback){callback()})}});
__uniConfig.onServiceReady=function(callback){if(__uniConfig.serviceReady){callback()}else{onServiceReadyCallbacks.push(callback)}};Object.defineProperty(__uniConfig,"serviceReady",{get:function(){return isServiceReady},set:function(val){isServiceReady=val;if(!isServiceReady){return}const callbacks=onServiceReadyCallbacks.slice(0);onServiceReadyCallbacks.length=0;callbacks.forEach(function(callback){callback()})}});

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1 +1 @@
{"@platforms":["android","iPhone","iPad"],"id":"__UNI__9D122E1","name":"SmartStorage","version":{"name":"1.0.0","code":"100"},"description":"","launch_path":"__uniappview.html","developer":{"name":"","email":"","url":""},"permissions":{"UniNView":{"description":"UniNView原生渲染"}},"plus":{"useragent":{"value":"uni-app","concatenate":true},"splashscreen":{"target":"id:1","autoclose":true,"waiting":true,"delay":0},"popGesture":"close","launchwebview":{"id":"1","kernel":"WKWebview"},"statusbar":{"immersed":"supportedDevice","style":"dark","background":"#F8F8F8"},"usingComponents":true,"nvueStyleCompiler":"uni-app","compilerVersion":3,"distribute":{"google":{"permissions":["<uses-permission android:name=\"android.permission.CHANGE_NETWORK_STATE\"/>","<uses-permission android:name=\"android.permission.MOUNT_UNMOUNT_FILESYSTEMS\"/>","<uses-permission android:name=\"android.permission.VIBRATE\"/>","<uses-permission android:name=\"android.permission.READ_LOGS\"/>","<uses-permission android:name=\"android.permission.ACCESS_WIFI_STATE\"/>","<uses-feature android:name=\"android.hardware.camera.autofocus\"/>","<uses-permission android:name=\"android.permission.ACCESS_NETWORK_STATE\"/>","<uses-permission android:name=\"android.permission.CAMERA\"/>","<uses-permission android:name=\"android.permission.GET_ACCOUNTS\"/>","<uses-permission android:name=\"android.permission.READ_PHONE_STATE\"/>","<uses-permission android:name=\"android.permission.CHANGE_WIFI_STATE\"/>","<uses-permission android:name=\"android.permission.WAKE_LOCK\"/>","<uses-permission android:name=\"android.permission.FLASHLIGHT\"/>","<uses-feature android:name=\"android.hardware.camera\"/>","<uses-permission android:name=\"android.permission.WRITE_SETTINGS\"/>"]},"apple":{"dSYMs":false},"plugins":{"ad":{},"audio":{"mp3":{"description":"Android平台录音支持MP3格式文件"}}}},"uniStatistics":{"enable":false},"allowsInlineMediaPlayback":true,"safearea":{"background":"#FFFFFF","bottom":{"offset":"auto"}},"uni-app":{"compilerVersion":"3.8.12","control":"uni-v3","nvueCompiler":"uni-app","renderer":"auto","nvue":{"flex-direction":"column"},"nvueLaunchMode":"normal"},"tabBar":{"color":"#2c2c2c","selectedColor":"#1296db","borderStyle":"rgba(0,0,0,0.4)","backgroundColor":"#FFFFFF","iconWidth":"24px","list":[{"pagePath":"pages/index/index","iconPath":"static/home.png","selectedIconPath":"static/homeSelected.png","text":"首页"},{"pagePath":"pages/workSpace/workSpace","iconPath":"static/workSpace.png","selectedIconPath":"static/workSpaceSelected.png","text":"工作台"},{"pagePath":"pages/user/user","iconPath":"static/my.png","selectedIconPath":"static/mySelected.png","text":"个人中心"}],"height":"50px","child":["lauchwebview"],"selected":0},"launch_path":"__uniappview.html"}}
{"@platforms":["android","iPhone","iPad"],"id":"__UNI__9D122E1","name":"SmartStorage","version":{"name":"1.0.0","code":"100"},"description":"","launch_path":"__uniappview.html","developer":{"name":"","email":"","url":""},"permissions":{"UniNView":{"description":"UniNView原生渲染"}},"plus":{"useragent":{"value":"uni-app","concatenate":true},"splashscreen":{"target":"id:1","autoclose":true,"waiting":true,"delay":0},"popGesture":"close","launchwebview":{"id":"1","kernel":"WKWebview"},"statusbar":{"immersed":"supportedDevice","style":"dark","background":"#F8F8F8"},"usingComponents":true,"nvueStyleCompiler":"uni-app","compilerVersion":3,"distribute":{"google":{"permissions":["<uses-permission android:name=\"android.permission.CHANGE_NETWORK_STATE\"/>","<uses-permission android:name=\"android.permission.MOUNT_UNMOUNT_FILESYSTEMS\"/>","<uses-permission android:name=\"android.permission.VIBRATE\"/>","<uses-permission android:name=\"android.permission.READ_LOGS\"/>","<uses-permission android:name=\"android.permission.ACCESS_WIFI_STATE\"/>","<uses-feature android:name=\"android.hardware.camera.autofocus\"/>","<uses-permission android:name=\"android.permission.ACCESS_NETWORK_STATE\"/>","<uses-permission android:name=\"android.permission.CAMERA\"/>","<uses-permission android:name=\"android.permission.GET_ACCOUNTS\"/>","<uses-permission android:name=\"android.permission.READ_PHONE_STATE\"/>","<uses-permission android:name=\"android.permission.CHANGE_WIFI_STATE\"/>","<uses-permission android:name=\"android.permission.WAKE_LOCK\"/>","<uses-permission android:name=\"android.permission.FLASHLIGHT\"/>","<uses-feature android:name=\"android.hardware.camera\"/>","<uses-permission android:name=\"android.permission.WRITE_SETTINGS\"/>"]},"apple":{"dSYMs":false},"plugins":{"ad":{},"audio":{"mp3":{"description":"Android平台录音支持MP3格式文件"}}}},"uniStatistics":{"enable":false},"allowsInlineMediaPlayback":true,"safearea":{"background":"#FFFFFF","bottom":{"offset":"auto"}},"uni-app":{"compilerVersion":"3.8.7","control":"uni-v3","nvueCompiler":"uni-app","renderer":"auto","nvue":{"flex-direction":"column"},"nvueLaunchMode":"normal"},"tabBar":{"color":"#2c2c2c","selectedColor":"#1296db","borderStyle":"rgba(0,0,0,0.4)","backgroundColor":"#FFFFFF","iconWidth":"24px","list":[{"pagePath":"pages/index/index","iconPath":"static/home.png","selectedIconPath":"static/homeSelected.png","text":"首页"},{"pagePath":"pages/workSpace/workSpace","iconPath":"static/workSpace.png","selectedIconPath":"static/workSpaceSelected.png","text":"工作台"},{"pagePath":"pages/user/user","iconPath":"static/my.png","selectedIconPath":"static/mySelected.png","text":"个人中心"}],"height":"50px","child":["lauchwebview"],"selected":0},"launch_path":"__uniappview.html"}}