Merge remote-tracking branch 'origin/master'

master
陈思豪 2024-09-10 00:06:54 +08:00
commit 800a55ffa9
6 changed files with 27 additions and 173 deletions

View File

@ -207,6 +207,7 @@ export default {
::v-deep.hide .el-upload--picture-card {
display: none;
}
//
::v-deep .el-list-enter-active,
::v-deep .el-list-leave-active {

View File

@ -156,7 +156,7 @@
<!--回显-->
<el-dialog title="收货地址" :visible.sync="versionFormVisible">
<el-dialog title="测试" :visible.sync="versionFormVisible">
<el-form :model="versions">

View File

@ -51,17 +51,25 @@
</template>
</el-table-column>
<el-table-column label="操作">
<el-table-column
label="测试次数"
width="180">
<template slot-scope="scope">
<el-button
size="mini"
@click="handleEdit(scope.$index, scope.row)">编辑</el-button>
<el-button
size="mini"
type="danger"
@click="handleDelete(scope.$index, scope.row)">删除</el-button>
<span style="margin-left: 10px">{{ scope.row.textNumber }}</span>
</template>
</el-table-column>
<!-- <el-table-column label="操作">-->
<!-- <template slot-scope="scope">-->
<!-- <el-button-->
<!-- size="mini"-->
<!-- @click="handleEdit(scope.$index, scope.row)">编辑</el-button>-->
<!-- <el-button-->
<!-- size="mini"-->
<!-- type="danger"-->
<!-- @click="handleDelete(scope.$index, scope.row)">删除</el-button>-->
<!-- </template>-->
<!-- </el-table-column>-->
</el-table>
</div>
</template>

View File

@ -48,7 +48,7 @@
<!-- <el-button type="primary" style="float: right; padding: 10px 10px" @click="testWeatherForecast()" v-if="connector.connectorName=='天气预报'">API</el-button>-->
<el-button type="primary" style="float: right; padding: 10px 10px" @click="navigateToDocumentation(connector.connectorId)"></el-button>
<el-button type="primary" style="float: right; padding: 10px 10px" @click="navigateToDocumentation(connector.connectorId)"></el-button>
<!-- <el-button-->

View File

@ -3,7 +3,7 @@
<el-container>
<el-aside width="400px" style="background-color: #f5f5f5; padding: 20px;">
<div>
<el-image :src="picture" style="width: 80%; max-width: 300px; height: auto;" fit="contain"></el-image>
<image-preview :src="picture" style="width: 80%; max-width: 300px; height: auto;" fit="contain"></image-preview>
<h2>{{ name }}</h2>
<p>{{remark}}</p>
<p><strong></strong> <span class="price">{{ price }}/</span></p>
@ -237,7 +237,11 @@
</div>
<div v-if="activeTab === 'data-stats'">
<h2>请求</h2>
<el-card class="return-example-card" style="width: 80%; margin: 20px auto; box-shadow: 0 2px 12px rgba(0,0,0,0.1);">
<div slot="header" class="clearfix" style="padding: 20px;">
<pre>什么也没有</pre>
</div>
</el-card>
</div>
</div>
</el-container>

View File

@ -1,159 +0,0 @@
<template>
<div>
<!-- 添加或修改规则引擎对话框 -->
<el-button type="text" @click="dialogFormVisible = true">添加规则类型</el-button>
<el-dialog title="添加规则" :visible.sync="dialogFormVisible">
<el-form :model="type">
<el-form-item label="规则名称" :label-width="formLabelWidth">
<el-input v-model="type.name" autocomplete="off"></el-input>
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button @click="dialogFormVisible = false"> </el-button>
<el-button type="primary" @click="submitForm"> </el-button>
</div>
</el-dialog>
<el-table :data="arr" style="width: 100%">
<el-table-column label="类型编号" width="180">
<template slot-scope="scope">
<span style="margin-left: 10px">{{ scope.row.id }}</span>
</template>
</el-table-column>
<el-table-column label="类型名称" width="180">
<template slot-scope="scope">
<span style="margin-left: 10px">{{ scope.row.name }}</span>
</template>
</el-table-column>
<el-table-column label="操作">
<template slot-scope="scope">
<el-button size="mini" type="danger" @click="handleDelete(scope.row.id)"></el-button>
</template>
</el-table-column>
</el-table>
</div>
</template>
<script>
import {del, insert, list} from "@/api/type/type";
export default {
//import使"
components: {},
props: {},
data() {
//"
return {
arr: [],
type: {},
rules: {
name: [{required: true, message: '请输入规则名称', trigger: 'blur'}]
},
dialogFormVisible: false,
formLabelWidth: '120px'
};
},
methods: {
List() {
list().then(res => {
this.arr = res;
})
},
handleDelete(id) {
if (confirm("你确定删除吗?")) {
del(id).then(res => {
this.$message.success(res.msg || "删除成功")
})
}
},
submitForm() {
this.dialogFormVisible = true
insert(this.type).then(res => {
this.$message.success(res.msg || "添加成功")
})
this.dialogFormVisible = false;
}
},
// - 访this",
created() {
this.List();
}
}
</script>
<style scoped>
</style>