|
|
@@ -329,6 +329,9 @@
|
|
|
<el-table-column prop="syOtherCostsPremium" label="商业跟单金额">
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
+ <footer style="margin-top: 15px;display: flex;justify-content: flex-end;">
|
|
|
+ <el-button type="primary" @click="confrimBatch">确认</el-button>
|
|
|
+ </footer>
|
|
|
</el-dialog>
|
|
|
<el-dialog :visible.sync="dialogVisibleprogress" width="25%">
|
|
|
<el-upload
|
|
|
@@ -1149,11 +1152,22 @@ export default {
|
|
|
this.dialogVisibleprogress = true;
|
|
|
this.progressPercent = 0;
|
|
|
},
|
|
|
+ //打开批量操作修改比例弹框
|
|
|
handBatchratio() {
|
|
|
this.dialogVisibleradio = true;
|
|
|
this.tableDataRadio = {};
|
|
|
this.fileListRadio = [];
|
|
|
},
|
|
|
+ confrimBatch(){
|
|
|
+ this.$api.task.batchOperation({resultList:this.tableDataRadio.resultList}).then((res) => {
|
|
|
+ if (res.code == 200) {
|
|
|
+ this.$message.success('操作成功')
|
|
|
+
|
|
|
+ this.dialogVisibleradio = false;
|
|
|
+
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
drivinguploadRadio(file, fileList) {
|
|
|
this.fileListRadio = [];
|
|
|
const params = new FormData(); // 声明formData数据类型
|