|
@@ -30,8 +30,12 @@
|
|
|
</el-col>
|
|
|
</el-col>
|
|
|
<el-col v-if="form.status == '1' || form.status == '2-'">
|
|
|
- <el-button type="primary" @click="onstatus('0')"> 全部发货 </el-button>
|
|
|
- <el-button type="primary" @click="onstatus('1')"> 部分发货 </el-button>
|
|
|
+ <el-radio-group v-model="status" @change="onstatus">
|
|
|
+ <el-radio :label="0" border>全部发货</el-radio>
|
|
|
+ <el-radio :label="1" border>部分发货</el-radio>
|
|
|
+ </el-radio-group>
|
|
|
+ <!-- <el-button type="primary" @click="onstatus('0')"> 全部发货 </el-button>
|
|
|
+ <el-button type="primary" @click="onstatus('1')"> 部分发货 </el-button> -->
|
|
|
</el-col>
|
|
|
<el-col :span="24" v-if="status == '1' && form.transport_type == '0'">
|
|
|
<el-col>发货商品</el-col>
|
|
@@ -386,6 +390,9 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+.el-radio.is-bordered.is-checked {
|
|
|
+ border-color: rgb(24, 145, 243);
|
|
|
+}
|
|
|
/deep/.el-timeline {
|
|
|
margin: 20px 0 0 0;
|
|
|
font-size: 16px;
|