环卫车小程序前端代码
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.

38 lines
698 B

4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
  1. <template>
  2. <view>
  3. <view class="se-flex se-flex-v-c se-pt-180">
  4. <image class="se-a-150" src="@/static/image/logo.png" mode=""></image>
  5. <text class="se-c-black se-fs-28 se-pt-30">{{paramValue}}</text>
  6. </view>
  7. </view>
  8. </template>
  9. <script>
  10. import { queryAboutus } from "@/common/api.js"
  11. export default {
  12. data(){
  13. return{
  14. paramValue:"",
  15. }
  16. },
  17. watch: {
  18. },
  19. onLoad() {
  20. this.onqueryAboutus()
  21. },
  22. methods:{
  23. onClick(index){
  24. console.info(index)
  25. },
  26. onqueryAboutus(){
  27. queryAboutus({}).then(response=>{
  28. console.info("queryAboutus",response)
  29. this.paramValue = response.result.paramValue
  30. }).catch(error=>{
  31. })
  32. }
  33. }
  34. }
  35. </script>