Commit 78bcda54 authored by 刘殿昕's avatar 刘殿昕

服务暂无

parent 4ac7dbe9
...@@ -105,7 +105,7 @@ ...@@ -105,7 +105,7 @@
<label v-for="(item, index) in data.second" :key="index + 2500"> <label v-for="(item, index) in data.second" :key="index + 2500">
{{ item.name }}: {{ item.name }}:
<a <a
v-if="item.name.indexOf('地址') !== -1" v-if="item.name.indexOf('地址') !== -1 && item.text != '暂无'"
style="color:#515fe7;text-decoration: none;" style="color:#515fe7;text-decoration: none;"
target="_blank" target="_blank"
:href="item.text" :href="item.text"
......
...@@ -851,11 +851,18 @@ export default { ...@@ -851,11 +851,18 @@ export default {
? "#515fe7" ? "#515fe7"
: "#e15260" : "#e15260"
); );
if (data.service_apply_info.approval_status == 3) {
this.$set( this.$set(
this.service_header_arr["second"][0], this.service_header_arr["second"][0],
"text", "text",
data.service_apply_info.urls[0].req_url data.service_apply_info.urls[0].req_url
); );
} else {
this.$set(
this.service_header_arr["second"][0],
"text", "暂无"
);
}
} }
this.$set(this.service_header_arr, "url", data.cover); this.$set(this.service_header_arr, "url", data.cover);
......
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