Commit d33d5bdd by 任建

rj

parent 397b6fcf
...@@ -13,6 +13,14 @@ ...@@ -13,6 +13,14 @@
left: 0; left: 0;
z-index: 999; z-index: 999;
} }
.loadingDetail{
width: 100% !important;
height: 100% !important;
position: absolute !important;
top: 0;
left: 0;
z-index: 888;
}
.winsresult-title { .winsresult-title {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
...@@ -133,13 +141,17 @@ ...@@ -133,13 +141,17 @@
.winsresult-dialog-condition span {} .winsresult-dialog-condition span {}
.winsresult-dialog-content { .winsresult-dialog-content {
width: 100%;
margin-top: 20px; margin-top: 20px;
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
flex-wrap: wrap; flex-wrap: wrap;
max-height: 270px; height: 270px;
overflow: auto; overflow: auto;
} }
.winsresult-dialog-content>p{
width: 100% !important;
}
.winsresult-dialog-content-name { .winsresult-dialog-content-name {
display: flex; display: flex;
......
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
<i class="el-icon-s-management"></i> <i class="el-icon-s-management"></i>
</div> </div>
</div> </div>
<el-dialog title="商标名称详情/注册成功率" :modal="false" :visible.sync="dialogVisible" width="58.6%" <el-dialog title="商标名称详情/注册成功率" :modal="false" :visible.sync="dialogVisible" width="58.6%" style="background: rgba(0,0,0,.4);"
:before-close="handleClose"> :before-close="handleClose">
<div class="winsresult-dialog-box"> <div class="winsresult-dialog-box">
<div class="winsresult-dialog-name"> <div class="winsresult-dialog-name">
...@@ -27,7 +27,8 @@ ...@@ -27,7 +27,8 @@
<div>商标格式: <span>{{requestObj?requestObj.structuretype:\'\'}}</span></div> <div>商标格式: <span>{{requestObj?requestObj.structuretype:\'\'}}</span></div>
<div>商标行业: <span>{{industry}}</span></div> <div>商标行业: <span>{{industry}}</span></div>
</div> </div>
<div class="winsresult-dialog-content"> <div class="winsresult-dialog-content" style="position:relative;">
<p class="detailLOading" v-if="loadingDetail" v-loading="true"></p>
<div v-for="(item, index) in bigType" :key="index"> <div v-for="(item, index) in bigType" :key="index">
<div class="winsresult-dialog-content-name"> <div class="winsresult-dialog-content-name">
<div>{{item.ncl_name}}</div> <div>{{item.ncl_name}}</div>
......
...@@ -15,7 +15,8 @@ ...@@ -15,7 +15,8 @@
industry: '', industry: '',
bigType: null, bigType: null,
ncl_list: null, ncl_list: null,
loading: false loading: false,
loadingDetail: false
} }
}, },
created() { created() {
...@@ -88,9 +89,10 @@ ...@@ -88,9 +89,10 @@
let successRateObj = {}; let successRateObj = {};
successRateObj.ncl_list = this.ncl_list; successRateObj.ncl_list = this.ncl_list;
successRateObj.tmName = this.name; successRateObj.tmName = this.name;
this.loading = true; this.loadingDetail = true;
this.bigType = [];
this.$root.postReq(`/web/tmquery/toolCtl/tmPassRate`, successRateObj).then((d) => { this.$root.postReq(`/web/tmquery/toolCtl/tmPassRate`, successRateObj).then((d) => {
this.loading = false; this.loadingDetail = false;
console.log(d); console.log(d);
if (d.status == 0) { if (d.status == 0) {
this.bigType = d.data; this.bigType = d.data;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment