相关bug收尾

ywj_dev
anthonywj 2 years ago
parent 8d026cc9d8
commit a03ed7bd0f

@ -14,7 +14,7 @@ ENV = 'production'
# 平潭 # 平潭
# VUE_APP_BASE_API = 'http://121.204.169.96:9150/UDI_SPMS_SERVER/' # VUE_APP_BASE_API = 'http://121.204.169.96:9150/UDI_SPMS_SERVER/'
# 文明 # 文明
VUE_APP_BASE_API = 'http://192.168.0.62:9150/UDI_SPMS_SERVER/' VUE_APP_BASE_API = 'http://192.168.0.62:9150/UDI_SPMS_SERVER/'
# 应用访问路径 例如使用前缀 /admin/ # 应用访问路径 例如使用前缀 /admin/
VUE_APP_CONTEXT_PATH = '/UDI_SPMS_CLIENT/' VUE_APP_CONTEXT_PATH = '/UDI_SPMS_CLIENT/'

@ -49,6 +49,7 @@
<el-input v-model="editData.count" auto-complete="off" <el-input v-model="editData.count" auto-complete="off"
type="number" type="number"
min="1" min="1"
disabled
:disabled="editData.serialNo!=null && editData.serialNo!='' "></el-input> :disabled="editData.serialNo!=null && editData.serialNo!='' "></el-input>
</el-form-item> </el-form-item>
</el-col> </el-col>

@ -944,7 +944,7 @@ export default {
}, },
// //
rollback(row) { rollback(row) {
this.$confirm('此操作将撤回单据至已校验未审核状态并删除对应库存信息, 是否继续?', '提示', { this.$confirm('此操作将撤回单据至已校验未审核状态, 是否继续?', '提示', {
confirmButtonText: '确定', confirmButtonText: '确定',
cancelButtonText: '取消', cancelButtonText: '取消',
type: 'warning' type: 'warning'

@ -89,8 +89,8 @@
<el-table-column label="物资名称" prop="coName" width="160" show-overflow-tooltip></el-table-column> <el-table-column label="物资名称" prop="coName" width="160" show-overflow-tooltip></el-table-column>
<el-table-column label="规格型号" prop="spec" width="180" show-overflow-tooltip></el-table-column> <el-table-column label="规格型号" prop="spec" width="180" show-overflow-tooltip></el-table-column>
<el-table-column label="批次号" prop="batchNo" width="120"></el-table-column> <el-table-column label="批次号" prop="batchNo" width="120"></el-table-column>
<el-table-column label="入库数量" prop="count" width="100"></el-table-column> <el-table-column label="入库数量" prop="inCount" width="100"></el-table-column>
<el-table-column label="出库数量" prop="reCount" width="100" show-overflow-tooltip></el-table-column> <el-table-column label="出库数量" prop="outCount" width="100" show-overflow-tooltip></el-table-column>
<el-table-column label="单据类型" prop="billTypeName" width="120"></el-table-column> <el-table-column label="单据类型" prop="billTypeName" width="120"></el-table-column>
<el-table-column label="生产日期" prop="productDate" width="120" show-overflow-tooltip></el-table-column> <el-table-column label="生产日期" prop="productDate" width="120" show-overflow-tooltip></el-table-column>
<el-table-column label="失效日期" prop="expireDate" width="120" show-overflow-tooltip></el-table-column> <el-table-column label="失效日期" prop="expireDate" width="120" show-overflow-tooltip></el-table-column>

@ -436,7 +436,7 @@ export default {
}; };
this.checked = row.isUseDy == 1; this.checked = row.isUseDy == 1;
this.detailQuery = { this.detailQuery = {
cpmctymc: row.cpmctymc, entireCpmctymc: row.cpmctymc,
manufactory: row.manufactory, manufactory: row.manufactory,
page: 1, page: 1,
limit: 10, limit: 10,

@ -47,11 +47,12 @@
size="small" size="small"
placeholder="请输入内容" placeholder="请输入内容"
clearable clearable
v-model="companyInfo.name" disabled="false"
v-model="locSystem"
></el-input> ></el-input>
</el-form-item> </el-form-item>
</el-form> </el-form>
<!--供应商自助管理平台-->
</el-col> </el-col>
</el-row> </el-row>
@ -242,6 +243,7 @@ export default {
qrCodeVisible: false, qrCodeVisible: false,
serverUrl: false, serverUrl: false,
companyInfo: {}, companyInfo: {},
locSystem: process.env.VUE_APP_TITLE,
}; };
}, },
@ -259,11 +261,11 @@ export default {
}, },
onSubmit() { onSubmit() {
this.filterQuery.page=1; this.filterQuery.page = 1;
this.getList(); this.getList();
}, },
closeDialogVisible(){ closeDialogVisible() {
this.centerDialogVisible=false; this.centerDialogVisible = false;
this.getList(); this.getList();
}, },
getList() { getList() {

@ -35,7 +35,7 @@ module.exports = {
proxy: { proxy: {
// detail: https://cli.vuejs.org/config/#devserver-proxy // detail: https://cli.vuejs.org/config/#devserver-proxy
[process.env.VUE_APP_BASE_API]: { [process.env.VUE_APP_BASE_API]: {
target: process.env.VUE_APP_BASE_API, target: `http://192.168.0.166:9993/`,
changeOrigin: true, changeOrigin: true,
pathRewrite: { pathRewrite: {
['^' + process.env.VUE_APP_BASE_API]: '' ['^' + process.env.VUE_APP_BASE_API]: ''
@ -47,7 +47,7 @@ module.exports = {
css: { css: {
loaderOptions: { loaderOptions: {
sass: { sass: {
sassOptions: { outputStyle: "expanded" } sassOptions: {outputStyle: "expanded"}
} }
} }
}, },

Loading…
Cancel
Save