Compare commits
2 Commits
27375030c1
...
0dc9c57c40
Author | SHA1 | Date | |
---|---|---|---|
![]() |
0dc9c57c40 | ||
![]() |
b00333d103 |
@ -1,9 +1,9 @@
|
|||||||
// 应用全局配置
|
// 应用全局配置
|
||||||
module.exports = {
|
module.exports = {
|
||||||
// baseUrl: 'https://www.nuoyunr.com',
|
baseUrl: 'https://www.nuoyunr.com',
|
||||||
// baseUrl: 'http://124.222.105.7:48080',
|
// baseUrl: 'http://124.222.105.7:48080',
|
||||||
// baseUrl: 'http://192.168.1.4:48080',
|
// baseUrl: 'http://192.168.1.4:48080',
|
||||||
baseUrl: "http://localhost:48080",
|
// baseUrl: "http://localhost:48080",
|
||||||
imagesUrl: 'http://shequ.0315e.com/static/images/pages/',
|
imagesUrl: 'http://shequ.0315e.com/static/images/pages/',
|
||||||
baseImageUrl: 'https://www.nuoyunr.com/minio/',
|
baseImageUrl: 'https://www.nuoyunr.com/minio/',
|
||||||
shareUrl: 'https://www.lighting-it.cn/share?inviteId=',
|
shareUrl: 'https://www.lighting-it.cn/share?inviteId=',
|
||||||
|
@ -199,6 +199,7 @@ export default {
|
|||||||
},
|
},
|
||||||
//是否可以点击
|
//是否可以点击
|
||||||
canClick:true,
|
canClick:true,
|
||||||
|
subLoading: false
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
onLoad(data) {
|
onLoad(data) {
|
||||||
@ -356,11 +357,14 @@ export default {
|
|||||||
})
|
})
|
||||||
},
|
},
|
||||||
confirmOpe(type) {
|
confirmOpe(type) {
|
||||||
|
if (!this.subLoading){
|
||||||
|
this.subLoading = true
|
||||||
if(this.selectWares.length==0){
|
if(this.selectWares.length==0){
|
||||||
uni.showToast({
|
uni.showToast({
|
||||||
title: '请选中要审核的配件!',
|
title: '请选中要审核的配件!',
|
||||||
icon: 'none'
|
icon: 'none'
|
||||||
})
|
})
|
||||||
|
this.subLoading = false
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if (this.canClick) {
|
if (this.canClick) {
|
||||||
@ -401,11 +405,14 @@ export default {
|
|||||||
uni.navigateBack()
|
uni.navigateBack()
|
||||||
}, 700)
|
}, 700)
|
||||||
}
|
}
|
||||||
|
this.subLoading = false
|
||||||
})
|
})
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
|
this.subLoading = false
|
||||||
this.canClick = true
|
this.canClick = true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -96,7 +96,7 @@
|
|||||||
<text class="label"></text>
|
<text class="label"></text>
|
||||||
<text class="repairNum"></text>
|
<text class="repairNum"></text>
|
||||||
<view class="submit" @click="submit" v-if="!isInput">保存</view>
|
<view class="submit" @click="submit" v-if="!isInput">保存</view>
|
||||||
<view class="submit" @click="inWare" v-else>入库</view>
|
<view class="submit" @click="inWare" v-else :disabled="subLoading">入库</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
@ -143,6 +143,7 @@ export default {
|
|||||||
unitList: [],
|
unitList: [],
|
||||||
query: null,
|
query: null,
|
||||||
selectRows: [],
|
selectRows: [],
|
||||||
|
subLoading: false
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
onLoad(data) {
|
onLoad(data) {
|
||||||
@ -424,6 +425,8 @@ export default {
|
|||||||
* 入库
|
* 入库
|
||||||
*/
|
*/
|
||||||
inWare() {
|
inWare() {
|
||||||
|
if (!this.subLoading){
|
||||||
|
this.subLoading = true
|
||||||
const data = {
|
const data = {
|
||||||
id: this.soId,
|
id: this.soId,
|
||||||
soNo: createUniqueCodeByHead("RK")
|
soNo: createUniqueCodeByHead("RK")
|
||||||
@ -452,7 +455,9 @@ export default {
|
|||||||
uni.navigateBack()
|
uni.navigateBack()
|
||||||
}, 700)
|
}, 700)
|
||||||
}
|
}
|
||||||
|
this.subLoading = false
|
||||||
})
|
})
|
||||||
|
}
|
||||||
// this.partList.forEach(item => {
|
// this.partList.forEach(item => {
|
||||||
// item.inCount = item.count
|
// item.inCount = item.count
|
||||||
// item.goodsId = item.id
|
// item.goodsId = item.id
|
||||||
|
Loading…
Reference in New Issue
Block a user