|
|
|
|
@ -367,7 +367,7 @@
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import { listUserInstrument, getInstrument, delInstrument, addInstrument, updateInstrument,changeSerial,changeGuarantee } from "@/api/system/userInstrument";
|
|
|
|
|
import {listInstrument} from "@/api/system/instrument";
|
|
|
|
|
import {listAllInstrument, listInstrument} from "@/api/system/instrument";
|
|
|
|
|
import {listLog,addLog} from "@/api/system/userInstrumentLog"
|
|
|
|
|
export default {
|
|
|
|
|
name: "Instrument",
|
|
|
|
|
@ -500,8 +500,9 @@ export default {
|
|
|
|
|
this.guaranteeForm.guarantee = "";
|
|
|
|
|
},
|
|
|
|
|
queryInstrument(){
|
|
|
|
|
listInstrument({}).then(response => {
|
|
|
|
|
this.instrumentList = response.rows;
|
|
|
|
|
listAllInstrument({}).then(response => {
|
|
|
|
|
console.log(response)
|
|
|
|
|
this.instrumentList = response;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
/** 查询用户仪器绑定列表 */
|
|
|
|
|
|