|
|
|
@ -53,7 +53,7 @@ |
|
|
|
|
/> |
|
|
|
|
</template> |
|
|
|
|
<span slot="specific_value" slot-scope="text"> |
|
|
|
|
<a-tooltip placement="topLeft" :title="text"> {{ text}}</a-tooltip> |
|
|
|
|
<a-tooltip placement="topLeft" :title="text"> {{ text }}</a-tooltip> |
|
|
|
|
</span> |
|
|
|
|
<!-- 商品状态 --> |
|
|
|
|
<span slot="status" slot-scope="text"> |
|
|
|
@ -112,6 +112,7 @@ export default { |
|
|
|
|
maxNum: PropTypes.integer.def(100), |
|
|
|
|
// 默认选中的列表记录 |
|
|
|
|
defaultList: PropTypes.array.def([]), |
|
|
|
|
channel:PropTypes.any |
|
|
|
|
}, |
|
|
|
|
components: { |
|
|
|
|
STable, |
|
|
|
@ -128,11 +129,15 @@ export default { |
|
|
|
|
// 当前表单元素 |
|
|
|
|
searchForm: this.$form.createForm(this), |
|
|
|
|
// 查询参数 |
|
|
|
|
queryParam: {}, |
|
|
|
|
queryParam: { |
|
|
|
|
is_sale: 1, |
|
|
|
|
is_pool: 1, |
|
|
|
|
}, |
|
|
|
|
// table表头 |
|
|
|
|
columns, |
|
|
|
|
// 加载数据方法 必须为 Promise 对象 |
|
|
|
|
loadData: (param) => { |
|
|
|
|
this.queryParam.channel = this.channel |
|
|
|
|
return GoodsApi.list({ ...param, ...this.queryParam }).then((response) => { |
|
|
|
|
return response.data.list |
|
|
|
|
}) |
|
|
|
|