Commit 6e57e4fb authored by 李星剑's avatar 李星剑

upload 款式委托

parent d6d0d85e
......@@ -7,11 +7,11 @@
<span><u-icon size="24" color="#fff" name="arrow-right"></u-icon></span>
</view>
<view class="u-font-24 u-m-t-20 color_6F6F72">
<span class="u-m-r-10">{{ item.mdmMaterialCategory }}</span>
<span class="u-m-r-10">{{ item.materialCategory }}</span>
|
<span class="u-m-l-10 u-m-r-10">{{ item.mdmMaterialClothWidth }} cm</span>
<span class="u-m-l-10 u-m-r-10">{{ item.materialDoorWidth }} cm</span>
|
<span class="u-m-l-10">{{ item.mdmMaterialComponent }}</span>
<span class="u-m-l-10">{{ item.materialElement }}</span>
</view>
</view>
</view>
......
......@@ -105,7 +105,8 @@ export default class Request {
let query = Request.addQueryString(options.params);
mergeUrl += mergeUrl.indexOf('?') === -1 ? `?${query}` : `&${query}`
}
if(typeof options.data !== 'object'){
if(typeof options.data !== 'object' && options.method === 'get'){
mergeUrl = mergeUrl + '/' +options.data;
options.data = {};
}
......
......@@ -62,7 +62,7 @@
<view class="u-font-28 u-m-t-18 u-m-b-8"></view>
<view class="u-flex">
<view class="u-line-1 u-flex-1 u-font-32">
<input v-model="detail.expirationDate" @click="timePickerShow = true" readonly />
<input v-model="detail.expirationDate" @click="timePickerShow = true" readonly disabled/>
</view>
<u-icon name="arrow-right"></u-icon>
</view>
......@@ -602,7 +602,7 @@ export default {
} = res;
if(code === 200){
this.toast(msg,()=>{
this.back();
this.toBack();
})
}else{
this.toast(msg)
......
......@@ -21,7 +21,7 @@
<view class="u-p-r-30 u-p-b-30 u-p-l-30 bg-fff u-m-b-20">
<view class="u-l-height-44">所选面料</view>
<view >
<hs-material-thumbnail :item="detail"></hs-material-thumbnail>
<hs-material-thumbnail :item="item"></hs-material-thumbnail>
</view>
</view>
<!--面料颜色要求-->
......@@ -103,15 +103,16 @@
拆单
</view>
</view>
</view>
<!--待发布 立即按钮 状态 4 -->
<view class="custom-style-round-circle custom-style-btn custom-style"
v-if="this.detail.status === 4">
<view class="custom-style-left save" @click="toEditItem">编辑</view>
<view class="custom-style-right submit" @click="submitData">
立即发布
<!--待发布 立即按钮 状态 4 -->
<view class="custom-style-round-circle custom-style-btn custom-style"
v-if="this.detail.status === 4">
<view class="custom-style-left save" @click="toEditItem">编辑</view>
<view class="custom-style-right submit" @click="submitData">
立即发布
</view>
</view>
</view>
</view>
<!--提示-->
<u-toast ref="uToast" />
......@@ -177,6 +178,15 @@ export default {
}
},
computed:{
item(){
// console.log(this.detail)
return{
materialName: this.detail.mdmMaterialName,
materialCategory: this.detail.mdmMaterialCategory,
materialDoorWidth: this.detail.mdmMaterialClothWidth,
materialElement: this.detail.mdmMaterialComponent,
}
},
footerShow(){
let status = this.detail.status;
return status !== 8 || status !== 10
......@@ -373,7 +383,11 @@ export default {
referToBrand: data.referToBrand,
otherDescribe: data.otherDescribe,
colourQuantity: data.colourQuantity,
status: data.status
status: data.status,
mdmMaterialName: data.mdmMaterialName,
mdmMaterialCategory: data.mdmMaterialCategory,
mdmMaterialClothWidth: data.mdmMaterialClothWidth,
mdmMaterialComponent: data.mdmMaterialComponent,
}
}else{
this.$refs.uToast.show({
......
......@@ -189,7 +189,7 @@ export default {
} = res;
if(code === 200){
this.toast(msg,()=>{
this.back();
this.toBack();
})
}else{
this.toast(msg)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment