|
@@ -33,6 +33,7 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
+import { getUnusedInfo } from '@/api/idle-assets/idle-assets'
|
|
|
import AuditForm from './AuditForm.vue'
|
|
|
import DetailList from '@/components/tools/DetailList'
|
|
|
const DetailListItem = DetailList.Item
|
|
@@ -90,7 +91,9 @@ export default {
|
|
|
},
|
|
|
handleOk () {
|
|
|
this.visible = true
|
|
|
- this.$refs.table.refresh()
|
|
|
+ getUnusedInfo({ id: this.modal.id }).then(res => {
|
|
|
+ this.modal = res.data
|
|
|
+ })
|
|
|
},
|
|
|
handleCancel () {
|
|
|
this.visible = false
|