bug修改

ywj_dev
anthonywj 2 years ago
parent 6cfde1762b
commit addadaa935

@ -204,7 +204,7 @@ export default {
type: 1, type: 1,
editStatus: 1, editStatus: 1,
}, },
currentRow: null,
corpLoading: false, corpLoading: false,
fromOptions: [], fromOptions: [],
@ -403,6 +403,7 @@ export default {
}); });
}, },
handleDetail(row) { handleDetail(row) {
this.currentRow = row;
let query = {orderIdFk: row.id}; let query = {orderIdFk: row.id};
this.loading = true; this.loading = true;
listOrderDetail(query) // listOrderDetail(query) //
@ -497,8 +498,7 @@ export default {
} }
, ,
components: { components: {}
}
, ,
filters: { filters: {
statusFilterType(status) { statusFilterType(status) {

@ -82,7 +82,6 @@
<el-radio-group v-model="inputQuery.auditStatus"> <el-radio-group v-model="inputQuery.auditStatus">
<el-radio :label="1">草稿</el-radio> <el-radio :label="1">草稿</el-radio>
<el-radio :label="2">待审核</el-radio> <el-radio :label="2">待审核</el-radio>
<el-radio :label="3">已审核</el-radio>
</el-radio-group> </el-radio-group>
</el-form-item> </el-form-item>
</el-col> </el-col>

@ -438,7 +438,8 @@ export default {
previewPdf(row) { previewPdf(row) {
let query = {id: row.id}; debugger
let query = {id: row.id,module:row.module};
demoPrint(query).then((response) => { demoPrint(query).then((response) => {
//pdfurl //pdfurl
const binaryData = []; const binaryData = [];

Loading…
Cancel
Save