Browse Source

财务调整

wangqiang 2 years ago
parent
commit
5cff9a85f4

+ 2 - 2
src/views/cw/projectRecords/ProjectRecordsAddForm.vue

@@ -214,7 +214,7 @@
                    ]">
                     <UserSelectSignatory style="width: 100%" ref="userSelect1" :disabled="status === 'audit' || status === 'taskFormDetail'"
 										 :readonly="true" :limit='1' :modelValue="inputForm.projectMasterId"
-										 @getValue='(value) => {changeSignatory1(value)}'></UserSelectSignatory>
+										 @update:modelValue='(value) => {changeSignatory1(value)}'></UserSelectSignatory>
 
 					  </el-form-item>
 				  </el-col>
@@ -224,7 +224,7 @@
                    ]">
                     <UserSelectSignatory style="width: 100%" ref="userSelect2" :disabled="status === 'audit' || status === 'taskFormDetail'"
 										 :modelValue="true" :limit='1' :value="inputForm.realHeader"
-										 @getValue='(value) => {changeSignatory2(value)}'></UserSelectSignatory>
+										 @update:modelValue='(value) => {changeSignatory2(value)}'></UserSelectSignatory>
                   </el-form-item>
                 </el-col>
 

+ 3 - 1
src/views/cw/workClientInfo/clientUserSelect/index.vue

@@ -74,7 +74,9 @@
 			modelValue: {
 				handler(newVal) {
 					this.selectData = [];
-					if (newVal) {
+					if (newVal && newVal !== true) {
+						console.log('newVAal', newVal)
+						console.log('进来了')
 						newVal.split(",").forEach((id) => {
 							userService.queryById(id).then((data) => {
 								if (data && data.id !== "") {