12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <template>
- <view class="container">
- <!-- 供销社详情 -->
- <view class="cooperativeImgBox">
- <image :src="loadImgSrc('/snbj.png')" class="cooperativeImg"></image>
- </view>
- <view class="itemBox" v-for="(item, index) in list" :key="index">
- <view class="item">
- <span>
- {{ item.title }}:
- </span>
- <span>
- {{ item.content }}
- </span>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- list: [
- {
- title: "名称",
- content: "第十三号供销社",
- },
- {
- title: "地址",
- content: "十三号街区地下研究所",
- },
- {
- title: "负责人",
- content: "高耀",
- },
- {
- title: "负责人电话",
- content: "13178945612",
- }
- ],
- cooperative: {
- name:"供销社1",
- address:"供销社地址1",
- chargePeople:"负责人1",
- chargePhone:"13103215236",
- imgUrl:"/profile/upload/2024/03/01/nacos_20240301145836A002.png"
- }
- }
- }
- /**
- * 生命周期函数--监听页面加载
- */,
- onLoad(options) {
- console.log(666)
- },
- methods: {
- }
- };
- </script>
- <style>
- @import './details.css';
- </style>
|