Browse Source

24-03-05 我发起的任务查询任务回复修改

master
zelian_wu 2 years ago
parent
commit
491400b965
  1. 14
      src/views/modules/taskmanage/chat-history.vue

14
src/views/modules/taskmanage/chat-history.vue

@ -34,6 +34,13 @@
<el-row> <el-row>
<el-col :span="24" style="margin-top: 30px"> <el-col :span="24" style="margin-top: 30px">
<el-button type="primary" @click="replyDialog()">新增回复</el-button> <el-button type="primary" @click="replyDialog()">新增回复</el-button>
<el-select v-model="dataForm.allOrOne" @change="getDataList" placeholder="请选择">
<el-option value="Y" label="全部"></el-option>
<el-option value="N" label="当前"></el-option>
</el-select>
</el-col>
</el-row>
</el-form>
<el-table <el-table
:data="dataList" :data="dataList"
border border
@ -68,11 +75,6 @@
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
</el-col>
</el-row>
</el-form>
<span slot="footer" class="dialog-footer"> <span slot="footer" class="dialog-footer">
<el-button type="primary" @click="visible = false">取消</el-button> <el-button type="primary" @click="visible = false">取消</el-button>
</span> </span>
@ -148,6 +150,7 @@
taskId: 0, taskId: 0,
site: this.$store.state.user.site, site: this.$store.state.user.site,
fileTypeCode: 'TASK', fileTypeCode: 'TASK',
allOrOne:'Y',
}, },
headerData:{ headerData:{
taskHeader:'', taskHeader:'',
@ -205,6 +208,7 @@
}, },
closeDialog() { closeDialog() {
this.dataForm.allOrOne = 'Y'
//Object.assign(this.$data, this.$options.data()) //Object.assign(this.$data, this.$options.data())
} }
}, },

Loading…
Cancel
Save