|
|
@@ -4,7 +4,8 @@
|
|
|
<view class="top-view"> </view>
|
|
|
<view class="result-view">
|
|
|
<view class="iconfont iconchenggong"></view>
|
|
|
- <view class="result-title">提交成功</view>
|
|
|
+ <view class="result-title" v-if="info.status == 3">保存成功</view>
|
|
|
+ <view class="result-title" v-else>提交成功</view>
|
|
|
|
|
|
<template>
|
|
|
<view style="margin-left:150upx;">
|
|
|
@@ -152,12 +153,12 @@ export default {
|
|
|
this.productList.forEach(function(item){
|
|
|
if(that.$util.isMoney(item.price) == false){
|
|
|
let name = item.name
|
|
|
- errorHint = '请填写'+name+'的花店价'
|
|
|
+ errorHint = '请填写 '+name+' 花店价'
|
|
|
hasError = true
|
|
|
}
|
|
|
if(that.$util.isMoney(item.skPrice) == false){
|
|
|
let name = item.name
|
|
|
- errorHint = '请填写'+name+'的个人价'
|
|
|
+ errorHint = '请填写 '+name+' 个人价'
|
|
|
hasError = true
|
|
|
}
|
|
|
})
|