123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <template>
- <view>
- <view >
- <ul >
- {{jobDescription}}
- </ul>
- </view>
- </view>
- </template>
- <script>
- import {
- getGridType
- } from '@/api/handleAffairs/gridType.js';
- export default {
- data() {
- return {
- jobDescription:'',
- };
- },
-
- onLoad(option){
- uni.setNavigationBarTitle({
- title: option.titleText
- });
-
- const _that = this
- const id = uni.getStorageSync('id');
- console.log(id)
- getGridType(id).then(res =>{
- _that.jobDescription = res.data.jobDescription
- })
- },
- methods: {
- }
- }
- </script>
- <style scoped>
- </style>
|