diff --git a/.env.development b/.env.development
index c36d00d3..eed92e7d 100644
--- a/.env.development
+++ b/.env.development
@@ -5,7 +5,7 @@ VUE_APP_TITLE = UDI管理系统
ENV = 'development'
# 开发环境
-VUE_APP_BASE_API = 'http://192.168.0.166:9991'
+VUE_APP_BASE_API = 'http://127.0.0.1:9991'
VUE_APP_SYNC_API ="http://127.0.0.1:10001"
diff --git a/.env.production b/.env.production
index 3ca504ef..db49354c 100644
--- a/.env.production
+++ b/.env.production
@@ -13,10 +13,10 @@ ENV = 'production'
刘恩典
-# VUE_APP_BASE_API = 'http://192.168.0.242:9150/UDI_WMS_MC/'
+VUE_APP_BASE_API = 'http://192.168.0.127:9150/UDI_WMS_MC/'
# 平潭正式
-VUE_APP_BASE_API = 'http://55.55.0.62:9150/UDI_WMS_MC/'
+# VUE_APP_BASE_API = 'http://55.55.0.62:9150/UDI_WMS_MC/'
# 漳州中医院
# VUE_APP_BASE_API = 'http://192.168.240.119:9150/UDI_WMS_MC/'
diff --git a/src/views/purchase/purApply/purApplyEditDiaolog.vue b/src/views/purchase/purApply/purApplyEditDiaolog.vue
index c9eea37b..491f4517 100644
--- a/src/views/purchase/purApply/purApplyEditDiaolog.vue
+++ b/src/views/purchase/purApply/purApplyEditDiaolog.vue
@@ -108,6 +108,7 @@
+
diff --git a/src/views/purchase/purApply/purOrderSelectProduct.vue b/src/views/purchase/purApply/purOrderSelectProduct.vue
index 55f447ed..0f6297d6 100644
--- a/src/views/purchase/purApply/purOrderSelectProduct.vue
+++ b/src/views/purchase/purApply/purOrderSelectProduct.vue
@@ -102,21 +102,22 @@
-
+
+
+ v-if="productRemarkSet.remarkEnable1"
+ :label="productRemarkSet.remarkTitle1" prop="basicPrductRemak1" width="140"
+ show-overflow-tooltip>
+ v-if="productRemarkSet.remarkEnable2"
+ :label="productRemarkSet.remarkTitle2" prop="basicPrductRemak2" width="140"
+ show-overflow-tooltip>
@@ -126,23 +127,23 @@
@@ -365,43 +366,43 @@ export default {
this.listQuery.customerId = store.getters.customerId;
this.listQuery.id = this.pId;
filterCompanyProductplanRelevance(this.listQuery)
- .then((response) => {
- this.loading = false;
- if (response.code === 20000) {
- this.dataList = response.data.list || [];
- this.pageTotal = response.data.total || 0;
- } else {
- this.$message.error(response.message);
+ .then((response) => {
+ this.loading = false;
+ if (response.code === 20000) {
+ this.dataList = response.data.list || [];
+ this.pageTotal = response.data.total || 0;
+ } else {
+ this.$message.error(response.message);
+ this.dataList = [];
+ this.pageTotal = 0;
+ }
+ })
+ .catch(() => {
+ this.loading = false;
this.dataList = [];
this.pageTotal = 0;
- }
- })
- .catch(() => {
- this.loading = false;
- this.dataList = [];
- this.pageTotal = 0;
- });
+ });
},
getRationList() {
this.loading = true;
filterCompanyProductRationRelevance(this.listQuery)
- .then((response) => {
- this.loading = false;
- if (response.code === 20000) {
- this.dataList = response.data.list || [];
- this.pageTotal = response.data.total || 0;
- } else {
- this.$message.error(response.message);
+ .then((response) => {
+ this.loading = false;
+ if (response.code === 20000) {
+ this.dataList = response.data.list || [];
+ this.pageTotal = response.data.total || 0;
+ } else {
+ this.$message.error(response.message);
+ this.dataList = [];
+ this.pageTotal = 0;
+ }
+ })
+ .catch(() => {
+ this.loading = false;
this.dataList = [];
this.pageTotal = 0;
- }
- })
- .catch(() => {
- this.loading = false;
- this.dataList = [];
- this.pageTotal = 0;
- });
+ });
},
intentBack() {
this.closeDialog();