123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392 |
- <template>
- <view class="riskPointDanger-form zhcx-table">
- <uni-forms :modelValue="formData" ref="form" :rules="rules" label-width="90">
- <uni-forms-item label="采空区" name="dangerTitle">
- <view>内蒙古自治区根河市三道桥铅锌矿Ⅲ矿带770中段采空区</view>
- </uni-forms-item>
- <uni-forms-item label="值班记录">
- <radio-group v-model="formData.dangerLevel" style="transform:scale(0.85)" @change="radioChange">
- <label>
- <radio value="2" /><text>正常</text>
- </label>
- <label>
- <radio value="1" checked="true" /><text>异常</text>
- </label>
- </radio-group>
- </uni-forms-item>
- <uni-forms-item label="值班人姓名">
- <uni-easyinput
- trim="all"
- v-model="formData.watchkeeper"
- placeholder="请输入值班人姓名"></uni-easyinput>
- </uni-forms-item>
- <uni-forms-item label="值班日期">
- <uni-datetime-picker class="uni-datetime" @change="onChangeDateTime"></uni-datetime-picker>
- </uni-forms-item>
- <uni-forms-item label="值班记录" name="dangerDesc">
- <textarea name="dangerDesc" v-model="formData.dangerDesc"
- class="textarea"
- placeholder-style="color:grey"
- placeholder="请输入值班记录" />
- </uni-forms-item>
- </uni-forms>
- <view class="uni-btn-v">
- <!--<button type="primary" @click="submit">提交</button>-->
- <button v-for="(item,index) in flowData.taskIns.actionList" :key="index" type="primary"
- @click="submit('form', item.actionId, item.actionCode)">{{ item.actionTitle }} </button>
- <button type="default" @click="Cancel()">取消</button>
- </view>
- </view>
- </template>
- <script>
- import { upload } from '@/api/index';
- import graceChecker from "@/libs/graceChecker.js"
- import { getGroupTree, getDangerCatList, getUserList, add, createDangerIns } from "@/api/danger.js"
- import { toTreeText } from "@/libs/tool.js"
- import { isEmpty } from "@/libs"
- export default {
- data() {
- const currentDate = this.getDate({
- format: true
- })
- return {
- riskPointId: '',
- date: currentDate,
- groupItem: [],
- FilePaths: [],
- userList: [{}, { accountRealName: '' }],
- dangerCatList: [{ dangerCatTitle: '' }],
- index: 0,
- indexs: 0,
- indexUser: 1,
- array: ['自查', '内部反馈', '上级检查', '政府执法'],
- rules: {
- dangerTitle: {
- rules: [{
- required: true,
- errorMessage: '请输入隐患标题',
- }]
- },
- dangerDeadLine: {
- rules: [{
- required: true,
- errorMessage: '请选择截止时间',
- }]
- },
- accountId: {
- rules: [{
- required: true,
- errorMessage: '请选择执行人',
- }]
- },
- validateTrigger: 'submit'
- },
- formData: {
- watchkeeper:"刘霞",
- dangerId: undefined,
- groupId: undefined, // 所属部门
- riskPointId: undefined, // 风险点:所属区域
- dangerCode: '', // 隐患编码
- dangerTitle: '', // 隐患标题
- dangerCatId: undefined, // 隐患类别ID
- dangerLevel: 1, // 隐患等级
- dangerDesc: '', // 描述
- dangerDeadLine: '', // 截止时间
- dangerSource: 0, // 隐患来源
- wfDefId: undefined,
- wfInsId: undefined,
- taskDefId: undefined,
- taskInsId: undefined,
- taskCode: '',
- actionId: undefined,
- actionCode: '',
- groupIdTo: undefined,
- positionIdTo: undefined,
- accountIdTo: undefined, // 执行人
- actionRemark: '', // 说明
- attachList: []
- },
- flowData: {
- taskIns: {
- actionList: []
- }
- },
- }
- },
- computed: {
- startDate() {
- return this.getDate('start');
- },
- endDate() {
- return this.getDate('end');
- },
- },
- filters:{
- previewImage(val){
- let imgsrc=val.split("$");
- return imgsrc[0];
- }
- },
- onLoad(options) {
- //调用页面请求数据接口
- this.riskPointId = options.riskPointId;
- this.groupTree();
- this.getDangerCatList();
- this.getUserList();
- this.createDangerIns();
- },
- methods: {
- Cancel() {
- //取消
- uni.navigateBack();
- },
- handleSelectUser(item) {
- this.formData.accountIdTo = item.accountId
- this.formData.groupIdTo = item.groupId
- this.formData.positionIdTo = item.positionId
- console.log("item", item);
- },
- radioChange: function(evt) {
- this.formData.dangerLevel = evt.detail.value
- },
- bindPickerChange: function(e1) {
- this.index = e1.target.value
- console.log("隐患来源", this.index)
- this.formData.dangerSource = this.index
- },
- bindPickerChangeCat: function(e2) {
- this.indexs = e2.target.value
- console.log("隐患类别", this.indexs)
- this.formData.dangerCatId = this.dangerCatList[this.indexs].dangerCatId
- },
- bindPickerChangeUser: function(e3) {
- this.indexUser = e3.target.value
- console.log("执行人", this.indexUser)
- this.formData.accountId = this.userList[this.indexUser].accountId
- this.formData.accountId = this.userList[this.indexUser].accountId
- this.formData.accountIdTo = this.userList[this.indexUser].accountId
- this.formData.groupIdTo = this.userList[this.indexUser].groupId
- this.formData.positionIdTo = this.userList[this.indexUser].positionId
- },
- //初始化流程 写死流程ID
- createDangerIns() {
- createDangerIns(1).then((resp) => {
- const { code, data, msg } = resp
- if (code === 0) {
- this.flowData = data
- this.formData.wfDefId = data.wfDefId
- this.formData.wfInsId = data.wfInsId
- this.formData.taskDefId = data.taskIns.taskDefId
- this.formData.taskInsId = data.taskIns.taskInsId
- this.formData.taskCode = data.taskIns.taskCode
- } else {
- this.$message.error(msg)
- }
- }).catch((error) => {
- console.log(error)
- })
- },
- /**z
- * 提交
- */
- submit(formName, actionId, actionCode) {
- uni.showModal({
- title: '提示',
- content: '确认风险项目是否提交准确',
- success: function (res) {
- if (res.confirm) {
- console.log('用户点击确定');
- } else if (res.cancel) {
- console.log('用户点击取消');
- }
- }
- });
- return;
- this.$refs.form.validate().then(res => {
- this.formData.actionId = actionId;
- this.formData.actionCode = actionCode;
- this.formData.riskPointId = this.riskPointId;
- this.formData.groupId = this.formData.groupIdS[this.formData.groupIdS.length - 1].value
- add(this.formData).then((resp) => {
- const { code, data, msg } = resp
- if (code === 0) {
- console.log("提交成功")
- uni.showToast({
- icon:'success',
- title:"提交成功!",
- complete(res) {
- if(!isEmpty(this.riskPointId)){
- uni.navigateTo({
- url: '/views/entRiskPoint/details/details?id=' + this.riskPointId,
- });
- }else{
- uni.reLaunch({
- url:'/pages/index/index'
- })
- }
- }
- })
- } else {
- uni.showToast({
- icon: 'error',
- title: msg
- })
- }
- })
- }).catch(err => {
- uni.showToast({
- icon: 'none',
- // title: err[0].errorMessage
- title: err
- })
- })
- },
- formReset: function(e) {
- console.log('清空数据')
- },
- bindDateChange: function(e) {
- this.date = e.target.value
- },
- getDate(type) {
- const date = new Date();
- let year = date.getFullYear();
- let month = date.getMonth() + 1;
- let day = date.getDate();
- if (type === 'start') {
- year = year - 0;
- } else if (type === 'end') {
- year = year + 2;
- }
- month = month > 9 ? month : '0' + month;
- day = day > 9 ? day : '0' + day;
- return `${year}-${month}-${day}`;
- },
- onchange(e) {
- const value = e.detail.value
- this.formData.groupIdS = value
- },
- onChangeDateTime(e) {
- this.formData.dangerDeadLine = e
- console.log("dangerDeadLine", e)
- },
- onnodeclick(node) {},
- //初始化group
- groupTree() {
- getGroupTree().then((res) => {
- if (res.data) {
- let temp = toTreeText(res.data)
- this.groupItem = temp;
- } else {
- console.log("group无数据,请检查!")
- }
- });
- },
- //隐患类别列表
- getDangerCatList() {
- getDangerCatList().then((resp) => {
- const { code, data } = resp
- if (code === 0) {
- this.dangerCatList = data
- //默认值
- this.formData.dangerCatId = this.dangerCatList[0].dangerCatId
- }
- }).catch((error) => {
- console.log(error)
- })
- },
- //用户列表
- getUserList() {
- getUserList().then((resp) => {
- const { code, data } = resp
- if (code === 0) {
- this.userList = data
- this.formData.accountId = this.userList[1].accountId
- this.formData.accountIdTo = this.userList[1].accountId
- this.formData.groupIdTo = this.userList[1].groupId
- this.formData.positionIdTo = this.userList[1].positionId
- }
- }).catch((error) => {
- console.log(error)
- })
- },
- //上传入口
- uploadBt() {
- uni.chooseImage({
- success: (chooseImageRes) => {
- const tempFilePaths = chooseImageRes.tempFilePaths;
- this.uploadSubmit(tempFilePaths[0])
- }
- });
- },
- uploadSubmit(filePath) {
- upload({ filePath}).then((res) => {
- let result=JSON.parse(res);
- if(result.code===0){
- let attachList=[];
- let path=result.data.path;
- let thumbnailsFileUrl=path.split('$')[0];
- let fileUrl=path.split('$')[1];
- let uploadImgInfo={
- thumbnailsFileUrl,
- fileUrl,
- fileSize:result.data.size,
- fileExt:result.data.ext,
- fileTitle:result.data.oriFileName,
- opCode:0
- };
- attachList.push(uploadImgInfo);
- this.$set(this.formData,'attachList',attachList)
- }else{
- uni.showToast({
- title: result.msg||"上传失败"
- })
- }
- }).catch((msg) => {
- uni.showToast({
- title: "上传失败"
- })
- })
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .riskPointDanger-form{
- padding: 0rpx 10px;
- padding-top: 60upx;
- background-color: #fff;
- .dangerimage{
- display: block;
- width: 200upx;
- height: 200upx;
- }
- .textarea{
- width: 460upx;
- border: 1upx solid #d7d6d6;
- padding: 10upx;
- font-size: 30upx;
- }
- .head {
- padding-left: 59upx;
- font-size: 30upx;
- color: #333;
- }
- .tip {
- padding: 8upx 0 16upx 59upx;
- font-size: 24upx;
- color: #3584FF;
- }
- .picker{
- .uni-input{
- border: 1upx solid #ccc;
- }
- }
- }
- </style>
|