瀏覽代碼

task 配置修改

rongxin_dev
庞东旭 5 天之前
父節點
當前提交
cb111b4050
共有 3 個文件被更改,包括 15 次插入5 次删除
  1. +1
    -1
      src/api/sunVillage_info/fixedAssets.js
  2. +7
    -2
      src/views/sunVillage_info/index_code_rights_new.vue
  3. +7
    -2
      src/views/sunVillage_info/login_code_new.vue

+ 1
- 1
src/api/sunVillage_info/fixedAssets.js 查看文件

@@ -1477,7 +1477,7 @@ export function jyxzyqkgkDetail(id) {
// 收支明细公开
export function webList(query) {
return request({
url: '/open/house/policy/list/level',
url: '/open/typz/list',
method: 'get',
params: query
})


+ 7
- 2
src/views/sunVillage_info/index_code_rights_new.vue 查看文件

@@ -43,7 +43,7 @@
</div>
</div>
<div class="footer">
投诉电话:{{tsdh}}
{{tsdh}}
</div>
</div>
</template>
@@ -102,7 +102,12 @@
}
webList().then((res) => {
if (res.code == 200) {
this.tsdh = res.data.botoom2[0].contentValue;
var content = res.rows;
content.map(rr=>{
if (rr.configKey == 'web.open.phone'){
this.tsdh = rr.configValue;
}
})
}
});
},


+ 7
- 2
src/views/sunVillage_info/login_code_new.vue 查看文件

@@ -56,7 +56,7 @@
</div>

</van-form>
<p class="copy_name">技术支持:{{tsdh}}</p>
<p class="copy_name">{{tsdh}}</p>
</div>
</div>
</template>
@@ -101,7 +101,12 @@
this.allowIdentityVerified();
webList().then((res) => {
if (res.code == 200) {
this.tsdh = res.data.botoom3[1].contentValue;
var content = res.rows;
content.map(rr=>{
if (rr.configKey == 'web.open.technique'){
this.tsdh = rr.configValue;
}
})
}
});
},


Loading…
取消
儲存