| | |
| | | |
| | | # VUE_APP_API = 'https://dmtest.ahapp.net/preselect_interface/' |
| | | |
| | | VUE_APP_API = 'http://192.168.0.15:10022/' |
| | | VUE_APP_API = 'http://192.168.0.35:10022/' |
| | | |
| | | # VUE_APP_API = 'https://dmtest.ahapp.net/preselect_web_interface/' |
| | | |
| | |
| | | |
| | | <el-button type="primary" :loading="isWorking.export" @click="bulkOperation(0)">批量上架</el-button> |
| | | <el-button type="primary" :loading="isWorking.export" @click="bulkOperation(1)">批量下架</el-button> |
| | | <!-- <li><el-button @click="deleteByIdInBatch" icon="el-icon-delete" v-permissions="['business:goods:delete']">删除</el-button></li> --> |
| | | <el-button style="background: red;border-color:red" type="primary" :loading="isWorking.export" @click="deleteByIdInBatch" icon="el-icon-delete" v-permissions="['business:goods:delete']">批量删除</el-button> |
| | | </ul> |
| | | <el-table |
| | | v-loading="isWorking.search" |
| | |
| | | <view class="label">{{child.name}}:</view> |
| | | <view class="value">{{child.val}}</view> |
| | | </view> |
| | | <view v-if="item.param2" class="paramline"></view> |
| | | <view v-if="item.param2.length>0" class="paramline"></view> |
| | | <view class="item" v-if="item.param2" v-for="(child, j) in item.param2" :key="child.index"> |
| | | <view class="label">{{child.name}}:</view> |
| | | <view class="value">{{child.val}}</view> |
| | |
| | | # application: |
| | | # name: doumeemes |
| | | profiles: |
| | | active: pro |
| | | active: dev |
| | | |
| | | # JSON返回配置 |
| | | jackson: |
| | |
| | | return; |
| | | } |
| | | String attrName = attr.substring(0,index); |
| | | if(StringUtils.isBlank(attrName) || StringUtils.equals(attrName, "商品名称") || StringUtils.equals(attrName, "商品编号")){ |
| | | if(StringUtils.isBlank(attrName) |
| | | || StringUtils.equals(attrName, "商品名称") |
| | | || StringUtils.equals(attrName, "商品编号") |
| | | || StringUtils.equals(attrName, "店铺")){ |
| | | return; |
| | | } |
| | | String val = attr.substring(index+1); |
| | |
| | | if (CollectionUtils.isEmpty(ids)) { |
| | | return; |
| | | } |
| | | goodsMapper.deleteBatchIds(ids); |
| | | for(Integer id : ids){ |
| | | deleteById(id); |
| | | } |
| | | // goodsMapper.deleteBatchIds(ids); |
| | | } |
| | | |
| | | @Override |