123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <template>
- <div id="zzqt">
- <el-row>
- <el-col :span="24">
- <el-col :span="24" class="list" v-for="(item, index) in zzqtList" :key="index">
- <el-col :span="24" class="name">
- {{ item.product_name }}
- </el-col>
- <el-col :span="24" class="text">
- 营销人:<span>{{ item.username }}</span>
- </el-col>
- <el-col :span="24" class="text">
- 购买人:<span>{{ item.market_username }}</span>
- </el-col>
- </el-col>
- </el-col>
- </el-row>
- </div>
- </template>
- <script>
- import { mapState, createNamespacedHelpers } from 'vuex';
- export default {
- name: 'zzqt',
- props: {
- zzqtList: null,
- },
- components: {},
- data: function() {
- return {};
- },
- created() {},
- methods: {},
- computed: {
- ...mapState(['user']),
- pageTitle() {
- return `${this.$route.meta.title}`;
- },
- },
- metaInfo() {
- return { title: this.$route.meta.title };
- },
- };
- </script>
- <style lang="less" scoped>
- .list {
- margin: 0 5px 10px 5px;
- width: 97%;
- padding: 0 10px;
- border-radius: 10px;
- background: #f9fafc;
- .name {
- padding: 5px 0px;
- font-size: 16px;
- }
- .text {
- padding: 5px 0;
- font-size: 14px;
- color: #ccc;
- span {
- color: #000;
- }
- }
- }
- </style>
|