|
@@ -15,7 +15,15 @@
|
|
|
type="primary"
|
|
|
size="small"
|
|
|
@click="clickViewPackaging()"
|
|
|
- v-if="queryData.query.processType && ['10', '20'].includes(queryData.query.processType) && queryData.query.flowKey == 'order'"
|
|
|
+ v-if="queryData.query.processType && queryData.query.processType == '20' && queryData.query.flowKey == 'order'"
|
|
|
+ v-preReClick>
|
|
|
+ 包装配置
|
|
|
+ </el-button>
|
|
|
+ <el-button
|
|
|
+ type="primary"
|
|
|
+ size="small"
|
|
|
+ @click="handlePackagingConfiguration()"
|
|
|
+ v-if="queryData.query.processType && queryData.query.processType == '10' && queryData.query.flowKey == 'order'"
|
|
|
v-preReClick>
|
|
|
包装配置
|
|
|
</el-button>
|
|
@@ -43,14 +51,14 @@
|
|
|
<el-button
|
|
|
type="primary"
|
|
|
v-if="!queryData.query.processType || ['30', '40'].includes(queryData.query.processType)"
|
|
|
- @click="handleSaveDraft"
|
|
|
+ @click="handleSaveDraft()"
|
|
|
v-preReClick>
|
|
|
保存草稿
|
|
|
</el-button>
|
|
|
<el-button
|
|
|
type="primary"
|
|
|
v-if="(!queryData.query.processType || ['30', '40'].includes(queryData.query.processType)) && queryData.query.flowKey == 'order'"
|
|
|
- @click="handlePackagingConfiguration"
|
|
|
+ @click="handlePackagingConfiguration()"
|
|
|
v-preReClick>
|
|
|
包装配置
|
|
|
</el-button>
|
|
@@ -72,7 +80,7 @@
|
|
|
</el-form-item>
|
|
|
<el-form-item>
|
|
|
<div style="width: 100%; text-align: center">
|
|
|
- <el-button type="primary" @click="handleSelectUser" v-preReClick>提交</el-button>
|
|
|
+ <el-button type="primary" @click="handleSelectUser()" v-preReClick>提交</el-button>
|
|
|
</div>
|
|
|
</el-form-item>
|
|
|
</el-form>
|