修改用户注册问题

featFunction
zhengmingliang 2 years ago
parent 2cfc8fb7bc
commit d931bb5cf6

@ -291,7 +291,7 @@ export default {
checkedBusTypes: [],
busQuery: {
page: 1,
limit: 20,
limit: 10,
},
busTypes: [],
multipleSelection: [],

@ -559,7 +559,7 @@ export default {
// tQuery.billType = this.formData.bi;
console.log(tQuery);
debugger
inserThrOrderWeb(tQuery)
.then(response => {
this.loading = false;

@ -119,13 +119,8 @@
</el-button
>
<el-button
type="text"
size="small"
@click.native.stop="deleteDialog(scope.row)"
>删除
</el-button
>
</template>
</el-table-column>
</el-table>

@ -355,6 +355,7 @@
checkType: "",
roles: "",
companyName: ""
},
rowDataRules: {
nickName: [
@ -411,9 +412,8 @@
});
},
selectOne(event) {
this.checkQuery.companyName = event.name;
this.checkQuery.companyId = event.id;
this.checkQuery.companyName =this.sOptions.find(item => item.id == event).name
this.checkQuery.companyId = this.sOptions.find(item => item.id == event).erpId;
this.sSelectStatus = true;
},
remoteMethod(query) {
@ -509,7 +509,7 @@
if (this.$isBlank(this.rowData.companyName)) {
return this.$message.warning("请输入企业名称");
}
this.checkQuery.companyName = this.rowData.companyName;
this.checkRegister();
this.centerDialogVisible = false;
},

Loading…
Cancel
Save