12345678910111213141516171819202122232425262728293031323334353637383940 |
- <template>
- <view>
- <view >
- <ul >
- {{jobDescription}}
- </ul>
- </view>
- </view>
- </template>
- <script>
- import {
- getGridType
- } from '@/api/handleAffairs/gridType.js';
- export default {
- data() {
- return {
- jobDescription:'',
- };
- },
- onLoad(option){
- 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>
|