| | |
| | | |
| | | <div class="profit-section" v-if="approvalForm.auditStatus === 0"> |
| | | <h4 class="section-title">同城寄送模式</h4> |
| | | <el-form-item label="在订单中作为寄件点时,分成比例为" prop="remoteTake"> |
| | | <el-form-item label="在订单中作为寄件点时,分成比例为" prop="remoteDeposit"> |
| | | <div class="profit-input"> |
| | | <el-input v-model="approvalForm.remoteTake" placeholder="请输入分成比例" style="width: 150px;"></el-input> |
| | | <el-input v-model="approvalForm.remoteDeposit" placeholder="请输入分成比例" style="width: 150px;"></el-input> |
| | | <span class="unit">%</span> |
| | | </div> |
| | | </el-form-item> |
| | | <el-form-item label="在订单中作为收件点时,分成比例为" prop="remoteDeposit"> |
| | | <el-form-item label="在订单中作为收件点时,分成比例为" prop="remoteTake"> |
| | | <div class="profit-input"> |
| | | <el-input v-model="approvalForm.remoteDeposit" placeholder="请输入分成比例" style="width: 150px;"></el-input> |
| | | <el-input v-model="approvalForm.remoteTake" placeholder="请输入分成比例" style="width: 150px;"></el-input> |
| | | <span class="unit">%</span> |
| | | </div> |
| | | </el-form-item> |
| | |
| | | this.approvalForm = { |
| | | id: row.id, |
| | | auditStatus: 1, |
| | | auditRemark: '' |
| | | auditRemark: '', |
| | | localDeposit: '', |
| | | remoteTake: '', |
| | | remoteDeposit: '' |
| | | } |
| | | detail(row.id) |
| | | .then(res => { |
| | | this.storeInfo = res |
| | | this.approvalForm.localDeposit = res.localDeposit || '' |
| | | this.approvalForm.remoteTake = res.remoteTake || '' |
| | | this.approvalForm.remoteDeposit = res.remoteDeposit || '' |
| | | this.visible = true |
| | | }) |
| | | .catch(e => { |