Commit 3449bdab authored by yaya's avatar yaya

feat: 详情button展示优化

parent 02ed64de
...@@ -7,13 +7,14 @@ ...@@ -7,13 +7,14 @@
type="text" type="text"
style="margin-left: 10px; margin-right: auto">{{ systemStateName }} style="margin-left: 10px; margin-right: auto">{{ systemStateName }}
</el-button> </el-button>
<el-button <div v-if="systemState === 1" style="margin-right: 12px">
v-if="systemState === 1" <el-button
:disabled="isHasPrice" :disabled="isHasPrice"
type="primary" type="primary"
size="mini" size="mini"
@click="imageValueDialogShow = true">图文估价 @click="imageValueDialogShow = true">图文估价
</el-button> </el-button>
</div>
<el-button <el-button
v-if="systemState === 6" v-if="systemState === 6"
type="primary" type="primary"
...@@ -21,13 +22,15 @@ ...@@ -21,13 +22,15 @@
@click="handleConfirmReceive">货品签收 @click="handleConfirmReceive">货品签收
</el-button> </el-button>
<el-button <div v-if="systemState === 8" style="margin-right: 12px">
v-if="systemState === 8" <el-button
:disabled="isHasPrice"
type="primary" :disabled="isHasPrice"
size="mini" type="primary"
@click="identifyValueDialogShow=true">建议寄售价 size="mini"
</el-button> @click="identifyValueDialogShow=true">建议寄售价
</el-button>
</div>
<el-button <el-button
v-if="systemState === 10" v-if="systemState === 10"
type="primary" type="primary"
...@@ -229,6 +232,7 @@ export default { ...@@ -229,6 +232,7 @@ export default {
} }
this.consignDetail = response.data.data.itemVo this.consignDetail = response.data.data.itemVo
this.isHasPrice = response.data.data.isHasPrice this.isHasPrice = response.data.data.isHasPrice
this.systemState = response.data.data.systemState
this.userVo = response.data.data.userVo this.userVo = response.data.data.userVo
this.payInfo = response.data.data.payInfo this.payInfo = response.data.data.payInfo
if (response.data.data.payInfo && response.data.data.payInfo.credential) { if (response.data.data.payInfo && response.data.data.payInfo.credential) {
......
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