bug修改

prod
anthonywj 2 years ago
parent e992322520
commit 78f4cee01f

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

@ -655,7 +655,7 @@ export default {
newAcceptOrderVisible: false,
};
},
components: {AcceptOrder, NewAcceptOrder,ElImageViewer},
components: {AcceptOrder, NewAcceptOrder, ElImageViewer},
methods: {
onReset() {
this.$router.push({
@ -1004,7 +1004,7 @@ export default {
//
rollback(row) {
this.$confirm('此操作将撤回单据至待校验, 是否继续?', '提示', {
this.$confirm('此操作将撤回单据至已校验未审核状态, 是否继续?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
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="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="count" width="100"></el-table-column>
<el-table-column label="出库数量" prop="reCount" width="100" show-overflow-tooltip></el-table-column>
<el-table-column label="入库数量" prop="inCount" width="100"></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="billTypeName" width="120"></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.detailQuery = {
cpmctymc: row.cpmctymc,
entireCpmctymc: row.cpmctymc,
manufactory: row.manufactory,
page: 1,
limit: 10,

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

Loading…
Cancel
Save