You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.6 KiB
61 lines
1.6 KiB
<template>
|
|
<div style="margin-top: 20px;width: 90%;margin-left: 8%">
|
|
<el-link v-if="this.currentapp.issupersign" style="margin-bottom: 30px;font-size: x-large" type="primary"
|
|
@click="$router.push({name:'FirSuperSignBase',params:{act:'useddevices'},query:{bundleid: currentapp.bundle_id}})">
|
|
该应用已经开启超级签,请点击查看最新设备列表
|
|
</el-link>
|
|
<h2>UDID列表及用户信息 - {{ udidlists.length }}个设备</h2>
|
|
<el-table
|
|
:data="udidlists"
|
|
stripe
|
|
style="width: 100%">
|
|
<el-table-column label="设备型号"
|
|
prop="model"
|
|
width="180">
|
|
</el-table-column>
|
|
<el-table-column label="系统版本"
|
|
prop="version"
|
|
width="180">
|
|
</el-table-column>
|
|
<el-table-column label="UDID"
|
|
prop="udid"
|
|
width="380">
|
|
</el-table-column>
|
|
</el-table>
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "FirAppInfosdevices",
|
|
data() {
|
|
return {
|
|
currentapp: {},
|
|
udidlists: []
|
|
}
|
|
},
|
|
methods: {},
|
|
mounted() {
|
|
this.$store.dispatch('doappInfoIndex', [[70, 70], [70, 70]]);
|
|
if (!this.currentapp.app_id) {
|
|
this.currentapp = this.$store.state.currentapp;
|
|
if (this.currentapp.master_release) {
|
|
this.udidlists = this.currentapp.master_release.udid;
|
|
}
|
|
}
|
|
},
|
|
watch: {
|
|
'$store.state.currentapp': function () {
|
|
this.currentapp = this.$store.state.currentapp;
|
|
this.udidlists = this.currentapp.master_release.udid;
|
|
}
|
|
}, computed: {}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|
|
|