This commit is contained in:
dengxin
2024-03-29 16:51:49 +08:00
parent 6c6831b394
commit 8957d276b7
2 changed files with 5 additions and 3 deletions

View File

@@ -55,7 +55,7 @@
</view> </view>
<view v-bind:class="['jobText']"> <view v-bind:class="['jobText']">
{{ myResume.city !== "{}" ? myResume.city.id ? getCity(myResume.city.id) : myResume.city.workplace : {{ myResume.city !== "{}" ? myResume.city.id ? getCity(myResume.city.id) : myResume.city.workplace :
'请选择' '请选择'
}} }}
</view> </view>
</view> </view>
@@ -141,7 +141,7 @@ export default {
phone: "", phone: "",
}, },
mySkills: [], mySkills: [],
id: '1298609524179660801', id: undefined,
// id: '', // id: '',
buttonList: [{ buttonList: [{
title: '删除', title: '删除',
@@ -203,6 +203,7 @@ export default {
this.isShowButton = false; this.isShowButton = false;
if (data && data.id) { if (data && data.id) {
this.id = data.id this.id = data.id
console.log(this.id,'-----------------------------');
} }
}); });
}, },

View File

@@ -3,7 +3,8 @@ module.exports = {
port: 1887, port: 1887,
proxy: { proxy: {
'/api': { '/api': {
target: 'http://10.165.0.173:8000', // 本地服务接口地址 target: 'http://10.165.0.173:8000', // 内网
// target: 'http://192.168.1.109:8000', // 本地测试
ws: true, ws: true,
pathRewrite: { pathRewrite: {
'^/api': '/' '^/api': '/'