diff --git a/pages-subpackage/furniture_reception/common_begin_reception.vue b/pages-subpackage/furniture_reception/common_begin_reception.vue
index ff7c6f1..3e1a04f 100644
--- a/pages-subpackage/furniture_reception/common_begin_reception.vue
+++ b/pages-subpackage/furniture_reception/common_begin_reception.vue
@@ -524,12 +524,18 @@ export default {
\ No newline at end of file
diff --git a/uni_modules/uni-id-pages/pages/login/login-withpwd.vue b/uni_modules/uni-id-pages/pages/login/login-withpwd.vue
index 3def308..8239f3e 100644
--- a/uni_modules/uni-id-pages/pages/login/login-withpwd.vue
+++ b/uni_modules/uni-id-pages/pages/login/login-withpwd.vue
@@ -203,11 +203,14 @@
// 同步更新前端 store,保证"我的"页等能识别为已登录状态
try {
+ const avatarStr = loginData.avatar != null && loginData.avatar !== ''
+ ? String(loginData.avatar).trim()
+ : ''
mutations.setUserInfo({
username: loginData.userName,
mobile: loginData.phone,
email: loginData.email,
- avatar_file: loginData.avatar ? { url: loginData.avatar } : undefined
+ avatar_file: avatarStr ? { url: avatarStr } : undefined
}, { cover: true })
console.log('[Login] Store updated successfully, hasLogin:', store.hasLogin, 'userInfo:', store.userInfo)
} catch (e) {
diff --git a/unpackage/dist/build/mp-weixin/common/config.js b/unpackage/dist/build/mp-weixin/common/config.js
index c09565c..88d562e 100644
--- a/unpackage/dist/build/mp-weixin/common/config.js
+++ b/unpackage/dist/build/mp-weixin/common/config.js
@@ -1 +1 @@
-"use strict";const o=require("./env.js"),t={local:"http://localhost:8091/",prod:"http://api01ai.huayang-star.com/"},r={development:"local",production:"prod",local:"local",prod:"prod"};const n=function(){var t;const n=null==(t=o.envConfig)?void 0:t.apiEnv;{const o=r[n.toLowerCase()];if(o)return o}const e="undefined"!=typeof process&&(null==process?void 0:process.env)?process.env.UNI_APP_API_ENV||"production":"",s=e?e.toLowerCase():"";return r[s]||"prod"}(),e=(s=t[n]||t.prod).endsWith("/")?s:`${s}/`;var s;exports.getApiEnv=function(){return n},exports.getApiUrl=function(o=""){const t=o.startsWith("/")?o:`/${o}`,r=t.startsWith("/")?t.slice(1):t;return`${e}${r}`};
+"use strict";const o=require("./env.js"),t={local:"http://localhost:8091/",prod:"http://api01ai.huayang-star.com/"},r={development:"local",production:"prod",local:"local",prod:"prod"};const e=function(){var t;const e=null==(t=o.envConfig)?void 0:t.apiEnv;{const o=r[e.toLowerCase()];if(o)return o}const n="undefined"!=typeof process&&(null==process?void 0:process.env)?process.env.UNI_APP_API_ENV||"production":"",s=n?n.toLowerCase():"";return r[s]||"prod"}(),n=(s=t[e]||t.prod).endsWith("/")?s:`${s}/`;var s;exports.API_BASE_URL=n,exports.getApiEnv=function(){return e},exports.getApiUrl=function(o=""){const t=o.startsWith("/")?o:`/${o}`,r=t.startsWith("/")?t.slice(1):t;return`${n}${r}`};
diff --git a/unpackage/dist/build/mp-weixin/pages-subpackage/furniture_reception/common_begin_reception.js b/unpackage/dist/build/mp-weixin/pages-subpackage/furniture_reception/common_begin_reception.js
index 148b5e2..552533a 100644
--- a/unpackage/dist/build/mp-weixin/pages-subpackage/furniture_reception/common_begin_reception.js
+++ b/unpackage/dist/build/mp-weixin/pages-subpackage/furniture_reception/common_begin_reception.js
@@ -1 +1 @@
-"use strict";const e=require("../../common/vendor.js"),t=require("../../common/config.js"),o={name:"ReceptionForm",props:{initialData:{type:Object,default:()=>({})}},data:()=>({genderOptions:["男","女"],customerSourceOptions:["自然到店","网络媒体","其他类型"],showCustomerSourceDropdown:!1,isFetchingContact:!1,formData:{id:"",customerName:"",contact:"",customerSource:"",gender:"女",age:"",dealershipId:"",dealershipName:"",salesId:"",salesName:"",salesPhone:"",recordingCount:0,intendedModel:"",infoCard:"",remark:"",detailedAddress:"",contactCount:0}}),watch:{initialData:{handler(e){e&&Object.keys(e).length>0&&(this.formData={...this.formData,...e})},immediate:!0,deep:!0}},mounted(){this.loadCurrentUserInfo(),e.index.onWindowResize((()=>{this.showCustomerSourceDropdown&&this.updateDropdownPosition()}))},methods:{loadCurrentUserInfo(){try{const t=e.index.getStorageSync("backend-login-response")||{};t.userName&&(this.formData.salesName=t.userName),t.phone?this.formData.salesPhone=t.phone:t.userName&&(this.formData.salesPhone=t.userName),t.userId&&(this.formData.salesId=String(t.userId))}catch(t){console.error("加载当前登录用户信息失败:",t)}},onGenderChange(e){this.formData.gender=e.detail.value},toggleCustomerSourceDropdown(){this.showCustomerSourceDropdown=!this.showCustomerSourceDropdown,this.showCustomerSourceDropdown&&this.$nextTick((()=>{this.updateDropdownPosition()}))},updateDropdownPosition(){const e=this.$refs.customerSourceSelect;if(e){const t=e.getBoundingClientRect(),o=this.$refs.customerSourceDropdown;o&&(o.style.top=t.bottom+8+"px",o.style.left=t.left+"px",o.style.width=t.width+"px")}},selectCustomerSource(e){this.formData.customerSource=e,this.showCustomerSourceDropdown=!1},closeCustomerSourceDropdown(){this.showCustomerSourceDropdown=!1},onContactBlur(){var t;const o=null==(t=this.formData.contact)?void 0:t.trim();o&&(this.isValidPhoneNumber(o)?this.fetchCustomerByContact():e.index.showToast({title:"请输入有效的手机号",icon:"none"}))},isValidPhoneNumber(e){const t=null==e?void 0:e.trim();return!!t&&/^1[3-9]\d{9}$/.test(t)},async fetchCustomerByContact(){var o,a,r;const s=null==(o=this.formData.contact)?void 0:o.trim();if(s&&!this.isFetchingContact&&this.isValidPhoneNumber(s))try{this.isFetchingContact=!0;const o=`${t.getApiUrl("/api/customerManagement/getByContact")}?contact=${encodeURIComponent(s)}`;let i="",d="";try{i=e.index.getStorageSync("backend-tenant-id")||"",d=e.index.getStorageSync("backend-token")||""}catch(n){console.error("获取认证信息失败:",n)}const c={};d&&(c.Authorization=`Bearer ${d}`),i&&(c["X-Tenant-Id"]=i);const m=await e.index.request({url:o,method:"GET",header:c,timeout:3e4}),l=null==(a=m.data)?void 0:a.data;if(200===m.statusCode&&(null==(r=m.data)?void 0:r.success)&&Array.isArray(l)&&l.length){const t=l[0],o=t.id||t.customerId||"",a=t.salesPhone||t.salesMobile||t.salesTel||this.formData.salesPhone||"";this.formData={...this.formData,id:o?String(o):this.formData.id,customerName:t.customerName||this.formData.customerName,customerSource:t.customerSource||this.formData.customerSource,dealershipId:t.dealershipId?String(t.dealershipId):this.formData.dealershipId,dealershipName:t.dealershipName||this.formData.dealershipName,salesId:t.salesId?String(t.salesId):this.formData.salesId,salesName:t.salesName||this.formData.salesName,salesPhone:String(a),recordingCount:Number(t.recordingCount)||0,intendedModel:t.intendedModel||this.formData.intendedModel,infoCard:t.infoCard||this.formData.infoCard,remark:t.remark||this.formData.remark,detailedAddress:t.detailedAddress||this.formData.detailedAddress,contactCount:t.contactCount??this.formData.contactCount},e.index.showToast({title:"已填充客户信息",icon:"none"})}}catch(i){console.error("查询客户信息失败:",i)}finally{this.isFetchingContact=!1}},handleCancel(){this.formData={id:"",customerName:"",contact:"",customerSource:"",gender:"女",age:"",dealershipId:"",dealershipName:"",salesId:"",salesName:"",salesPhone:"",recordingCount:0,intendedModel:"",infoCard:"",remark:"",detailedAddress:"",contactCount:0},this.loadCurrentUserInfo(),this.$emit("cancel"),e.index.showToast({title:"已取消",icon:"none"})},async handleSave(o="save"){var a,r,s,n,i,d,c,m,l,u,h,f,p;const D=null==(a=this.formData.contact)?void 0:a.trim();if(D&&!this.isValidPhoneNumber(D))return void e.index.showToast({title:"请输入有效的客户电话",icon:"none"});const g=null==(r=this.formData.salesPhone)?void 0:r.trim();if(g&&!this.isValidPhoneNumber(g))return void e.index.showToast({title:"请输入有效的销售电话",icon:"none"});const C={id:(null==(s=this.formData.id)?void 0:s.toString().trim())||"",customerName:null==(n=this.formData.customerName)?void 0:n.trim(),contact:D,customerSource:(null==(i=this.formData.customerSource)?void 0:i.trim())||"",dealershipId:String(this.formData.dealershipId||"").trim()||"",dealershipName:(null==(d=this.formData.dealershipName)?void 0:d.trim())||"",salesId:String(this.formData.salesId||"").trim()||"",salesName:(null==(c=this.formData.salesName)?void 0:c.trim())||"",recordingCount:Number(this.formData.recordingCount)||0,intendedModel:(null==(m=this.formData.intendedModel)?void 0:m.trim())||"",infoCard:(null==(l=this.formData.infoCard)?void 0:l.trim())||"",remark:(null==(u=this.formData.remark)?void 0:u.trim())||"",detailedAddress:(null==(h=this.formData.detailedAddress)?void 0:h.trim())||"",salesPhone:g||"",contactCount:Number(this.formData.contactCount)||0,operationType:o};try{e.index.showLoading({title:"保存中..."});let a="",r="",s="";try{const t=e.index.getStorageSync("backend-login-response")||{};a=e.index.getStorageSync("backend-tenant-id")||"",r=e.index.getStorageSync("backend-token")||"",s=(t.scenario||e.index.getStorageSync("backend-scenario")||"").toString().trim()}catch(S){console.error("获取认证信息失败:",S)}const n={"Content-Type":"application/json"};r&&(n.Authorization=`Bearer ${r}`),a&&(n["X-Tenant-Id"]=a),s&&(n["X-Scenario"]=s,C.scenario=s);const i=await e.index.request({url:t.getApiUrl("/api/customerManagement/add"),method:"POST",data:C,header:n,timeout:3e4});e.index.hideLoading(),200===i.statusCode&&i.data&&i.data.success?(e.index.showToast({title:"保存成功",icon:"success"}),this.handleCancel(),this.$emit("save-success",{action:o,data:C})):(e.index.showToast({title:(null==(f=i.data)?void 0:f.message)||"保存失败",icon:"none"}),this.$emit("save-error",{action:o,error:(null==(p=i.data)?void 0:p.message)||"保存失败"}))}catch(w){e.index.hideLoading(),console.error("保存失败:",w),e.index.showToast({title:"保存失败,请重试",icon:"none"}),this.$emit("save-error",{action:o,error:w.message||"保存失败,请重试"})}}}};if(!Array){e.resolveComponent("uni-icons")()}Math;const a=e._export_sfc(o,[["render",function(t,o,a,r,s,n){return e.e({a:e.t(s.formData.recordingCount||0),b:s.formData.customerName,c:e.o((e=>s.formData.customerName=e.detail.value),"34"),d:e.o(((...e)=>n.onContactBlur&&n.onContactBlur(...e)),"2c"),e:s.formData.contact,f:e.o((e=>s.formData.contact=e.detail.value),"35"),g:e.t(s.formData.customerSource||"请选择客户来源"),h:e.n(s.formData.customerSource?"form-item__picker-text":"form-item__picker-placeholder"),i:e.p({type:"bottom",size:"16",color:"#9ca3af"}),j:e.o(((...e)=>n.toggleCustomerSourceDropdown&&n.toggleCustomerSourceDropdown(...e)),"cf"),k:s.showCustomerSourceDropdown},s.showCustomerSourceDropdown?{l:e.f(s.customerSourceOptions,((t,o,a)=>({a:e.t(t),b:t===s.formData.customerSource?1:"",c:t,d:e.o((e=>n.selectCustomerSource(t)),t)}))),m:e.o((()=>{}),"66")}:{},{n:s.formData.dealershipName,o:e.o((e=>s.formData.dealershipName=e.detail.value),"c4"),p:e.f(s.genderOptions,((t,o,a)=>({a:t,b:s.formData.gender===t,c:e.t(t),d:o}))),q:e.o(((...e)=>n.onGenderChange&&n.onGenderChange(...e)),"22"),r:s.formData.age,s:e.o((e=>s.formData.age=e.detail.value),"5c"),t:s.formData.salesName,v:e.o((e=>s.formData.salesName=e.detail.value),"42"),w:s.formData.salesPhone,x:e.o((e=>s.formData.salesPhone=e.detail.value),"ed"),y:s.formData.remarks,z:e.o((e=>s.formData.remarks=e.detail.value),"96"),A:e.p({type:"close",size:"16",color:"#007AFF"}),B:e.o(((...e)=>n.handleCancel&&n.handleCancel(...e)),"75"),C:e.p({type:"checkmarkempty",size:"16",color:"#007AFF"}),D:e.o((e=>n.handleSave("save")),"99"),E:e.p({type:"checkmarkempty",size:"16",color:"#007AFF"}),F:e.o((e=>n.handleSave("start")),"b4"),G:s.showCustomerSourceDropdown},s.showCustomerSourceDropdown?{H:e.o(((...e)=>n.closeCustomerSourceDropdown&&n.closeCustomerSourceDropdown(...e)),"f4")}:{})}]]);wx.createComponent(a);
+"use strict";const e=require("../../common/vendor.js"),t=require("../../common/config.js"),o={name:"ReceptionForm",props:{initialData:{type:Object,default:()=>({})}},data:()=>({genderOptions:["男","女"],customerSourceOptions:["自然到店","网络媒体","其他类型"],showCustomerSourceDropdown:!1,isFetchingContact:!1,formData:{id:"",customerName:"",contact:"",customerSource:"",gender:"女",age:"",dealershipId:"",dealershipName:"",salesId:"",salesName:"",salesPhone:"",recordingCount:0,intendedModel:"",infoCard:"",remark:"",detailedAddress:"",contactCount:0}}),watch:{initialData:{handler(e){e&&Object.keys(e).length>0&&(this.formData={...this.formData,...e})},immediate:!0,deep:!0}},mounted(){this.loadCurrentUserInfo(),e.index.onWindowResize((()=>{this.showCustomerSourceDropdown&&this.updateDropdownPosition()}))},methods:{loadCurrentUserInfo(){try{const t=e.index.getStorageSync("backend-login-response")||{};t.userName&&(this.formData.salesName=t.userName),t.phone?this.formData.salesPhone=t.phone:t.userName&&(this.formData.salesPhone=t.userName),t.userId&&(this.formData.salesId=String(t.userId))}catch(t){console.error("加载当前登录用户信息失败:",t)}},onGenderChange(e){this.formData.gender=e.detail.value},toggleCustomerSourceDropdown(){this.showCustomerSourceDropdown=!this.showCustomerSourceDropdown,this.showCustomerSourceDropdown&&this.$nextTick((()=>{this.updateDropdownPosition()}))},updateDropdownPosition(){const e=this.$refs.customerSourceSelect;if(e){const t=e.getBoundingClientRect(),o=this.$refs.customerSourceDropdown;o&&(o.style.top=t.bottom+8+"px",o.style.left=t.left+"px",o.style.width=t.width+"px")}},selectCustomerSource(e){this.formData.customerSource=e,this.showCustomerSourceDropdown=!1},closeCustomerSourceDropdown(){this.showCustomerSourceDropdown=!1},onContactBlur(){var t;const o=null==(t=this.formData.contact)?void 0:t.trim();o&&(this.isValidPhoneNumber(o)?this.fetchCustomerByContact():e.index.showToast({title:"请输入有效的手机号",icon:"none"}))},isValidPhoneNumber(e){const t=null==e?void 0:e.trim();return!!t&&/^1[3-9]\d{9}$/.test(t)},async fetchCustomerByContact(){var o,a,r;const s=null==(o=this.formData.contact)?void 0:o.trim();if(s&&!this.isFetchingContact&&this.isValidPhoneNumber(s))try{this.isFetchingContact=!0;const o=`${t.getApiUrl("/api/customerManagement/getByContact")}?contact=${encodeURIComponent(s)}`;let i="",d="";try{i=e.index.getStorageSync("backend-tenant-id")||"",d=e.index.getStorageSync("backend-token")||""}catch(n){console.error("获取认证信息失败:",n)}const c={};d&&(c.Authorization=`Bearer ${d}`),i&&(c["X-Tenant-Id"]=i);const m=await e.index.request({url:o,method:"GET",header:c,timeout:3e4}),l=null==(a=m.data)?void 0:a.data;if(200===m.statusCode&&(null==(r=m.data)?void 0:r.success)&&Array.isArray(l)&&l.length){const t=l[0],o=t.id||t.customerId||"",a=t.salesPhone||t.salesMobile||t.salesTel||this.formData.salesPhone||"";this.formData={...this.formData,id:o?String(o):this.formData.id,customerName:t.customerName||this.formData.customerName,customerSource:t.customerSource||this.formData.customerSource,dealershipId:t.dealershipId?String(t.dealershipId):this.formData.dealershipId,dealershipName:t.dealershipName||this.formData.dealershipName,salesId:t.salesId?String(t.salesId):this.formData.salesId,salesName:t.salesName||this.formData.salesName,salesPhone:String(a),recordingCount:Number(t.recordingCount)||0,intendedModel:t.intendedModel||this.formData.intendedModel,infoCard:t.infoCard||this.formData.infoCard,remark:t.remark||this.formData.remark,detailedAddress:t.detailedAddress||this.formData.detailedAddress,contactCount:t.contactCount??this.formData.contactCount},e.index.showToast({title:"已填充客户信息",icon:"none"})}}catch(i){console.error("查询客户信息失败:",i)}finally{this.isFetchingContact=!1}},handleCancel(){this.formData={id:"",customerName:"",contact:"",customerSource:"",gender:"女",age:"",dealershipId:"",dealershipName:"",salesId:"",salesName:"",salesPhone:"",recordingCount:0,intendedModel:"",infoCard:"",remark:"",detailedAddress:"",contactCount:0},this.loadCurrentUserInfo(),this.$emit("cancel"),e.index.showToast({title:"已取消",icon:"none"})},async handleSave(o="save"){var a,r,s,n,i,d,c,m,l,u,h,f,p;const D=null==(a=this.formData.contact)?void 0:a.trim();if(D&&!this.isValidPhoneNumber(D))return void e.index.showToast({title:"请输入有效的客户电话",icon:"none"});const g=null==(r=this.formData.salesPhone)?void 0:r.trim();if(g&&!this.isValidPhoneNumber(g))return void e.index.showToast({title:"请输入有效的销售电话",icon:"none"});const C={id:(null==(s=this.formData.id)?void 0:s.toString().trim())||"",customerName:null==(n=this.formData.customerName)?void 0:n.trim(),contact:D,customerSource:(null==(i=this.formData.customerSource)?void 0:i.trim())||"",dealershipId:String(this.formData.dealershipId||"").trim()||"",dealershipName:(null==(d=this.formData.dealershipName)?void 0:d.trim())||"",salesId:String(this.formData.salesId||"").trim()||"",salesName:(null==(c=this.formData.salesName)?void 0:c.trim())||"",recordingCount:Number(this.formData.recordingCount)||0,intendedModel:(null==(m=this.formData.intendedModel)?void 0:m.trim())||"",infoCard:(null==(l=this.formData.infoCard)?void 0:l.trim())||"",remark:(null==(u=this.formData.remark)?void 0:u.trim())||"",detailedAddress:(null==(h=this.formData.detailedAddress)?void 0:h.trim())||"",salesPhone:g||"",contactCount:Number(this.formData.contactCount)||0,operationType:o};try{e.index.showLoading({title:"保存中..."});let a="",r="",s="";try{const t=e.index.getStorageSync("backend-login-response")||{};a=e.index.getStorageSync("backend-tenant-id")||"",r=e.index.getStorageSync("backend-token")||"",s=(t.scenario||e.index.getStorageSync("backend-scenario")||"").toString().trim()}catch(S){console.error("获取认证信息失败:",S)}const n={"Content-Type":"application/json"};r&&(n.Authorization=`Bearer ${r}`),a&&(n["X-Tenant-Id"]=a),s&&(n["X-Scenario"]=s,C.scenario=s);const i=await e.index.request({url:t.getApiUrl("/api/customerManagement/add"),method:"POST",data:C,header:n,timeout:3e4});e.index.hideLoading(),200===i.statusCode&&i.data&&i.data.success?(e.index.showToast({title:"保存成功",icon:"success"}),this.handleCancel(),this.$emit("save-success",{action:o,data:C})):(e.index.showToast({title:(null==(f=i.data)?void 0:f.message)||"保存失败",icon:"none"}),this.$emit("save-error",{action:o,error:(null==(p=i.data)?void 0:p.message)||"保存失败"}))}catch(w){e.index.hideLoading(),console.error("保存失败:",w),e.index.showToast({title:"保存失败,请重试",icon:"none"}),this.$emit("save-error",{action:o,error:w.message||"保存失败,请重试"})}}}};if(!Array){e.resolveComponent("uni-icons")()}Math;const a=e._export_sfc(o,[["render",function(t,o,a,r,s,n){return e.e({a:e.t(s.formData.recordingCount||0),b:s.formData.customerName,c:e.o((e=>s.formData.customerName=e.detail.value),"46"),d:e.o(((...e)=>n.onContactBlur&&n.onContactBlur(...e)),"17"),e:s.formData.contact,f:e.o((e=>s.formData.contact=e.detail.value),"c7"),g:e.t(s.formData.customerSource||"请选择客户来源"),h:e.n(s.formData.customerSource?"form-item__picker-text":"form-item__picker-placeholder"),i:e.p({type:"bottom",size:"16",color:"#9ca3af"}),j:e.o(((...e)=>n.toggleCustomerSourceDropdown&&n.toggleCustomerSourceDropdown(...e)),"fe"),k:s.showCustomerSourceDropdown},s.showCustomerSourceDropdown?{l:e.f(s.customerSourceOptions,((t,o,a)=>({a:e.t(t),b:t===s.formData.customerSource?1:"",c:t,d:e.o((e=>n.selectCustomerSource(t)),t)}))),m:e.o((()=>{}),"1b")}:{},{n:s.formData.dealershipName,o:e.o((e=>s.formData.dealershipName=e.detail.value),"f6"),p:e.f(s.genderOptions,((t,o,a)=>({a:t,b:s.formData.gender===t,c:e.t(t),d:o}))),q:e.o(((...e)=>n.onGenderChange&&n.onGenderChange(...e)),"5e"),r:s.formData.age,s:e.o((e=>s.formData.age=e.detail.value),"a2"),t:s.formData.salesName,v:e.o((e=>s.formData.salesName=e.detail.value),"f2"),w:s.formData.salesPhone,x:e.o((e=>s.formData.salesPhone=e.detail.value),"eb"),y:s.formData.remarks,z:e.o((e=>s.formData.remarks=e.detail.value),"4a"),A:e.p({type:"close",size:"16",color:"#007AFF"}),B:e.o(((...e)=>n.handleCancel&&n.handleCancel(...e)),"a2"),C:e.p({type:"checkmarkempty",size:"16",color:"#007AFF"}),D:e.o((e=>n.handleSave("save")),"97"),E:e.p({type:"checkmarkempty",size:"16",color:"#007AFF"}),F:e.o((e=>n.handleSave("start")),"c9"),G:s.showCustomerSourceDropdown},s.showCustomerSourceDropdown?{H:e.o(((...e)=>n.closeCustomerSourceDropdown&&n.closeCustomerSourceDropdown(...e)),"5f")}:{})}]]);wx.createComponent(a);
diff --git a/unpackage/dist/build/mp-weixin/pages-subpackage/furniture_reception/common_begin_reception.wxss b/unpackage/dist/build/mp-weixin/pages-subpackage/furniture_reception/common_begin_reception.wxss
index 29473ee..6d6b125 100644
--- a/unpackage/dist/build/mp-weixin/pages-subpackage/furniture_reception/common_begin_reception.wxss
+++ b/unpackage/dist/build/mp-weixin/pages-subpackage/furniture_reception/common_begin_reception.wxss
@@ -1 +1 @@
-.reception-form-wrapper{position:absolute;top:160rpx;left:0;right:0;bottom:96rpx;background-color:#f5f5f5;box-sizing:border-box;width:100%;z-index:0;display:flex;flex-direction:column;overflow:hidden}.reception-form{flex:1;width:100%;padding:24rpx 16rpx;box-sizing:border-box;background-color:#f5f5f5;overflow-y:auto;-webkit-overflow-scrolling:touch}.form-card{width:100%;box-sizing:border-box;background-color:#fff;border-radius:16rpx;padding:40rpx 24rpx 32rpx;box-shadow:0 2rpx 8rpx rgba(0,0,0,.04);margin-bottom:24rpx;overflow:visible}.form-card .form-item:last-child{margin-bottom:0}.form-card .form-item:first-child{padding-top:24rpx;margin-top:16rpx}.form-item{display:flex!important;align-items:flex-start;margin-bottom:32rpx;min-height:88rpx;padding-top:8rpx;box-sizing:border-box;width:100%;flex-wrap:nowrap!important;overflow:hidden;flex-shrink:0;justify-content:center;flex-direction:row!important;padding-left:0}.form-item--textarea{align-items:flex-start}.gender-radio-group{flex:1;flex-shrink:1;display:flex;gap:32rpx;flex-wrap:nowrap;align-items:center;min-width:0;overflow:hidden;height:88rpx;justify-content:flex-start}.gender-radio{display:flex;align-items:center;gap:12rpx;flex-shrink:0;height:88rpx}.gender-radio__text{color:#374151;font-size:28rpx;white-space:nowrap}.form-item__label{font-size:28rpx;color:#333;font-weight:500;width:140rpx;flex-shrink:0;flex-grow:0;margin-right:24rpx;margin-left:0;padding:12rpx 0 12rpx 16rpx;white-space:nowrap;box-sizing:border-box;min-height:88rpx;line-height:1.4;text-align:left;display:flex;align-items:flex-start;justify-content:flex-start}.form-item--half{width:50%}.form-item__input{flex:1!important;flex-shrink:1!important;flex-grow:1!important;min-width:0!important;max-width:none!important;width:auto!important;height:88rpx;line-height:88rpx;background-color:#f9fafb;border-radius:12rpx;padding:0 24rpx;font-size:28rpx;color:#333;box-sizing:border-box;border:2rpx solid #e5e7eb;transition:all .2s ease;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.form-item__input:focus{border-color:#007aff;background-color:#fff;box-shadow:0 0 0 4rpx rgba(0,122,255,.1)}.form-item__text{flex:1;flex-shrink:1;min-width:0;height:88rpx;background-color:#f9fafb;border-radius:12rpx;padding:0 24rpx;display:flex;align-items:center;justify-content:flex-start;box-sizing:border-box;overflow:hidden}.form-item__text text{font-size:28rpx;color:#333}.form-actions{display:flex;gap:16rpx;padding:24rpx 16rpx;padding-bottom:calc(32rpx + env(safe-area-inset-bottom));background-color:#f5f5f5;box-sizing:border-box;flex-shrink:0;width:100%;border-top:1px solid #E5E7EB}.form-actions--triple{gap:16rpx}.form-btn{flex:1;height:88rpx;border-radius:12rpx;display:flex;align-items:center;justify-content:center;gap:12rpx;transition:all .2s ease;background-color:#f8f9fa;border:1px solid #e5e7eb;box-sizing:border-box}.form-btn--cancel:active,.form-btn--save:active,.form-btn--start:active{background-color:#f0f0f0;border-color:#d1d5db;opacity:.9}.form-btn__icon-circle{width:40rpx;height:40rpx;border-radius:50%;display:flex;align-items:center;justify-content:center;background-color:rgba(0,122,255,.08);flex-shrink:0}.form-btn__text{font-size:30rpx;font-weight:500;color:#007aff}.form-btn--cancel .form-btn__text,.form-btn--save .form-btn__text,.form-btn--start .form-btn__text{color:#007aff}.customer-source-select-wrapper{position:relative;flex:1;flex-shrink:1;min-width:0;display:flex;align-items:center;overflow:hidden;height:88rpx}.customer-source-select{width:100%;min-width:0;height:88rpx;background-color:#f9fafb;border-radius:12rpx;padding:0 24rpx;display:flex;align-items:center;justify-content:space-between;box-sizing:border-box;border:1px solid transparent;overflow:hidden}.customer-source-select uni-icons{flex-shrink:0;margin-left:12rpx}.customer-source-select-dropdown{position:fixed;background-color:#fff;border-radius:16rpx;box-shadow:0 12rpx 30rpx rgba(15,23,42,.1);z-index:9999;padding:12rpx 0;box-sizing:border-box;max-height:400rpx;overflow-y:auto;min-width:200rpx}.customer-source-select-dropdown__item{padding:20rpx 32rpx}.customer-source-select-dropdown__item text{font-size:28rpx;color:#374151}.customer-source-select-dropdown__item text.active{color:#2a68ff;font-weight:500}.customer-source-select-dropdown__item:active{background-color:#f5f7fb}.customer-source-select-mask{position:fixed;top:0;left:0;right:0;bottom:0;background-color:transparent;z-index:9998}.form-item__picker-text{font-size:28rpx;color:#333;flex:1;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.form-item__picker-placeholder{font-size:28rpx;color:#9ca3af;flex:1;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}@media (max-width: 750rpx){.form-item__label{width:120rpx;font-size:26rpx;margin-right:16rpx;margin-left:0;padding:10rpx 0 10rpx 12rpx;min-height:80rpx;line-height:1.4;align-items:flex-start}.form-item{min-height:80rpx;padding-top:6rpx}.form-item__input,.form-item__text,.customer-source-select-wrapper,.gender-radio-group,.gender-radio{height:80rpx}.form-item__input,.form-item__text,.customer-source-select-wrapper,.gender-radio-group{flex-shrink:1}.form-item__input,.customer-source-select{font-size:26rpx;padding:0 16rpx}.form-item__text{padding:0 16rpx}.form-item__text text{font-size:26rpx}.gender-radio-group{gap:24rpx}}
+.reception-form-wrapper{position:absolute;top:0;left:0;right:0;bottom:0!important;background-color:#f5f5f5;box-sizing:border-box;width:100%;z-index:0;display:flex;flex-direction:column;overflow:hidden}.reception-form{flex:1;width:100%;padding:24rpx 16rpx;box-sizing:border-box;background-color:#f5f5f5;overflow-y:auto;-webkit-overflow-scrolling:touch}.form-card{width:100%;box-sizing:border-box;background-color:#fff;border-radius:16rpx;padding:40rpx 24rpx 32rpx;box-shadow:0 2rpx 8rpx rgba(0,0,0,.04);margin-bottom:24rpx;overflow:visible}.form-card .form-item:last-child{margin-bottom:0}.form-card .form-item:first-child{padding-top:24rpx;margin-top:16rpx}.form-item{display:flex!important;align-items:flex-start;margin-bottom:32rpx;min-height:88rpx;padding-top:8rpx;box-sizing:border-box;width:100%;flex-wrap:nowrap!important;overflow:hidden;flex-shrink:0;justify-content:center;flex-direction:row!important;padding-left:0}.form-item--textarea{align-items:flex-start}.gender-radio-group{flex:1;flex-shrink:1;display:flex;gap:32rpx;flex-wrap:nowrap;align-items:center;min-width:0;overflow:hidden;height:88rpx;justify-content:flex-start}.gender-radio{display:flex;align-items:center;gap:12rpx;flex-shrink:0;height:88rpx}.gender-radio__text{color:#374151;font-size:28rpx;white-space:nowrap}.form-item__label{font-size:28rpx;color:#333;font-weight:500;width:140rpx;flex-shrink:0;flex-grow:0;margin-right:24rpx;margin-left:0;padding:12rpx 0 12rpx 16rpx;white-space:nowrap;box-sizing:border-box;min-height:88rpx;line-height:1.4;text-align:left;display:flex;align-items:flex-start;justify-content:flex-start}.form-item--half{width:50%}.form-item__input{flex:1!important;flex-shrink:1!important;flex-grow:1!important;min-width:0!important;max-width:none!important;width:auto!important;height:88rpx;line-height:88rpx;background-color:#f9fafb;border-radius:12rpx;padding:0 24rpx;font-size:28rpx;color:#333;box-sizing:border-box;border:2rpx solid #e5e7eb;transition:all .2s ease;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.form-item__input:focus{border-color:#007aff;background-color:#fff;box-shadow:0 0 0 4rpx rgba(0,122,255,.1)}.form-item__text{flex:1;flex-shrink:1;min-width:0;height:88rpx;background-color:#f9fafb;border-radius:12rpx;padding:0 24rpx;display:flex;align-items:center;justify-content:flex-start;box-sizing:border-box;overflow:hidden}.form-item__text text{font-size:28rpx;color:#333}.form-actions{display:flex;gap:16rpx;padding:24rpx 16rpx;padding-bottom:calc(32rpx + env(safe-area-inset-bottom));background-color:#f5f5f5;box-sizing:border-box;flex-shrink:0;width:100%;border-top:1px solid #E5E7EB}.form-actions--triple{gap:16rpx}.form-btn{flex:1;height:88rpx;border-radius:12rpx;display:flex;align-items:center;justify-content:center;gap:12rpx;transition:all .2s ease;background-color:#f8f9fa;border:1px solid #e5e7eb;box-sizing:border-box}.form-btn--cancel:active,.form-btn--save:active,.form-btn--start:active{background-color:#f0f0f0;border-color:#d1d5db;opacity:.9}.form-btn__icon-circle{width:40rpx;height:40rpx;border-radius:50%;display:flex;align-items:center;justify-content:center;background-color:rgba(0,122,255,.08);flex-shrink:0}.form-btn__text{font-size:30rpx;font-weight:500;color:#007aff}.form-btn--cancel .form-btn__text,.form-btn--save .form-btn__text,.form-btn--start .form-btn__text{color:#007aff}.customer-source-select-wrapper{position:relative;flex:1;flex-shrink:1;min-width:0;display:flex;align-items:center;overflow:hidden;height:88rpx}.customer-source-select{width:100%;min-width:0;height:88rpx;background-color:#f9fafb;border-radius:12rpx;padding:0 24rpx;display:flex;align-items:center;justify-content:space-between;box-sizing:border-box;border:1px solid transparent;overflow:hidden}.customer-source-select uni-icons{flex-shrink:0;margin-left:12rpx}.customer-source-select-dropdown{position:fixed;background-color:#fff;border-radius:16rpx;box-shadow:0 12rpx 30rpx rgba(15,23,42,.1);z-index:9999;padding:12rpx 0;box-sizing:border-box;max-height:400rpx;overflow-y:auto;min-width:200rpx}.customer-source-select-dropdown__item{padding:20rpx 32rpx}.customer-source-select-dropdown__item text{font-size:28rpx;color:#374151}.customer-source-select-dropdown__item text.active{color:#2a68ff;font-weight:500}.customer-source-select-dropdown__item:active{background-color:#f5f7fb}.customer-source-select-mask{position:fixed;top:0;left:0;right:0;bottom:0;background-color:transparent;z-index:9998}.form-item__picker-text{font-size:28rpx;color:#333;flex:1;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.form-item__picker-placeholder{font-size:28rpx;color:#9ca3af;flex:1;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}@media (max-width: 750rpx){.form-item__label{width:120rpx;font-size:26rpx;margin-right:16rpx;margin-left:0;padding:10rpx 0 10rpx 12rpx;min-height:80rpx;line-height:1.4;align-items:flex-start}.form-item{min-height:80rpx;padding-top:6rpx}.form-item__input,.form-item__text,.customer-source-select-wrapper,.gender-radio-group,.gender-radio{height:80rpx}.form-item__input,.form-item__text,.customer-source-select-wrapper,.gender-radio-group{flex-shrink:1}.form-item__input,.customer-source-select{font-size:26rpx;padding:0 16rpx}.form-item__text{padding:0 16rpx}.form-item__text text{font-size:26rpx}.gender-radio-group{gap:24rpx}}
diff --git a/unpackage/dist/build/mp-weixin/pages-subpackage/furniture_reception/furniture_reception-impl.js b/unpackage/dist/build/mp-weixin/pages-subpackage/furniture_reception/furniture_reception-impl.js
index a7cd08b..eb829cc 100644
--- a/unpackage/dist/build/mp-weixin/pages-subpackage/furniture_reception/furniture_reception-impl.js
+++ b/unpackage/dist/build/mp-weixin/pages-subpackage/furniture_reception/furniture_reception-impl.js
@@ -1 +1 @@
-"use strict";const e=require("../../common/vendor.js"),t=require("../../common/config.js"),o={props:{incomingTab:{type:String,default:""}},components:{CommonBeginReception:()=>"./common_begin_reception.js",ServiceListFurniture:()=>"./serviceListFurniture.js"},data:()=>({activeTab:"status",navbarTop:"88rpx",contentTop:"160rpx",receptionForm:{id:"",customerName:"",contact:"",customerSource:"",gender:"女",age:"",dealershipId:"",dealershipName:"",salesId:"",salesName:"",salesPhone:"",recordingCount:0,intendedModel:"",infoCard:"",remark:"",detailedAddress:"",contactCount:0},tagViewMode:"list",tagList:[],tagLoading:!1,tagTotal:0,tagPage:{current:1,size:10},tagQuery:{industry:"",tagType:"",tagName:""},tagForm:{id:"",industry:"家居行业",tagType:"",name:"",detail:"",remark:"",enabled:!0},tagTypeOptions:["接待客户","质检SOP","客户画像"],showTagTypeDropdown:!1,selectedTagItem:null,showTagActionMenu:!1}),watch:{incomingTab:{immediate:!0,handler(e){this.applyIncomingTab(e)}}},computed:{computedNavbarTop(){console.log("[FurnitureReception][computedNavbarTop] 计算导航栏位置");const t=e.index.getSystemInfoSync().statusBarHeight||20,o=2*t+88,a=o+"rpx";return console.log("[FurnitureReception][computedNavbarTop] 计算结果:",{statusBarHeight:t,navbarHeight:44,totalNavbarHeight:o,result:a}),a},computedContentTop(){console.log("[FurnitureReception][computedContentTop] 计算内容区域位置");const t=e.index.getSystemInfoSync().statusBarHeight||20,o=2*t+88,a=o+72+"rpx";return console.log("[FurnitureReception][computedContentTop] 计算结果:",{statusBarHeight:t,navbarHeight:44,totalNavbarHeight:o,result:a}),a}},onLoad(){console.log("[FurnitureReception][onLoad] 页面加载"),this.updateNavbarPosition(),this.loadCurrentUserInfo()},onShow(){console.log("[FurnitureReception][onShow] 页面显示"),this.$nextTick((()=>{this.updateNavbarPosition(),setTimeout((()=>{this.updateNavbarPosition(),console.log("[FurnitureReception][onShow] 延迟更新后的位置:",{navbarTop:this.navbarTop,contentTop:this.contentTop,computedNavbarTop:this.computedNavbarTop,computedContentTop:this.computedContentTop})}),50)}))},onReady(){console.log("[FurnitureReception][onReady] 页面渲染完成"),console.log("[FurnitureReception][onReady] activeTab:",this.activeTab),console.log("[FurnitureReception][onReady] navbarTop:",this.navbarTop),console.log("[FurnitureReception][onReady] contentTop:",this.contentTop),console.log("[FurnitureReception][onReady] computedNavbarTop:",this.computedNavbarTop),console.log("[FurnitureReception][onReady] computedContentTop:",this.computedContentTop),this.updateNavbarPosition(),this.initUrlHidingAfterPageLoad();const t=e.index.getSystemInfoSync();console.log("[FurnitureReception][onReady] 系统信息:",{statusBarHeight:t.statusBarHeight,windowHeight:t.windowHeight,screenHeight:t.screenHeight}),setTimeout((()=>{e.index.createSelectorQuery().in(this).select(".tabs").boundingClientRect((e=>{console.log("[FurnitureReception][onReady] tab栏元素信息:",e),e?(console.log("[FurnitureReception][onReady] tab栏位置:",{top:e.top,left:e.left,width:e.width,height:e.height,expectedTop:this.navbarTop,computedNavbarTop:this.computedNavbarTop,isVisible:e.width>0&&e.height>0,isOnScreen:e.top>=0&&e.top{this.showTagTypeDropdown&&this.updateTagTypeDropdownPosition()}))},methods:{refreshPageData(){this.$nextTick((()=>{const e=this.$refs.serviceListRef;"status"===this.activeTab?e&&"function"==typeof e.onServiceStatusRefresh&&e.onServiceStatusRefresh():"tag"===this.activeTab&&"list"===this.tagViewMode&&this.fetchTagList({force:!0})}))},applyIncomingTab(e){["status","reception","tag"].includes(e)&&(this.activeTab!==e&&(this.activeTab=e),"reception"===e?this.resetReceptionForm():"tag"===e?(this.tagViewMode="list",this.fetchTagList({force:!0})):"status"===e&&this.$nextTick((()=>{this.refreshPageData()})))},updateNavbarPosition(){console.log("[FurnitureReception][updateNavbarPosition] 开始更新导航栏位置");const t=e.index.getSystemInfoSync().statusBarHeight||20,o=2*t+88,a=o+"rpx",i=o+72+"rpx";console.log("[FurnitureReception][updateNavbarPosition] 更新导航栏位置:",{statusBarHeight:t,navbarHeight:44,totalNavbarHeight:o,navbarTop:a,contentTop:i,currentNavbarTop:this.navbarTop,currentContentTop:this.contentTop}),this.$set(this,"navbarTop",a),this.$set(this,"contentTop",i),this.$forceUpdate()},loadCurrentUserInfo(){try{const t=e.index.getStorageSync("backend-login-response")||{};t.userName&&(this.receptionForm.salesName=t.userName),t.phone?this.receptionForm.salesPhone=t.phone:t.userName&&(this.receptionForm.salesPhone=t.userName),t.userId&&(this.receptionForm.salesId=String(t.userId))}catch(t){console.error("加载当前登录用户信息失败:",t)}},goBack(){getCurrentPages().length<=1?e.index.switchTab({url:"/pages/workbench/workbench",fail:e=>{console.error("[FurnitureReception][goBack] 切回工作台失败:",e)}}):e.index.navigateBack({fail:e=>{console.error("[FurnitureReception][goBack] 返回失败:",e)}})},switchTab(e){this.activeTab=e,"reception"===e?this.resetReceptionForm():"tag"===e&&(this.tagViewMode="list",this.fetchTagList())},resetReceptionForm(){this.receptionForm={id:"",customerName:"",contact:"",customerSource:"",gender:"女",age:"",dealershipId:"",dealershipName:"",salesId:"",salesName:"",salesPhone:"",recordingCount:0,intendedModel:"",infoCard:"",remark:"",detailedAddress:"",contactCount:0},this.loadCurrentUserInfo()},onReceptionCancel(){this.resetReceptionForm()},onReceptionSaveSuccess({action:e,data:t}){t&&(this.receptionForm={...this.receptionForm,...t}),this.resetReceptionForm(),"start"===e&&console.log("开始接待成功",t)},onReceptionSaveError({action:e,error:t}){console.error("保存失败:",t)},onTagListSearch(){"tag"!==this.activeTab&&(this.activeTab="tag"),this.tagPage.current=1,this.fetchTagList({force:!0})},onTagListRefresh(){this.tagPage.current=1,this.fetchTagList({force:!0})},onTagListReachBottom(){this.tagLoading||this.tagList.length>=this.tagTotal||(this.tagPage.current+=1,this.fetchTagList())},async fetchTagList({force:o=!1}={}){var a,i,n,s,r;if(!this.tagLoading||o){this.tagLoading=!0;try{const d={current:this.tagPage.current,size:this.tagPage.size},g=null==(i=null==(a=this.tagQuery)?void 0:a.tagType)?void 0:i.trim(),l=null==(s=null==(n=this.tagQuery)?void 0:n.tagName)?void 0:s.trim();g&&(d.tagType=g),l&&(d.tagName=l);const h=t.getApiUrl("/api/industryTags/list");let p="",u="";try{p=e.index.getStorageSync("backend-tenant-id")||"",u=e.index.getStorageSync("backend-token")||""}catch(c){console.error("获取认证信息失败:",c)}const T={"Content-Type":"application/json"};u&&(T.Authorization=`Bearer ${u}`),p&&(T["X-Tenant-Id"]=p);const m=await e.index.request({url:h,method:"POST",data:d,header:T,timeout:3e4});if(200===m.statusCode&&m.data&&m.data.success){const e=Array.isArray(m.data.data)?m.data.data:[];1===this.tagPage.current||o?this.tagList=e:this.tagList=this.tagList.concat(e),this.tagTotal=Number(m.data.total)||0}else this.tagList=[],this.tagTotal=0,e.index.showToast({title:(null==(r=m.data)?void 0:r.message)||"获取标签列表失败",icon:"none"})}catch(d){console.error("获取标签列表失败:",d);let t="获取标签列表失败,请稍后重试";d.errMsg&&(d.errMsg.includes("timeout")?t="请求超时,请检查网络连接后重试":d.errMsg.includes("fail")&&(t="网络请求失败,请检查网络连接")),e.index.showToast({title:t,icon:"none",duration:3e3})}finally{this.tagLoading=!1}}},showAddTag(){this.tagViewMode="add",this.showTagTypeDropdown=!1,this.tagForm={id:"",industry:"家居行业",tagType:"",name:"",detail:"",remark:"",enabled:!0}},onTagItemClick(e){},onTagActionBtnClick(e){this.selectedTagItem&&this.selectedTagItem.id===e.id&&this.showTagActionMenu?this.closeTagActionMenu():(this.selectedTagItem=e,this.showTagActionMenu=!0)},closeTagActionMenu(){this.showTagActionMenu=!1,this.selectedTagItem=null},editTag(e){this.closeTagActionMenu(),this.tagViewMode="edit",this.showTagTypeDropdown=!1,this.tagForm={id:e.id||"",industry:e.industry||"家居行业",tagType:e.tagType||"",name:e.tagName||e.name||"",detail:e.tagDetail||e.detail||"",remark:e.remark||"",enabled:void 0!==e.enabled?e.enabled:void 0===e.isEnabled||e.isEnabled}},async deleteTag(o){this.closeTagActionMenu();const a=o.id;a?e.index.showModal({title:"确认删除",content:`确定要删除标签"${o.tagName||o.name||"未命名标签"}"吗?`,success:async o=>{var i,n;if(o.confirm)try{e.index.showLoading({title:"删除中..."});const o=t.getApiUrl(`/api/industryTags/delete/${a}`);let r="",c="";try{r=e.index.getStorageSync("backend-tenant-id")||"",c=e.index.getStorageSync("backend-token")||""}catch(s){console.error("获取认证信息失败:",s)}const d={};c&&(d.Authorization=`Bearer ${c}`),r&&(d["X-Tenant-Id"]=r);const g=await e.index.request({url:o,method:"DELETE",header:d,timeout:3e4});e.index.hideLoading(),200===g.statusCode&&g.data&&g.data.success?(e.index.showToast({title:(null==(i=g.data)?void 0:i.message)||"删除成功",icon:"success"}),this.tagPage.current=1,this.fetchTagList({force:!0})):e.index.showToast({title:(null==(n=g.data)?void 0:n.message)||"删除失败",icon:"none"})}catch(r){e.index.hideLoading(),console.error("删除标签失败:",r);let t="删除失败,请重试";r.errMsg&&(r.errMsg.includes("timeout")?t="请求超时,请检查网络连接后重试":r.errMsg.includes("fail")&&(t="网络请求失败,请检查网络连接")),e.index.showToast({title:t,icon:"none",duration:3e3})}}}):e.index.showToast({title:"无法获取标签ID",icon:"none"})},cancelAddTag(){this.tagViewMode="list",this.showTagTypeDropdown=!1,this.tagForm={id:"",industry:"家居行业",tagType:"",name:"",detail:"",remark:"",enabled:!0}},toggleTagTypeDropdown(){this.showTagTypeDropdown=!this.showTagTypeDropdown,this.showTagTypeDropdown&&this.$nextTick((()=>{this.updateTagTypeDropdownPosition()}))},updateTagTypeDropdownPosition(){e.index.createSelectorQuery().in(this).select(".tag-select").boundingClientRect((e=>{if(e){const t=this.$refs.tagTypeDropdown;t&&this.$nextTick((()=>{const o=t.$el||t;o&&o.style&&(o.style.top=e.bottom+8+"px",o.style.left=e.left+"px",o.style.width=e.width+"px")}))}})).exec()},selectTagType(e){this.tagForm.tagType=e,this.showTagTypeDropdown=!1},closeTagTypeDropdown(){this.showTagTypeDropdown=!1},onEnabledChange(e){this.tagForm.enabled=e.detail.value},async saveTag(){var o,a,i,n;if(this.tagForm.name&&this.tagForm.name.trim())try{e.index.showLoading({title:"edit"===this.tagViewMode?"更新中...":"保存中..."});const r={industry:(null==(o=this.tagForm.industry)?void 0:o.trim())||"",tagType:(null==(a=this.tagForm.tagType)?void 0:a.trim())||"",tagName:this.tagForm.name.trim(),tagDetail:(null==(i=this.tagForm.detail)?void 0:i.trim())||"",remark:(null==(n=this.tagForm.remark)?void 0:n.trim())||"",enabled:void 0===this.tagForm.enabled||this.tagForm.enabled};"edit"===this.tagViewMode&&this.tagForm.id&&(r.id=this.tagForm.id);const c="edit"===this.tagViewMode?t.getApiUrl("/api/industryTags/update"):t.getApiUrl("/api/industryTags/add"),d="edit"===this.tagViewMode?"PUT":"POST";let g="",l="";try{g=e.index.getStorageSync("backend-tenant-id")||"",l=e.index.getStorageSync("backend-token")||""}catch(s){console.error("获取认证信息失败:",s)}const h={"Content-Type":"application/json"};l&&(h.Authorization=`Bearer ${l}`),g&&(h["X-Tenant-Id"]=g);const p=await e.index.request({url:c,method:d,data:r,header:h,timeout:3e4}),{statusCode:u,data:T}=p;if(200!==u||!T||!T.success&&200!==T.code)throw new Error((null==T?void 0:T.message)||("edit"===this.tagViewMode?"更新失败":"保存失败"));e.index.showToast({title:(null==T?void 0:T.message)||("edit"===this.tagViewMode?"更新成功":"保存成功"),icon:"success"}),this.tagViewMode="list",this.tagPage.current=1,this.fetchTagList({force:!0})}catch(r){console.error("保存标签失败:",r);let t=(null==r?void 0:r.message)||("edit"===this.tagViewMode?"更新失败,请重试":"保存失败,请重试");r.errMsg&&(r.errMsg.includes("timeout")?t="请求超时,请检查网络连接后重试":r.errMsg.includes("fail")&&(t="网络请求失败,请检查网络连接")),e.index.showToast({title:t,icon:"none",duration:3e3})}finally{e.index.hideLoading()}else e.index.showToast({title:"请输入标签名",icon:"none"})},initUrlHidingAfterPageLoad(){},attemptUrlHidingForCurrentPage(){},setupTabNavigationHiding(){},setupBrowserNavigationHiding(){}}};if(!Array){(e.resolveComponent("uni-nav-bar")+e.resolveComponent("service-list-furniture")+e.resolveComponent("common-begin-reception")+e.resolveComponent("uni-icons"))()}Math||((()=>"../../uni_modules/uni-nav-bar/components/uni-nav-bar/uni-nav-bar.js")+(()=>"../../uni_modules/uni-icons/components/uni-icons/uni-icons.js"))();const a=e._export_sfc(o,[["render",function(t,o,a,i,n,s){return e.e({a:e.o(s.goBack,"66"),b:e.p({fixed:!0,statusBar:!0,border:!1,title:"AI销冠系统",leftIcon:"left",color:"#333",backgroundColor:"#FFFFFF"}),c:"reception"===n.activeTab?1:"",d:e.o((e=>s.switchTab("reception")),"5d"),e:"status"===n.activeTab?1:"",f:e.o((e=>s.switchTab("status")),"a2"),g:"tag"===n.activeTab?1:"",h:e.o((e=>s.switchTab("tag")),"4c"),i:s.computedNavbarTop||n.navbarTop,j:"status"===n.activeTab},"status"===n.activeTab?{k:e.sr("serviceListRef","638dc4bb-1"),l:s.computedContentTop||n.contentTop}:{},{m:"reception"===n.activeTab},"reception"===n.activeTab?{n:e.o(s.onReceptionCancel,"be"),o:e.o(s.onReceptionSaveSuccess,"03"),p:e.o(s.onReceptionSaveError,"cf"),q:e.p({"initial-data":n.receptionForm})}:{},{r:"tag"===n.activeTab&&"list"===n.tagViewMode},"tag"===n.activeTab&&"list"===n.tagViewMode?e.e({s:e.t(n.tagTotal),t:e.o(((...e)=>s.onTagListSearch&&s.onTagListSearch(...e)),"e9"),v:n.tagQuery.tagType,w:e.o((e=>n.tagQuery.tagType=e.detail.value),"2d"),x:e.o(((...e)=>s.onTagListSearch&&s.onTagListSearch(...e)),"02"),y:n.tagQuery.tagName,z:e.o((e=>n.tagQuery.tagName=e.detail.value),"a5"),A:e.p({type:"refresh",size:"18",color:"#2A68FF"}),B:e.o(((...e)=>s.onTagListRefresh&&s.onTagListRefresh(...e)),"bb"),C:e.p({type:"plus",size:"18",color:"#2A68FF"}),D:e.o(((...e)=>s.showAddTag&&s.showAddTag(...e)),"a9"),E:e.f(n.tagList,((t,o,a)=>e.e({a:e.t((t.tagName||t.name||"标").charAt(0)),b:e.t(t.tagName||t.name||"未命名标签"),c:e.o((e=>s.onTagItemClick(t)),o),d:"638dc4bb-5-"+a,e:e.o((e=>s.onTagActionBtnClick(t)),o),f:t.industry},t.industry?{g:e.t(t.industry)}:{},{h:e.o((e=>s.onTagItemClick(t)),o),i:t.tagDetail||t.detail||t.remark},t.tagDetail||t.detail||t.remark?e.e({j:t.tagDetail||t.detail},t.tagDetail||t.detail?{k:e.t(t.tagDetail||t.detail)}:{},{l:t.remark},t.remark?{m:e.t(t.remark)}:{},{n:e.o((e=>s.onTagItemClick(t)),o)}):{},{o:n.selectedTagItem&&n.selectedTagItem.id===t.id&&n.showTagActionMenu},n.selectedTagItem&&n.selectedTagItem.id===t.id&&n.showTagActionMenu?{p:e.o((e=>s.editTag(t)),o),q:e.o((e=>s.deleteTag(t)),o),r:e.o((()=>{}),o)}:{},{s:o,t:n.selectedTagItem&&n.selectedTagItem.id===t.id?1:""}))),F:e.p({type:"more-filled",size:"20",color:"#999"}),G:n.showTagActionMenu},n.showTagActionMenu?{H:e.o(((...e)=>s.closeTagActionMenu&&s.closeTagActionMenu(...e)),"0a")}:{},{I:!n.tagLoading&&!n.tagList.length},(n.tagLoading||n.tagList.length,{}),{J:n.tagLoading&&n.tagList.length},(n.tagLoading&&n.tagList.length,{}),{K:s.computedContentTop||n.contentTop,L:e.o(((...e)=>s.onTagListReachBottom&&s.onTagListReachBottom(...e)),"89")}):{},{M:"tag"===n.activeTab&&("add"===n.tagViewMode||"edit"===n.tagViewMode)},"tag"!==n.activeTab||"add"!==n.tagViewMode&&"edit"!==n.tagViewMode?{}:e.e({N:"add"===n.tagViewMode},"add"===n.tagViewMode?{O:n.tagForm.industry,P:e.o((e=>n.tagForm.industry=e.detail.value),"73")}:{},{Q:e.t(n.tagForm.tagType||"请选择标签分类"),R:e.n(n.tagForm.tagType?"form-item__picker-text":"form-item__picker-placeholder"),S:e.p({type:"bottom",size:"16",color:"#9ca3af"}),T:e.o(((...e)=>s.toggleTagTypeDropdown&&s.toggleTagTypeDropdown(...e)),"d4"),U:n.showTagTypeDropdown},n.showTagTypeDropdown?{V:e.f(n.tagTypeOptions,((t,o,a)=>({a:e.t(t),b:t===n.tagForm.tagType?1:"",c:t,d:e.o((e=>s.selectTagType(t)),t)}))),W:e.o((()=>{}),"85")}:{},{X:n.tagForm.name,Y:e.o((e=>n.tagForm.name=e.detail.value),"c7"),Z:n.tagForm.detail,aa:e.o((e=>n.tagForm.detail=e.detail.value),"ab"),ab:n.tagForm.remark,ac:e.o((e=>n.tagForm.remark=e.detail.value),"05"),ad:n.tagForm.enabled,ae:e.o(((...e)=>s.onEnabledChange&&s.onEnabledChange(...e)),"8c"),af:e.o(((...e)=>s.cancelAddTag&&s.cancelAddTag(...e)),"f8"),ag:e.t("edit"===n.tagViewMode?"更新":"保存"),ah:e.o(((...e)=>s.saveTag&&s.saveTag(...e)),"52"),ai:n.showTagTypeDropdown},n.showTagTypeDropdown?{aj:e.o(((...e)=>s.closeTagTypeDropdown&&s.closeTagTypeDropdown(...e)),"07")}:{},{ak:s.computedContentTop||n.contentTop}))}]]);wx.createComponent(a);
+"use strict";const e=require("../../common/vendor.js"),t=require("../../common/config.js"),o={props:{incomingTab:{type:String,default:""}},components:{CommonBeginReception:()=>"./common_begin_reception.js",ServiceListFurniture:()=>"./serviceListFurniture.js"},data:()=>({activeTab:"status",navbarTop:"88rpx",contentTop:"160rpx",receptionForm:{id:"",customerName:"",contact:"",customerSource:"",gender:"女",age:"",dealershipId:"",dealershipName:"",salesId:"",salesName:"",salesPhone:"",recordingCount:0,intendedModel:"",infoCard:"",remark:"",detailedAddress:"",contactCount:0},tagViewMode:"list",tagList:[],tagLoading:!1,tagTotal:0,tagPage:{current:1,size:10},tagQuery:{industry:"",tagType:"",tagName:""},tagForm:{id:"",industry:"家居行业",tagType:"",name:"",detail:"",remark:"",enabled:!0},tagTypeOptions:["接待客户","质检SOP","客户画像"],showTagTypeDropdown:!1,selectedTagItem:null,showTagActionMenu:!1}),watch:{incomingTab:{immediate:!0,handler(e){this.applyIncomingTab(e)}}},computed:{computedNavbarTop(){const t=e.index.getSystemInfoSync();return((t.statusBarHeight||20)+44)*(750/(t.windowWidth||t.screenWidth||375))+"rpx"},computedContentTop(){const t=e.index.getSystemInfoSync();return((t.statusBarHeight||20)+44)*(750/(t.windowWidth||t.screenWidth||375))+72+"rpx"}},onLoad(){console.log("[FurnitureReception][onLoad] 页面加载"),this.updateNavbarPosition(),this.loadCurrentUserInfo()},onShow(){console.log("[FurnitureReception][onShow] 页面显示"),this.$nextTick((()=>{this.updateNavbarPosition(),setTimeout((()=>{this.updateNavbarPosition(),console.log("[FurnitureReception][onShow] 延迟更新后的位置:",{navbarTop:this.navbarTop,contentTop:this.contentTop,computedNavbarTop:this.computedNavbarTop,computedContentTop:this.computedContentTop})}),50)}))},onReady(){console.log("[FurnitureReception][onReady] 页面渲染完成"),console.log("[FurnitureReception][onReady] activeTab:",this.activeTab),console.log("[FurnitureReception][onReady] navbarTop:",this.navbarTop),console.log("[FurnitureReception][onReady] contentTop:",this.contentTop),console.log("[FurnitureReception][onReady] computedNavbarTop:",this.computedNavbarTop),console.log("[FurnitureReception][onReady] computedContentTop:",this.computedContentTop),this.updateNavbarPosition(),this.initUrlHidingAfterPageLoad();const t=e.index.getSystemInfoSync();console.log("[FurnitureReception][onReady] 系统信息:",{statusBarHeight:t.statusBarHeight,windowHeight:t.windowHeight,screenHeight:t.screenHeight}),setTimeout((()=>{e.index.createSelectorQuery().in(this).select(".tabs").boundingClientRect((e=>{console.log("[FurnitureReception][onReady] tab栏元素信息:",e),e?(console.log("[FurnitureReception][onReady] tab栏位置:",{top:e.top,left:e.left,width:e.width,height:e.height,expectedTop:this.navbarTop,computedNavbarTop:this.computedNavbarTop,isVisible:e.width>0&&e.height>0,isOnScreen:e.top>=0&&e.top{this.showTagTypeDropdown&&this.updateTagTypeDropdownPosition()}))},methods:{refreshPageData(){this.$nextTick((()=>{const e=this.$refs.serviceListRef;"status"===this.activeTab?e&&"function"==typeof e.onServiceStatusRefresh&&e.onServiceStatusRefresh():"tag"===this.activeTab&&"list"===this.tagViewMode&&this.fetchTagList({force:!0})}))},applyIncomingTab(e){["status","reception","tag"].includes(e)&&(this.activeTab!==e&&(this.activeTab=e),"reception"===e?this.resetReceptionForm():"tag"===e?(this.tagViewMode="list",this.fetchTagList({force:!0})):"status"===e&&this.$nextTick((()=>{this.refreshPageData()})))},updateNavbarPosition(){console.log("[FurnitureReception][updateNavbarPosition] 开始更新导航栏位置");const t=e.index.getSystemInfoSync().statusBarHeight||20,o=2*t+88,a=o+"rpx",i=o+72+"rpx";console.log("[FurnitureReception][updateNavbarPosition] 更新导航栏位置:",{statusBarHeight:t,navbarHeight:44,totalNavbarHeight:o,navbarTop:a,contentTop:i,currentNavbarTop:this.navbarTop,currentContentTop:this.contentTop}),this.$set(this,"navbarTop",a),this.$set(this,"contentTop",i),this.$forceUpdate()},loadCurrentUserInfo(){try{const t=e.index.getStorageSync("backend-login-response")||{};t.userName&&(this.receptionForm.salesName=t.userName),t.phone?this.receptionForm.salesPhone=t.phone:t.userName&&(this.receptionForm.salesPhone=t.userName),t.userId&&(this.receptionForm.salesId=String(t.userId))}catch(t){console.error("加载当前登录用户信息失败:",t)}},goBack(){getCurrentPages().length<=1?e.index.switchTab({url:"/pages/workbench/workbench",fail:e=>{console.error("[FurnitureReception][goBack] 切回工作台失败:",e)}}):e.index.navigateBack({fail:e=>{console.error("[FurnitureReception][goBack] 返回失败:",e)}})},switchTab(e){this.activeTab=e,"reception"===e?this.resetReceptionForm():"tag"===e&&(this.tagViewMode="list",this.fetchTagList())},resetReceptionForm(){this.receptionForm={id:"",customerName:"",contact:"",customerSource:"",gender:"女",age:"",dealershipId:"",dealershipName:"",salesId:"",salesName:"",salesPhone:"",recordingCount:0,intendedModel:"",infoCard:"",remark:"",detailedAddress:"",contactCount:0},this.loadCurrentUserInfo()},onReceptionCancel(){this.resetReceptionForm()},onReceptionSaveSuccess({action:e,data:t}){t&&(this.receptionForm={...this.receptionForm,...t}),this.resetReceptionForm(),"start"===e&&console.log("开始接待成功",t)},onReceptionSaveError({action:e,error:t}){console.error("保存失败:",t)},onTagListSearch(){"tag"!==this.activeTab&&(this.activeTab="tag"),this.tagPage.current=1,this.fetchTagList({force:!0})},onTagListRefresh(){this.tagPage.current=1,this.fetchTagList({force:!0})},onTagListReachBottom(){this.tagLoading||this.tagList.length>=this.tagTotal||(this.tagPage.current+=1,this.fetchTagList())},async fetchTagList({force:o=!1}={}){var a,i,n,s,r;if(!this.tagLoading||o){this.tagLoading=!0;try{const c={current:this.tagPage.current,size:this.tagPage.size},g=null==(i=null==(a=this.tagQuery)?void 0:a.tagType)?void 0:i.trim(),l=null==(s=null==(n=this.tagQuery)?void 0:n.tagName)?void 0:s.trim();g&&(c.tagType=g),l&&(c.tagName=l);const h=t.getApiUrl("/api/industryTags/list");let p="",u="";try{p=e.index.getStorageSync("backend-tenant-id")||"",u=e.index.getStorageSync("backend-token")||""}catch(d){console.error("获取认证信息失败:",d)}const T={"Content-Type":"application/json"};u&&(T.Authorization=`Bearer ${u}`),p&&(T["X-Tenant-Id"]=p);const m=await e.index.request({url:h,method:"POST",data:c,header:T,timeout:3e4});if(200===m.statusCode&&m.data&&m.data.success){const e=Array.isArray(m.data.data)?m.data.data:[];1===this.tagPage.current||o?this.tagList=e:this.tagList=this.tagList.concat(e),this.tagTotal=Number(m.data.total)||0}else this.tagList=[],this.tagTotal=0,e.index.showToast({title:(null==(r=m.data)?void 0:r.message)||"获取标签列表失败",icon:"none"})}catch(c){console.error("获取标签列表失败:",c);let t="获取标签列表失败,请稍后重试";c.errMsg&&(c.errMsg.includes("timeout")?t="请求超时,请检查网络连接后重试":c.errMsg.includes("fail")&&(t="网络请求失败,请检查网络连接")),e.index.showToast({title:t,icon:"none",duration:3e3})}finally{this.tagLoading=!1}}},showAddTag(){this.tagViewMode="add",this.showTagTypeDropdown=!1,this.tagForm={id:"",industry:"家居行业",tagType:"",name:"",detail:"",remark:"",enabled:!0}},onTagItemClick(e){},onTagActionBtnClick(e){this.selectedTagItem&&this.selectedTagItem.id===e.id&&this.showTagActionMenu?this.closeTagActionMenu():(this.selectedTagItem=e,this.showTagActionMenu=!0)},closeTagActionMenu(){this.showTagActionMenu=!1,this.selectedTagItem=null},editTag(e){this.closeTagActionMenu(),this.tagViewMode="edit",this.showTagTypeDropdown=!1,this.tagForm={id:e.id||"",industry:e.industry||"家居行业",tagType:e.tagType||"",name:e.tagName||e.name||"",detail:e.tagDetail||e.detail||"",remark:e.remark||"",enabled:void 0!==e.enabled?e.enabled:void 0===e.isEnabled||e.isEnabled}},async deleteTag(o){this.closeTagActionMenu();const a=o.id;a?e.index.showModal({title:"确认删除",content:`确定要删除标签"${o.tagName||o.name||"未命名标签"}"吗?`,success:async o=>{var i,n;if(o.confirm)try{e.index.showLoading({title:"删除中..."});const o=t.getApiUrl(`/api/industryTags/delete/${a}`);let r="",d="";try{r=e.index.getStorageSync("backend-tenant-id")||"",d=e.index.getStorageSync("backend-token")||""}catch(s){console.error("获取认证信息失败:",s)}const c={};d&&(c.Authorization=`Bearer ${d}`),r&&(c["X-Tenant-Id"]=r);const g=await e.index.request({url:o,method:"DELETE",header:c,timeout:3e4});e.index.hideLoading(),200===g.statusCode&&g.data&&g.data.success?(e.index.showToast({title:(null==(i=g.data)?void 0:i.message)||"删除成功",icon:"success"}),this.tagPage.current=1,this.fetchTagList({force:!0})):e.index.showToast({title:(null==(n=g.data)?void 0:n.message)||"删除失败",icon:"none"})}catch(r){e.index.hideLoading(),console.error("删除标签失败:",r);let t="删除失败,请重试";r.errMsg&&(r.errMsg.includes("timeout")?t="请求超时,请检查网络连接后重试":r.errMsg.includes("fail")&&(t="网络请求失败,请检查网络连接")),e.index.showToast({title:t,icon:"none",duration:3e3})}}}):e.index.showToast({title:"无法获取标签ID",icon:"none"})},cancelAddTag(){this.tagViewMode="list",this.showTagTypeDropdown=!1,this.tagForm={id:"",industry:"家居行业",tagType:"",name:"",detail:"",remark:"",enabled:!0}},toggleTagTypeDropdown(){this.showTagTypeDropdown=!this.showTagTypeDropdown,this.showTagTypeDropdown&&this.$nextTick((()=>{this.updateTagTypeDropdownPosition()}))},updateTagTypeDropdownPosition(){e.index.createSelectorQuery().in(this).select(".tag-select").boundingClientRect((e=>{if(e){const t=this.$refs.tagTypeDropdown;t&&this.$nextTick((()=>{const o=t.$el||t;o&&o.style&&(o.style.top=e.bottom+8+"px",o.style.left=e.left+"px",o.style.width=e.width+"px")}))}})).exec()},selectTagType(e){this.tagForm.tagType=e,this.showTagTypeDropdown=!1},closeTagTypeDropdown(){this.showTagTypeDropdown=!1},onEnabledChange(e){this.tagForm.enabled=e.detail.value},async saveTag(){var o,a,i,n;if(this.tagForm.name&&this.tagForm.name.trim())try{e.index.showLoading({title:"edit"===this.tagViewMode?"更新中...":"保存中..."});const r={industry:(null==(o=this.tagForm.industry)?void 0:o.trim())||"",tagType:(null==(a=this.tagForm.tagType)?void 0:a.trim())||"",tagName:this.tagForm.name.trim(),tagDetail:(null==(i=this.tagForm.detail)?void 0:i.trim())||"",remark:(null==(n=this.tagForm.remark)?void 0:n.trim())||"",enabled:void 0===this.tagForm.enabled||this.tagForm.enabled};"edit"===this.tagViewMode&&this.tagForm.id&&(r.id=this.tagForm.id);const d="edit"===this.tagViewMode?t.getApiUrl("/api/industryTags/update"):t.getApiUrl("/api/industryTags/add"),c="edit"===this.tagViewMode?"PUT":"POST";let g="",l="";try{g=e.index.getStorageSync("backend-tenant-id")||"",l=e.index.getStorageSync("backend-token")||""}catch(s){console.error("获取认证信息失败:",s)}const h={"Content-Type":"application/json"};l&&(h.Authorization=`Bearer ${l}`),g&&(h["X-Tenant-Id"]=g);const p=await e.index.request({url:d,method:c,data:r,header:h,timeout:3e4}),{statusCode:u,data:T}=p;if(200!==u||!T||!T.success&&200!==T.code)throw new Error((null==T?void 0:T.message)||("edit"===this.tagViewMode?"更新失败":"保存失败"));e.index.showToast({title:(null==T?void 0:T.message)||("edit"===this.tagViewMode?"更新成功":"保存成功"),icon:"success"}),this.tagViewMode="list",this.tagPage.current=1,this.fetchTagList({force:!0})}catch(r){console.error("保存标签失败:",r);let t=(null==r?void 0:r.message)||("edit"===this.tagViewMode?"更新失败,请重试":"保存失败,请重试");r.errMsg&&(r.errMsg.includes("timeout")?t="请求超时,请检查网络连接后重试":r.errMsg.includes("fail")&&(t="网络请求失败,请检查网络连接")),e.index.showToast({title:t,icon:"none",duration:3e3})}finally{e.index.hideLoading()}else e.index.showToast({title:"请输入标签名",icon:"none"})},initUrlHidingAfterPageLoad(){},attemptUrlHidingForCurrentPage(){},setupTabNavigationHiding(){},setupBrowserNavigationHiding(){}}};if(!Array){(e.resolveComponent("uni-nav-bar")+e.resolveComponent("service-list-furniture")+e.resolveComponent("common-begin-reception")+e.resolveComponent("uni-icons"))()}Math||((()=>"../../uni_modules/uni-nav-bar/components/uni-nav-bar/uni-nav-bar.js")+(()=>"../../uni_modules/uni-icons/components/uni-icons/uni-icons.js"))();const a=e._export_sfc(o,[["render",function(t,o,a,i,n,s){return e.e({a:e.o(s.goBack,"66"),b:e.p({fixed:!0,statusBar:!0,border:!1,title:"AI销冠系统",leftIcon:"left",color:"#333",backgroundColor:"#FFFFFF"}),c:"reception"===n.activeTab?1:"",d:e.o((e=>s.switchTab("reception")),"5d"),e:"status"===n.activeTab?1:"",f:e.o((e=>s.switchTab("status")),"a2"),g:"tag"===n.activeTab?1:"",h:e.o((e=>s.switchTab("tag")),"4c"),i:s.computedNavbarTop||n.navbarTop,j:"status"===n.activeTab},"status"===n.activeTab?{k:e.sr("serviceListRef","638dc4bb-1"),l:s.computedContentTop||n.contentTop}:{},{m:"reception"===n.activeTab},"reception"===n.activeTab?{n:s.computedContentTop||n.contentTop,o:e.o(s.onReceptionCancel,"4b"),p:e.o(s.onReceptionSaveSuccess,"7b"),q:e.o(s.onReceptionSaveError,"fc"),r:e.p({"initial-data":n.receptionForm})}:{},{s:"tag"===n.activeTab&&"list"===n.tagViewMode},"tag"===n.activeTab&&"list"===n.tagViewMode?e.e({t:e.t(n.tagTotal),v:e.o(((...e)=>s.onTagListSearch&&s.onTagListSearch(...e)),"c0"),w:n.tagQuery.tagType,x:e.o((e=>n.tagQuery.tagType=e.detail.value),"39"),y:e.o(((...e)=>s.onTagListSearch&&s.onTagListSearch(...e)),"e9"),z:n.tagQuery.tagName,A:e.o((e=>n.tagQuery.tagName=e.detail.value),"b5"),B:e.p({type:"refresh",size:"18",color:"#2A68FF"}),C:e.o(((...e)=>s.onTagListRefresh&&s.onTagListRefresh(...e)),"a4"),D:e.p({type:"plus",size:"18",color:"#2A68FF"}),E:e.o(((...e)=>s.showAddTag&&s.showAddTag(...e)),"50"),F:e.f(n.tagList,((t,o,a)=>e.e({a:e.t((t.tagName||t.name||"标").charAt(0)),b:e.t(t.tagName||t.name||"未命名标签"),c:e.o((e=>s.onTagItemClick(t)),o),d:"638dc4bb-5-"+a,e:e.o((e=>s.onTagActionBtnClick(t)),o),f:t.industry},t.industry?{g:e.t(t.industry)}:{},{h:e.o((e=>s.onTagItemClick(t)),o),i:t.tagDetail||t.detail||t.remark},t.tagDetail||t.detail||t.remark?e.e({j:t.tagDetail||t.detail},t.tagDetail||t.detail?{k:e.t(t.tagDetail||t.detail)}:{},{l:t.remark},t.remark?{m:e.t(t.remark)}:{},{n:e.o((e=>s.onTagItemClick(t)),o)}):{},{o:n.selectedTagItem&&n.selectedTagItem.id===t.id&&n.showTagActionMenu},n.selectedTagItem&&n.selectedTagItem.id===t.id&&n.showTagActionMenu?{p:e.o((e=>s.editTag(t)),o),q:e.o((e=>s.deleteTag(t)),o),r:e.o((()=>{}),o)}:{},{s:o,t:n.selectedTagItem&&n.selectedTagItem.id===t.id?1:""}))),G:e.p({type:"more-filled",size:"20",color:"#999"}),H:n.showTagActionMenu},n.showTagActionMenu?{I:e.o(((...e)=>s.closeTagActionMenu&&s.closeTagActionMenu(...e)),"a5")}:{},{J:!n.tagLoading&&!n.tagList.length},(n.tagLoading||n.tagList.length,{}),{K:n.tagLoading&&n.tagList.length},(n.tagLoading&&n.tagList.length,{}),{L:s.computedContentTop||n.contentTop,M:e.o(((...e)=>s.onTagListReachBottom&&s.onTagListReachBottom(...e)),"9b")}):{},{N:"tag"===n.activeTab&&("add"===n.tagViewMode||"edit"===n.tagViewMode)},"tag"!==n.activeTab||"add"!==n.tagViewMode&&"edit"!==n.tagViewMode?{}:e.e({O:"add"===n.tagViewMode},"add"===n.tagViewMode?{P:n.tagForm.industry,Q:e.o((e=>n.tagForm.industry=e.detail.value),"a3")}:{},{R:e.t(n.tagForm.tagType||"请选择标签分类"),S:e.n(n.tagForm.tagType?"form-item__picker-text":"form-item__picker-placeholder"),T:e.p({type:"bottom",size:"16",color:"#9ca3af"}),U:e.o(((...e)=>s.toggleTagTypeDropdown&&s.toggleTagTypeDropdown(...e)),"3d"),V:n.showTagTypeDropdown},n.showTagTypeDropdown?{W:e.f(n.tagTypeOptions,((t,o,a)=>({a:e.t(t),b:t===n.tagForm.tagType?1:"",c:t,d:e.o((e=>s.selectTagType(t)),t)}))),X:e.o((()=>{}),"cd")}:{},{Y:n.tagForm.name,Z:e.o((e=>n.tagForm.name=e.detail.value),"ee"),aa:n.tagForm.detail,ab:e.o((e=>n.tagForm.detail=e.detail.value),"2d"),ac:n.tagForm.remark,ad:e.o((e=>n.tagForm.remark=e.detail.value),"98"),ae:n.tagForm.enabled,af:e.o(((...e)=>s.onEnabledChange&&s.onEnabledChange(...e)),"93"),ag:e.o(((...e)=>s.cancelAddTag&&s.cancelAddTag(...e)),"5b"),ah:e.t("edit"===n.tagViewMode?"更新":"保存"),ai:e.o(((...e)=>s.saveTag&&s.saveTag(...e)),"f6"),aj:n.showTagTypeDropdown},n.showTagTypeDropdown?{ak:e.o(((...e)=>s.closeTagTypeDropdown&&s.closeTagTypeDropdown(...e)),"e0")}:{},{al:s.computedContentTop||n.contentTop}))}]]);wx.createComponent(a);
diff --git a/unpackage/dist/build/mp-weixin/pages-subpackage/furniture_reception/furniture_reception-impl.wxml b/unpackage/dist/build/mp-weixin/pages-subpackage/furniture_reception/furniture_reception-impl.wxml
index a1b6e11..55246e7 100644
--- a/unpackage/dist/build/mp-weixin/pages-subpackage/furniture_reception/furniture_reception-impl.wxml
+++ b/unpackage/dist/build/mp-weixin/pages-subpackage/furniture_reception/furniture_reception-impl.wxml
@@ -1 +1 @@
-开始接待服务中标签管理共{{s}}条所属行业:{{item.g}}详情:{{item.k}}备注:{{item.m}}暂无标签正在加载更多...所属行业标签分类{{Q}}{{option.a}}标签名详情备注是否启用取消{{ag}}
\ No newline at end of file
+开始接待服务中标签管理共{{t}}条所属行业:{{item.g}}详情:{{item.k}}备注:{{item.m}}暂无标签正在加载更多...所属行业标签分类{{R}}{{option.a}}标签名详情备注是否启用取消{{ah}}
\ No newline at end of file
diff --git a/unpackage/dist/build/mp-weixin/pages-subpackage/furniture_reception/serviceListFurniture.js b/unpackage/dist/build/mp-weixin/pages-subpackage/furniture_reception/serviceListFurniture.js
index 04ec434..9a8ab95 100644
--- a/unpackage/dist/build/mp-weixin/pages-subpackage/furniture_reception/serviceListFurniture.js
+++ b/unpackage/dist/build/mp-weixin/pages-subpackage/furniture_reception/serviceListFurniture.js
@@ -1 +1 @@
-"use strict";const e=require("../../common/vendor.js"),t=require("../../common/config.js"),i=require("../../common/store.js");function r(...e){for(const t of e){if(null==t)continue;const e=String(t).trim();if(e)return e}return""}const s={data:()=>({serviceStatusLoading:!1,serviceStatusTotal:0,serviceStatusPage:{current:1,size:10},serviceStatusQuery:{salesName:"",customerName:"",salesPhone:""},isAdmin:!1,currentUserPhone:"",serviceStatusList:[],showSupplementModal:!1,currentSupplementItem:null,uploadingIds:[],supplementForm:{customerName:"",contact:"",recordingName:"",remarks:""},recorderSupported:!1,recorderManager:null,recordingServiceId:null,recordingContext:null}),mounted(){this.checkUserRole(),this.loadCurrentUserPhone(),this.initServiceRecorder(),this.fetchServiceStatusList()},beforeUnmount(){if(this.recorderManager&&this.recordingServiceId)try{this.recorderManager.stop()}catch(e){}},methods:{initServiceRecorder(){this.recorderSupported="function"==typeof e.index.getRecorderManager,this.recorderSupported&&(this.recorderManager=e.index.getRecorderManager(),this.recorderManager.onStop((t=>{const i=this.recordingContext;this.recordingServiceId=null,this.recordingContext=null;const r=t.tempFilePath||"";if(!i||!i.id)return;if(!r)return void e.index.showToast({title:"未获取到录音文件",icon:"none"});const s=`service_record_${i.id}_${Date.now()}.mp3`;this.uploadFileForRecord(i,{path:r,name:s})})),this.recorderManager.onError((()=>{this.recordingServiceId=null,this.recordingContext=null,e.index.showToast({title:"录音出错",icon:"none"})})))},isRecordingItem(e){return!(!e||!this.recordingServiceId)&&String(e)===this.recordingServiceId},startPhoneRecord(t){if(this.recorderSupported&&this.recorderManager)if(t&&t.id)if(this.recordingServiceId)e.index.showToast({title:"请先停止当前录音",icon:"none"});else if(this.isUploading(t.id))e.index.showToast({title:"正在上传,请稍候",icon:"none"});else{this.recordingContext={...t},this.recordingServiceId=String(t.id);try{this.recorderManager.start({duration:6e5,sampleRate:44100,numberOfChannels:1,encodeBitRate:96e3,format:"mp3"})}catch(i){this.recordingServiceId=null,this.recordingContext=null,e.index.showToast({title:"无法开始录音",icon:"none"})}}else e.index.showToast({title:"无法获取服务记录ID",icon:"none"});else e.index.showToast({title:"当前环境不支持录音,请使用微信小程序或 App",icon:"none"})},stopPhoneRecordAndUpload(e){this.recorderManager&&(null==e?void 0:e.id)&&String(e.id)===this.recordingServiceId&&this.recorderManager.stop()},checkUserRole(){try{const t=e=>"string"==typeof e?e.split(",").map((e=>e.trim().toLowerCase())).filter(Boolean):[],i=e.index.getStorageSync("backend-role-name")||"",r=(e.index.getStorageSync("backend-login-response")||{}).roleName||"",s=[...t(i),...t(r)];this.isAdmin=s.some((e=>e.includes("admin"))),console.log("用户角色检查:",{storedRole:i,respRole:r,roles:s,isAdmin:this.isAdmin})}catch(t){console.error("检查用户角色失败:",t),this.isAdmin=!1}},loadCurrentUserPhone(){try{const t=e.index.getStorageSync("backend-login-response")||{};t.phone?this.currentUserPhone=t.phone:t.userName?this.currentUserPhone=t.userName:this.currentUserPhone=""}catch(t){console.error("加载当前用户手机号或登录账户失败:",t),this.currentUserPhone=""}},onServiceStatusSearch(){this.serviceStatusPage.current=1,this.fetchServiceStatusList({force:!0})},onServiceStatusRefresh(){this.serviceStatusPage.current=1,this.fetchServiceStatusList({force:!0})},onServiceStatusReachBottom(){this.serviceStatusLoading||this.serviceStatusList.length>=this.serviceStatusTotal||(this.serviceStatusPage.current+=1,this.fetchServiceStatusList())},async fetchServiceStatusList({force:i=!1}={}){var r,s,o,n,a,c,l;if(!this.serviceStatusLoading||i){this.serviceStatusLoading=!0;try{const u={current:this.serviceStatusPage.current,size:this.serviceStatusPage.size,serviceStatus:"服务中"},m=null==(s=null==(r=this.serviceStatusQuery)?void 0:r.salesName)?void 0:s.trim(),h=null==(n=null==(o=this.serviceStatusQuery)?void 0:o.customerName)?void 0:n.trim();if(m&&(u.salesName=m),h&&(u.customerName=h),this.isAdmin){const e=null==(c=null==(a=this.serviceStatusQuery)?void 0:a.salesPhone)?void 0:c.trim();e&&(u.salesPhone=e)}else this.currentUserPhone&&(u.salesPhone=this.currentUserPhone);u.serviceStatus="服务中";const p=Object.keys(u).filter((e=>null!==u[e]&&void 0!==u[e]&&""!==u[e])).map((e=>`${encodeURIComponent(e)}=${encodeURIComponent(u[e])}`)).join("&");console.log("服务状态查询参数:",JSON.stringify(u)),console.log("查询字符串:",p);const S=t.getApiUrl("/api/audioManagement/list"),g=p?`${S}?${p}`:S;let v="",f="";try{v=e.index.getStorageSync("backend-tenant-id")||"",f=e.index.getStorageSync("backend-token")||""}catch(d){console.error("获取认证信息失败:",d)}const x={"Content-Type":"application/json"};f&&(x.Authorization=`Bearer ${f}`),v&&(x["X-Tenant-Id"]=v);const y=await e.index.request({url:g,method:"POST",data:{},header:x,timeout:3e4});if(200===y.statusCode&&y.data&&y.data.success){const e=Array.isArray(y.data.data)?y.data.data:[];if(0===e.length)return this.serviceStatusList=[],void(this.serviceStatusTotal=0);const t=e.map((e=>this.buildServiceStatusItem(e))).filter((e=>null!==e));1===this.serviceStatusPage.current||i?this.serviceStatusList=[...t]:this.serviceStatusList=[...this.serviceStatusList,...t],this.serviceStatusTotal=Number(y.data.total)||0}else this.serviceStatusList=[],this.serviceStatusTotal=0,e.index.showToast({title:(null==(l=y.data)?void 0:l.message)||"获取服务中列表失败",icon:"none"})}catch(u){console.error("获取服务中列表失败:",u);let t="获取服务状态失败,请稍后重试";u.errMsg&&(u.errMsg.includes("timeout")?t="请求超时,请检查网络连接后重试":u.errMsg.includes("fail")&&(t="网络请求失败,请检查网络连接")),e.index.showToast({title:t,icon:"none",duration:3e3})}finally{this.serviceStatusLoading=!1}}},buildServiceStatusItem(e={}){if(!e||"object"!=typeof e)return null;const t=this.formatDateTime(e.createTime),i=[];e.recordingName&&i.push({text:`录音:${e.recordingName}`,color:"blue"}),e.intentionLevel&&i.push({text:`意向:${e.intentionLevel}`,color:"orange"}),e.projectName&&i.push({text:`项目:${e.projectName}`,color:"blue"});const s=r(e.recordingName)||(r(e.customerName)?`${String(e.customerName).trim()}的接待记录`:"")||"";return{id:e.id||"",staffName:e.salesName||"未分配销售",status:e.syncStatus||"服务中",customerName:e.customerName||"",customerPhone:e.customerPhone||"",customerId:e.customerId||"",recordingName:e.recordingName||"",title:s,remarks:e.remarks||"",tags:i,durationText:t?`开始时间:${t}`:"暂无开始时间"}},formatDateTime(e){if(!e)return"";const t=new Date(e);if(Number.isNaN(t.getTime()))return"";return`${t.getFullYear()}-${String(t.getMonth()+1).padStart(2,"0")}-${String(t.getDate()).padStart(2,"0")} ${String(t.getHours()).padStart(2,"0")}:${String(t.getMinutes()).padStart(2,"0")}:${String(t.getSeconds()).padStart(2,"0")}`},viewServiceDetail(e){console.log("查看服务详情",e)},isUploading(e){return!!e&&this.uploadingIds.includes(String(e))},isMp3UploadFile(e){if(!e||!e.path)return!1;const t=e=>{if(!e||"string"!=typeof e)return"";return(e.split("/").pop()||e.split("\\").pop()||e).trim()},i=[t(e.name),t(e.path)].filter(Boolean);for(const r of i)if(r.toLowerCase().endsWith(".mp3"))return!0;return!1},async chooseAndUploadFile(t){if(!t||!t.id)return void e.index.showToast({title:"无法获取服务记录ID",icon:"none"});if(this.isUploading(t.id))return;const i=await this.selectUploadFile();i&&i.path&&await this.uploadFileForRecord(t,i)},selectUploadFile(){return new Promise((t=>{const i=i=>{const r=(e=>{const t=Array.isArray(null==e?void 0:e.tempFiles)?e.tempFiles:[];if(!t.length)return null;const i=t[0]||{},r=i.path||i.tempFilePath||i.url||"",s=i.name||r.split("/").pop()||`service_file_${Date.now()}`;return r?{path:r,name:s}:null})(i);return r?this.isMp3UploadFile(r)?void t(r):(e.index.showToast({title:"仅支持上传 MP3 文件",icon:"none"}),void t(null)):(e.index.showToast({title:"未选择有效文件",icon:"none"}),void t(null))},r=i=>{((null==i?void 0:i.errMsg)||"").includes("cancel")||(console.error("选择文件失败:",i),e.index.showToast({title:"选择文件失败",icon:"none"})),t(null)};"function"!=typeof e.index.chooseMessageFile?"function"!=typeof e.index.chooseFile?e.index.chooseImage({count:1,success:i,fail:r}):e.index.chooseFile({count:1,extension:[".mp3"],success:i,fail:r}):e.index.chooseMessageFile({count:1,type:"file",success:i,fail:r})}))},getAuthHeaders(){let t="",i="";try{t=e.index.getStorageSync("backend-tenant-id")||"",i=e.index.getStorageSync("backend-token")||""}catch(s){console.error("获取认证信息失败:",s)}const r={};return i&&(r.Authorization=`Bearer ${i}`),t&&(r["X-Tenant-Id"]=t),r},async uploadFileForRecord(i,r){const s=String(i.id);this.uploadingIds=[...this.uploadingIds,s];try{e.index.showLoading({title:"上传中..."});const n=await e.index.uploadFile({url:t.getApiUrl("/api/audio/upload"),filePath:r.path,name:"file",formData:{id:i.id,audioId:i.id,customerId:i.customerId||"",customerName:i.customerName||"",fileName:r.name||`service_file_${Date.now()}`},header:this.getAuthHeaders(),timeout:6e4});let a={};try{a="string"==typeof(null==n?void 0:n.data)?JSON.parse(n.data):(null==n?void 0:n.data)||{}}catch(o){a=(null==n?void 0:n.data)||{}}if(200===(null==n?void 0:n.statusCode)&&!1!==(null==a?void 0:a.success))return e.index.showToast({title:"上传成功",icon:"success"}),this.serviceStatusPage.current=1,void this.fetchServiceStatusList({force:!0});e.index.showToast({title:(null==a?void 0:a.message)||"上传失败",icon:"none"})}catch(n){console.error("上传文件失败:",n),e.index.showToast({title:(null==n?void 0:n.errMsg)||(null==n?void 0:n.message)||"上传失败",icon:"none"})}finally{e.index.hideLoading(),this.uploadingIds=this.uploadingIds.filter((e=>e!==s))}},async finishService(i){i&&i.id?e.index.showModal({title:"确认结束",content:"确定要结束这条服务记录吗?",success:async r=>{var s,o;if(r.confirm)try{e.index.showLoading({title:"结束中..."});const r=t.getApiUrl("/api/audioManagement/finishServiceById");let a="",c="";try{a=e.index.getStorageSync("backend-tenant-id")||"",c=e.index.getStorageSync("backend-token")||""}catch(n){console.error("获取认证信息失败:",n)}const l={"Content-Type":"application/json"};c&&(l.Authorization=`Bearer ${c}`),a&&(l["X-Tenant-Id"]=a);const d={id:i.id},u=await e.index.request({url:r,method:"POST",data:d,header:l,timeout:3e4});if(e.index.hideLoading(),200===u.statusCode&&u.data&&u.data.success){const t=((null==(s=u.data)?void 0:s.message)||"结束服务成功").replace(/[A-Za-z]+/g,"").split(/\n/).map((e=>e.trim())).filter(Boolean).join("\n")||"结束服务成功";e.index.showToast({title:t,icon:"success"}),this.serviceStatusPage.current=1,this.fetchServiceStatusList({force:!0})}else e.index.showToast({title:(null==(o=u.data)?void 0:o.message)||"结束服务失败",icon:"none"})}catch(a){e.index.hideLoading(),console.error("结束服务失败:",a);let t="结束服务失败,请重试";a.errMsg&&(a.errMsg.includes("timeout")?t="请求超时,请检查网络连接后重试":a.errMsg.includes("fail")&&(t="网络请求失败,请检查网络连接")),e.index.showToast({title:t,icon:"none",duration:3e3})}}}):e.index.showToast({title:"无法获取服务记录ID",icon:"none"})},showSupplementDialog(e){this.currentSupplementItem=e,this.supplementForm={customerName:e.customerName||"",contact:e.customerPhone||"",recordingName:e.recordingName||"",remarks:e.remarks||""},this.showSupplementModal=!0},closeSupplementDialog(){this.showSupplementModal=!1,this.currentSupplementItem=null,this.supplementForm={customerName:"",contact:"",recordingName:"",remarks:""}},async saveSupplement(){var s,o,n,a,c;const l=null==(s=this.supplementForm.contact)?void 0:s.trim();if(!l||this.isValidPhoneNumber(l))if(this.currentSupplementItem&&this.currentSupplementItem.id)try{e.index.showLoading({title:"保存中..."});let s="",u="";try{s=e.index.getStorageSync("backend-tenant-id")||"",u=e.index.getStorageSync("backend-token")||""}catch(d){console.error("获取认证信息失败:",d)}const m={"Content-Type":"application/json"};u&&(m.Authorization=`Bearer ${u}`),s&&(m["X-Tenant-Id"]=s);let h={};try{h=e.index.getStorageSync("backend-login-response")||{}}catch(d){console.error("读取登录信息失败:",d)}const p=i.store.userInfo||{},S=r(h.phone,h.userName,p.username),g=r(h.realName,h.name,h.nickName,p.nickname,h.userName,p.username),v={id:this.currentSupplementItem.id,customerId:this.currentSupplementItem.customerId||"",customerName:(null==(o=this.supplementForm.customerName)?void 0:o.trim())||"",customerPhone:l||"",recordingName:(null==(n=this.supplementForm.recordingName)?void 0:n.trim())||"",remarks:(null==(a=this.supplementForm.remarks)?void 0:a.trim())||"",salesPhone:S,salesName:g},f=await e.index.request({url:t.getApiUrl("/api/audioManagement/updateForCustomerInfo"),method:"PUT",data:v,header:m,timeout:3e4});e.index.hideLoading(),200===f.statusCode&&f.data&&f.data.success?(e.index.showToast({title:"补录成功",icon:"success"}),this.closeSupplementDialog(),this.serviceStatusPage.current=1,this.fetchServiceStatusList({force:!0})):e.index.showToast({title:(null==(c=f.data)?void 0:c.message)||"补录失败",icon:"none"})}catch(u){e.index.hideLoading(),console.error("补录失败:",u);let t="补录失败,请重试";u.errMsg&&(u.errMsg.includes("timeout")?t="请求超时,请检查网络连接后重试":u.errMsg.includes("fail")&&(t="网络请求失败,请检查网络连接")),e.index.showToast({title:t,icon:"none",duration:3e3})}else e.index.showToast({title:"无法获取服务记录ID",icon:"none"});else e.index.showToast({title:"请输入有效的客户电话",icon:"none"})},isValidPhoneNumber(e){const t=null==e?void 0:e.trim();return!!t&&/^1[3-9]\d{9}$/.test(t)}}};if(!Array){e.resolveComponent("uni-icons")()}Math;const o=e._export_sfc(s,[["render",function(t,i,r,s,o,n){return e.e({a:e.t(o.serviceStatusTotal),b:e.o(((...e)=>n.onServiceStatusSearch&&n.onServiceStatusSearch(...e)),"ba"),c:o.serviceStatusQuery.salesName,d:e.o((e=>o.serviceStatusQuery.salesName=e.detail.value),"27"),e:e.o(((...e)=>n.onServiceStatusSearch&&n.onServiceStatusSearch(...e)),"f6"),f:o.serviceStatusQuery.customerName,g:e.o((e=>o.serviceStatusQuery.customerName=e.detail.value),"5c"),h:o.isAdmin},o.isAdmin?{i:e.o(((...e)=>n.onServiceStatusSearch&&n.onServiceStatusSearch(...e)),"99"),j:o.serviceStatusQuery.salesPhone,k:e.o((e=>o.serviceStatusQuery.salesPhone=e.detail.value),"11")}:{},{l:e.p({type:"refresh",size:"18",color:"#2A68FF"}),m:e.o(((...e)=>n.onServiceStatusRefresh&&n.onServiceStatusRefresh(...e)),"5f"),n:e.f(o.serviceStatusList,((t,i,r)=>e.e({a:e.t(t.staffName?t.staffName.charAt(0):"未"),b:e.t(t.staffName||"未分配销售"),c:!n.isRecordingItem(t.id)},n.isRecordingItem(t.id)?{e:e.o((e=>n.stopPhoneRecordAndUpload(t)),t.id||i)}:{d:e.o((e=>n.startPhoneRecord(t)),t.id||i)},{f:e.o((e=>n.showSupplementDialog(t)),t.id||i),g:e.t(n.isUploading(t.id)?"上传中":"上传"),h:e.o((e=>n.chooseAndUploadFile(t)),t.id||i),i:e.o((e=>n.finishService(t)),t.id||i),j:"a30f78d6-1-"+r,k:t.title},t.title?{l:e.t(t.title)}:{},{m:e.t(t.customerName||"未知客户"),n:t.customerPhone},t.customerPhone?{o:e.t(t.customerPhone)}:{},{p:e.f(t.tags,((t,i,r)=>({a:e.t(t.text),b:e.n("tag-"+t.color),c:i}))),q:t.alert},t.alert?e.e({r:e.t(t.alert.title),s:"risk"===t.alert.type},"risk"===t.alert.type?{t:e.t(t.alert.message)}:{v:e.f(t.alert.messages,((t,i,r)=>({a:e.t(t),b:i})))},{w:e.n("risk"===t.alert.type?"alert-risk-text":"alert-reminder-text"),x:e.n("risk"===t.alert.type?"alert-risk-box":"alert-reminder-box")}):{},{y:e.t(t.durationText),z:t.id||i,A:e.o((e=>n.viewServiceDetail(t)),t.id||i)}))),o:e.p({type:"bars",size:"16",color:"#007AFF"}),p:!o.serviceStatusLoading&&!o.serviceStatusList.length},(o.serviceStatusLoading||o.serviceStatusList.length,{}),{q:o.serviceStatusLoading&&o.serviceStatusList.length},(o.serviceStatusLoading&&o.serviceStatusList.length,{}),{r:e.o(((...e)=>n.onServiceStatusReachBottom&&n.onServiceStatusReachBottom(...e)),"0e"),s:o.showSupplementModal},o.showSupplementModal?{t:e.p({type:"close",size:"20",color:"#999"}),v:e.o(((...e)=>n.closeSupplementDialog&&n.closeSupplementDialog(...e)),"7d"),w:o.supplementForm.customerName,x:e.o((e=>o.supplementForm.customerName=e.detail.value),"ab"),y:o.supplementForm.contact,z:e.o((e=>o.supplementForm.contact=e.detail.value),"24"),A:o.supplementForm.recordingName,B:e.o((e=>o.supplementForm.recordingName=e.detail.value),"00"),C:o.supplementForm.remarks,D:e.o((e=>o.supplementForm.remarks=e.detail.value),"94"),E:e.o(((...e)=>n.closeSupplementDialog&&n.closeSupplementDialog(...e)),"f0"),F:e.o(((...e)=>n.saveSupplement&&n.saveSupplement(...e)),"bb"),G:e.o((()=>{}),"a7"),H:e.o(((...e)=>n.closeSupplementDialog&&n.closeSupplementDialog(...e)),"cd")}:{})}],["__scopeId","data-v-a30f78d6"]]);wx.createComponent(o);
+"use strict";const e=require("../../common/vendor.js"),t=require("../../common/config.js"),i=require("../../common/store.js");function r(...e){for(const t of e){if(null==t)continue;const e=String(t).trim();if(e)return e}return""}const s={data:()=>({serviceStatusLoading:!1,serviceStatusTotal:0,serviceStatusPage:{current:1,size:10},serviceStatusQuery:{salesName:"",customerName:"",salesPhone:""},isAdmin:!1,currentUserPhone:"",serviceStatusList:[],showSupplementModal:!1,currentSupplementItem:null,uploadingIds:[],supplementForm:{customerName:"",contact:"",recordingName:"",remarks:""},recorderSupported:!1,recorderManager:null,recordingServiceId:null,recordingContext:null}),mounted(){this.checkUserRole(),this.loadCurrentUserPhone(),this.initServiceRecorder(),this.fetchServiceStatusList()},beforeUnmount(){if(this.recorderManager&&this.recordingServiceId)try{this.recorderManager.stop()}catch(e){}},methods:{initServiceRecorder(){this.recorderSupported="function"==typeof e.index.getRecorderManager,this.recorderSupported&&(this.recorderManager=e.index.getRecorderManager(),this.recorderManager.onStop((t=>{const i=this.recordingContext;this.recordingServiceId=null,this.recordingContext=null;const r=t.tempFilePath||"";if(!i||!i.id)return;if(!r)return void e.index.showToast({title:"未获取到录音文件",icon:"none"});const s=`service_record_${i.id}_${Date.now()}.mp3`;this.uploadFileForRecord(i,{path:r,name:s})})),this.recorderManager.onError((()=>{this.recordingServiceId=null,this.recordingContext=null,e.index.showToast({title:"录音出错",icon:"none"})})))},isRecordingItem(e){return!(!e||!this.recordingServiceId)&&String(e)===this.recordingServiceId},startPhoneRecord(t){if(this.recorderSupported&&this.recorderManager)if(t&&t.id)if(this.recordingServiceId)e.index.showToast({title:"请先停止当前录音",icon:"none"});else if(this.isUploading(t.id))e.index.showToast({title:"正在上传,请稍候",icon:"none"});else{this.recordingContext={...t},this.recordingServiceId=String(t.id);try{this.recorderManager.start({duration:6e5,sampleRate:44100,numberOfChannels:1,encodeBitRate:96e3,format:"mp3"})}catch(i){this.recordingServiceId=null,this.recordingContext=null,e.index.showToast({title:"无法开始录音",icon:"none"})}}else e.index.showToast({title:"无法获取服务记录ID",icon:"none"});else e.index.showToast({title:"当前环境不支持录音,请使用微信小程序或 App",icon:"none"})},stopPhoneRecordAndUpload(e){this.recorderManager&&(null==e?void 0:e.id)&&String(e.id)===this.recordingServiceId&&this.recorderManager.stop()},checkUserRole(){try{const t=e=>"string"==typeof e?e.split(",").map((e=>e.trim().toLowerCase())).filter(Boolean):[],i=e.index.getStorageSync("backend-role-name")||"",r=(e.index.getStorageSync("backend-login-response")||{}).roleName||"",s=[...t(i),...t(r)];this.isAdmin=s.some((e=>e.includes("admin"))),console.log("用户角色检查:",{storedRole:i,respRole:r,roles:s,isAdmin:this.isAdmin})}catch(t){console.error("检查用户角色失败:",t),this.isAdmin=!1}},loadCurrentUserPhone(){try{const t=e.index.getStorageSync("backend-login-response")||{};t.phone?this.currentUserPhone=t.phone:t.userName?this.currentUserPhone=t.userName:this.currentUserPhone=""}catch(t){console.error("加载当前用户手机号或登录账户失败:",t),this.currentUserPhone=""}},onServiceStatusSearch(){this.serviceStatusPage.current=1,this.fetchServiceStatusList({force:!0})},onServiceStatusRefresh(){this.serviceStatusPage.current=1,this.fetchServiceStatusList({force:!0})},onServiceStatusReachBottom(){this.serviceStatusLoading||this.serviceStatusList.length>=this.serviceStatusTotal||(this.serviceStatusPage.current+=1,this.fetchServiceStatusList())},async fetchServiceStatusList({force:i=!1}={}){var r,s,o,n,a,c,l;if(!this.serviceStatusLoading||i){this.serviceStatusLoading=!0;try{const u={current:this.serviceStatusPage.current,size:this.serviceStatusPage.size,serviceStatus:"服务中"},m=null==(s=null==(r=this.serviceStatusQuery)?void 0:r.salesName)?void 0:s.trim(),h=null==(n=null==(o=this.serviceStatusQuery)?void 0:o.customerName)?void 0:n.trim();if(m&&(u.salesName=m),h&&(u.customerName=h),this.isAdmin){const e=null==(c=null==(a=this.serviceStatusQuery)?void 0:a.salesPhone)?void 0:c.trim();e&&(u.salesPhone=e)}else this.currentUserPhone&&(u.salesPhone=this.currentUserPhone);u.serviceStatus="服务中";const p=Object.keys(u).filter((e=>null!==u[e]&&void 0!==u[e]&&""!==u[e])).map((e=>`${encodeURIComponent(e)}=${encodeURIComponent(u[e])}`)).join("&");console.log("服务状态查询参数:",JSON.stringify(u)),console.log("查询字符串:",p);const S=t.getApiUrl("/api/audioManagement/list"),g=p?`${S}?${p}`:S;let v="",f="";try{v=e.index.getStorageSync("backend-tenant-id")||"",f=e.index.getStorageSync("backend-token")||""}catch(d){console.error("获取认证信息失败:",d)}const x={"Content-Type":"application/json"};f&&(x.Authorization=`Bearer ${f}`),v&&(x["X-Tenant-Id"]=v);const y=await e.index.request({url:g,method:"POST",data:{},header:x,timeout:3e4});if(200===y.statusCode&&y.data&&y.data.success){const e=Array.isArray(y.data.data)?y.data.data:[];if(0===e.length)return this.serviceStatusList=[],void(this.serviceStatusTotal=0);const t=e.map((e=>this.buildServiceStatusItem(e))).filter((e=>null!==e));1===this.serviceStatusPage.current||i?this.serviceStatusList=[...t]:this.serviceStatusList=[...this.serviceStatusList,...t],this.serviceStatusTotal=Number(y.data.total)||0}else this.serviceStatusList=[],this.serviceStatusTotal=0,e.index.showToast({title:(null==(l=y.data)?void 0:l.message)||"获取服务中列表失败",icon:"none"})}catch(u){console.error("获取服务中列表失败:",u);let t="获取服务状态失败,请稍后重试";u.errMsg&&(u.errMsg.includes("timeout")?t="请求超时,请检查网络连接后重试":u.errMsg.includes("fail")&&(t="网络请求失败,请检查网络连接")),e.index.showToast({title:t,icon:"none",duration:3e3})}finally{this.serviceStatusLoading=!1}}},buildServiceStatusItem(e={}){if(!e||"object"!=typeof e)return null;const t=this.formatDateTime(e.createTime),i=[];e.recordingName&&i.push({text:`录音:${e.recordingName}`,color:"blue"}),e.intentionLevel&&i.push({text:`意向:${e.intentionLevel}`,color:"orange"}),e.projectName&&i.push({text:`项目:${e.projectName}`,color:"blue"});const s=r(e.recordingName)||(r(e.customerName)?`${String(e.customerName).trim()}的接待记录`:"")||"";return{id:e.id||"",staffName:e.salesName||"未分配销售",status:e.syncStatus||"服务中",customerName:e.customerName||"",customerPhone:e.customerPhone||"",customerId:e.customerId||"",recordingName:e.recordingName||"",title:s,remarks:e.remarks||"",tags:i,durationText:t?`开始时间:${t}`:"暂无开始时间"}},formatDateTime(e){if(!e)return"";const t=new Date(e);if(Number.isNaN(t.getTime()))return"";return`${t.getFullYear()}-${String(t.getMonth()+1).padStart(2,"0")}-${String(t.getDate()).padStart(2,"0")} ${String(t.getHours()).padStart(2,"0")}:${String(t.getMinutes()).padStart(2,"0")}:${String(t.getSeconds()).padStart(2,"0")}`},viewServiceDetail(e){console.log("查看服务详情",e)},isUploading(e){return!!e&&this.uploadingIds.includes(String(e))},isMp3UploadFile(e){if(!e||!e.path)return!1;const t=e=>{if(!e||"string"!=typeof e)return"";return(e.split("/").pop()||e.split("\\").pop()||e).trim()},i=[t(e.name),t(e.path)].filter(Boolean);for(const r of i)if(r.toLowerCase().endsWith(".mp3"))return!0;return!1},async chooseAndUploadFile(t){if(!t||!t.id)return void e.index.showToast({title:"无法获取服务记录ID",icon:"none"});if(this.isUploading(t.id))return;const i=await this.selectUploadFile();i&&i.path&&await this.uploadFileForRecord(t,i)},selectUploadFile(){return new Promise((t=>{const i=i=>{const r=(e=>{const t=Array.isArray(null==e?void 0:e.tempFiles)?e.tempFiles:[];if(!t.length)return null;const i=t[0]||{},r=i.path||i.tempFilePath||i.url||"",s=i.name||r.split("/").pop()||`service_file_${Date.now()}`;return r?{path:r,name:s}:null})(i);return r?this.isMp3UploadFile(r)?void t(r):(e.index.showToast({title:"仅支持上传 MP3 文件",icon:"none"}),void t(null)):(e.index.showToast({title:"未选择有效文件",icon:"none"}),void t(null))},r=i=>{((null==i?void 0:i.errMsg)||"").includes("cancel")||(console.error("选择文件失败:",i),e.index.showToast({title:"选择文件失败",icon:"none"})),t(null)};"function"!=typeof e.index.chooseMessageFile?"function"!=typeof e.index.chooseFile?e.index.chooseImage({count:1,success:i,fail:r}):e.index.chooseFile({count:1,extension:[".mp3"],success:i,fail:r}):e.index.chooseMessageFile({count:1,type:"file",success:i,fail:r})}))},getAuthHeaders(){let t="",i="";try{t=e.index.getStorageSync("backend-tenant-id")||"",i=e.index.getStorageSync("backend-token")||""}catch(s){console.error("获取认证信息失败:",s)}const r={};return i&&(r.Authorization=`Bearer ${i}`),t&&(r["X-Tenant-Id"]=t),r},async uploadFileForRecord(i,r){const s=String(i.id);this.uploadingIds=[...this.uploadingIds,s];try{e.index.showLoading({title:"上传中..."});const n=await e.index.uploadFile({url:t.getApiUrl("/api/audio/upload"),filePath:r.path,name:"file",formData:{id:i.id,audioId:i.id,customerId:i.customerId||"",customerName:i.customerName||"",fileName:r.name||`service_file_${Date.now()}`},header:this.getAuthHeaders(),timeout:6e4});let a={};try{a="string"==typeof(null==n?void 0:n.data)?JSON.parse(n.data):(null==n?void 0:n.data)||{}}catch(o){a=(null==n?void 0:n.data)||{}}if(200===(null==n?void 0:n.statusCode)&&!1!==(null==a?void 0:a.success))return e.index.showToast({title:"上传成功",icon:"success"}),this.serviceStatusPage.current=1,void this.fetchServiceStatusList({force:!0});e.index.showToast({title:(null==a?void 0:a.message)||"上传失败",icon:"none"})}catch(n){console.error("上传文件失败:",n),e.index.showToast({title:(null==n?void 0:n.errMsg)||(null==n?void 0:n.message)||"上传失败",icon:"none"})}finally{e.index.hideLoading(),this.uploadingIds=this.uploadingIds.filter((e=>e!==s))}},async finishService(i){i&&i.id?e.index.showModal({title:"确认结束",content:"确定要结束这条服务记录吗?",success:async r=>{var s,o;if(r.confirm)try{e.index.showLoading({title:"结束中..."});const r=t.getApiUrl("/api/audioManagement/finishServiceById");let a="",c="";try{a=e.index.getStorageSync("backend-tenant-id")||"",c=e.index.getStorageSync("backend-token")||""}catch(n){console.error("获取认证信息失败:",n)}const l={"Content-Type":"application/json"};c&&(l.Authorization=`Bearer ${c}`),a&&(l["X-Tenant-Id"]=a);const d={id:i.id},u=await e.index.request({url:r,method:"POST",data:d,header:l,timeout:3e4});if(e.index.hideLoading(),200===u.statusCode&&u.data&&u.data.success){const t=((null==(s=u.data)?void 0:s.message)||"结束服务成功").replace(/[A-Za-z]+/g,"").split(/\n/).map((e=>e.trim())).filter(Boolean).join("\n")||"结束服务成功";e.index.showToast({title:t,icon:"success"}),this.serviceStatusPage.current=1,this.fetchServiceStatusList({force:!0})}else e.index.showToast({title:(null==(o=u.data)?void 0:o.message)||"结束服务失败",icon:"none"})}catch(a){e.index.hideLoading(),console.error("结束服务失败:",a);let t="结束服务失败,请重试";a.errMsg&&(a.errMsg.includes("timeout")?t="请求超时,请检查网络连接后重试":a.errMsg.includes("fail")&&(t="网络请求失败,请检查网络连接")),e.index.showToast({title:t,icon:"none",duration:3e3})}}}):e.index.showToast({title:"无法获取服务记录ID",icon:"none"})},showSupplementDialog(e){this.currentSupplementItem=e,this.supplementForm={customerName:e.customerName||"",contact:e.customerPhone||"",recordingName:e.recordingName||"",remarks:e.remarks||""},this.showSupplementModal=!0},closeSupplementDialog(){this.showSupplementModal=!1,this.currentSupplementItem=null,this.supplementForm={customerName:"",contact:"",recordingName:"",remarks:""}},async saveSupplement(){var s,o,n,a,c;const l=null==(s=this.supplementForm.contact)?void 0:s.trim();if(!l||this.isValidPhoneNumber(l))if(this.currentSupplementItem&&this.currentSupplementItem.id)try{e.index.showLoading({title:"保存中..."});let s="",u="";try{s=e.index.getStorageSync("backend-tenant-id")||"",u=e.index.getStorageSync("backend-token")||""}catch(d){console.error("获取认证信息失败:",d)}const m={"Content-Type":"application/json"};u&&(m.Authorization=`Bearer ${u}`),s&&(m["X-Tenant-Id"]=s);let h={};try{h=e.index.getStorageSync("backend-login-response")||{}}catch(d){console.error("读取登录信息失败:",d)}const p=i.store.userInfo||{},S=r(h.phone,h.userName,p.username),g=r(h.realName,h.name,h.nickName,p.nickname,h.userName,p.username),v={id:this.currentSupplementItem.id,customerId:this.currentSupplementItem.customerId||"",customerName:(null==(o=this.supplementForm.customerName)?void 0:o.trim())||"",customerPhone:l||"",recordingName:(null==(n=this.supplementForm.recordingName)?void 0:n.trim())||"",remarks:(null==(a=this.supplementForm.remarks)?void 0:a.trim())||"",salesPhone:S,salesName:g},f=await e.index.request({url:t.getApiUrl("/api/audioManagement/updateForCustomerInfo"),method:"PUT",data:v,header:m,timeout:3e4});e.index.hideLoading(),200===f.statusCode&&f.data&&f.data.success?(e.index.showToast({title:"补录成功",icon:"success"}),this.closeSupplementDialog(),this.serviceStatusPage.current=1,this.fetchServiceStatusList({force:!0})):e.index.showToast({title:(null==(c=f.data)?void 0:c.message)||"补录失败",icon:"none"})}catch(u){e.index.hideLoading(),console.error("补录失败:",u);let t="补录失败,请重试";u.errMsg&&(u.errMsg.includes("timeout")?t="请求超时,请检查网络连接后重试":u.errMsg.includes("fail")&&(t="网络请求失败,请检查网络连接")),e.index.showToast({title:t,icon:"none",duration:3e3})}else e.index.showToast({title:"无法获取服务记录ID",icon:"none"});else e.index.showToast({title:"请输入有效的客户电话",icon:"none"})},isValidPhoneNumber(e){const t=null==e?void 0:e.trim();return!!t&&/^1[3-9]\d{9}$/.test(t)}}};if(!Array){e.resolveComponent("uni-icons")()}Math;const o=e._export_sfc(s,[["render",function(t,i,r,s,o,n){return e.e({a:e.t(o.serviceStatusTotal),b:e.o(((...e)=>n.onServiceStatusSearch&&n.onServiceStatusSearch(...e)),"1e"),c:o.serviceStatusQuery.salesName,d:e.o((e=>o.serviceStatusQuery.salesName=e.detail.value),"5b"),e:e.o(((...e)=>n.onServiceStatusSearch&&n.onServiceStatusSearch(...e)),"4f"),f:o.serviceStatusQuery.customerName,g:e.o((e=>o.serviceStatusQuery.customerName=e.detail.value),"ff"),h:o.isAdmin},o.isAdmin?{i:e.o(((...e)=>n.onServiceStatusSearch&&n.onServiceStatusSearch(...e)),"91"),j:o.serviceStatusQuery.salesPhone,k:e.o((e=>o.serviceStatusQuery.salesPhone=e.detail.value),"86")}:{},{l:e.p({type:"refresh",size:"18",color:"#2A68FF"}),m:e.o(((...e)=>n.onServiceStatusRefresh&&n.onServiceStatusRefresh(...e)),"34"),n:e.f(o.serviceStatusList,((t,i,r)=>e.e({a:e.t(t.staffName?t.staffName.charAt(0):"未"),b:e.t(t.staffName||"未分配销售"),c:!n.isRecordingItem(t.id)},n.isRecordingItem(t.id)?{e:e.o((e=>n.stopPhoneRecordAndUpload(t)),t.id||i)}:{d:e.o((e=>n.startPhoneRecord(t)),t.id||i)},{f:e.o((e=>n.showSupplementDialog(t)),t.id||i),g:e.t(n.isUploading(t.id)?"上传中":"上传"),h:e.o((e=>n.chooseAndUploadFile(t)),t.id||i),i:e.o((e=>n.finishService(t)),t.id||i),j:"4db00a37-1-"+r,k:t.title},t.title?{l:e.t(t.title)}:{},{m:e.t(t.customerName||"未知客户"),n:t.customerPhone},t.customerPhone?{o:e.t(t.customerPhone)}:{},{p:e.f(t.tags,((t,i,r)=>({a:e.t(t.text),b:e.n("tag-"+t.color),c:i}))),q:t.alert},t.alert?e.e({r:e.t(t.alert.title),s:"risk"===t.alert.type},"risk"===t.alert.type?{t:e.t(t.alert.message)}:{v:e.f(t.alert.messages,((t,i,r)=>({a:e.t(t),b:i})))},{w:e.n("risk"===t.alert.type?"alert-risk-text":"alert-reminder-text"),x:e.n("risk"===t.alert.type?"alert-risk-box":"alert-reminder-box")}):{},{y:e.t(t.durationText),z:t.id||i,A:e.o((e=>n.viewServiceDetail(t)),t.id||i)}))),o:e.p({type:"bars",size:"16",color:"#007AFF"}),p:!o.serviceStatusLoading&&!o.serviceStatusList.length},(o.serviceStatusLoading||o.serviceStatusList.length,{}),{q:o.serviceStatusLoading&&o.serviceStatusList.length},(o.serviceStatusLoading&&o.serviceStatusList.length,{}),{r:e.o(((...e)=>n.onServiceStatusReachBottom&&n.onServiceStatusReachBottom(...e)),"36"),s:o.showSupplementModal},o.showSupplementModal?{t:e.p({type:"close",size:"20",color:"#999"}),v:e.o(((...e)=>n.closeSupplementDialog&&n.closeSupplementDialog(...e)),"4d"),w:o.supplementForm.customerName,x:e.o((e=>o.supplementForm.customerName=e.detail.value),"74"),y:o.supplementForm.contact,z:e.o((e=>o.supplementForm.contact=e.detail.value),"fd"),A:o.supplementForm.recordingName,B:e.o((e=>o.supplementForm.recordingName=e.detail.value),"f3"),C:o.supplementForm.remarks,D:e.o((e=>o.supplementForm.remarks=e.detail.value),"c6"),E:e.o(((...e)=>n.closeSupplementDialog&&n.closeSupplementDialog(...e)),"89"),F:e.o(((...e)=>n.saveSupplement&&n.saveSupplement(...e)),"0a"),G:e.o((()=>{}),"98"),H:e.o(((...e)=>n.closeSupplementDialog&&n.closeSupplementDialog(...e)),"10")}:{})}],["__scopeId","data-v-4db00a37"]]);wx.createComponent(o);
diff --git a/unpackage/dist/build/mp-weixin/pages-subpackage/furniture_reception/serviceListFurniture.wxml b/unpackage/dist/build/mp-weixin/pages-subpackage/furniture_reception/serviceListFurniture.wxml
index 2917176..44f401a 100644
--- a/unpackage/dist/build/mp-weixin/pages-subpackage/furniture_reception/serviceListFurniture.wxml
+++ b/unpackage/dist/build/mp-weixin/pages-subpackage/furniture_reception/serviceListFurniture.wxml
@@ -1 +1 @@
-共{{a}}条刷新{{item.l}}客户:{{item.m}}电话:{{item.o}}{{tag.a}}{{item.t}}{{msg.a}}{{item.y}}暂无服务中记录正在加载更多...客户姓名客户电话录音名客户详细地址
\ No newline at end of file
+共{{a}}条刷新{{item.l}}客户:{{item.m}}电话:{{item.o}}{{tag.a}}{{item.t}}{{msg.a}}{{item.y}}暂无服务中记录正在加载更多...客户姓名客户电话录音名客户详细地址
\ No newline at end of file
diff --git a/unpackage/dist/build/mp-weixin/pages-subpackage/furniture_reception/serviceListFurniture.wxss b/unpackage/dist/build/mp-weixin/pages-subpackage/furniture_reception/serviceListFurniture.wxss
index 61db191..9a125e5 100644
--- a/unpackage/dist/build/mp-weixin/pages-subpackage/furniture_reception/serviceListFurniture.wxss
+++ b/unpackage/dist/build/mp-weixin/pages-subpackage/furniture_reception/serviceListFurniture.wxss
@@ -1 +1 @@
-.service-status-list.data-v-a30f78d6{width:100%;background-color:#f5f5f5;padding:24rpx 16rpx 0;box-sizing:border-box;height:100%}.service-status-toolbar.data-v-a30f78d6{display:flex;flex-wrap:nowrap;align-items:center;gap:8rpx;padding:12rpx 8rpx;margin-bottom:24rpx;background-color:#f8f8fa;border-radius:8rpx;border:1px solid #EFEFF2;overflow-x:auto;min-height:64rpx;box-sizing:border-box}.toolbar-total.data-v-a30f78d6{font-size:24rpx;color:#666;white-space:nowrap;flex-shrink:0;margin-right:8rpx;line-height:1.2;padding:0 4rpx}.toolbar-input.data-v-a30f78d6{flex:1;min-width:120rpx;max-width:200rpx;height:56rpx;line-height:56rpx;background-color:#f5f6fa;border-radius:8rpx;padding:0 12rpx;font-size:24rpx;border:1px solid transparent;box-sizing:border-box;flex-shrink:1}.toolbar-actions.data-v-a30f78d6{display:flex;align-items:center;margin-left:auto;flex-shrink:0;gap:8rpx}.toolbar-btn.data-v-a30f78d6{padding:0 12rpx;height:56rpx;min-width:56rpx;color:#2a68ff;display:flex;align-items:center;justify-content:center;gap:4rpx;font-size:24rpx;font-weight:400;line-height:1;box-sizing:border-box}.service-card.data-v-a30f78d6{width:100%;box-sizing:border-box;background-color:#fff;border-radius:16rpx;padding:32rpx;margin-bottom:24rpx;box-shadow:0 2rpx 8rpx rgba(0,0,0,.04);overflow:visible}.card-header.data-v-a30f78d6{display:flex;justify-content:space-between;align-items:center;margin-bottom:20rpx;width:100%;box-sizing:border-box;padding:0;margin:0}.service-title.data-v-a30f78d6{margin-top:16rpx;margin-bottom:8rpx}.service-title__text.data-v-a30f78d6{font-size:28rpx;font-weight:600;color:#111827;display:block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.staff-info.data-v-a30f78d6{display:flex;align-items:center;flex:1;min-width:0;margin:0;padding:0}.staff-avatar.data-v-a30f78d6{width:64rpx;height:64rpx;background-color:#2196f3;border-radius:50%;display:flex;align-items:center;justify-content:center;margin-right:16rpx;margin-left:0;margin-top:0;margin-bottom:0;flex-shrink:0}.avatar-text.data-v-a30f78d6{font-size:32rpx;color:#fff;font-weight:500}.staff-name.data-v-a30f78d6{font-size:32rpx;font-weight:500;color:#333}.service-status.data-v-a30f78d6{display:flex;align-items:center;gap:8rpx}.service-status text.data-v-a30f78d6{font-size:26rpx;color:#007aff}.customer-tags.data-v-a30f78d6{display:flex;flex-wrap:wrap;margin-bottom:20rpx;gap:12rpx;box-sizing:border-box;margin-left:0;margin-right:0;padding:0;width:100%;max-width:100%}.customer-info.data-v-a30f78d6{margin-bottom:16rpx;display:flex;flex-direction:column;gap:8rpx;box-sizing:border-box;margin-left:0;margin-right:0;padding:0;width:100%;max-width:100%}.customer-name.data-v-a30f78d6,.customer-phone.data-v-a30f78d6{font-size:28rpx;color:#555}.tag-item.data-v-a30f78d6{padding:8rpx 16rpx;border-radius:8rpx;box-sizing:border-box;word-wrap:break-word;word-break:break-all;display:inline-block;max-width:100%}.tag-blue.data-v-a30f78d6{background-color:#e3f2fd}.tag-blue text.data-v-a30f78d6{font-size:24rpx;color:#1976d2}.tag-orange.data-v-a30f78d6{background-color:#fff3e0}.tag-orange text.data-v-a30f78d6{font-size:24rpx;color:#f57c00}.ai-alert.data-v-a30f78d6{border-radius:8rpx;padding:20rpx;margin-bottom:20rpx}.alert-risk-box.data-v-a30f78d6{background-color:#fff5f5}.alert-reminder-box.data-v-a30f78d6{background-color:#f5f5f5}.alert-header.data-v-a30f78d6{display:flex;align-items:center;margin-bottom:12rpx}.alert-icon.data-v-a30f78d6{margin-right:8rpx}.icon-circle.data-v-a30f78d6{width:24rpx;height:24rpx;border:2rpx solid #333;border-radius:50%;position:relative}.icon-circle.data-v-a30f78d6:after{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:8rpx;height:8rpx;background-color:#333;border-radius:50%}.alert-title.data-v-a30f78d6{font-size:28rpx;font-weight:500;color:#333}.alert-content.data-v-a30f78d6{font-size:26rpx;line-height:1.6}.alert-risk-text.data-v-a30f78d6{color:#ff5722}.alert-reminder-text.data-v-a30f78d6{color:#666}.alert-list.data-v-a30f78d6{display:flex;flex-direction:column;gap:8rpx}.alert-item.data-v-a30f78d6{display:flex;align-items:flex-start}.alert-item.data-v-a30f78d6:before{content:"\2022";margin-right:8rpx;color:#666}.alert-item text.data-v-a30f78d6{font-size:26rpx;color:#666;line-height:1.6}.service-duration.data-v-a30f78d6{padding-top:16rpx;border-top:1px solid #F0F0F0}.service-duration text.data-v-a30f78d6{font-size:26rpx;color:#999}.service-action-btn.data-v-a30f78d6{padding:6rpx 16rpx;border-radius:4rpx;font-size:26rpx;font-weight:400;display:flex;align-items:center;justify-content:center;margin-right:12rpx;cursor:pointer}.service-action-btn--finish.data-v-a30f78d6{color:#007aff;background-color:transparent}.service-action-btn--finish.data-v-a30f78d6:active{opacity:.7}.service-action-btn--supplement.data-v-a30f78d6{color:#10b981;background-color:transparent}.service-action-btn--supplement.data-v-a30f78d6:active{opacity:.7}.service-action-btn--upload.data-v-a30f78d6{color:#7c3aed;background-color:transparent}.service-action-btn--upload.data-v-a30f78d6:active{opacity:.7}.service-action-btn--record.data-v-a30f78d6{color:#007aff;background-color:transparent}.service-action-btn--record.data-v-a30f78d6:active{opacity:.7}.service-action-btn--recording.data-v-a30f78d6{color:#ff3b30}.service-status-empty.data-v-a30f78d6,.service-status-loading-more.data-v-a30f78d6{padding:48rpx 0;text-align:center;color:#999;font-size:28rpx}.supplement-dialog-mask.data-v-a30f78d6{position:fixed;top:0;left:0;right:0;bottom:0;background-color:rgba(0,0,0,.5);display:flex;align-items:center;justify-content:center;z-index:1000}.supplement-dialog.data-v-a30f78d6{width:640rpx;max-height:80vh;background-color:#fff;border-radius:24rpx;overflow:hidden;display:flex;flex-direction:column}.supplement-dialog__header.data-v-a30f78d6{display:flex;align-items:center;justify-content:space-between;padding:32rpx 32rpx 24rpx;border-bottom:1px solid #F0F0F0}.supplement-dialog__title.data-v-a30f78d6{font-size:32rpx;font-weight:500;color:#333}.supplement-dialog__close.data-v-a30f78d6{width:48rpx;height:48rpx;display:flex;align-items:center;justify-content:center}.supplement-dialog__body.data-v-a30f78d6{flex:1;padding:32rpx;overflow-y:auto}.supplement-form-item.data-v-a30f78d6{margin-bottom:32rpx}.supplement-form-item.data-v-a30f78d6:last-child{margin-bottom:0}.supplement-form-item__label.data-v-a30f78d6{display:block;font-size:28rpx;color:#333;font-weight:500;margin-bottom:16rpx}.supplement-form-item__input.data-v-a30f78d6{width:100%;height:88rpx;background-color:#f9fafb;border-radius:12rpx;padding:0 24rpx;font-size:28rpx;color:#333;box-sizing:border-box}.supplement-form-item__textarea.data-v-a30f78d6{width:100%;min-height:160rpx;background-color:#f9fafb;border-radius:12rpx;padding:24rpx;font-size:28rpx;color:#333;box-sizing:border-box;line-height:1.6}.supplement-dialog__footer.data-v-a30f78d6{display:flex;gap:24rpx;padding:24rpx 32rpx 32rpx;border-top:1px solid #F0F0F0}.supplement-dialog__btn.data-v-a30f78d6{flex:1;height:88rpx;border-radius:12rpx;display:flex;align-items:center;justify-content:center;font-size:32rpx;font-weight:500}.supplement-dialog__btn--cancel.data-v-a30f78d6{background-color:#f3f4f6;color:#6b7280}.supplement-dialog__btn--save.data-v-a30f78d6{background-color:#4c8dff;color:#fff}.supplement-dialog__btn.data-v-a30f78d6:active{opacity:.7}
+.service-list-container.data-v-4db00a37{height:100%;width:100%;display:flex;flex-direction:column;background-color:#f5f5f5;padding:0 16rpx;box-sizing:border-box}.service-status-toolbar.data-v-4db00a37{display:flex;flex-wrap:nowrap;align-items:center;gap:8rpx;padding:12rpx 8rpx;margin-bottom:24rpx;background-color:#f8f8fa;border-radius:8rpx;border:1px solid #EFEFF2;overflow-x:auto;min-height:64rpx;box-sizing:border-box;flex-shrink:0}.service-list.data-v-4db00a37{flex:1;background-color:transparent;box-sizing:border-box;overflow-y:auto}.toolbar-total.data-v-4db00a37{font-size:24rpx;color:#666;white-space:nowrap;flex-shrink:0;margin-right:8rpx;line-height:1.2;padding:0 4rpx}.toolbar-input.data-v-4db00a37{flex:1;min-width:120rpx;max-width:200rpx;height:56rpx;line-height:56rpx;background-color:#f5f6fa;border-radius:8rpx;padding:0 12rpx;font-size:24rpx;border:1px solid transparent;box-sizing:border-box;flex-shrink:1}.toolbar-actions.data-v-4db00a37{display:flex;align-items:center;margin-left:auto;flex-shrink:0;gap:8rpx}.toolbar-btn.data-v-4db00a37{padding:0 12rpx;height:56rpx;min-width:56rpx;color:#2a68ff;display:flex;align-items:center;justify-content:center;gap:4rpx;font-size:24rpx;font-weight:400;line-height:1;box-sizing:border-box}.service-card.data-v-4db00a37{width:100%;box-sizing:border-box;background-color:#fff;border-radius:16rpx;padding:32rpx;margin-bottom:24rpx;box-shadow:0 2rpx 8rpx rgba(0,0,0,.04);overflow:visible}.card-header.data-v-4db00a37{display:flex;justify-content:space-between;align-items:center;margin-bottom:20rpx;width:100%;box-sizing:border-box;padding:0;margin:0}.service-title.data-v-4db00a37{margin-top:16rpx;margin-bottom:8rpx}.service-title__text.data-v-4db00a37{font-size:28rpx;font-weight:600;color:#111827;display:block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.staff-info.data-v-4db00a37{display:flex;align-items:center;flex:1;min-width:0;margin:0;padding:0}.staff-avatar.data-v-4db00a37{width:64rpx;height:64rpx;background-color:#2196f3;border-radius:50%;display:flex;align-items:center;justify-content:center;margin-right:16rpx;margin-left:0;margin-top:0;margin-bottom:0;flex-shrink:0}.avatar-text.data-v-4db00a37{font-size:32rpx;color:#fff;font-weight:500}.staff-name.data-v-4db00a37{font-size:32rpx;font-weight:500;color:#333}.service-status.data-v-4db00a37{display:flex;align-items:center;gap:8rpx}.service-status text.data-v-4db00a37{font-size:26rpx;color:#007aff}.customer-tags.data-v-4db00a37{display:flex;flex-wrap:wrap;margin-bottom:20rpx;gap:12rpx;box-sizing:border-box;margin-left:0;margin-right:0;padding:0;width:100%;max-width:100%}.customer-info.data-v-4db00a37{margin-bottom:16rpx;display:flex;flex-direction:column;gap:8rpx;box-sizing:border-box;margin-left:0;margin-right:0;padding:0;width:100%;max-width:100%}.customer-name.data-v-4db00a37,.customer-phone.data-v-4db00a37{font-size:28rpx;color:#555}.tag-item.data-v-4db00a37{padding:8rpx 16rpx;border-radius:8rpx;box-sizing:border-box;word-wrap:break-word;word-break:break-all;display:inline-block;max-width:100%}.tag-blue.data-v-4db00a37{background-color:#e3f2fd}.tag-blue text.data-v-4db00a37{font-size:24rpx;color:#1976d2}.tag-orange.data-v-4db00a37{background-color:#fff3e0}.tag-orange text.data-v-4db00a37{font-size:24rpx;color:#f57c00}.ai-alert.data-v-4db00a37{border-radius:8rpx;padding:20rpx;margin-bottom:20rpx}.alert-risk-box.data-v-4db00a37{background-color:#fff5f5}.alert-reminder-box.data-v-4db00a37{background-color:#f5f5f5}.alert-header.data-v-4db00a37{display:flex;align-items:center;margin-bottom:12rpx}.alert-icon.data-v-4db00a37{margin-right:8rpx}.icon-circle.data-v-4db00a37{width:24rpx;height:24rpx;border:2rpx solid #333;border-radius:50%;position:relative}.icon-circle.data-v-4db00a37:after{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:8rpx;height:8rpx;background-color:#333;border-radius:50%}.alert-title.data-v-4db00a37{font-size:28rpx;font-weight:500;color:#333}.alert-content.data-v-4db00a37{font-size:26rpx;line-height:1.6}.alert-risk-text.data-v-4db00a37{color:#ff5722}.alert-reminder-text.data-v-4db00a37{color:#666}.alert-list.data-v-4db00a37{display:flex;flex-direction:column;gap:8rpx}.alert-item.data-v-4db00a37{display:flex;align-items:flex-start}.alert-item.data-v-4db00a37:before{content:"\2022";margin-right:8rpx;color:#666}.alert-item text.data-v-4db00a37{font-size:26rpx;color:#666;line-height:1.6}.service-duration.data-v-4db00a37{padding-top:16rpx;border-top:1px solid #F0F0F0}.service-duration text.data-v-4db00a37{font-size:26rpx;color:#999}.service-action-btn.data-v-4db00a37{padding:6rpx 16rpx;border-radius:4rpx;font-size:26rpx;font-weight:400;display:flex;align-items:center;justify-content:center;margin-right:12rpx;cursor:pointer}.service-action-btn--finish.data-v-4db00a37{color:#007aff;background-color:transparent}.service-action-btn--finish.data-v-4db00a37:active{opacity:.7}.service-action-btn--supplement.data-v-4db00a37{color:#10b981;background-color:transparent}.service-action-btn--supplement.data-v-4db00a37:active{opacity:.7}.service-action-btn--upload.data-v-4db00a37{color:#7c3aed;background-color:transparent}.service-action-btn--upload.data-v-4db00a37:active{opacity:.7}.service-action-btn--record.data-v-4db00a37{color:#007aff;background-color:transparent}.service-action-btn--record.data-v-4db00a37:active{opacity:.7}.service-action-btn--recording.data-v-4db00a37{color:#ff3b30}.service-status-empty.data-v-4db00a37,.service-status-loading-more.data-v-4db00a37{padding:48rpx 0;text-align:center;color:#999;font-size:28rpx}.supplement-dialog-mask.data-v-4db00a37{position:fixed;top:0;left:0;right:0;bottom:0;background-color:rgba(0,0,0,.5);display:flex;align-items:center;justify-content:center;z-index:1000}.supplement-dialog.data-v-4db00a37{width:640rpx;max-height:80vh;background-color:#fff;border-radius:24rpx;overflow:hidden;display:flex;flex-direction:column}.supplement-dialog__header.data-v-4db00a37{display:flex;align-items:center;justify-content:space-between;padding:32rpx 32rpx 24rpx;border-bottom:1px solid #F0F0F0}.supplement-dialog__title.data-v-4db00a37{font-size:32rpx;font-weight:500;color:#333}.supplement-dialog__close.data-v-4db00a37{width:48rpx;height:48rpx;display:flex;align-items:center;justify-content:center}.supplement-dialog__body.data-v-4db00a37{flex:1;padding:32rpx;overflow-y:auto}.supplement-form-item.data-v-4db00a37{margin-bottom:32rpx}.supplement-form-item.data-v-4db00a37:last-child{margin-bottom:0}.supplement-form-item__label.data-v-4db00a37{display:block;font-size:28rpx;color:#333;font-weight:500;margin-bottom:16rpx}.supplement-form-item__input.data-v-4db00a37{width:100%;height:88rpx;background-color:#f9fafb;border-radius:12rpx;padding:0 24rpx;font-size:28rpx;color:#333;box-sizing:border-box}.supplement-form-item__textarea.data-v-4db00a37{width:100%;min-height:160rpx;background-color:#f9fafb;border-radius:12rpx;padding:24rpx;font-size:28rpx;color:#333;box-sizing:border-box;line-height:1.6}.supplement-dialog__footer.data-v-4db00a37{display:flex;gap:24rpx;padding:24rpx 32rpx 32rpx;border-top:1px solid #F0F0F0}.supplement-dialog__btn.data-v-4db00a37{flex:1;height:88rpx;border-radius:12rpx;display:flex;align-items:center;justify-content:center;font-size:32rpx;font-weight:500}.supplement-dialog__btn--cancel.data-v-4db00a37{background-color:#f3f4f6;color:#6b7280}.supplement-dialog__btn--save.data-v-4db00a37{background-color:#4c8dff;color:#fff}.supplement-dialog__btn.data-v-4db00a37:active{opacity:.7}
diff --git a/unpackage/dist/build/mp-weixin/pages/ucenter/ucenter.js b/unpackage/dist/build/mp-weixin/pages/ucenter/ucenter.js
index 18f15cb..102a254 100644
--- a/unpackage/dist/build/mp-weixin/pages/ucenter/ucenter.js
+++ b/unpackage/dist/build/mp-weixin/pages/ucenter/ucenter.js
@@ -1 +1 @@
-"use strict";const e=require("../../common/vendor.js"),o=require("../../common/store.js"),n=require("../../common/request.js"),t=e._r.database();e._r.importObject("uni-id-co",{customUI:!0});const i={components:{DeviceBindPopup:()=>"./components/DeviceBindPopup.js",DeviceListPopup:()=>"./components/DeviceListPopup.js",CloudImage:()=>"../../uni_modules/uni-id-pages/components/cloud-image/cloud-image.js"},data(){return{tenantId:"",loginUserInfo:{},totalDevices:0,totalSales:0,totalProjects:0,gridList:[{text:"设备总数",icon:"gear"},{text:"人员总数",icon:"person-filled"},{text:"项目总数",icon:"list"},{text:"修改密码",icon:"locked"}],changePwdForm:{oldPassword:"",newPassword:"",confirmPassword:""},changePwdSubmitting:!1,ucenterList:[[{title:"设备绑定",event:"openDeviceBind",icon:"compose"},{title:"设备列表",event:"openDeviceList",icon:"paperplane"}],[{title:this.$t("mine.settings"),to:"/pages-subpackage/ucenter/settings/settings",icon:"gear"}]],listStyles:{height:"150rpx",width:"150rpx",border:{color:"#eee",width:"1px",style:"solid",radius:"100%"}}}},onLoad(){this.loadUserInfo()},onShow(){try{const n=e.index.getStorageSync("uni-id-pages-userInfo")||{};if(Object.keys(n).length>0&&0===Object.keys(o.store.userInfo||{}).length){o.mutations.syncUserInfoFromStorage()||o.mutations.setUserInfo(n,{cover:!0})}}catch(n){}this.loadUserInfo(),this.loadDeviceStatistics(),this.loadSalesStatistics(),this.loadProjectStatistics()},onReady(){this.initUrlHidingAfterPageLoad()},computed:{userInfo:()=>o.store.userInfo||{},hasLogin:()=>o.store.hasLogin||!1,appConfig(){try{const e=getApp({allowDefault:!0});return e&&e.globalData?e.globalData.config:{}}catch(e){return{}}},headerDisplayName(){const e=this.loginUserInfo&&this.loginUserInfo.userName||"";if(e)return e;const o=this.userInfo||{};return o.username||o.nickname||o.mobile||""}},methods:{loadUserInfo(){try{this.tenantId=e.index.getStorageSync("backend-tenant-id")||"";const o=e.index.getStorageSync("backend-login-response")||{};this.loginUserInfo={userName:o.userName||"",roleName:o.roleName||"",scenario:o.scenario||e.index.getStorageSync("backend-scenario")||"",phone:o.phone||"",email:o.email||"",userId:o.userId||""}}catch(o){console.error("加载用户信息失败:",o)}},async loadDeviceStatistics(){var e,o;try{const t=await n.get("/api/deviceManagement/statistics");200===t.statusCode&&t.data&&t.data.success?this.totalDevices=(null==(e=t.data.data)?void 0:e.totalDevices)||0:(console.error("获取设备统计信息失败:",(null==(o=t.data)?void 0:o.message)||"未知错误"),this.totalDevices=0)}catch(t){console.error("获取设备统计信息异常:",t),this.totalDevices=0}},async loadSalesStatistics(){var e,o;try{const t=await n.get("/api/salesManagement/statistics");200===t.statusCode&&t.data&&t.data.success?this.totalSales=(null==(e=t.data.data)?void 0:e.totalSales)||0:(console.error("获取销售统计信息失败:",(null==(o=t.data)?void 0:o.message)||"未知错误"),this.totalSales=0)}catch(t){console.error("获取销售统计信息异常:",t),this.totalSales=0}},async loadProjectStatistics(){var e,o;try{const t=await n.get("/api/projectManagement/statistics");200===t.statusCode&&t.data&&t.data.success?this.totalProjects=(null==(e=t.data.data)?void 0:e.totalProjects)||0:(console.error("获取项目统计信息失败:",(null==(o=t.data)?void 0:o.message)||"未知错误"),this.totalProjects=0)}catch(t){console.error("获取项目统计信息异常:",t),this.totalProjects=0}},toSettings(){e.index.navigateTo({url:"/pages-subpackage/ucenter/settings/settings"})},signIn(){this.$refs.signIn.open()},signInByAd(){this.$refs.signIn.showRewardedVideoAd()},ucenterListClick(o){if(!o.to&&o.event)this[o.event]();else if(o.to){const n=["/pages-subpackage/furniture_customer/furniture_customer","/pages/workbench/workbench","/pages/xixi/xixi","/pages/ucenter/ucenter"];"/pages/furniture_reception/furniture_reception"===o.to?e.index.navigateTo({url:o.to}):n.includes(o.to)?e.index.switchTab({url:o.to}):e.index.navigateTo({url:o.to})}},async checkVersion(){let o=await callCheckVersion();console.log(o),o.result.code>0?checkUpdate():e.index.showToast({title:o.result.message,icon:"none"})},toUserInfo(){e.index.navigateTo({url:"/uni_modules/uni-id-pages/pages/userinfo/userinfo"})},tapGrid(o){if(3===o){if(!this.hasLogin)return e.index.showToast({title:"请先登录后再修改密码",icon:"none"});this.openChangePasswordDialog()}},gotoMarket(){},getScore(){if(!this.userInfo)return e.index.showToast({title:this.$t("mine.checkScore"),icon:"none"});e.index.showLoading({mask:!0}),t.collection("uni-id-scores").where('"user_id" == $env.uid').field("score,balance").orderBy("create_date","desc").limit(1).get().then((o=>{console.log(o);const n=o.result.data[0];let t="";t=n?this.$t("mine.currentScore")+n.balance:this.$t("mine.noScore"),e.index.showToast({title:t,icon:"none"})})).finally((()=>{e.index.hideLoading()}))},async share(){let{result:o}=await t.collection("uni-id-users").where("'_id' == $cloudEnv_uid").field("my_invite_code").get(),n=o.data[0].my_invite_code;if(!n)return e.index.showToast({title:"请检查uni-config-center中uni-id配置,是否已启用 autoSetInviteCode",icon:"none"});console.log({myInviteCode:n}),this.appConfig.about},openDeviceBind(){this.$refs.deviceBindPopup&&this.$refs.deviceBindPopup.open()},onDeviceBindSuccess(){this.loadDeviceStatistics()},openDeviceList(){this.$refs.deviceListPopup&&this.$refs.deviceListPopup.open()},openChangePasswordDialog(){this.changePwdForm={oldPassword:"",newPassword:"",confirmPassword:""},this.$refs.changePwdPopup&&this.$refs.changePwdPopup.open()},closeChangePasswordDialog(){this.$refs.changePwdPopup&&this.$refs.changePwdPopup.close()},async submitChangePassword(){var o,t;if(this.changePwdSubmitting)return;const{oldPassword:i,newPassword:s,confirmPassword:a}=this.changePwdForm;if(!i)return e.index.showToast({title:"请输入原始密码",icon:"none"});if(!s)return e.index.showToast({title:"请输入新密码",icon:"none"});if(s.length<6||s.length>20)return e.index.showToast({title:"新密码长度需为 6-20 位",icon:"none"});if(s!==a)return e.index.showToast({title:"两次输入的新密码不一致",icon:"none"});this.changePwdSubmitting=!0;try{if(!this.loginUserInfo.userId)return e.index.showToast({title:"用户信息不完整,请重新登录",icon:"none"});const t={password:s,originalPassword:i,userId:this.loginUserInfo.userId,tenantId:this.tenantId};this.loginUserInfo.phone&&(t.phone=this.loginUserInfo.phone);const a=await n.put("/api/sys/user/update",t);if(200===a.statusCode&&a.data&&a.data.success)this.closeChangePasswordDialog(),e.index.showModal({content:a.data.message||"密码修改成功,请重新登录",showCancel:!1,success:()=>{e.index.removeStorageSync("backend-token"),e.index.removeStorageSync("backend-login-response"),e.index.removeStorageSync("backend-user-id"),e.index.removeStorageSync("backend-tenant-id"),e.index.removeStorageSync("uni_id_token"),e.index.setStorageSync("uni_id_token_expired",0),e.index.redirectTo({url:"/uni_modules/uni-id-pages/pages/login/login-withpwd"})}});else{const n=(null==(o=a.data)?void 0:o.message)||"密码修改失败,请稍后重试";e.index.showModal({content:n,showCancel:!1})}}catch(r){console.error("密码修改失败:",r);const o=(null==(t=null==r?void 0:r.data)?void 0:t.message)||(null==r?void 0:r.message)||"密码修改失败,请稍后重试";e.index.showModal({content:o,showCancel:!1})}finally{this.changePwdSubmitting=!1}},initUrlHidingAfterPageLoad(){},setupTabNavigationHiding(){},setupBrowserNavigationHiding(){},attemptUrlHidingForCurrentPage(){}}};if(!Array){(e.resolveComponent("uni-sign-in")+e.resolveComponent("cloud-image")+e.resolveComponent("uni-icons")+e.resolveComponent("uni-grid-item")+e.resolveComponent("uni-grid")+e.resolveComponent("uni-list-item")+e.resolveComponent("uni-list")+e.resolveComponent("device-bind-popup")+e.resolveComponent("device-list-popup")+e.resolveComponent("uni-easyinput")+e.resolveComponent("uni-popup"))()}Math||((()=>"../../uni_modules/uni-sign-in/components/uni-sign-in/uni-sign-in.js")+(()=>"../../uni_modules/uni-id-pages/components/cloud-image/cloud-image.js")+(()=>"../../uni_modules/uni-icons/components/uni-icons/uni-icons.js")+(()=>"../../uni_modules/uni-grid/components/uni-grid-item/uni-grid-item.js")+(()=>"../../uni_modules/uni-grid/components/uni-grid/uni-grid.js")+(()=>"../../uni_modules/uni-list/components/uni-list-item/uni-list-item.js")+(()=>"../../uni_modules/uni-list/components/uni-list/uni-list.js")+(()=>"../../uni_modules/uni-easyinput/components/uni-easyinput/uni-easyinput.js")+(()=>"../../uni_modules/uni-popup/components/uni-popup/uni-popup.js"))();const s=e._export_sfc(i,[["render",function(o,n,t,i,s,a){return e.e({a:e.sr("signIn","4be67795-0"),b:a.hasLogin&&a.userInfo.avatar_file&&a.userInfo.avatar_file.url},a.hasLogin&&a.userInfo.avatar_file&&a.userInfo.avatar_file.url?{c:e.p({width:"150rpx",height:"150rpx",src:a.userInfo.avatar_file.url})}:{d:e.p({color:"#ffffff",size:"50",type:"person-filled"})},{e:a.hasLogin},a.hasLogin?{f:e.t(a.headerDisplayName)}:{g:e.t(o.$t("mine.notLogged"))},{h:e.o(((...e)=>a.toUserInfo&&a.toUserInfo(...e)),"53"),i:a.hasLogin},a.hasLogin?e.e({j:e.t(s.tenantId||"未设置"),k:e.t(s.loginUserInfo.userName||"未设置"),l:e.t(s.loginUserInfo.roleName||"未设置"),m:e.t(s.loginUserInfo.scenario||"未设置"),n:s.loginUserInfo.phone},s.loginUserInfo.phone?{o:e.t(s.loginUserInfo.phone)}:{},{p:s.loginUserInfo.email},s.loginUserInfo.email?{q:e.t(s.loginUserInfo.email)}:{}):{},{r:e.f(s.gridList,((o,n,t)=>e.e({a:"4be67795-5-"+t+",4be67795-4-"+t,b:e.p({color:"#007AFF",type:o.icon,size:"26"}),c:0===n},0===n?{d:e.t(s.totalDevices)}:1===n?{f:e.t(s.totalSales)}:2===n?{h:e.t(s.totalProjects)}:{i:e.t(o.text)},{e:1===n,g:2===n,j:e.o((e=>a.tapGrid(n)),n),k:n,l:"4be67795-4-"+t+",4be67795-3"}))),s:e.p({column:4,showBorder:!1,square:!0}),t:e.f(s.ucenterList,((o,n,t)=>({a:e.f(o,((o,n,i)=>e.e({a:o.showBadge},o.showBadge?{b:e.t(o.rightText)}:{},{c:n,d:e.o((e=>a.ucenterListClick(o)),n),e:"4be67795-7-"+t+"-"+i+",4be67795-6-"+t,f:e.p({title:o.title,link:!0,rightText:o.rightText,clickable:!0,to:o.to,"show-extra-icon":!0,extraIcon:{type:o.icon,color:"#999"}})}))),b:n,c:"4be67795-6-"+t}))),v:e.sr("deviceBindPopup","4be67795-8"),w:e.o(a.onDeviceBindSuccess,"77"),x:e.sr("deviceListPopup","4be67795-9"),y:e.o((e=>s.changePwdForm.oldPassword=e),"90"),z:e.p({type:"password",placeholder:"请输入原始密码",modelValue:s.changePwdForm.oldPassword}),A:e.o((e=>s.changePwdForm.newPassword=e),"c6"),B:e.p({type:"password",placeholder:"请输入新密码(6-20位)",modelValue:s.changePwdForm.newPassword}),C:e.o((e=>s.changePwdForm.confirmPassword=e),"63"),D:e.p({type:"password",placeholder:"请再次输入新密码",modelValue:s.changePwdForm.confirmPassword}),E:e.o(((...e)=>a.closeChangePasswordDialog&&a.closeChangePasswordDialog(...e)),"84"),F:e.t(s.changePwdSubmitting?"提交中...":"提交"),G:s.changePwdSubmitting,H:e.o(((...e)=>a.submitChangePassword&&a.submitChangePassword(...e)),"62"),I:e.sr("changePwdPopup","4be67795-10"),J:e.p({type:"dialog"})})}],["__scopeId","data-v-4be67795"]]);wx.createPage(s);
+"use strict";const e=require("../../common/vendor.js"),t=require("../../common/store.js"),o=require("../../common/request.js"),s=require("../../common/config.js"),n=e._r.database();e._r.importObject("uni-id-co",{customUI:!0});const i={components:{DeviceBindPopup:()=>"./components/DeviceBindPopup.js",DeviceListPopup:()=>"./components/DeviceListPopup.js",CloudImage:()=>"../../uni_modules/uni-id-pages/components/cloud-image/cloud-image.js"},data(){return{tenantId:"",loginUserInfo:{},totalDevices:0,totalSales:0,totalProjects:0,gridList:[{text:"设备总数",icon:"gear"},{text:"人员总数",icon:"person-filled"},{text:"项目总数",icon:"list"},{text:"修改密码",icon:"locked"}],changePwdForm:{oldPassword:"",newPassword:"",confirmPassword:""},changePwdSubmitting:!1,remoteAvatarFailed:!1,ucenterList:[[{title:"设备绑定",event:"openDeviceBind",icon:"compose"},{title:"设备列表",event:"openDeviceList",icon:"paperplane"}],[{title:this.$t("mine.settings"),to:"/pages-subpackage/ucenter/settings/settings",icon:"gear"}]],listStyles:{height:"150rpx",width:"150rpx",border:{color:"#eee",width:"1px",style:"solid",radius:"100%"}}}},watch:{resolvedAvatarUrl(){this.remoteAvatarFailed=!1}},onLoad(){this.loadUserInfo()},onShow(){try{const o=e.index.getStorageSync("uni-id-pages-userInfo")||{};if(Object.keys(o).length>0&&0===Object.keys(t.store.userInfo||{}).length){t.mutations.syncUserInfoFromStorage()||t.mutations.setUserInfo(o,{cover:!0})}}catch(o){}this.loadUserInfo(),this.loadDeviceStatistics(),this.loadSalesStatistics(),this.loadProjectStatistics()},onReady(){this.initUrlHidingAfterPageLoad()},computed:{userInfo:()=>t.store.userInfo||{},hasLogin:()=>t.store.hasLogin||!1,rawAvatarUrl(){const e=this.userInfo&&this.userInfo.avatar_file&&this.userInfo.avatar_file.url;return"string"==typeof e?e.trim():""},resolvedAvatarUrl(){const e=this.rawAvatarUrl;if(!e)return"";if(e.startsWith("cloud://")||e.startsWith("http://")||e.startsWith("https://")||e.startsWith("data:")||e.startsWith("wxfile://")||e.startsWith("//"))return e.startsWith("//")?`https:${e}`:e;const t=s.API_BASE_URL.replace(/\/+$/,"");return e.startsWith("/")?`${t}${e}`:`${t}/${e}`},showCloudAvatar(){return this.hasLogin&&!!this.resolvedAvatarUrl&&this.resolvedAvatarUrl.startsWith("cloud://")&&!this.remoteAvatarFailed},showHttpAvatar(){const e=this.resolvedAvatarUrl;return this.hasLogin&&!!e&&!e.startsWith("cloud://")&&!this.remoteAvatarFailed},appConfig(){try{const e=getApp({allowDefault:!0});return e&&e.globalData?e.globalData.config:{}}catch(e){return{}}},headerDisplayName(){const e=this.loginUserInfo&&this.loginUserInfo.userName||"";if(e)return e;const t=this.userInfo||{};return t.username||t.nickname||t.mobile||""}},methods:{onRemoteAvatarFail(){this.remoteAvatarFailed=!0},loadUserInfo(){try{this.tenantId=e.index.getStorageSync("backend-tenant-id")||"";const t=e.index.getStorageSync("backend-login-response")||{};this.loginUserInfo={userName:t.userName||"",roleName:t.roleName||"",scenario:t.scenario||e.index.getStorageSync("backend-scenario")||"",phone:t.phone||"",email:t.email||"",userId:t.userId||""}}catch(t){console.error("加载用户信息失败:",t)}},async loadDeviceStatistics(){var e,t;try{const s=await o.get("/api/deviceManagement/statistics");200===s.statusCode&&s.data&&s.data.success?this.totalDevices=(null==(e=s.data.data)?void 0:e.totalDevices)||0:(console.error("获取设备统计信息失败:",(null==(t=s.data)?void 0:t.message)||"未知错误"),this.totalDevices=0)}catch(s){console.error("获取设备统计信息异常:",s),this.totalDevices=0}},async loadSalesStatistics(){var e,t;try{const s=await o.get("/api/salesManagement/statistics");200===s.statusCode&&s.data&&s.data.success?this.totalSales=(null==(e=s.data.data)?void 0:e.totalSales)||0:(console.error("获取销售统计信息失败:",(null==(t=s.data)?void 0:t.message)||"未知错误"),this.totalSales=0)}catch(s){console.error("获取销售统计信息异常:",s),this.totalSales=0}},async loadProjectStatistics(){var e,t;try{const s=await o.get("/api/projectManagement/statistics");200===s.statusCode&&s.data&&s.data.success?this.totalProjects=(null==(e=s.data.data)?void 0:e.totalProjects)||0:(console.error("获取项目统计信息失败:",(null==(t=s.data)?void 0:t.message)||"未知错误"),this.totalProjects=0)}catch(s){console.error("获取项目统计信息异常:",s),this.totalProjects=0}},toSettings(){e.index.navigateTo({url:"/pages-subpackage/ucenter/settings/settings"})},signIn(){this.$refs.signIn.open()},signInByAd(){this.$refs.signIn.showRewardedVideoAd()},ucenterListClick(t){if(!t.to&&t.event)this[t.event]();else if(t.to){const o=["/pages-subpackage/furniture_customer/furniture_customer","/pages/workbench/workbench","/pages/xixi/xixi","/pages/ucenter/ucenter"];"/pages/furniture_reception/furniture_reception"===t.to?e.index.navigateTo({url:t.to}):o.includes(t.to)?e.index.switchTab({url:t.to}):e.index.navigateTo({url:t.to})}},async checkVersion(){let t=await callCheckVersion();console.log(t),t.result.code>0?checkUpdate():e.index.showToast({title:t.result.message,icon:"none"})},toUserInfo(){e.index.navigateTo({url:"/uni_modules/uni-id-pages/pages/userinfo/userinfo"})},tapGrid(t){if(3===t){if(!this.hasLogin)return e.index.showToast({title:"请先登录后再修改密码",icon:"none"});this.openChangePasswordDialog()}},gotoMarket(){},getScore(){if(!this.userInfo)return e.index.showToast({title:this.$t("mine.checkScore"),icon:"none"});e.index.showLoading({mask:!0}),n.collection("uni-id-scores").where('"user_id" == $env.uid').field("score,balance").orderBy("create_date","desc").limit(1).get().then((t=>{console.log(t);const o=t.result.data[0];let s="";s=o?this.$t("mine.currentScore")+o.balance:this.$t("mine.noScore"),e.index.showToast({title:s,icon:"none"})})).finally((()=>{e.index.hideLoading()}))},async share(){let{result:t}=await n.collection("uni-id-users").where("'_id' == $cloudEnv_uid").field("my_invite_code").get(),o=t.data[0].my_invite_code;if(!o)return e.index.showToast({title:"请检查uni-config-center中uni-id配置,是否已启用 autoSetInviteCode",icon:"none"});console.log({myInviteCode:o}),this.appConfig.about},openDeviceBind(){this.$refs.deviceBindPopup&&this.$refs.deviceBindPopup.open()},onDeviceBindSuccess(){this.loadDeviceStatistics()},openDeviceList(){this.$refs.deviceListPopup&&this.$refs.deviceListPopup.open()},openChangePasswordDialog(){this.changePwdForm={oldPassword:"",newPassword:"",confirmPassword:""},this.$refs.changePwdPopup&&this.$refs.changePwdPopup.open()},closeChangePasswordDialog(){this.$refs.changePwdPopup&&this.$refs.changePwdPopup.close()},async submitChangePassword(){var t,s;if(this.changePwdSubmitting)return;const{oldPassword:n,newPassword:i,confirmPassword:a}=this.changePwdForm;if(!n)return e.index.showToast({title:"请输入原始密码",icon:"none"});if(!i)return e.index.showToast({title:"请输入新密码",icon:"none"});if(i.length<6||i.length>20)return e.index.showToast({title:"新密码长度需为 6-20 位",icon:"none"});if(i!==a)return e.index.showToast({title:"两次输入的新密码不一致",icon:"none"});this.changePwdSubmitting=!0;try{if(!this.loginUserInfo.userId)return e.index.showToast({title:"用户信息不完整,请重新登录",icon:"none"});const s={password:i,originalPassword:n,userId:this.loginUserInfo.userId,tenantId:this.tenantId};this.loginUserInfo.phone&&(s.phone=this.loginUserInfo.phone);const a=await o.put("/api/sys/user/update",s);if(200===a.statusCode&&a.data&&a.data.success)this.closeChangePasswordDialog(),e.index.showModal({content:a.data.message||"密码修改成功,请重新登录",showCancel:!1,success:()=>{e.index.removeStorageSync("backend-token"),e.index.removeStorageSync("backend-login-response"),e.index.removeStorageSync("backend-user-id"),e.index.removeStorageSync("backend-tenant-id"),e.index.removeStorageSync("uni_id_token"),e.index.setStorageSync("uni_id_token_expired",0),e.index.redirectTo({url:"/uni_modules/uni-id-pages/pages/login/login-withpwd"})}});else{const o=(null==(t=a.data)?void 0:t.message)||"密码修改失败,请稍后重试";e.index.showModal({content:o,showCancel:!1})}}catch(r){console.error("密码修改失败:",r);const t=(null==(s=null==r?void 0:r.data)?void 0:s.message)||(null==r?void 0:r.message)||"密码修改失败,请稍后重试";e.index.showModal({content:t,showCancel:!1})}finally{this.changePwdSubmitting=!1}},initUrlHidingAfterPageLoad(){},setupTabNavigationHiding(){},setupBrowserNavigationHiding(){},attemptUrlHidingForCurrentPage(){}}};if(!Array){(e.resolveComponent("uni-sign-in")+e.resolveComponent("cloud-image")+e.resolveComponent("uni-icons")+e.resolveComponent("uni-grid-item")+e.resolveComponent("uni-grid")+e.resolveComponent("uni-list-item")+e.resolveComponent("uni-list")+e.resolveComponent("device-bind-popup")+e.resolveComponent("device-list-popup")+e.resolveComponent("uni-easyinput")+e.resolveComponent("uni-popup"))()}Math||((()=>"../../uni_modules/uni-sign-in/components/uni-sign-in/uni-sign-in.js")+(()=>"../../uni_modules/uni-id-pages/components/cloud-image/cloud-image.js")+(()=>"../../uni_modules/uni-icons/components/uni-icons/uni-icons.js")+(()=>"../../uni_modules/uni-grid/components/uni-grid-item/uni-grid-item.js")+(()=>"../../uni_modules/uni-grid/components/uni-grid/uni-grid.js")+(()=>"../../uni_modules/uni-list/components/uni-list-item/uni-list-item.js")+(()=>"../../uni_modules/uni-list/components/uni-list/uni-list.js")+(()=>"../../uni_modules/uni-easyinput/components/uni-easyinput/uni-easyinput.js")+(()=>"../../uni_modules/uni-popup/components/uni-popup/uni-popup.js"))();const a=e._export_sfc(i,[["render",function(t,o,s,n,i,a){return e.e({a:e.sr("signIn","15a8395e-0"),b:a.showCloudAvatar},a.showCloudAvatar?{c:e.o(a.onRemoteAvatarFail,"d2"),d:e.p({width:"150rpx",height:"150rpx",src:a.resolvedAvatarUrl})}:a.showHttpAvatar?{f:a.resolvedAvatarUrl,g:e.o(((...e)=>a.onRemoteAvatarFail&&a.onRemoteAvatarFail(...e)),"b8")}:{h:e.p({color:"#ffffff",size:"50",type:"person-filled"})},{e:a.showHttpAvatar,i:a.hasLogin},a.hasLogin?{j:e.t(a.headerDisplayName)}:{k:e.t(t.$t("mine.notLogged"))},{l:e.o(((...e)=>a.toUserInfo&&a.toUserInfo(...e)),"53"),m:a.hasLogin},a.hasLogin?e.e({n:e.t(i.tenantId||"未设置"),o:e.t(i.loginUserInfo.userName||"未设置"),p:e.t(i.loginUserInfo.roleName||"未设置"),q:e.t(i.loginUserInfo.scenario||"未设置"),r:i.loginUserInfo.phone},i.loginUserInfo.phone?{s:e.t(i.loginUserInfo.phone)}:{},{t:i.loginUserInfo.email},i.loginUserInfo.email?{v:e.t(i.loginUserInfo.email)}:{}):{},{w:e.f(i.gridList,((t,o,s)=>e.e({a:"15a8395e-5-"+s+",15a8395e-4-"+s,b:e.p({color:"#007AFF",type:t.icon,size:"26"}),c:0===o},0===o?{d:e.t(i.totalDevices)}:1===o?{f:e.t(i.totalSales)}:2===o?{h:e.t(i.totalProjects)}:{i:e.t(t.text)},{e:1===o,g:2===o,j:e.o((e=>a.tapGrid(o)),o),k:o,l:"15a8395e-4-"+s+",15a8395e-3"}))),x:e.p({column:4,showBorder:!1,square:!0}),y:e.f(i.ucenterList,((t,o,s)=>({a:e.f(t,((t,o,n)=>e.e({a:t.showBadge},t.showBadge?{b:e.t(t.rightText)}:{},{c:o,d:e.o((e=>a.ucenterListClick(t)),o),e:"15a8395e-7-"+s+"-"+n+",15a8395e-6-"+s,f:e.p({title:t.title,link:!0,rightText:t.rightText,clickable:!0,to:t.to,"show-extra-icon":!0,extraIcon:{type:t.icon,color:"#999"}})}))),b:o,c:"15a8395e-6-"+s}))),z:e.sr("deviceBindPopup","15a8395e-8"),A:e.o(a.onDeviceBindSuccess,"83"),B:e.sr("deviceListPopup","15a8395e-9"),C:e.o((e=>i.changePwdForm.oldPassword=e),"6d"),D:e.p({type:"password",placeholder:"请输入原始密码",modelValue:i.changePwdForm.oldPassword}),E:e.o((e=>i.changePwdForm.newPassword=e),"f4"),F:e.p({type:"password",placeholder:"请输入新密码(6-20位)",modelValue:i.changePwdForm.newPassword}),G:e.o((e=>i.changePwdForm.confirmPassword=e),"bf"),H:e.p({type:"password",placeholder:"请再次输入新密码",modelValue:i.changePwdForm.confirmPassword}),I:e.o(((...e)=>a.closeChangePasswordDialog&&a.closeChangePasswordDialog(...e)),"b0"),J:e.t(i.changePwdSubmitting?"提交中...":"提交"),K:i.changePwdSubmitting,L:e.o(((...e)=>a.submitChangePassword&&a.submitChangePassword(...e)),"16"),M:e.sr("changePwdPopup","15a8395e-10"),N:e.p({type:"dialog"})})}],["__scopeId","data-v-15a8395e"]]);wx.createPage(a);
diff --git a/unpackage/dist/build/mp-weixin/pages/ucenter/ucenter.wxml b/unpackage/dist/build/mp-weixin/pages/ucenter/ucenter.wxml
index 1be286e..ebbbd63 100644
--- a/unpackage/dist/build/mp-weixin/pages/ucenter/ucenter.wxml
+++ b/unpackage/dist/build/mp-weixin/pages/ucenter/ucenter.wxml
@@ -1 +1 @@
-{{f}}{{g}}租户ID:{{j}}用户名:{{k}}当前角色:{{l}}场景:{{m}}手机号:{{o}}邮箱:{{q}}设备总数{{item.d}}人员总数{{item.f}}项目总数{{item.h}}{{item.i}}修改密码原始密码新密码确认密码
\ No newline at end of file
+{{j}}{{k}}租户ID:{{n}}用户名:{{o}}当前角色:{{p}}场景:{{q}}手机号:{{s}}邮箱:{{v}}设备总数{{item.d}}人员总数{{item.f}}项目总数{{item.h}}{{item.i}}修改密码原始密码新密码确认密码
\ No newline at end of file
diff --git a/unpackage/dist/build/mp-weixin/pages/ucenter/ucenter.wxss b/unpackage/dist/build/mp-weixin/pages/ucenter/ucenter.wxss
index e3636ab..d08ae6d 100644
--- a/unpackage/dist/build/mp-weixin/pages/ucenter/ucenter.wxss
+++ b/unpackage/dist/build/mp-weixin/pages/ucenter/ucenter.wxss
@@ -1 +1 @@
-view.data-v-4be67795{display:flex;box-sizing:border-box;flex-direction:column}page.data-v-4be67795{background-color:#f8f8f8}.center.data-v-4be67795{flex:1;flex-direction:column;background-color:#f8f8f8}.userInfo.data-v-4be67795{padding-top:60px;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAfQAAADICAIAAACRe4S/AAABPGlDQ1BVMzJKNTl4AAAoz2NgYBJILCjIYWFgYMjNKykKcndSiIiMUmB/ysDKwMXAz6DMoJKYXFzgGBDgA1TCAKNRwbdrDIwg+rIuyKxzl+t6+57Yb85J9Vxm3+gxlQE/4EpJLU4G0n+AOCm5oKiEgYExAchWLi8pALFbgGyRIqCjgOwZIHY6hL0GxE6CsA+A1YQEOQPZV4BsgeSMxBQg+wmQrZOEJJ6OxIbaCwIcocZGXqaWFQzUBiWpFSUg2jm/oLIoMz2jRMERGEKpCp55yXo6CkYGRoYMDKDwhqj+fAMcjoxiHAixlikMDNZvgQxbhJhXLAPDZl4GBp6FCDH1pwwMgmwMDMf8ChKLEuEOYPzGUpxmbARhc29nYGCd9v//53AGBnZNBoa/1////739//+/yxgYmG8xMBz4BgA7el7ZKsa31QAAAAlwSFlzAAALiQAAC4kBN8nLrQAACiVpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQ4IDc5LjE2NDAzNiwgMjAxOS8wOC8xMy0wMTowNjo1NyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iIHhtbG5zOnBob3Rvc2hvcD0iaHR0cDovL25zLmFkb2JlLmNvbS9waG90b3Nob3AvMS4wLyIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0RXZ0PSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VFdmVudCMiIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bXA6Q3JlYXRvclRvb2w9IkFkb2JlIFBob3Rvc2hvcCBDQyAyMDE5IChNYWNpbnRvc2gpIiB4bXA6Q3JlYXRlRGF0ZT0iMjAyMS0wNS0xMFQxNTo0MDoxNSswODowMCIgeG1wOk1vZGlmeURhdGU9IjIwMjMtMDEtMjlUMTk6MzI6MjYrMDg6MDAiIHhtcDpNZXRhZGF0YURhdGU9IjIwMjMtMDEtMjlUMTk6MzI6MjYrMDg6MDAiIGRjOmZvcm1hdD0iaW1hZ2UvcG5nIiBwaG90b3Nob3A6Q29sb3JNb2RlPSIzIiBwaG90b3Nob3A6SUNDUHJvZmlsZT0iVTMySjU5eCIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpmOWQ1ODk4ZC04ZThlLTc3NDgtOTVhZS0zZjQ3NmQ1NTFhMjgiIHhtcE1NOkRvY3VtZW50SUQ9ImFkb2JlOmRvY2lkOnBob3Rvc2hvcDo5YjQ3MDdmOC1kZDgwLWExNGMtOTQxMy1kYmM4MDk5ODNhZWMiIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo0NDMwZGIxOS0xNTg1LTQzOTktOWViMy1jZWY1MTJlNDIyMmMiPiA8cGhvdG9zaG9wOkRvY3VtZW50QW5jZXN0b3JzPiA8cmRmOkJhZz4gPHJkZjpsaT5hZG9iZTpkb2NpZDpwaG90b3Nob3A6OWI0NzA3ZjgtZGQ4MC1hMTRjLTk0MTMtZGJjODA5OTgzYWVjPC9yZGY6bGk+IDwvcmRmOkJhZz4gPC9waG90b3Nob3A6RG9jdW1lbnRBbmNlc3RvcnM+IDx4bXBNTTpIaXN0b3J5PiA8cmRmOlNlcT4gPHJkZjpsaSBzdEV2dDphY3Rpb249ImNyZWF0ZWQiIHN0RXZ0Omluc3RhbmNlSUQ9InhtcC5paWQ6NDQzMGRiMTktMTU4NS00Mzk5LTllYjMtY2VmNTEyZTQyMjJjIiBzdEV2dDp3aGVuPSIyMDIxLTA1LTEwVDE1OjQwOjE1KzA4OjAwIiBzdEV2dDpzb2Z0d2FyZUFnZW50PSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxOSAoTWFjaW50b3NoKSIvPiA8cmRmOmxpIHN0RXZ0OmFjdGlvbj0ic2F2ZWQiIHN0RXZ0Omluc3RhbmNlSUQ9InhtcC5paWQ6NjlkOTIxM2MtYjYyNi00MWNlLTlkMDctYjI0Y2JhOTllYzkwIiBzdEV2dDp3aGVuPSIyMDIxLTA1LTEwVDE1OjQzOjE0KzA4OjAwIiBzdEV2dDpzb2Z0d2FyZUFnZW50PSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxOSAoTWFjaW50b3NoKSIgc3RFdnQ6Y2hhbmdlZD0iLyIvPiA8cmRmOmxpIHN0RXZ0OmFjdGlvbj0iY29udmVydGVkIiBzdEV2dDpwYXJhbWV0ZXJzPSJmcm9tIGFwcGxpY2F0aW9uL3ZuZC5hZG9iZS5waG90b3Nob3AgdG8gaW1hZ2UvcG5nIi8+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJkZXJpdmVkIiBzdEV2dDpwYXJhbWV0ZXJzPSJjb252ZXJ0ZWQgZnJvbSBhcHBsaWNhdGlvbi92bmQuYWRvYmUucGhvdG9zaG9wIHRvIGltYWdlL3BuZyIvPiA8cmRmOmxpIHN0RXZ0OmFjdGlvbj0ic2F2ZWQiIHN0RXZ0Omluc3RhbmNlSUQ9InhtcC5paWQ6NTMzYTIwOWUtOTA4MS00Nzk2LTk4NmMtNTE4NWZlNjMyMzIwIiBzdEV2dDp3aGVuPSIyMDIxLTA1LTEwVDE1OjQzOjE0KzA4OjAwIiBzdEV2dDpzb2Z0d2FyZUFnZW50PSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxOSAoTWFjaW50b3NoKSIgc3RFdnQ6Y2hhbmdlZD0iLyIvPiA8cmRmOmxpIHN0RXZ0OmFjdGlvbj0ic2F2ZWQiIHN0RXZ0Omluc3RhbmNlSUQ9InhtcC5paWQ6ZjlkNTg5OGQtOGU4ZS03NzQ4LTk1YWUtM2Y0NzZkNTUxYTI4IiBzdEV2dDp3aGVuPSIyMDIzLTAxLTI5VDE5OjMyOjI2KzA4OjAwIiBzdEV2dDpzb2Z0d2FyZUFnZW50PSJBZG9iZSBQaG90b3Nob3AgMjEuMCAoV2luZG93cykiIHN0RXZ0OmNoYW5nZWQ9Ii8iLz4gPC9yZGY6U2VxPiA8L3htcE1NOkhpc3Rv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);flex-direction:column;align-items:center}.defaultAvatarUrl.data-v-4be67795{width:150rpx;height:150rpx;background-color:#007aff;border-radius:100%;justify-content:center;align-items:center}.logo-title.data-v-4be67795{flex:1;align-items:center;justify-content:space-between;flex-direction:row}.uer-name.data-v-4be67795{height:100rpx;line-height:100rpx;font-size:38rpx;color:#fff}.center-list.data-v-4be67795{margin-bottom:30rpx;background-color:#f9f9f9}.center-list-cell.data-v-4be67795{width:750rpx;background-color:#007aff;height:40rpx}.user-info-panel.data-v-4be67795{background-color:#fff;margin:20rpx 30rpx;padding:30rpx;border-radius:12rpx;box-shadow:0 2rpx 8rpx rgba(0,0,0,.1)}.info-row.data-v-4be67795{display:flex;flex-direction:row;align-items:center;margin-bottom:20rpx}.info-row.data-v-4be67795:last-child{margin-bottom:0}.info-label.data-v-4be67795{font-size:28rpx;color:#666;width:140rpx;flex-shrink:0}.info-value.data-v-4be67795{font-size:28rpx;color:#333;flex:1;word-break:break-all}.grid.data-v-4be67795{background-color:#fff;margin-bottom:6px}.uni-grid .text.data-v-4be67795{font-size:16px;height:25px;line-height:25px;color:#817f82}.uni-grid .item.data-v-4be67795 .uni-grid-item__box{justify-content:center;align-items:center}.device-text-wrapper.data-v-4be67795{display:flex;flex-direction:column;align-items:center;justify-content:center}.device-label.data-v-4be67795{font-size:14px;color:#817f82;line-height:20px;margin-bottom:2px}.device-count.data-v-4be67795{font-size:18px;font-weight:700;color:#007aff;line-height:22px}.center-list.data-v-4be67795 .uni-list--border:after{transform:scaleY(.2);margin-left:80rpx}.center-list.data-v-4be67795 .uni-list--border-top,.center-list.data-v-4be67795 .uni-list--border-bottom{display:none}.item-footer.data-v-4be67795{flex-direction:row;align-items:center}.item-footer-text.data-v-4be67795{color:#999;font-size:24rpx;padding-right:10rpx}.item-footer-badge.data-v-4be67795{width:20rpx;height:20rpx;border-radius:50%;background-color:#dd524d}.change-pwd-dialog.data-v-4be67795{padding:40rpx 30rpx 30rpx;background-color:#fff;border-radius:16rpx;width:600rpx}.change-pwd-title.data-v-4be67795{font-size:34rpx;font-weight:700;text-align:center;margin-bottom:30rpx}.change-pwd-field.data-v-4be67795{margin-bottom:20rpx}.change-pwd-label.data-v-4be67795{display:block;font-size:26rpx;color:#666;margin-bottom:10rpx}.change-pwd-actions.data-v-4be67795{margin-top:20rpx;display:flex;flex-direction:row;justify-content:flex-end}.dialog-btn.data-v-4be67795{min-width:140rpx;height:70rpx;line-height:70rpx;font-size:28rpx;border-radius:8rpx;padding:0 24rpx}.dialog-btn.cancel.data-v-4be67795{background-color:#f5f5f5;color:#333;margin-right:20rpx}.dialog-btn.confirm.data-v-4be67795{background-color:#007aff;color:#fff}.dialog-btn.data-v-4be67795:after{border:none}
+view.data-v-15a8395e{display:flex;box-sizing:border-box;flex-direction:column}page.data-v-15a8395e{background-color:#f8f8f8}.center.data-v-15a8395e{flex:1;flex-direction:column;background-color:#f8f8f8}.userInfo.data-v-15a8395e{padding-top:60px;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAfQAAADICAIAAACRe4S/AAABPGlDQ1BVMzJKNTl4AAAoz2NgYBJILCjIYWFgYMjNKykKcndSiIiMUmB/ysDKwMXAz6DMoJKYXFzgGBDgA1TCAKNRwbdrDIwg+rIuyKxzl+t6+57Yb85J9Vxm3+gxlQE/4EpJLU4G0n+AOCm5oKiEgYExAchWLi8pALFbgGyRIqCjgOwZIHY6hL0GxE6CsA+A1YQEOQPZV4BsgeSMxBQg+wmQrZOEJJ6OxIbaCwIcocZGXqaWFQzUBiWpFSUg2jm/oLIoMz2jRMERGEKpCp55yXo6CkYGRoYMDKDwhqj+fAMcjoxiHAixlikMDNZvgQxbhJhXLAPDZl4GBp6FCDH1pwwMgmwMDMf8ChKLEuEOYPzGUpxmbARhc29nYGCd9v//53AGBnZNBoa/1////739//+/yxgYmG8xMBz4BgA7el7ZKsa31QAAAAlwSFlzAAALiQAAC4kBN8nLrQAACiVpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQ4IDc5LjE2NDAzNiwgMjAxOS8wOC8xMy0wMTowNjo1NyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iIHhtbG5zOnBob3Rvc2hvcD0iaHR0cDovL25zLmFkb2JlLmNvbS9waG90b3Nob3AvMS4wLyIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0RXZ0PSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VFdmVudCMiIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bXA6Q3JlYXRvclRvb2w9IkFkb2JlIFBob3Rvc2hvcCBDQyAyMDE5IChNYWNpbnRvc2gpIiB4bXA6Q3JlYXRlRGF0ZT0iMjAyMS0wNS0xMFQxNTo0MDoxNSswODowMCIgeG1wOk1vZGlmeURhdGU9IjIwMjMtMDEtMjlUMTk6MzI6MjYrMDg6MDAiIHhtcDpNZXRhZGF0YURhdGU9IjIwMjMtMDEtMjlUMTk6MzI6MjYrMDg6MDAiIGRjOmZvcm1hdD0iaW1hZ2UvcG5nIiBwaG90b3Nob3A6Q29sb3JNb2RlPSIzIiBwaG90b3Nob3A6SUNDUHJvZmlsZT0iVTMySjU5eCIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpmOWQ1ODk4ZC04ZThlLTc3NDgtOTVhZS0zZjQ3NmQ1NTFhMjgiIHhtcE1NOkRvY3VtZW50SUQ9ImFkb2JlOmRvY2lkOnBob3Rvc2hvcDo5YjQ3MDdmOC1kZDgwLWExNGMtOTQxMy1kYmM4MDk5ODNhZWMiIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo0NDMwZGIxOS0xNTg1LTQzOTktOWViMy1jZWY1MTJlNDIyMmMiPiA8cGhvdG9zaG9wOkRvY3VtZW50QW5jZXN0b3JzPiA8cmRmOkJhZz4gPHJkZjpsaT5hZG9iZTpkb2NpZDpwaG90b3Nob3A6OWI0NzA3ZjgtZGQ4MC1hMTRjLTk0MTMtZGJjODA5OTgzYWVjPC9yZGY6bGk+IDwvcmRmOkJhZz4gPC9waG90b3Nob3A6RG9jdW1lbnRBbmNlc3RvcnM+IDx4bXBNTTpIaXN0b3J5PiA8cmRmOlNlcT4gPHJkZjpsaSBzdEV2dDphY3Rpb249ImNyZWF0ZWQiIHN0RXZ0Omluc3RhbmNlSUQ9InhtcC5paWQ6NDQzMGRiMTktMTU4NS00Mzk5LTllYjMtY2VmNTEyZTQyMjJjIiBzdEV2dDp3aGVuPSIyMDIxLTA1LTEwVDE1OjQwOjE1KzA4OjAwIiBzdEV2dDpzb2Z0d2FyZUFnZW50PSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxOSAoTWFjaW50b3NoKSIvPiA8cmRmOmxpIHN0RXZ0OmFjdGlvbj0ic2F2ZWQiIHN0RXZ0Omluc3RhbmNlSUQ9InhtcC5paWQ6NjlkOTIxM2MtYjYyNi00MWNlLTlkMDctYjI0Y2JhOTllYzkwIiBzdEV2dDp3aGVuPSIyMDIxLTA1LTEwVDE1OjQzOjE0KzA4OjAwIiBzdEV2dDpzb2Z0d2FyZUFnZW50PSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxOSAoTWFjaW50b3NoKSIgc3RFdnQ6Y2hhbmdlZD0iLyIvPiA8cmRmOmxpIHN0RXZ0OmFjdGlvbj0iY29udmVydGVkIiBzdEV2dDpwYXJhbWV0ZXJzPSJmcm9tIGFwcGxpY2F0aW9uL3ZuZC5hZG9iZS5waG90b3Nob3AgdG8gaW1hZ2UvcG5nIi8+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJkZXJpdmVkIiBzdEV2dDpwYXJhbWV0ZXJzPSJjb252ZXJ0ZWQgZnJvbSBhcHBsaWNhdGlvbi92bmQuYWRvYmUucGhvdG9zaG9wIHRvIGltYWdlL3BuZyIvPiA8cmRmOmxpIHN0RXZ0OmFjdGlvbj0ic2F2ZWQiIHN0RXZ0Omluc3RhbmNlSUQ9InhtcC5paWQ6NTMzYTIwOWUtOTA4MS00Nzk2LTk4NmMtNTE4NWZlNjMyMzIwIiBzdEV2dDp3aGVuPSIyMDIxLTA1LTEwVDE1OjQzOjE0KzA4OjAwIiBzdEV2dDpzb2Z0d2FyZUFnZW50PSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxOSAoTWFjaW50b3NoKSIgc3RFdnQ6Y2hhbmdlZD0iLyIvPiA8cmRmOmxpIHN0RXZ0OmFjdGlvbj0ic2F2ZWQiIHN0RXZ0Omluc3RhbmNlSUQ9InhtcC5paWQ6ZjlkNTg5OGQtOGU4ZS03NzQ4LTk1YWUtM2Y0NzZkNTUxYTI4IiBzdEV2dDp3aGVuPSIyMDIzLTAxLTI5VDE5OjMyOjI2KzA4OjAwIiBzdEV2dDpzb2Z0d2FyZUFnZW50PSJBZG9iZSBQaG90b3Nob3AgMjEuMCAoV2luZG93cykiIHN0RXZ0OmNoYW5nZWQ9Ii8iLz4gPC9yZGY6U2VxPiA8L3htcE1NOkhpc3Rv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);flex-direction:column;align-items:center}.defaultAvatarUrl.data-v-15a8395e{width:150rpx;height:150rpx;background-color:#007aff;border-radius:100%;justify-content:center;align-items:center}.user-avatar-img.data-v-15a8395e{width:150rpx;height:150rpx;border-radius:100%;background-color:rgba(0,0,0,.15)}.logo-title.data-v-15a8395e{flex:1;align-items:center;justify-content:space-between;flex-direction:row}.uer-name.data-v-15a8395e{height:100rpx;line-height:100rpx;font-size:38rpx;color:#fff}.center-list.data-v-15a8395e{margin-bottom:30rpx;background-color:#f9f9f9}.center-list-cell.data-v-15a8395e{width:750rpx;background-color:#007aff;height:40rpx}.user-info-panel.data-v-15a8395e{background-color:#fff;margin:20rpx 30rpx;padding:30rpx;border-radius:12rpx;box-shadow:0 2rpx 8rpx rgba(0,0,0,.1)}.info-row.data-v-15a8395e{display:flex;flex-direction:row;align-items:center;margin-bottom:20rpx}.info-row.data-v-15a8395e:last-child{margin-bottom:0}.info-label.data-v-15a8395e{font-size:28rpx;color:#666;width:140rpx;flex-shrink:0}.info-value.data-v-15a8395e{font-size:28rpx;color:#333;flex:1;word-break:break-all}.grid.data-v-15a8395e{background-color:#fff;margin-bottom:6px}.uni-grid .text.data-v-15a8395e{font-size:16px;height:25px;line-height:25px;color:#817f82}.uni-grid .item.data-v-15a8395e .uni-grid-item__box{justify-content:center;align-items:center}.device-text-wrapper.data-v-15a8395e{display:flex;flex-direction:column;align-items:center;justify-content:center}.device-label.data-v-15a8395e{font-size:14px;color:#817f82;line-height:20px;margin-bottom:2px}.device-count.data-v-15a8395e{font-size:18px;font-weight:700;color:#007aff;line-height:22px}.center-list.data-v-15a8395e .uni-list--border:after{transform:scaleY(.2);margin-left:80rpx}.center-list.data-v-15a8395e .uni-list--border-top,.center-list.data-v-15a8395e .uni-list--border-bottom{display:none}.item-footer.data-v-15a8395e{flex-direction:row;align-items:center}.item-footer-text.data-v-15a8395e{color:#999;font-size:24rpx;padding-right:10rpx}.item-footer-badge.data-v-15a8395e{width:20rpx;height:20rpx;border-radius:50%;background-color:#dd524d}.change-pwd-dialog.data-v-15a8395e{padding:40rpx 30rpx 30rpx;background-color:#fff;border-radius:16rpx;width:600rpx}.change-pwd-title.data-v-15a8395e{font-size:34rpx;font-weight:700;text-align:center;margin-bottom:30rpx}.change-pwd-field.data-v-15a8395e{margin-bottom:20rpx}.change-pwd-label.data-v-15a8395e{display:block;font-size:26rpx;color:#666;margin-bottom:10rpx}.change-pwd-actions.data-v-15a8395e{margin-top:20rpx;display:flex;flex-direction:row;justify-content:flex-end}.dialog-btn.data-v-15a8395e{min-width:140rpx;height:70rpx;line-height:70rpx;font-size:28rpx;border-radius:8rpx;padding:0 24rpx}.dialog-btn.cancel.data-v-15a8395e{background-color:#f5f5f5;color:#333;margin-right:20rpx}.dialog-btn.confirm.data-v-15a8395e{background-color:#007aff;color:#fff}.dialog-btn.data-v-15a8395e:after{border:none}
diff --git a/unpackage/dist/build/mp-weixin/uni_modules/uni-id-pages/components/cloud-image/cloud-image.js b/unpackage/dist/build/mp-weixin/uni_modules/uni-id-pages/components/cloud-image/cloud-image.js
index 29c5a4e..a45a5ab 100644
--- a/unpackage/dist/build/mp-weixin/uni_modules/uni-id-pages/components/cloud-image/cloud-image.js
+++ b/unpackage/dist/build/mp-weixin/uni_modules/uni-id-pages/components/cloud-image/cloud-image.js
@@ -1 +1 @@
-"use strict";const e=require("../../../../common/vendor.js"),t={name:"cloud-image",emits:["click"],props:{mode:{type:String,default:()=>"widthFix"},src:{default:()=>""},width:{type:String,default:()=>"100rpx"},height:{type:String,default:()=>"100rpx"}},watch:{src:{handler(t){t&&"cloud://"==t.substring(0,8)?e._r.getTempFileURL({fileList:[t]}).then((e=>{this.cSrc=e.fileList[0].tempFileURL})):this.cSrc=t},immediate:!0}},methods:{onClick(){this.$emit("click")}},data:()=>({cSrc:!1})};const i=e._export_sfc(t,[["render",function(t,i,c,r,n,d){return e.e({a:n.cSrc},n.cSrc?{b:c.width,c:c.height,d:n.cSrc,e:c.mode}:{},{f:e.o(((...e)=>d.onClick&&d.onClick(...e)),"93"),g:c.width,h:c.height})}]]);wx.createComponent(i);
+"use strict";const t=require("../../../../common/vendor.js"),e={name:"cloud-image",emits:["click","load-error"],props:{mode:{type:String,default:()=>"aspectFill"},src:{default:()=>""},width:{type:String,default:()=>"100rpx"},height:{type:String,default:()=>"100rpx"}},watch:{src:{handler(e){if(this.cSrc="",!e||"string"!=typeof e)return;const r=e.trim();r&&("cloud://"===r.substring(0,8)?t._r.getTempFileURL({fileList:[r]}).then((t=>{const e=t&&t.fileList&&t.fileList[0]&&t.fileList[0].tempFileURL;e?this.cSrc=e:this.$emit("load-error")})).catch((()=>{this.$emit("load-error")})):this.cSrc=r)},immediate:!0}},methods:{onClick(){this.$emit("click")},onImageError(){this.cSrc="",this.$emit("load-error")}},data:()=>({cSrc:""})};const r=t._export_sfc(e,[["render",function(e,r,i,c,o,s){return t.e({a:o.cSrc},o.cSrc?{b:i.width,c:i.height,d:o.cSrc,e:i.mode,f:t.o(((...t)=>s.onImageError&&s.onImageError(...t)),"9a")}:{},{g:t.o(((...t)=>s.onClick&&s.onClick(...t)),"93"),h:i.width,i:i.height})}],["__scopeId","data-v-11b6d0d3"]]);wx.createComponent(r);
diff --git a/unpackage/dist/build/mp-weixin/uni_modules/uni-id-pages/components/cloud-image/cloud-image.wxml b/unpackage/dist/build/mp-weixin/uni_modules/uni-id-pages/components/cloud-image/cloud-image.wxml
index c5644ff..60c20b6 100644
--- a/unpackage/dist/build/mp-weixin/uni_modules/uni-id-pages/components/cloud-image/cloud-image.wxml
+++ b/unpackage/dist/build/mp-weixin/uni_modules/uni-id-pages/components/cloud-image/cloud-image.wxml
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/unpackage/dist/build/mp-weixin/uni_modules/uni-id-pages/components/cloud-image/cloud-image.wxss b/unpackage/dist/build/mp-weixin/uni_modules/uni-id-pages/components/cloud-image/cloud-image.wxss
new file mode 100644
index 0000000..f284323
--- /dev/null
+++ b/unpackage/dist/build/mp-weixin/uni_modules/uni-id-pages/components/cloud-image/cloud-image.wxss
@@ -0,0 +1 @@
+.cloud-image-box.data-v-11b6d0d3{display:flex;justify-content:center;align-items:center;overflow:hidden}
diff --git a/unpackage/dist/build/mp-weixin/uni_modules/uni-id-pages/pages/login/login-withpwd.js b/unpackage/dist/build/mp-weixin/uni_modules/uni-id-pages/pages/login/login-withpwd.js
index 926a2fa..e226d60 100644
--- a/unpackage/dist/build/mp-weixin/uni_modules/uni-id-pages/pages/login/login-withpwd.js
+++ b/unpackage/dist/build/mp-weixin/uni_modules/uni-id-pages/pages/login/login-withpwd.js
@@ -1 +1 @@
-"use strict";const e=require("../../../../common/vendor.js"),o=require("../../common/login-page.mixin.js"),n=require("../../../../common/store.js"),s=require("../../../../common/config.js"),a={mixins:[o.mixin],data:()=>({password:"aaa123",username:"15810181776",captcha:"",needCaptcha:!1,focusUsername:!1,focusPassword:!1,logo:"/static/logo.png"}),onShow(){},methods:{toRetrievePwd(){let o="/uni_modules/uni-id-pages/pages/retrieve/retrieve";/^1\d{10}$/.test(this.username)&&(o+=`?phoneNumber=${this.username}`),e.index.navigateTo({url:o})},async pwdLogin(){if(!this.password.length)return this.focusPassword=!0,e.index.showToast({title:"请输入密码",icon:"none",duration:3e3});if(!this.username.length)return this.focusUsername=!0,e.index.showToast({title:"请输入手机号/用户名/邮箱",icon:"none",duration:3e3});if(this.needAgreements&&!this.agree)return this.$refs.agreements.popup(this.pwdLogin);const o={userName:this.username,password:this.password};e.index.showLoading({title:"正在登录...",mask:!0});try{const i=s.getApiUrl("/api/sys/auth/login");console.log("[Login Page] 开始调用登录接口:",{url:i,method:"POST",payload:o});const t=(await new Promise(((n,s)=>{console.log("[Login Page] 发起 uni.request 调用"),e.index.request({url:i,method:"POST",header:{"Content-Type":"application/json"},data:o,success:e=>{console.log("[Login Page] 登录请求成功:",{statusCode:e.statusCode,hasData:!!e.data,dataType:typeof e.data}),n(e)},fail:e=>{console.error("[Login Page] 登录请求失败:",{error:e,errorMessage:e.errMsg||"未知错误"}),s(e)}})}))).data||{};if(!t.success||!t.data)return e.index.showToast({title:t.message||"登录失败",icon:"none",duration:3e3});const r=t.data;console.log("[Login Success] current user role info:",{roleName:r.roleName||"",scenario:r.scenario||""}),r.token?(e.index.setStorageSync("backend-token",r.token),console.log("[Login] token 已保存,后续请求将自动在 header 中携带")):console.warn("[Login] 登录响应中未包含 token");try{e.index.setStorageSync("backend-login-response",r),e.index.setStorageSync("backend-user-id",r.userId),r.tenantId?(e.index.setStorageSync("backend-tenant-id",r.tenantId),console.log("[Login] tenantId 已保存:",r.tenantId)):console.warn("[Login] 登录响应中未包含 tenantId,后续请求可能失败"),r.roleName&&(e.index.setStorageSync("backend-role-name",r.roleName),console.log("[Login] roleName 已保存:",r.roleName)),r.scenario&&(e.index.setStorageSync("backend-scenario",r.scenario),console.log("[Login] scenario 已保存:",r.scenario))}catch(a){console.error("缓存登录信息失败:",a)}try{e.index.$emit("tabbar:refresh")}catch(a){console.warn("触发 tabbar 刷新事件失败:",a)}try{n.mutations.setUserInfo({username:r.userName,mobile:r.phone,email:r.email,avatar_file:r.avatar?{url:r.avatar}:void 0},{cover:!0}),console.log("[Login] Store updated successfully, hasLogin:",n.store.hasLogin,"userInfo:",n.store.userInfo)}catch(a){console.error("更新本地用户信息失败:",a)}e.index.showToast({title:t.message||"登录成功",icon:"none",duration:800});try{const e=getApp({allowDefault:!0});e&&e.setGlobalRoleInfo&&e.setGlobalRoleInfo()}catch(a){console.warn("[Login] Failed to update global role info:",a)}setTimeout((()=>{console.log("[Login] Preparing to navigate after login, hasLogin:",n.store.hasLogin),e.index.switchTab({url:"/pages/workbench/workbench",success:()=>{console.log("[Login] Navigation successful, checking login status after navigation"),setTimeout((()=>{console.log("[Login] Final check - hasLogin:",n.store.hasLogin,"backend-token exists:",!!e.index.getStorageSync("backend-token"))}),500)},fail:e=>{console.error("[Login] Navigation failed:",e)}})}),500)}catch(i){console.error("调用登录接口失败:",i),e.index.showToast({title:"网络异常,登录失败",icon:"none",duration:3e3})}finally{e.index.hideLoading()}},toRegister(){e.index.navigateTo({url:this.config.isAdmin?"/uni_modules/uni-id-pages/pages/register/register-admin":"/uni_modules/uni-id-pages/pages/register/register",fail(e){console.error(e)}})}}};if(!Array){(e.resolveComponent("uni-easyinput")+e.resolveComponent("uni-forms-item")+e.resolveComponent("uni-forms")+e.resolveComponent("uni-captcha")+e.resolveComponent("uni-id-pages-agreements")+e.resolveComponent("uni-id-pages-fab-login"))()}Math||((()=>"../../../uni-easyinput/components/uni-easyinput/uni-easyinput.js")+(()=>"../../../uni-forms/components/uni-forms-item/uni-forms-item.js")+(()=>"../../../uni-forms/components/uni-forms/uni-forms.js")+(()=>"../../../uni-captcha/components/uni-captcha/uni-captcha.js")+(()=>"../../components/uni-id-pages-agreements/uni-id-pages-agreements.js")+(()=>"../../components/uni-id-pages-fab-login/uni-id-pages-fab-login.js"))();const i=e._export_sfc(a,[["render",function(o,n,s,a,i,t){return e.e({a:i.logo,b:e.o((e=>i.focusUsername=!1),"ff"),c:e.o((e=>i.username=e),"c9"),d:e.p({focus:i.focusUsername,inputBorder:!1,placeholder:"请输入手机号/用户名/邮箱",trim:"all",modelValue:i.username}),e:e.p({name:"username"}),f:e.o((e=>i.focusPassword=!1),"27"),g:e.o((e=>i.password=e),"75"),h:e.p({focus:i.focusPassword,clearable:!0,type:"password",inputBorder:!1,placeholder:"请输入密码",trim:"all",modelValue:i.password}),i:e.p({name:"password"}),j:i.needCaptcha},i.needCaptcha?{k:e.sr("captcha","6464e2fa-5"),l:e.o((e=>i.captcha=e),"32"),m:e.p({focus:!0,scene:"login-by-pwd",modelValue:i.captcha})}:{},{n:e.sr("agreements","6464e2fa-6"),o:e.p({scope:"login"}),p:e.o(((...e)=>t.pwdLogin&&t.pwdLogin(...e)),"87"),q:!o.config.isAdmin},o.config.isAdmin?{}:{r:e.o(((...e)=>t.toRetrievePwd&&t.toRetrievePwd(...e)),"b1")},{s:e.t(o.config.isAdmin?"注册管理员账号":"注册账号"),t:e.o(((...e)=>t.toRegister&&t.toRegister(...e)),"7e"),v:e.sr("uniFabLogin","6464e2fa-7")})}],["__scopeId","data-v-6464e2fa"]]);wx.createPage(i);
+"use strict";const e=require("../../../../common/vendor.js"),o=require("../../common/login-page.mixin.js"),n=require("../../../../common/store.js"),s=require("../../../../common/config.js"),a={mixins:[o.mixin],data:()=>({password:"aaa123",username:"15810181776",captcha:"",needCaptcha:!1,focusUsername:!1,focusPassword:!1,logo:"/static/logo.png"}),onShow(){},methods:{toRetrievePwd(){let o="/uni_modules/uni-id-pages/pages/retrieve/retrieve";/^1\d{10}$/.test(this.username)&&(o+=`?phoneNumber=${this.username}`),e.index.navigateTo({url:o})},async pwdLogin(){if(!this.password.length)return this.focusPassword=!0,e.index.showToast({title:"请输入密码",icon:"none",duration:3e3});if(!this.username.length)return this.focusUsername=!0,e.index.showToast({title:"请输入手机号/用户名/邮箱",icon:"none",duration:3e3});if(this.needAgreements&&!this.agree)return this.$refs.agreements.popup(this.pwdLogin);const o={userName:this.username,password:this.password};e.index.showLoading({title:"正在登录...",mask:!0});try{const t=s.getApiUrl("/api/sys/auth/login");console.log("[Login Page] 开始调用登录接口:",{url:t,method:"POST",payload:o});const i=(await new Promise(((n,s)=>{console.log("[Login Page] 发起 uni.request 调用"),e.index.request({url:t,method:"POST",header:{"Content-Type":"application/json"},data:o,success:e=>{console.log("[Login Page] 登录请求成功:",{statusCode:e.statusCode,hasData:!!e.data,dataType:typeof e.data}),n(e)},fail:e=>{console.error("[Login Page] 登录请求失败:",{error:e,errorMessage:e.errMsg||"未知错误"}),s(e)}})}))).data||{};if(!i.success||!i.data)return e.index.showToast({title:i.message||"登录失败",icon:"none",duration:3e3});const r=i.data;console.log("[Login Success] current user role info:",{roleName:r.roleName||"",scenario:r.scenario||""}),r.token?(e.index.setStorageSync("backend-token",r.token),console.log("[Login] token 已保存,后续请求将自动在 header 中携带")):console.warn("[Login] 登录响应中未包含 token");try{e.index.setStorageSync("backend-login-response",r),e.index.setStorageSync("backend-user-id",r.userId),r.tenantId?(e.index.setStorageSync("backend-tenant-id",r.tenantId),console.log("[Login] tenantId 已保存:",r.tenantId)):console.warn("[Login] 登录响应中未包含 tenantId,后续请求可能失败"),r.roleName&&(e.index.setStorageSync("backend-role-name",r.roleName),console.log("[Login] roleName 已保存:",r.roleName)),r.scenario&&(e.index.setStorageSync("backend-scenario",r.scenario),console.log("[Login] scenario 已保存:",r.scenario))}catch(a){console.error("缓存登录信息失败:",a)}try{e.index.$emit("tabbar:refresh")}catch(a){console.warn("触发 tabbar 刷新事件失败:",a)}try{const e=null!=r.avatar&&""!==r.avatar?String(r.avatar).trim():"";n.mutations.setUserInfo({username:r.userName,mobile:r.phone,email:r.email,avatar_file:e?{url:e}:void 0},{cover:!0}),console.log("[Login] Store updated successfully, hasLogin:",n.store.hasLogin,"userInfo:",n.store.userInfo)}catch(a){console.error("更新本地用户信息失败:",a)}e.index.showToast({title:i.message||"登录成功",icon:"none",duration:800});try{const e=getApp({allowDefault:!0});e&&e.setGlobalRoleInfo&&e.setGlobalRoleInfo()}catch(a){console.warn("[Login] Failed to update global role info:",a)}setTimeout((()=>{console.log("[Login] Preparing to navigate after login, hasLogin:",n.store.hasLogin),e.index.switchTab({url:"/pages/workbench/workbench",success:()=>{console.log("[Login] Navigation successful, checking login status after navigation"),setTimeout((()=>{console.log("[Login] Final check - hasLogin:",n.store.hasLogin,"backend-token exists:",!!e.index.getStorageSync("backend-token"))}),500)},fail:e=>{console.error("[Login] Navigation failed:",e)}})}),500)}catch(t){console.error("调用登录接口失败:",t),e.index.showToast({title:"网络异常,登录失败",icon:"none",duration:3e3})}finally{e.index.hideLoading()}},toRegister(){e.index.navigateTo({url:this.config.isAdmin?"/uni_modules/uni-id-pages/pages/register/register-admin":"/uni_modules/uni-id-pages/pages/register/register",fail(e){console.error(e)}})}}};if(!Array){(e.resolveComponent("uni-easyinput")+e.resolveComponent("uni-forms-item")+e.resolveComponent("uni-forms")+e.resolveComponent("uni-captcha")+e.resolveComponent("uni-id-pages-agreements")+e.resolveComponent("uni-id-pages-fab-login"))()}Math||((()=>"../../../uni-easyinput/components/uni-easyinput/uni-easyinput.js")+(()=>"../../../uni-forms/components/uni-forms-item/uni-forms-item.js")+(()=>"../../../uni-forms/components/uni-forms/uni-forms.js")+(()=>"../../../uni-captcha/components/uni-captcha/uni-captcha.js")+(()=>"../../components/uni-id-pages-agreements/uni-id-pages-agreements.js")+(()=>"../../components/uni-id-pages-fab-login/uni-id-pages-fab-login.js"))();const t=e._export_sfc(a,[["render",function(o,n,s,a,t,i){return e.e({a:t.logo,b:e.o((e=>t.focusUsername=!1),"ff"),c:e.o((e=>t.username=e),"c9"),d:e.p({focus:t.focusUsername,inputBorder:!1,placeholder:"请输入手机号/用户名/邮箱",trim:"all",modelValue:t.username}),e:e.p({name:"username"}),f:e.o((e=>t.focusPassword=!1),"27"),g:e.o((e=>t.password=e),"75"),h:e.p({focus:t.focusPassword,clearable:!0,type:"password",inputBorder:!1,placeholder:"请输入密码",trim:"all",modelValue:t.password}),i:e.p({name:"password"}),j:t.needCaptcha},t.needCaptcha?{k:e.sr("captcha","cb74ec4b-5"),l:e.o((e=>t.captcha=e),"32"),m:e.p({focus:!0,scene:"login-by-pwd",modelValue:t.captcha})}:{},{n:e.sr("agreements","cb74ec4b-6"),o:e.p({scope:"login"}),p:e.o(((...e)=>i.pwdLogin&&i.pwdLogin(...e)),"87"),q:!o.config.isAdmin},o.config.isAdmin?{}:{r:e.o(((...e)=>i.toRetrievePwd&&i.toRetrievePwd(...e)),"b1")},{s:e.t(o.config.isAdmin?"注册管理员账号":"注册账号"),t:e.o(((...e)=>i.toRegister&&i.toRegister(...e)),"7e"),v:e.sr("uniFabLogin","cb74ec4b-7")})}],["__scopeId","data-v-cb74ec4b"]]);wx.createPage(t);
diff --git a/unpackage/dist/build/mp-weixin/uni_modules/uni-id-pages/pages/login/login-withpwd.wxml b/unpackage/dist/build/mp-weixin/uni_modules/uni-id-pages/pages/login/login-withpwd.wxml
index 7d9ad35..599ea4e 100644
--- a/unpackage/dist/build/mp-weixin/uni_modules/uni-id-pages/pages/login/login-withpwd.wxml
+++ b/unpackage/dist/build/mp-weixin/uni_modules/uni-id-pages/pages/login/login-withpwd.wxml
@@ -1 +1 @@
-账号密码登录忘记了?找回密码{{s}}
\ No newline at end of file
+账号密码登录忘记了?找回密码{{s}}
\ No newline at end of file
diff --git a/unpackage/dist/build/mp-weixin/uni_modules/uni-id-pages/pages/login/login-withpwd.wxss b/unpackage/dist/build/mp-weixin/uni_modules/uni-id-pages/pages/login/login-withpwd.wxss
index 4f146a2..05f5d17 100644
--- a/unpackage/dist/build/mp-weixin/uni_modules/uni-id-pages/pages/login/login-withpwd.wxss
+++ b/unpackage/dist/build/mp-weixin/uni_modules/uni-id-pages/pages/login/login-withpwd.wxss
@@ -1 +1 @@
-.uni-content.data-v-6464e2fa{padding:0 60rpx}.login-logo.data-v-6464e2fa{display:none}@media screen and (min-width: 690px){.uni-content.data-v-6464e2fa{padding:0;max-width:300px;margin-left:calc(50% - 200px)}}.uni-content view.data-v-6464e2fa{box-sizing:border-box}.title.data-v-6464e2fa{display:flex;padding:18px 0;font-weight:800;flex-direction:column}.tip.data-v-6464e2fa{display:flex;color:#bdbdc0;font-size:11px;margin:6px 0}.uni-content.data-v-6464e2fa .uni-easyinput__content,.input-box.data-v-6464e2fa{height:44px;background-color:#f8f8f8!important;border-radius:0;font-size:14px;display:flex;flex:1}.link.data-v-6464e2fa{color:#04498c;cursor:pointer}.uni-content.data-v-6464e2fa .uni-forms-item__inner{padding-bottom:8px}.uni-btn.data-v-6464e2fa{text-align:center;height:40px;line-height:40px;margin:15px 0 10px;color:#fff!important;border-radius:5px;font-size:16px}.uni-body.uni_modules-uni-id-pages-pages-login-login-withoutpwd.data-v-6464e2fa{height:auto!important}@media screen and (min-width: 690px){.uni-content.data-v-6464e2fa{height:auto}}.forget.data-v-6464e2fa{font-size:12px;color:#8a8f8b}.link-box.data-v-6464e2fa{display:flex;flex-direction:row;justify-content:space-between;margin-top:20px}.link.data-v-6464e2fa{font-size:12px}
+.uni-content.data-v-cb74ec4b{padding:0 60rpx}.login-logo.data-v-cb74ec4b{display:none}@media screen and (min-width: 690px){.uni-content.data-v-cb74ec4b{padding:0;max-width:300px;margin-left:calc(50% - 200px)}}.uni-content view.data-v-cb74ec4b{box-sizing:border-box}.title.data-v-cb74ec4b{display:flex;padding:18px 0;font-weight:800;flex-direction:column}.tip.data-v-cb74ec4b{display:flex;color:#bdbdc0;font-size:11px;margin:6px 0}.uni-content.data-v-cb74ec4b .uni-easyinput__content,.input-box.data-v-cb74ec4b{height:44px;background-color:#f8f8f8!important;border-radius:0;font-size:14px;display:flex;flex:1}.link.data-v-cb74ec4b{color:#04498c;cursor:pointer}.uni-content.data-v-cb74ec4b .uni-forms-item__inner{padding-bottom:8px}.uni-btn.data-v-cb74ec4b{text-align:center;height:40px;line-height:40px;margin:15px 0 10px;color:#fff!important;border-radius:5px;font-size:16px}.uni-body.uni_modules-uni-id-pages-pages-login-login-withoutpwd.data-v-cb74ec4b{height:auto!important}@media screen and (min-width: 690px){.uni-content.data-v-cb74ec4b{height:auto}}.forget.data-v-cb74ec4b{font-size:12px;color:#8a8f8b}.link-box.data-v-cb74ec4b{display:flex;flex-direction:row;justify-content:space-between;margin-top:20px}.link.data-v-cb74ec4b{font-size:12px}