Browse Source

Merge branch 'dev-shujirizhi' into dev

shibei_master
13176889840 4 years ago
parent
commit
eedff88aaf
  1. 16
      src/views/modules/secretaryLog/difficulty/difficultyForm.vue
  2. 15
      src/views/modules/secretaryLog/humanisticCare/careForm.vue
  3. 2
      src/views/modules/secretaryLog/humanisticCare/careList.vue
  4. 12
      src/views/modules/secretaryLog/workLog/form.vue

16
src/views/modules/secretaryLog/difficulty/difficultyForm.vue

@ -15,9 +15,9 @@
style="display: block"> style="display: block">
<el-input class="item_width_1" <el-input class="item_width_1"
type="textarea" type="textarea"
maxlength="100" maxlength="1000"
show-word-limit show-word-limit
:rows="4" :autosize="{ minRows: 4, maxRows: 10 }"
clearable clearable
placeholder="请输入内容" placeholder="请输入内容"
v-model="formData.content"></el-input> v-model="formData.content"></el-input>
@ -29,9 +29,9 @@
style="display: block"> style="display: block">
<el-input class="item_width_1" <el-input class="item_width_1"
type="textarea" type="textarea"
maxlength="100" maxlength="1000"
show-word-limit show-word-limit
:rows="4" :autosize="{ minRows: 4, maxRows: 10 }"
clearable clearable
placeholder="请输入解决方式" placeholder="请输入解决方式"
v-model="formData.resolveWay"></el-input> v-model="formData.resolveWay"></el-input>
@ -72,9 +72,9 @@
style="display: block"> style="display: block">
<el-input class="item_width_1" <el-input class="item_width_1"
type="textarea" type="textarea"
maxlength="100" maxlength="1000"
show-word-limit show-word-limit
:rows="4" :autosize="{ minRows: 4, maxRows: 10 }"
clearable clearable
placeholder="请输入备注" placeholder="请输入备注"
v-model="formData.remark"></el-input> v-model="formData.remark"></el-input>
@ -386,6 +386,10 @@ export default {
<style lang="scss" scoped> <style lang="scss" scoped>
.item_width_1 { .item_width_1 {
width: 560px; width: 560px;
::v-deep .el-input__count {
right: 20px;
line-height: 12px;
}
} }
.item_width_2 { .item_width_2 {
width: 220px; width: 220px;

15
src/views/modules/secretaryLog/humanisticCare/careForm.vue

@ -58,9 +58,9 @@
style="display: block"> style="display: block">
<el-input class="item_width_1" <el-input class="item_width_1"
type="textarea" type="textarea"
maxlength="100" maxlength="1000"
show-word-limit show-word-limit
:rows="4" :autosize="{ minRows: 4, maxRows: 10 }"
clearable clearable
placeholder="请输入关怀事项" placeholder="请输入关怀事项"
v-model="formData.content"></el-input> v-model="formData.content"></el-input>
@ -142,7 +142,8 @@
<div class="div_btn"> <div class="div_btn">
<el-button size="small" <el-button size="small"
@click="handleCancle"> </el-button> @click="handleCancle"> </el-button>
<el-button v-if="formType != 'look'" size="small" <el-button v-if="formType != 'look'"
size="small"
type="primary" type="primary"
:disabled="btnDisable" :disabled="btnDisable"
@click="handleComfirm"> </el-button> @click="handleComfirm"> </el-button>
@ -186,7 +187,7 @@ export default {
content: '',//怀 content: '',//怀
concernType: '',//怀 concernType: '',//怀
resiName: '',//怀 resiName: '',//怀
status: '',// 0 1 status: 0,// 0 1
phone: '',// phone: '',//
address: '',// address: '',//
scheduledTime: '',//怀yyyy-mm-dd hh:mm scheduledTime: '',//怀yyyy-mm-dd hh:mm
@ -385,7 +386,7 @@ export default {
content: '',//怀 content: '',//怀
concernType: '',//怀 concernType: '',//怀
resiName: '',//怀 resiName: '',//怀
status: '',// 0 1 status: 0,// 0 1
phone: '',// phone: '',//
address: '',// address: '',//
scheduledTime: '',//怀yyyy-mm-dd hh:mm scheduledTime: '',//怀yyyy-mm-dd hh:mm
@ -461,6 +462,10 @@ export default {
<style lang="scss" scoped> <style lang="scss" scoped>
.item_width_1 { .item_width_1 {
width: 560px; width: 560px;
::v-deep .el-input__count {
right: 20px;
line-height: 12px;
}
} }
.item_width_2 { .item_width_2 {
width: 220px; width: 220px;

2
src/views/modules/secretaryLog/humanisticCare/careList.vue

@ -448,7 +448,7 @@ export default {
// //
async handleExport (row) { async handleExport (row) {
let title = '人员关怀' let title = '人员关怀详情'
let url = `/gov/project/memoConcern/${row.id}/exportWord` let url = `/gov/project/memoConcern/${row.id}/exportWord`
let params = {} let params = {}

12
src/views/modules/secretaryLog/workLog/form.vue

@ -14,9 +14,9 @@
style="display: block"> style="display: block">
<el-input class="item_width_1" <el-input class="item_width_1"
type="textarea" type="textarea"
maxlength="100" maxlength="1000"
show-word-limit show-word-limit
:rows="4" :autosize="{ minRows: 4, maxRows: 10 }"
clearable clearable
:disabled="disabled" :disabled="disabled"
placeholder="请输入内容" placeholder="请输入内容"
@ -29,9 +29,9 @@
style="display: block"> style="display: block">
<el-input class="item_width_1" <el-input class="item_width_1"
type="textarea" type="textarea"
maxlength="100" maxlength="1000"
show-word-limit show-word-limit
:rows="4" :autosize="{ minRows: 4, maxRows: 10 }"
clearable clearable
:disabled="disabled" :disabled="disabled"
placeholder="请输入工作事项" placeholder="请输入工作事项"
@ -357,6 +357,10 @@ export default {
<style lang="scss" scoped> <style lang="scss" scoped>
.item_width_1 { .item_width_1 {
width: 560px; width: 560px;
::v-deep .el-input__count {
right: 20px;
line-height: 12px;
}
} }
.item_width_2 { .item_width_2 {
width: 220px; width: 220px;

Loading…
Cancel
Save