|
|
|
|
@ -174,9 +174,9 @@ const txtShowClick = async (data) => {
|
|
|
|
|
<el-tag disable-transitions w-full type="info">类型</el-tag>
|
|
|
|
|
</div>
|
|
|
|
|
<div ml-2>
|
|
|
|
|
<el-tag v-if="scope.row.method === 'GET'" type="success">GET</el-tag>
|
|
|
|
|
<el-tag v-else-if="scope.row.method === 'POST'">POST</el-tag>
|
|
|
|
|
<el-tag v-else type="warning">{{ scope.row.method }}</el-tag>
|
|
|
|
|
<el-tag disable-transitions v-if="scope.row.method === 'GET'" type="success">GET</el-tag>
|
|
|
|
|
<el-tag disable-transitions v-else-if="scope.row.method === 'POST'">POST</el-tag>
|
|
|
|
|
<el-tag disable-transitions v-else type="warning">{{ scope.row.method }}</el-tag>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div my-1 class="input_line_wrapper">
|
|
|
|
|
@ -209,7 +209,7 @@ const txtShowClick = async (data) => {
|
|
|
|
|
<el-tag disable-transitions w-full type="info">存储类型</el-tag>
|
|
|
|
|
</div>
|
|
|
|
|
<div ml-2>
|
|
|
|
|
<el-tag :type="scope.row.type === 1 ? '' : 'success'">{{
|
|
|
|
|
<el-tag disable-transitions :type="scope.row.type === 1 ? '' : 'success'">{{
|
|
|
|
|
scope.row.type === 1 ? '数据库' : '文件'
|
|
|
|
|
}}
|
|
|
|
|
</el-tag>
|
|
|
|
|
@ -220,7 +220,7 @@ const txtShowClick = async (data) => {
|
|
|
|
|
<el-tag disable-transitions w-full type="info">返回码</el-tag>
|
|
|
|
|
</div>
|
|
|
|
|
<div ml-2>
|
|
|
|
|
<el-tag :type="Number(scope.row.code) === 200 ? 'success' : 'warning'">
|
|
|
|
|
<el-tag disable-transitions :type="Number(scope.row.code) === 200 ? 'success' : 'warning'">
|
|
|
|
|
{{ !!scope.row.code ? scope.row.code : '未处理完成' }}
|
|
|
|
|
</el-tag>
|
|
|
|
|
</div>
|
|
|
|
|
|