Authored by 陈峰

bug修改

... ... @@ -168,6 +168,9 @@ export default {
if (result.code === 200) {
this.loadingOk = false;
this.showModal = false;
this.$Message.success('尺码保存成功!');
} else {
this.$Message.error('尺码保存失败!');
}
});
},
... ... @@ -189,21 +192,23 @@ export default {
.ivu-spin {
margin-top: 50px;
}
.size-inpt {
width: 70px;
}
.table-header {
border-bottom: 1px solid #e3e8ee;
background-color: #f5f7f9;
td {
background-color: #f5f7f9;
white-space: nowrap;
overflow: hidden;
background-color: #f5f7f9;
}
}
}
.size-modal {
.ivu-modal {
width: 90%;
... ...
... ... @@ -161,7 +161,12 @@ body {
.ivu-menu-item {
color: #fff !important;
}
.iconfont {
display: initial !important;
}
div[contenteditable] {
font-size: 0;
}
</style>
... ...
... ... @@ -5,7 +5,7 @@
const editProduct = r => require.ensure([], () => r(require('./edit')), 'product.edit');
export default {
path: '/edit/:id',
path: '/edit/:id.html',
name: 'edit',
component: editProduct
};
... ...
... ... @@ -12,7 +12,7 @@ const apiDomain = require('./api-domain');
const config = {
app: 'shop-manage',
appVersion: '0.0.1', // 调用api的版本
platform: 4,
platform: 2,
port: 6007,
siteUrl: '//shop.yohobuy.com',
assetUrl: '//127.0.0.1:5001',
... ...