|
@@ -1,7 +1,7 @@
|
|
|
<!--
|
|
|
* @Author: your name
|
|
|
* @Date: 2024-05-27 09:23:37
|
|
|
- * @LastEditTime: 2024-06-25 11:16:07
|
|
|
+ * @LastEditTime: 2024-06-26 16:14:31
|
|
|
* @LastEditors: bogon
|
|
|
* @Description: In User Settings Edit
|
|
|
* @FilePath: /performance-test/src/views/performance/batchMag.vue
|
|
@@ -278,7 +278,6 @@ export default {
|
|
|
this.loading = true;
|
|
|
try {
|
|
|
const result = await queryCodeNum();
|
|
|
- console.log(result, "result");
|
|
|
this.fieldCodeList = result.data.fieldCodeList;
|
|
|
this.loading = false;
|
|
|
} catch (error) {
|
|
@@ -297,7 +296,6 @@ export default {
|
|
|
this.loading = true;
|
|
|
onOrOffFieldBatch({ batchCode: row.batchCode, batchState: state })
|
|
|
.then((res) => {
|
|
|
- console.log(res, "res");
|
|
|
this.$message({
|
|
|
message: res.msg,
|
|
|
type: "success",
|
|
@@ -312,7 +310,6 @@ export default {
|
|
|
async getTableList() {
|
|
|
try {
|
|
|
this.loading = true;
|
|
|
- console.log(this.startDate, this.endDate, "formInline");
|
|
|
const result = await getBatchMagList({
|
|
|
...this.formInline,
|
|
|
picker: undefined,
|
|
@@ -320,7 +317,6 @@ export default {
|
|
|
endTime: this.endDate || undefined,
|
|
|
totalSize: undefined,
|
|
|
});
|
|
|
- console.log(result.data, "res.data");
|
|
|
this.tableData = result.data.list;
|
|
|
this.formInline.totalSize = result.data.totalSize;
|
|
|
this.loading = false;
|
|
@@ -354,7 +350,6 @@ export default {
|
|
|
this.$refs[formName].validate((valid) => {
|
|
|
if (valid) {
|
|
|
this.loadingView = true;
|
|
|
- console.log(this.ruleForm, "this.ruleForm");
|
|
|
switch (this.title) {
|
|
|
case "新增":
|
|
|
addFieldBatch({ ...this.ruleForm, batchCode: undefined })
|