@@ -37,9 +42,6 @@ import detailViewLeftMixin from '@/components/common/mixin/detailViewLeftMixin'
export default {
name: 'assetDetail',
mixins: [detailViewLeftMixin],
- props: {
- detailViewRightObj: {}
- },
data () {
return {
tableTitle: [
@@ -141,26 +143,7 @@ export default {
show: false,
minWidth: 120
}
- ],
- orderBy: '',
- orderType: 'ascending'
- }
- },
- methods: {
- detailViewRightShow (item) {
- this.$emit('detailViewRightShow', item)
- }
- },
- watch: {
- orderBy: {
- handler (n) {
- this.$emit('orderDetail', n, this.orderType)
- }
- },
- orderType: {
- handler (n) {
- this.$emit('orderDetail', this.orderBy, n)
- }
+ ]
}
}
}
@@ -168,9 +151,11 @@ export default {