|
|
@@ -47,11 +47,11 @@ export default {
|
|
|
onLoad() {
|
|
|
getCustomDetail(this.option.id).then(res=>{
|
|
|
if(res.code == 1){
|
|
|
+ this.customName = res.data.customName
|
|
|
let name = res.data && res.data.ghsShopName ? res.data.ghsShopName : '';
|
|
|
let num = res.data && res.data.num ? res.data.num : 0
|
|
|
let price = res.data.actPrice ? parseFloat(res.data.actPrice) : 0
|
|
|
- this.title = name+' '+num+'笔 ¥'+price
|
|
|
- this.customName = res.data.customName
|
|
|
+ this.title = name+' '+this.customName+' '+num+'笔 ¥'+price
|
|
|
}
|
|
|
})
|
|
|
if(this.option.hasNoticeCustom){
|
|
|
@@ -59,6 +59,9 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
|
+ init(){
|
|
|
+
|
|
|
+ },
|
|
|
inviteClear(){
|
|
|
let that = this
|
|
|
let miniOriginalId = that.dictInfo.miniOriginalId && that.dictInfo.miniOriginalId.current && that.dictInfo.miniOriginalId.current.ghs ? that.dictInfo.miniOriginalId.current.ghs : ''
|