liding
3 天以前 359f69135b571c8e7b6d046bc849655abfe7075d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
<template>
  <div class="divBox">
    <div class="header clearfix">
      <div class="container">
        <el-form inline>
          <el-form-item label="商品分类:">
            <el-cascader v-model="tableFrom.cateId" :options="merCateList" :props="props" clearable class="selWidth mr20" @change="getList(1)"/>
          </el-form-item>
          <el-form-item label="商品搜索:">
            <el-input v-model="tableFrom.keywords" @input="onInput($event)" placeholder="请输入商品名称,关键字,产品编号" class="selWidth">
              <el-button slot="append" icon="el-icon-search" @click="getList(1)"/>
            </el-input>
          </el-form-item>
        </el-form>
      </div>
    </div>
    <el-table
      v-loading="listLoading"
      :data="tableData.data"
      style="width: 100%"
      size="mini"
      ref="multipleTable"
      @selection-change="handleSelectionChange"
    >
      <el-table-column
        key="2"
        v-if="handleNum === 'many'"
        width="55">
        <template slot="header" slot-scope="scope">
          <el-checkbox slot="reference" :value="isChecked && checkedPage.indexOf(tableFrom.page) > -1" @change="changeType" />
        </template>
        <template slot-scope="scope">
          <el-checkbox
            :value="checkedIds.indexOf(scope.row.id) > -1"
            @change="(v)=>changeOne(v,scope.row)"
          />
        </template>
      </el-table-column>
      <el-table-column
        width="55"
        key="1"
        v-if="handleNum !== 'many'"
      >
        <template slot-scope="scope">
          <el-radio :label="scope.row.id" v-model="templateRadio" @change.native="getTemplateRow(scope.row)">&nbsp</el-radio>
        </template>
      </el-table-column>
      <el-table-column
        prop="id"
        label="ID"
        min-width="50"
      />
      <el-table-column label="商品图" width="80">
        <template slot-scope="scope">
          <div class="demo-image__preview">
            <el-image
              style="width: 36px; height: 36px"
              :src="scope.row.image"
              :preview-src-list="imgList"
            />
          </div>
        </template>
      </el-table-column>
      <el-table-column
        prop="storeName"
        label="商品名称"
        min-width="180"
      />
      <el-table-column
      label="商品分类"
      min-width="150"
      >
        <template slot-scope="scope">
          <span v-for="(item, index) in scope.row.cateValues.split(',')" :key="index" class="mr10">{{ item }}</span>
        </template>
      </el-table-column>
    </el-table>
    <div class="block mb20">
      <el-pagination
        :page-sizes="[10, 20, 30, 40]"
        :page-size="tableFrom.limit"
        :current-page="tableFrom.page"
        layout="total, sizes, prev, pager, next, jumper"
        :total="tableData.total"
        @size-change="handleSizeChange"
        @current-change="pageChange"
      />
    </div>
    <div v-if="handleNum === 'many'" class="right-align">
      <el-button size="small" type="primary" @click="ok">确定</el-button>
    </div>
  </div>
</template>
 
<script>
import { productLstApi, productDeleteApi, categoryApi, putOnShellApi, offShellApi, productHeadersApi } from '@/api/store'
export default {
  name: 'GoodList',
  props: {
    handleNum: {
      type: String,
      default: ''
    },
    checked: {
      type: Array,
      default: () => []
    }
  },
  data() {
    return {
      templateRadio:0,
      merCateList: [],
      props: {
        children: 'child',
        label: 'name',
        value: 'id',
        emitPath: false
      },
      listLoading: true,
      tableData: {
        data: [],
        total: 0
      },
      tableFrom: {
        page: 1,
        limit: 10,
        cateId: '',
        keywords: '',
        type: '1'
      },
      imgList: [],
      multipleSelection: [],
      checkedPage: [],
      isChecked: false,
      isIndex: 0,
      checkBox: [],
      checkedIds: [] // 订单当前页选中的数据
    }
  },
  mounted() {
    this.getList()
    if(this.checked.length){
      let [ ...arr2 ] = this.checked
      this.checkBox = arr2
      this.checkedIds = arr2.map(item => {
        return item.id
      })
    }
    this.getCategorySelect()
  },
  methods: {
    onInput(e){
      this.$forceUpdate();
    },
    changeType(v) {
      this.isChecked = v
        const index = this.checkedPage.indexOf(this.tableFrom.page)
        this.isIndex = index
        this.checkedPage.push(this.tableFrom.page)
        if (index > -1) {
          this.checkedPage.splice(index, 1)
        }
        this.syncCheckedId(v)
    },
    changeOne(v, order) {
      if (v) {
        const index = this.checkedIds.indexOf(order.id)
        if (index === -1){
          this.checkedIds.push(order.id)
          this.checkBox.push(order)
        }
      } else {
        const index = this.checkedIds.indexOf(order.id)
        if (index > -1){
          this.checkedIds.splice(index, 1)
          this.checkBox.splice(index, 1)
        }
      }
    },
    syncCheckedId(o) {
      const ids = this.tableData.data.map(v => v.id)
      if(o){
        this.tableData.data.forEach(item => {
          const index = this.checkedIds.indexOf(item.id)
          if (index === -1) {
            this.checkedIds.push(item.id)
            this.checkBox.push(item)
          }
        })
      }else{
        this.tableData.data.forEach(item => {
          const index = this.checkedIds.indexOf(item.id)
          if (index > -1) {
            this.checkedIds.splice(index, 1)
            this.checkBox.splice(index, 1)
          }
        })
      }
    },
    handleSelectionChange(val) {
      const tables = []
      val.map((item) => {
        tables.push({ src: item.image,
          id: item.id })
      })
      this.multipleSelection = tables
    },
    ok() {
      this.$emit('getStoreItem', this.checkBox)
    },
    getTemplateRow(row){
      this.$emit('getStoreItem', row)
    },
    // 商户分类;
    getCategorySelect() {
      categoryApi({ status: -1, type: 1 }).then(res => {
        this.merCateList = res
      }).catch(res => {
        this.$message.error(res.message)
      })
    },
    getList(num) {
      this.listLoading = true
      this.tableFrom.page = num ? num : this.tableFrom.page;
      productLstApi(this.tableFrom).then(res => {
        this.tableData.data = res.list
        this.tableData.total = res.total
        this.tableData.data.map((item) => {
          this.imgList.push(item.image)
        })
        this.tableData.data.forEach(item => {
          this.checked.forEach(element => {
            if (Number(item.id) === Number(element.id)) {
              this.$nextTick(() => {
                this.$refs.multipleTable.toggleRowSelection(item, true)
              })
            }
          })
        })
        this.listLoading = false
      }).catch(res => {
        this.listLoading = false
        this.$message.error(res.message)
      })
    },
    pageChange(page) {
      this.tableFrom.page = page
      this.getList()
    },
    handleSizeChange(val) {
      this.tableFrom.limit = val
      this.getList()
    }
  }
}
</script>
 
<style scoped lang="scss">
  .right-align{
    float: right;
  }
  .selWidth{
    width: 250px !important;
  }
  .seachTiele{
    line-height: 35px;
  }
  .fr{
    float: right;
  }
</style>