|
|
|
@ -36,21 +36,21 @@ |
|
|
|
<text class="text_11">{{ details.sub_order.center_s }}</text> |
|
|
|
</view> |
|
|
|
<view class="group_12"> |
|
|
|
<text class="text_12">边框分:</text> |
|
|
|
<text class="text_13">{{ details.sub_order.border_s }}</text> |
|
|
|
<text class="text_12">卡角分:</text> |
|
|
|
<text class="text_13">{{ details.sub_order.corner_s }}</text> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<view class="group_13"> |
|
|
|
<text class="text_14">表面分:</text> |
|
|
|
<text class="text_15">{{ details.sub_order.front_s }}</text> |
|
|
|
<text class="text_14">边框分:</text> |
|
|
|
<text class="text_15">{{ details.sub_order.border_s }}</text> |
|
|
|
</view> |
|
|
|
<view class="group_14"> |
|
|
|
<text class="text_16">签字分:</text> |
|
|
|
<text class="text_17">{{ details.sub_order.sign_s }}</text> |
|
|
|
<text class="text_16">表面分:</text> |
|
|
|
<text class="text_17">{{ details.sub_order.front_s }}</text> |
|
|
|
</view> |
|
|
|
<view class="group_15"> |
|
|
|
<text class="text_18">卡角分:</text> |
|
|
|
<text class="text_19">{{ details.sub_order.corner_s }}</text> |
|
|
|
<text class="text_18">签字分:</text> |
|
|
|
<text class="text_19">{{ details.sub_order.sign_s }}</text> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<view class="flex-col items-center section_5"> |
|
|
|
@ -112,6 +112,21 @@ |
|
|
|
onLoad(options){ |
|
|
|
if(this.$valueType(options.data) !== 'undefined'){ |
|
|
|
this.details = JSON.parse(decodeURIComponent(options.data)); |
|
|
|
|
|
|
|
let f = ['series_num','card_series','card_series', |
|
|
|
'sub_card_series','publisher','limit_num', |
|
|
|
'center_s','corner_s','border_s','front_s', |
|
|
|
'sign_s']; |
|
|
|
|
|
|
|
for (let i = 0; i < f.length; i++) { |
|
|
|
let key = f[i] |
|
|
|
let v = this.details.sub_order[key] |
|
|
|
if(v == null || v == '0'){ |
|
|
|
this.details.sub_order[key] = '-' |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
}, |
|
|
|
methods: { |
|
|
|
|