prod
lily.zhang 3 years ago
parent 93358ca604
commit 7da39a7ce0

@ -1,7 +1,7 @@
<!-- <!--
* @Author: your name * @Author: your name
* @Date: 2021-10-13 18:14:01 * @Date: 2021-10-13 18:14:01
* @LastEditTime: 2021-10-13 19:43:11 * @LastEditTime: 2021-11-08 16:09:12
* @LastEditors: Please set LastEditors * @LastEditors: Please set LastEditors
* @Description: In User Settings Edit * @Description: In User Settings Edit
* @FilePath: /data-show/src/views/TailInsightDetails/rearWingInformationList/index.vue * @FilePath: /data-show/src/views/TailInsightDetails/rearWingInformationList/index.vue
@ -46,6 +46,7 @@
</template> </template>
<script> <script>
import { getUserSeriesName } from "@/api/comm";
export default { export default {
name: "rearWingInformationList", name: "rearWingInformationList",
data() { data() {
@ -106,6 +107,17 @@ export default {
] ]
}; };
}, },
methods: {
//
getUserSeriesName(brandName) {
this.form.token = this.getToken;
this.form.sBrandName = brandName;
getUserSeriesName(this.form).then((res) => {
let data = res.data || [];
this.model = data[0].name;
});
},
}
}; };
</script> </script>

Loading…
Cancel
Save