|
@@ -11,7 +11,7 @@
|
|
|
element-loading-text="拼命加载中"
|
|
|
element-loading-spinner="el-icon-loading"
|
|
|
element-loading-background="rgba(0, 0, 0, 0.8)"
|
|
|
- @close="showModelThis = false;companyNo='';itemlist=[]"
|
|
|
+ @close="handleClose"
|
|
|
>
|
|
|
<el-card style="margin-top: -20px">
|
|
|
<el-row :gutter="10">
|
|
@@ -154,6 +154,12 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
|
+ handleClose() {
|
|
|
+ this.showModelThis = false
|
|
|
+ this.companyNo = ''
|
|
|
+ this.inital = true
|
|
|
+ this.itemlist = []
|
|
|
+ },
|
|
|
handleDepartChange() {
|
|
|
this.$nextTick(() => this.$refs.ruleForm.validateField('itemid'))
|
|
|
},
|
|
@@ -167,12 +173,6 @@ export default {
|
|
|
}
|
|
|
if (this.id === 'add') {
|
|
|
this.rulesThis = this.rules
|
|
|
- } else {
|
|
|
- // if (this.isDetail) {
|
|
|
- // this.rulesThis = {}
|
|
|
- // } else {
|
|
|
- // this.rulesThis = this.rules
|
|
|
- // }
|
|
|
}
|
|
|
this.loading = false
|
|
|
},
|
|
@@ -287,6 +287,7 @@ export default {
|
|
|
this.itemlist = item_list
|
|
|
this.companyList = sitem.company_relaton
|
|
|
this.companyNo = item_companyNo || this.companyList[0].companyCode
|
|
|
+
|
|
|
this.ruleForm = {
|
|
|
id,
|
|
|
mobile: mobile || '',
|
|
@@ -297,11 +298,6 @@ export default {
|
|
|
})
|
|
|
},
|
|
|
async submitForm() {
|
|
|
- // if (!this.ruleForm.itemid || this.ruleForm.itemid.length === 0) {
|
|
|
- // this.$message.warning('请选择部门')
|
|
|
- // return
|
|
|
- // }
|
|
|
-
|
|
|
await this.$refs.ruleForm.validate(async(valid) => {
|
|
|
if (valid) {
|
|
|
if (!this.loading) {
|