|
|
@ -68,7 +68,7 @@ |
|
|
</el-col> |
|
|
</el-col> |
|
|
<el-col :span="12"> |
|
|
<el-col :span="12"> |
|
|
<el-form-item :label="$t('page.business.resource.gsp.zytj')" prop="ghzytj"> |
|
|
<el-form-item :label="$t('page.business.resource.gsp.zytj')" prop="ghzytj"> |
|
|
<el-input type="text" v-model="form.ghzytj" maxlength="50" /> |
|
|
|
|
|
|
|
|
<BusinessSelect v-model="form.ghzytj" dictType="business_zytj"></BusinessSelect> |
|
|
</el-form-item> |
|
|
</el-form-item> |
|
|
</el-col> |
|
|
</el-col> |
|
|
</el-row> |
|
|
</el-row> |
|
|
@ -172,10 +172,11 @@ |
|
|
import { gh, info } from "@/api/business/gsp/gsp" |
|
|
import { gh, info } from "@/api/business/gsp/gsp" |
|
|
import { mapGetters } from 'vuex' |
|
|
import { mapGetters } from 'vuex' |
|
|
import SelectDeptUser from '@/views/business/comps/select/SelectDeptUser'; |
|
|
import SelectDeptUser from '@/views/business/comps/select/SelectDeptUser'; |
|
|
|
|
|
import BusinessSelect from '@/views/business/comps/select/BusinessSelect'; |
|
|
|
|
|
|
|
|
export default { |
|
|
export default { |
|
|
name: "GspGh", |
|
|
name: "GspGh", |
|
|
components: { SelectDeptUser }, |
|
|
|
|
|
|
|
|
components: { SelectDeptUser, BusinessSelect }, |
|
|
data() { |
|
|
data() { |
|
|
return { |
|
|
return { |
|
|
isBatch: false, |
|
|
isBatch: false, |
|
|
@ -275,20 +276,12 @@ export default { |
|
|
}, |
|
|
}, |
|
|
show(row) { |
|
|
show(row) { |
|
|
this.reset() |
|
|
this.reset() |
|
|
this.form.id = row.id |
|
|
|
|
|
this.form.mc = row.mc |
|
|
|
|
|
this.form.bh = row.bh |
|
|
|
|
|
this.form.ph = row.ph |
|
|
|
|
|
this.form.gg = row.gg |
|
|
|
|
|
this.form.ggdw = row.ggdw |
|
|
|
|
|
this.form.yxq = row.yxq |
|
|
|
|
|
this.form.jsrq = row.jsrq |
|
|
|
|
|
this.form.ffrq = row.ffrq |
|
|
|
|
|
this.form.cctj = row.cctj |
|
|
|
|
|
this.form.kc = row.kc |
|
|
|
|
|
this.form.kcdw = row.kcdw |
|
|
|
|
|
this.form.zysx = row.zysx |
|
|
|
|
|
this.open = true |
|
|
|
|
|
|
|
|
info({id: row.id}).then(response => { |
|
|
|
|
|
this.form = response.data |
|
|
|
|
|
this.open = true |
|
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}, |
|
|
}, |
|
|
save() { |
|
|
save() { |
|
|
this.$refs["form"].validate(valid => { |
|
|
this.$refs["form"].validate(valid => { |
|
|
|