From 7e1dd910f2c15dfd7fe790e181e50517f623a570 Mon Sep 17 00:00:00 2001 From: BianLzhaoMin <11485688+bianliangzhaomin123@user.noreply.gitee.com> Date: Thu, 16 May 2024 14:16:49 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B5=8B=E8=AF=95=E9=97=AE=E9=A2=98=E4=BF=AE?= =?UTF-8?q?=E6=94=B9=20=E5=B9=B6=E6=96=B0=E5=A2=9E=E7=BB=B4=E4=BF=AE?= =?UTF-8?q?=E6=8A=A5=E5=BA=9F=20=E9=80=80=E6=96=99=E6=8A=A5=E5=BA=9F?= =?UTF-8?q?=E4=B8=A4=E4=B8=AA=E9=9D=99=E6=80=81=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sgzb-ui/src/components/FormModel/index.vue | 17 + sgzb-ui/src/components/TableModel/index.vue | 1 + .../claimAndRefund/receive/receiveManage.vue | 21 +- .../claimAndRefund/return/returnApply.vue | 886 +++++------ .../claimAndRefund/returnScrap/config.js | 110 ++ .../claimAndRefund/returnScrap/index.vue | 62 + sgzb-ui/src/views/index.vue | 21 + sgzb-ui/src/views/repairTest/repair/index.vue | 17 +- .../views/repairTest/repairScrap/config.js | 110 ++ .../views/repairTest/repairScrap/index.vue | 62 + .../scrapManage/component/dialogModel.vue | 84 -- .../views/scrapManage/component/formModel.vue | 133 -- .../scrapManage/component/tableModel.vue | 247 ---- .../forecastWaste/auditing/config.js | 13 +- .../forecastWaste/auditing/index.vue | 4 +- .../forecastWaste/listing/config.js | 10 + .../forecastWaste/listing/index.vue | 27 +- .../scrapManage/scrap/disposition/config.js | 57 +- .../scrapManage/scrap/disposition/index.vue | 7 +- .../scrapManage/scrap/scrapAuditing/config.js | 67 +- .../scrapManage/scrap/scrapAuditing/index.vue | 26 +- .../newBuy/newAccessory/newAccessoryList.vue | 1047 +++++++------ .../newBuy/newDevices/newDevicesList.vue | 1 + .../store/warehousing/repairWarehousing.vue | 1316 ++++++++++------- sgzb-ui/vue.config.js | 6 +- 25 files changed, 2453 insertions(+), 1899 deletions(-) create mode 100644 sgzb-ui/src/views/claimAndRefund/returnScrap/config.js create mode 100644 sgzb-ui/src/views/claimAndRefund/returnScrap/index.vue create mode 100644 sgzb-ui/src/views/repairTest/repairScrap/config.js create mode 100644 sgzb-ui/src/views/repairTest/repairScrap/index.vue delete mode 100644 sgzb-ui/src/views/scrapManage/component/dialogModel.vue delete mode 100644 sgzb-ui/src/views/scrapManage/component/formModel.vue delete mode 100644 sgzb-ui/src/views/scrapManage/component/tableModel.vue diff --git a/sgzb-ui/src/components/FormModel/index.vue b/sgzb-ui/src/components/FormModel/index.vue index 06c8cc7e..742b699c 100644 --- a/sgzb-ui/src/components/FormModel/index.vue +++ b/sgzb-ui/src/components/FormModel/index.vue @@ -42,6 +42,7 @@ :options="item.f_selList" :props="item.optionProps" :show-all-levels="false" + @change="casCadeChange" clearable style="width: 240px" /> @@ -86,6 +87,12 @@ return [] }, }, + routerParams: { + type: String, + default: () => { + return null + }, + }, }, data() { return { @@ -98,6 +105,12 @@ this.$set(this.queryParams, e.f_model, '') }) }, + mounted() { + this.queryParams.keyword = this.routerParams + if (this.queryParams.keyword) { + this.$emit('queryList', this.queryParams) + } + }, methods: { /* 查询按钮 */ handleQuery() { @@ -108,6 +121,10 @@ this.$refs.queryForm.resetFields() this.$emit('queryList', this.queryParams, 'reset') }, + /* 级联选择框的change事件 */ + casCadeChange(val) { + this.queryParams.type = val[val.length - 1] + }, }, } diff --git a/sgzb-ui/src/components/TableModel/index.vue b/sgzb-ui/src/components/TableModel/index.vue index 9af0289d..4cd661c8 100644 --- a/sgzb-ui/src/components/TableModel/index.vue +++ b/sgzb-ui/src/components/TableModel/index.vue @@ -3,6 +3,7 @@ diff --git a/sgzb-ui/src/views/claimAndRefund/receive/receiveManage.vue b/sgzb-ui/src/views/claimAndRefund/receive/receiveManage.vue index 4cad01f1..b4d27604 100644 --- a/sgzb-ui/src/views/claimAndRefund/receive/receiveManage.vue +++ b/sgzb-ui/src/views/claimAndRefund/receive/receiveManage.vue @@ -8,9 +8,9 @@ v-show="showSearch" label-width="80px" > - + diff --git a/sgzb-ui/src/views/claimAndRefund/return/returnApply.vue b/sgzb-ui/src/views/claimAndRefund/return/returnApply.vue index ac6e128b..a5bd8405 100644 --- a/sgzb-ui/src/views/claimAndRefund/return/returnApply.vue +++ b/sgzb-ui/src/views/claimAndRefund/return/returnApply.vue @@ -118,7 +118,12 @@ - 退料申请 @@ -563,470 +568,471 @@ diff --git a/sgzb-ui/src/views/claimAndRefund/returnScrap/config.js b/sgzb-ui/src/views/claimAndRefund/returnScrap/config.js new file mode 100644 index 00000000..eed82bc4 --- /dev/null +++ b/sgzb-ui/src/views/claimAndRefund/returnScrap/config.js @@ -0,0 +1,110 @@ +import { + getUnitInfoSelectApi, + listPartTypeApi, +} from '@/api/repairTest/repair' +import { getProjectList } from '@/api/claimAndRefund/receive' + +let unitList = [] +let proList = [] +let typeList = [] + +export const config = { + handleColShow: true, // 是否显示操作列 + pageShow: true, // 是否显示分页组件 + isSelShow: true,// 表格是否需要复选框 + isFormShow: true, // 是否显示表单查询组件 + handleWidth: '160px', // 操作列宽度 + formLabel: [ + { f_label: '关键字', f_model: 'keyword', f_type: 'ipt' }, + { f_label: '单位名称', f_model: 'backUnit', f_type: 'sel', f_selList: [] }, + { f_label: '工程名称', f_model: 'backPro', f_type: 'sel', f_selList: [] }, + { f_label: '工机具类型', f_model: 'type', f_type: 'selCas', f_selList: [], optionProps: { value: 'id', } }, + { f_label: '预报废单号', f_model: 'scrapNum', f_type: 'ipt', }, + { + f_label: '退料状态', f_model: 'taskStatus', f_type: 'sel', f_selList: [ + { label: '待提交', value: 124 }, + { label: '审核中', value: 58 }, + { label: '已驳回', value: 61 }, + { label: '已通过', value: 59 }, + ] + }, + { f_label: '创建时间', f_model: 'time', f_type: 'date' }, + ], + columnsList: [ + { t_width: '55px', t_props: '', t_label: '序号' }, + { t_props: 'scrapNum', t_label: '预报废单号' }, + { t_props: 'scrapNum', t_label: '退料单号' }, + { t_props: 'repairNum', t_label: '单位名称' }, + { t_props: 'repairNum', t_label: '工程名称' }, + { t_props: 'itemType', t_label: '机具类型' }, + { t_props: 'createBy', t_label: '任务创建人' }, + { t_props: 'createTime', t_label: '任务创建时间' }, + { t_props: 'createTime', t_label: '审批状态' }, + { t_props: 'createTime', t_label: '驳回原因' }, + { t_props: '', t_label: '审核状态', t_slot: 'type' }, + ], + routerParams: '' +} + +export const dialogConfig = { + outerWidth: '70%', + outerTitle: '', + outerVisible: false, + innerWidth: '50%', + innerTitle: '', + innerVisible: false, + handleColShow: false, // 是否显示操作列 + pageShow: false, // 是否显示分页组件 + isSelShow: false,// 表格是否需要复选框 + isFormShow: true, // 是否显示表单查询组件 + formLabel: [ + { f_label: '类型名称', f_model: 'keywords', f_type: 'ipt' }, + ], + columnsList: [ + { t_width: '55px', t_props: '', t_label: '序号' }, + { t_width: '', t_props: 'machineTypeName', t_label: '设备类型' }, + { t_width: '', t_props: 'specificationType', t_label: '规格型号' }, + { t_width: '', t_props: 'maCode', t_label: '设备编码' }, + { t_width: '', t_props: 'scrapNum', t_label: '设备数量' }, + { t_width: '', t_props: 'remark', t_label: '报废原因' }, + { t_width: '', t_props: 'fileUrl', t_label: '报废图片', t_slot: 'imgPreview' }, + ], + +} + +export const getSelList = () => { + new Promise(async (resolve) => { + const { data: unitRes } = await getUnitInfoSelectApi() + unitList = unitRes.map((e) => { + e.value = e.unitId + e.label = e.unitName + return e + }) + const { data: proRes } = await getProjectList() + proList = proRes.map((e) => { + e.value = e.projectId + e.label = e.projectName + return e + }) + const { data: typeRes } = await listPartTypeApi() + typeList = typeRes + resolve() + }).then(() => { + config.formLabel.map((item) => { + if (item.f_model === 'backUnit') { + item.f_selList = unitList + return item + } + if (item.f_model === 'backPro') { + item.f_selList = proList + return item + } + if (item.f_model === 'type') { + item.f_selList = typeList + return item + } + }) + }).catch(() => { + + }) +} diff --git a/sgzb-ui/src/views/claimAndRefund/returnScrap/index.vue b/sgzb-ui/src/views/claimAndRefund/returnScrap/index.vue new file mode 100644 index 00000000..c8f0dd29 --- /dev/null +++ b/sgzb-ui/src/views/claimAndRefund/returnScrap/index.vue @@ -0,0 +1,62 @@ + + + + + diff --git a/sgzb-ui/src/views/index.vue b/sgzb-ui/src/views/index.vue index 72d16ed2..17da6efe 100644 --- a/sgzb-ui/src/views/index.vue +++ b/sgzb-ui/src/views/index.vue @@ -315,6 +315,26 @@ taskTypeId: 41, routerPath: 'repairTest/repair/repair', }, + /* 维修审核 */ + { + taskTypeId: 45, + routerPath: 'repairTest/repair/repair', + }, + /* 修试入库任务 */ + { + taskTypeId: 50, + routerPath: 'store/warehousing/repairWarehousing', + }, + /* 修试入库任务 */ + { + taskTypeId: 57, + routerPath: 'scrap/manage/scrapAuditing', + }, + /* 修试入库任务 */ + { + taskTypeId: 67, + routerPath: 'store/newBuy/newAccessoryList', + }, ], /* 催办弹框 */ @@ -373,6 +393,7 @@ * 列表查看操作=========================================================== */ handlePreview(id, key) { + console.log(id, 'key---', key) const [routerInfo] = this.previewRouterList.filter( (e) => e.taskTypeId == id, ) diff --git a/sgzb-ui/src/views/repairTest/repair/index.vue b/sgzb-ui/src/views/repairTest/repair/index.vue index 73694adf..47e70068 100644 --- a/sgzb-ui/src/views/repairTest/repair/index.vue +++ b/sgzb-ui/src/views/repairTest/repair/index.vue @@ -644,7 +644,7 @@ export default { repairTitle: '查看', } }, - created() { + created() { getUnitInfoSelectApi().then((res) => { this.unitInfoSelectList = res.data }) @@ -656,8 +656,8 @@ export default { }) }, mounted() { - this.getTree() this.getList() + this.getTree() }, methods: { onClose() { @@ -745,6 +745,7 @@ export default { this.dateRange = [] this.queryParams.backUnit = '' this.queryParams.backPro = '' + this.queryParams.keyword = '' this.resetForm('queryForm') this.$refs.mychildSon.inputValue = '' this.handleQuery() @@ -1073,6 +1074,18 @@ export default { .catch(() => {}) }, }, + watch: { + $route: { + handler(to) { + if (to.query.keyWord) { + this.queryParams.keyword = to.query.keyWord + this.getList() + } + }, + deep: true, + immediate:true + }, + }, } diff --git a/sgzb-ui/src/views/scrapManage/component/dialogModel.vue b/sgzb-ui/src/views/scrapManage/component/dialogModel.vue deleted file mode 100644 index beb15e87..00000000 --- a/sgzb-ui/src/views/scrapManage/component/dialogModel.vue +++ /dev/null @@ -1,84 +0,0 @@ - - - - - diff --git a/sgzb-ui/src/views/scrapManage/component/formModel.vue b/sgzb-ui/src/views/scrapManage/component/formModel.vue deleted file mode 100644 index 5c1eb711..00000000 --- a/sgzb-ui/src/views/scrapManage/component/formModel.vue +++ /dev/null @@ -1,133 +0,0 @@ - - - - - diff --git a/sgzb-ui/src/views/scrapManage/component/tableModel.vue b/sgzb-ui/src/views/scrapManage/component/tableModel.vue deleted file mode 100644 index a07b7471..00000000 --- a/sgzb-ui/src/views/scrapManage/component/tableModel.vue +++ /dev/null @@ -1,247 +0,0 @@ - - - - - diff --git a/sgzb-ui/src/views/scrapManage/forecastWaste/auditing/config.js b/sgzb-ui/src/views/scrapManage/forecastWaste/auditing/config.js index de041702..e63ed903 100644 --- a/sgzb-ui/src/views/scrapManage/forecastWaste/auditing/config.js +++ b/sgzb-ui/src/views/scrapManage/forecastWaste/auditing/config.js @@ -5,6 +5,8 @@ import { } from '@/api/repairTest/repair' import { getProjectList } from '@/api/claimAndRefund/receive' +import { getTypeList } from '@/api/store/warehousing' + let unitList = [] let proList = [] let typeList = [] @@ -68,7 +70,7 @@ export const dialogConfig = { isSelShow: false,// 表格是否需要复选框 isFormShow: true, // 是否显示表单查询组件 formLabel: [ - { f_label: '类型名称', f_model: 'keywords', f_type: 'sel' }, + { f_label: '类型名称', f_model: 'keywords', f_type: 'sel', f_selList: [], selLabel: 'typeName', selValue: 'typeId' }, ], columnsList: [ @@ -121,3 +123,12 @@ export const getSelList = () => { }) } + +export const getTypeListSel = async () => { + const { data: res } = await getTypeList({ level: '3' }) + dialogConfig.formLabel[0].f_selList = res.map((e) => { + e.value = e.typeId + e.label = e.typeName + return e + }) +} diff --git a/sgzb-ui/src/views/scrapManage/forecastWaste/auditing/index.vue b/sgzb-ui/src/views/scrapManage/forecastWaste/auditing/index.vue index 449e97d9..081539ac 100644 --- a/sgzb-ui/src/views/scrapManage/forecastWaste/auditing/index.vue +++ b/sgzb-ui/src/views/scrapManage/forecastWaste/auditing/index.vue @@ -163,7 +163,7 @@ diff --git a/sgzb-ui/src/views/scrapManage/scrap/disposition/config.js b/sgzb-ui/src/views/scrapManage/scrap/disposition/config.js index 75af0f69..1be3ebb6 100644 --- a/sgzb-ui/src/views/scrapManage/scrap/disposition/config.js +++ b/sgzb-ui/src/views/scrapManage/scrap/disposition/config.js @@ -1,3 +1,14 @@ +import { + getUnitInfoSelectApi, + listPartTypeApi, +} from '@/api/repairTest/repair' +import { getProjectList } from '@/api/claimAndRefund/receive' + +let unitList = [] +let proList = [] +let typeList = [] + + export const config = { handleColShow: true, // 是否显示操作列 pageShow: true, // 是否显示分页组件 @@ -9,8 +20,13 @@ export const config = { { f_label: '单位名称', f_model: 'backUnit', f_type: 'sel', f_selList: [] }, { f_label: '工程名称', f_model: 'backPro', f_type: 'sel', f_selList: [] }, { f_label: '工机具类型', f_model: 'type', f_type: 'selCas', f_selList: [], optionProps: { value: 'id', } }, - { f_label: '报废单号', f_model: 'laiyuan', f_type: 'ipt', }, - { f_label: '处置状态', f_model: 'taskStatus', f_type: 'sel', f_selList: [] }, + { f_label: '报废单号', f_model: 'scrapNum', f_type: 'ipt', }, + { + f_label: '处置状态', f_model: 'disposition', f_type: 'sel', f_selList: [ + { label: '未处置', value: 0 }, + { label: '已处置', value: 1 }, + ] + }, { f_label: '创建时间', f_model: 'time', f_type: 'date' }, ], columnsList: [ @@ -54,3 +70,40 @@ export const dialogConfig = { } +export const getSelList = () => { + new Promise(async (resolve) => { + const { data: unitRes } = await getUnitInfoSelectApi() + unitList = unitRes.map((e) => { + e.value = e.unitId + e.label = e.unitName + return e + }) + const { data: proRes } = await getProjectList() + proList = proRes.map((e) => { + e.value = e.projectId + e.label = e.projectName + return e + }) + const { data: typeRes } = await listPartTypeApi() + typeList = typeRes + resolve() + }).then(() => { + config.formLabel.map((item) => { + if (item.f_model === 'backUnit') { + item.f_selList = unitList + return item + } + if (item.f_model === 'backPro') { + item.f_selList = proList + return item + } + if (item.f_model === 'type') { + item.f_selList = typeList + return item + } + }) + }).catch(() => { + + }) +} + diff --git a/sgzb-ui/src/views/scrapManage/scrap/disposition/index.vue b/sgzb-ui/src/views/scrapManage/scrap/disposition/index.vue index 8e1ffaef..3779548b 100644 --- a/sgzb-ui/src/views/scrapManage/scrap/disposition/index.vue +++ b/sgzb-ui/src/views/scrapManage/scrap/disposition/index.vue @@ -154,7 +154,7 @@ } from '@/api/scrap/forecastWaste.js' import TableModel from '@/components/TableModel' import DialogModel from '@/components/DialogModel' - import { config, dialogConfig } from './config.js' + import { config, dialogConfig, getSelList } from './config.js' export default { components: { TableModel, @@ -186,9 +186,12 @@ // }, /* 附件预览地址 */ filePreviewUrl: process.env.VUE_APP_BASE_API + '/system', + getSelList, } }, - created() {}, + created() { + this.getSelList() + }, methods: { /* 按钮操作 */ handlePreview(row) { diff --git a/sgzb-ui/src/views/scrapManage/scrap/scrapAuditing/config.js b/sgzb-ui/src/views/scrapManage/scrap/scrapAuditing/config.js index 0420fde9..3d73192e 100644 --- a/sgzb-ui/src/views/scrapManage/scrap/scrapAuditing/config.js +++ b/sgzb-ui/src/views/scrapManage/scrap/scrapAuditing/config.js @@ -1,3 +1,13 @@ +import { + getUnitInfoSelectApi, + listPartTypeApi, +} from '@/api/repairTest/repair' +import { getProjectList } from '@/api/claimAndRefund/receive' + +let unitList = [] +let proList = [] +let typeList = [] + export const config = { handleColShow: true, // 是否显示操作列 pageShow: true, // 是否显示分页组件 @@ -9,9 +19,22 @@ export const config = { { f_label: '单位名称', f_model: 'backUnit', f_type: 'sel', f_selList: [] }, { f_label: '工程名称', f_model: 'backPro', f_type: 'sel', f_selList: [] }, { f_label: '工机具类型', f_model: 'type', f_type: 'selCas', f_selList: [], optionProps: { value: 'id', } }, - { f_label: '维修单号', f_model: 'laiyuan', f_type: 'ipt', }, - { f_label: '审批状态', f_model: 'taskStatus', f_type: 'sel', f_selList: [] }, - { f_label: '报废类型', f_model: 'taskStatus', f_type: 'sel', f_selList: [] }, + { f_label: '报废单号', f_model: 'scrapNum', f_type: 'ipt', }, + { + f_label: '审批状态', f_model: 'taskStatus', f_type: 'sel', f_selList: [ + { label: '待提交', value: 124 }, + { label: '审核中', value: 58 }, + { label: '已驳回', value: 61 }, + { label: '已通过', value: 59 }, + ] + }, + { + f_label: '报废来源', f_model: 'taskStatus', f_type: 'sel', f_selList: [ + { label: '退料', value: 1 }, + { label: '维修', value: 2 }, + { label: '盘点', value: 3 }, + ] + }, { f_label: '创建时间', f_model: 'time', f_type: 'date' }, ], columnsList: [ @@ -26,6 +49,7 @@ export const config = { { t_props: 'createTime', t_label: '任务创建时间' }, { t_props: '', t_label: '审核状态', t_slot: 'type' }, ], + routerParams: '' } export const dialogConfig = { @@ -53,3 +77,40 @@ export const dialogConfig = { ], } + +export const getSelList = () => { + new Promise(async (resolve) => { + const { data: unitRes } = await getUnitInfoSelectApi() + unitList = unitRes.map((e) => { + e.value = e.unitId + e.label = e.unitName + return e + }) + const { data: proRes } = await getProjectList() + proList = proRes.map((e) => { + e.value = e.projectId + e.label = e.projectName + return e + }) + const { data: typeRes } = await listPartTypeApi() + typeList = typeRes + resolve() + }).then(() => { + config.formLabel.map((item) => { + if (item.f_model === 'backUnit') { + item.f_selList = unitList + return item + } + if (item.f_model === 'backPro') { + item.f_selList = proList + return item + } + if (item.f_model === 'type') { + item.f_selList = typeList + return item + } + }) + }).catch(() => { + + }) +} diff --git a/sgzb-ui/src/views/scrapManage/scrap/scrapAuditing/index.vue b/sgzb-ui/src/views/scrapManage/scrap/scrapAuditing/index.vue index 1fcdbe7f..b4ae8b6a 100644 --- a/sgzb-ui/src/views/scrapManage/scrap/scrapAuditing/index.vue +++ b/sgzb-ui/src/views/scrapManage/scrap/scrapAuditing/index.vue @@ -78,9 +78,9 @@ > @@ -149,7 +149,7 @@ import TableModel from '@/components/TableModel' import DialogModel from '@/components/DialogModel' import AuditingDetails from '../../component/auditingDetails.vue' - import { config, dialogConfig } from './config.js' + import { config, dialogConfig,getSelList } from './config.js' import { getScrapListApi, getDialogListApi, @@ -185,9 +185,12 @@ /* 审批详情的列表 */ auditingList: [], + getSelList } }, - created() {}, + created() { + this.getSelList() + }, methods: { /* 按钮操作 */ handlePreview(row) { @@ -266,11 +269,22 @@ }, /* 审核按钮的显示条件 */ auditingIsShow(row) { - let temp = row.scrapAuditorSetList.some((e) => { + let temp = row.scrapAuditorSetList?.some((e) => { return e.deptId == this.deptId && e.status == '0' }) return temp }, }, + watch: { + $route: { + handler(to) { + if (to.query.keyWord) { + this.config.routerParams = to.query.keyWord + } + }, + deep: true, + immediate: true, + }, + }, } diff --git a/sgzb-ui/src/views/store/newBuy/newAccessory/newAccessoryList.vue b/sgzb-ui/src/views/store/newBuy/newAccessory/newAccessoryList.vue index 75836165..2bcb4c23 100644 --- a/sgzb-ui/src/views/store/newBuy/newAccessory/newAccessoryList.vue +++ b/sgzb-ui/src/views/store/newBuy/newAccessory/newAccessoryList.vue @@ -1,35 +1,53 @@ \ No newline at end of file + ::v-deep.el-table .fixed-width .el-button--mini { + width: 60px !important; + margin-bottom: 10px; + } + diff --git a/sgzb-ui/src/views/store/newBuy/newDevices/newDevicesList.vue b/sgzb-ui/src/views/store/newBuy/newDevices/newDevicesList.vue index 424e616a..4cf97978 100644 --- a/sgzb-ui/src/views/store/newBuy/newDevices/newDevicesList.vue +++ b/sgzb-ui/src/views/store/newBuy/newDevices/newDevicesList.vue @@ -590,6 +590,7 @@ resetQuery() { this.queryParams.time = [] this.resetForm('queryForm') + this.queryParams.keyWord = '' this.handleQuery() }, /** 新增按钮操作 */ diff --git a/sgzb-ui/src/views/store/warehousing/repairWarehousing.vue b/sgzb-ui/src/views/store/warehousing/repairWarehousing.vue index 0d732e32..a6a702c7 100644 --- a/sgzb-ui/src/views/store/warehousing/repairWarehousing.vue +++ b/sgzb-ui/src/views/store/warehousing/repairWarehousing.vue @@ -1,21 +1,50 @@ diff --git a/sgzb-ui/vue.config.js b/sgzb-ui/vue.config.js index cfd4a588..9792c04e 100644 --- a/sgzb-ui/vue.config.js +++ b/sgzb-ui/vue.config.js @@ -42,11 +42,11 @@ module.exports = { // target: `https://test-cc.zhgkxt.com`,//线上环境-南网 // target: `https://z.csgmall.com.cn`, - // target: `http://10.40.92.13:38080`, //超 + target: `http://10.40.92.8:38080`, //超 // target: `http://10.40.92.81:8080`, //韩/ // target: `http://10.40.92.74:8080`,//旭/ - target: `http://10.40.92.138:28080`, //帅 - // target: `http://10.40.92.14:28080`, //福 + // target: `http://10.40.92.138:28080`, //帅 + // target: `http://10.40.92.253:28080`, //福 //******** 注意事项 ********* */ //1.全局替换qrUrl二维码扫码提供的网址-发布服务器的地址target;