|
|
|
@ -14,20 +14,9 @@ |
|
|
|
|
v-model="queryParam.plate_id" |
|
|
|
|
v-decorator="['plate_id', { initialValue: 0 }]" |
|
|
|
|
> |
|
|
|
|
<a-select-option :value="0">全部</a-select-option> |
|
|
|
|
<a-select-option :value="1">商品</a-select-option> |
|
|
|
|
<a-select-option :value="2">数据</a-select-option> |
|
|
|
|
<a-select-option :value="3">商品订单</a-select-option> |
|
|
|
|
<a-select-option :value="4">服务订单</a-select-option> |
|
|
|
|
<a-select-option :value="5">回收订单</a-select-option> |
|
|
|
|
<a-select-option :value="6">支付</a-select-option> |
|
|
|
|
<a-select-option :value="7">财务</a-select-option> |
|
|
|
|
<a-select-option :value="8">店铺展示</a-select-option> |
|
|
|
|
<a-select-option :value="9">角色</a-select-option> |
|
|
|
|
<a-select-option :value="10">营销</a-select-option> |
|
|
|
|
<a-select-option :value="11">多商户</a-select-option> |
|
|
|
|
<a-select-option :value="12">内容管理</a-select-option> |
|
|
|
|
<a-select-option :value="13">其他功能</a-select-option> |
|
|
|
|
<a-select-option v-for="(item, index) in describeList" :key="index" :value="item.id">{{ |
|
|
|
|
item.name |
|
|
|
|
}}</a-select-option> |
|
|
|
|
</a-select> |
|
|
|
|
</a-form-item> |
|
|
|
|
<a-form-item label="商城类型" :labelCol="labelCol" :wrapperCol="wrapperCol"> |
|
|
|
@ -100,6 +89,7 @@ export default { |
|
|
|
|
plate_id: '', |
|
|
|
|
type: '', |
|
|
|
|
}, |
|
|
|
|
describeList: [], |
|
|
|
|
searchForm: this.$form.createForm(this), |
|
|
|
|
columns: [ |
|
|
|
|
{ |
|
|
|
@ -155,8 +145,20 @@ export default { |
|
|
|
|
}, |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
created() {}, |
|
|
|
|
created() { |
|
|
|
|
this.getRetailDescribeList() |
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
|
getRetailDescribeList() { |
|
|
|
|
Api.retailDescribeList().then((result) => { |
|
|
|
|
let all = { |
|
|
|
|
name: '全部', |
|
|
|
|
id: 0, |
|
|
|
|
} |
|
|
|
|
result.data.list.unshift(all) |
|
|
|
|
this.describeList = result.data.list |
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
|
// 删除记录 |
|
|
|
|
handleDelete(record) { |
|
|
|
|
const self = this |
|
|
|
|