提交 57f6c522 编写于 作者: Yuanzhao.dai's avatar Yuanzhao.dai

Merge branch 'dev-followUp-20190312' of...

Merge branch 'dev-followUp-20190312' of http://192.168.110.53/com.pica.cloud.education.frontend/pica.cloud.web-education-admin into dev-followUp-20190312
......@@ -75,6 +75,26 @@
</el-row>
</div>
</div>
<el-dialog title="变更随访状态" :visible.sync="dialogFormVisible" center :close-on-click-modal="false" :close-on-press-escape="false" width="800px">
<el-form ref="statusForm" :model="statusForm" label-suffix=":" label-width="120px">
<el-form-item label="居民" style="margin-bottom:0;">
<span>{{statusForm.nickname}}</span>
</el-form-item>
<el-form-item label="变更状态">
<span>{{statusForm.status==1 ? '未完成' : '已完成'}}</span>
</el-form-item>
<el-form-item label="变更原因">
<el-input type="textarea"
:rows="2"
placeholder="请输入变更原因"
v-model="statusForm.reason"></el-input>
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button @click="dialogFormVisible = false">取 消</el-button>
<el-button type="primary" @click="dialogFormVisible = false">确 定</el-button>
</div>
</el-dialog>
</div>
</template>
......@@ -120,7 +140,11 @@
pageSize: 10,
total: 0,
pageSizes: [10,20,50,100]
}
},
dialogFormVisible: false,
statusForm: {
reason: ''
},
}
},
methods: {
......@@ -137,7 +161,10 @@
console.log(this.activeName)
},
editRow(row){},
changeStatusRow(row){},
changeStatusRow(row){
this.dialogFormVisible = true;
this.statusForm = row;
},
sendRow(row){},
handleSizeChangePre(pageSize){
this.paginationSet['pageSize'] = pageSize;
......@@ -164,7 +191,7 @@
</script>
<style scoped lang="scss">
@import '../../../style/followup/followup-common';
@import '../../../style/followup/element-reset.css';
.record-list-wrapper{
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册