diff --git a/src/pages/product/outbound/stoOutbound/DN-delivergoods.vue b/src/pages/product/outbound/stoOutbound/DN-delivergoods.vue
index 2f19c4d..0a1a04d 100644
--- a/src/pages/product/outbound/stoOutbound/DN-delivergoods.vue
+++ b/src/pages/product/outbound/stoOutbound/DN-delivergoods.vue
@@ -11,6 +11,9 @@
+
+ {{ $t('message.Query') }}
+
@@ -399,6 +402,13 @@ export default class stoOutboundDom extends BasePage {
line-height: 35rpx;
}
}
+ .single-right {
+ button {
+ //margin-top: 15rpx;
+ width: 110rpx;
+ height: 70rpx;
+ }
+ }
.bottom-bar {
position: fixed;
diff --git a/src/pages/raw/warehouse/rowInventory/index.vue b/src/pages/raw/warehouse/rowInventory/index.vue
index 6fac22e..e6e084c 100644
--- a/src/pages/raw/warehouse/rowInventory/index.vue
+++ b/src/pages/raw/warehouse/rowInventory/index.vue
@@ -11,6 +11,9 @@
+
+ {{ $t('message.Query') }}
+
@@ -88,7 +91,10 @@ export default class rawMaterialInventory extends BasePage {
//单号查询
async rawMaterialInventoryCheckRaw() {
if (!this.pddNo) {
- uni.showToast({ title: this.$t('message.Commission_tips1') as any });
+ uni.showToast({
+ icon: 'none',
+ title: this.$t('message.Commission_tips1') as any,
+ });
return;
}
await this.model.rawMaterialInventoryCheckRaw(this.pddNo);
@@ -111,11 +117,17 @@ export default class rawMaterialInventory extends BasePage {
//点击确定
async checkRawCreateInfo() {
if (!this.spQty) {
- uni.showToast({ title: this.$t('message.Summary_PleaseInputNumber') as any });
+ uni.showToast({
+ icon: 'none',
+ title: this.$t('message.Summary_PleaseInputNumber') as any,
+ });
return;
}
if (!this.pddNo) {
- uni.showToast({ title: this.$t('message.Commission_tips1') as any });
+ uni.showToast({
+ icon: 'none',
+ title: this.$t('message.Commission_tips1') as any,
+ });
return;
}
let params = {
@@ -195,6 +207,13 @@ export default class rawMaterialInventory extends BasePage {
line-height: 35rpx;
}
}
+ .single-right {
+ button {
+ //margin-top: 15rpx;
+ width: 110rpx;
+ height: 70rpx;
+ }
+ }
.bottom-bar {
position: fixed;
diff --git a/src/pages/raw/warehouse/rowTransfer/index.vue b/src/pages/raw/warehouse/rowTransfer/index.vue
index 3be0513..da3c241 100644
--- a/src/pages/raw/warehouse/rowTransfer/index.vue
+++ b/src/pages/raw/warehouse/rowTransfer/index.vue
@@ -2,7 +2,7 @@