修改用户注册问题

featFunction
zhengmingliang 2 years ago
parent 2cfc8fb7bc
commit d931bb5cf6

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

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

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

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

Loading…
Cancel
Save