bug修改

prod
anthonywj 2 years ago
parent e992322520
commit 78f4cee01f

@ -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>

@ -655,7 +655,7 @@ export default {
newAcceptOrderVisible: false, newAcceptOrderVisible: false,
}; };
}, },
components: {AcceptOrder, NewAcceptOrder,ElImageViewer}, components: {AcceptOrder, NewAcceptOrder, ElImageViewer},
methods: { methods: {
onReset() { onReset() {
this.$router.push({ this.$router.push({
@ -1004,7 +1004,7 @@ export default {
// //
rollback(row) { rollback(row) {
this.$confirm('此操作将撤回单据至待校验, 是否继续?', '提示', { this.$confirm('此操作将撤回单据至已校验未审核状态, 是否继续?', '提示', {
confirmButtonText: '确定', confirmButtonText: '确定',
cancelButtonText: '取消', cancelButtonText: '取消',
type: 'warning' type: 'warning'

@ -90,8 +90,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="measname" width="120"></el-table-column> <el-table-column label="计量单位" prop="measname" width="120"></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>

@ -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,7 +47,8 @@
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>
@ -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() {

Loading…
Cancel
Save