123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284 |
- <template>
- <view class="creatingSituations">
- <check-map-detail v-if="showCheckMapDetail"></check-map-detail>
- <view v-else class="page-wrap"
- :style="{paddingBottom: stepActive !== 0 ? '75rpx' : 0}">
- <tm-steps :options="options" :active="stepActive"></tm-steps>
- <tm-simple-btn-group v-if="stepActive !== 0"
- :options="botmBtnGroup"
- v-on:callback="changeStep"></tm-simple-btn-group>
- </view>
- <check-map-add v-if="showCheckMapAdd"></check-map-add>
- </view>
- </template>
- <script>
- import { mapState } from "vuex";
- import theme from "./components/theme.vue";
- import condition from "./components/condition.vue";
- import checkRent from "./components/checkRent.vue";
- import checkMap from "./components/checkMap.vue";
- import checkMapDetail from "./components/checkMapDetail.vue";
- import checkMapAdd from "./components/checkMapAdd.vue";
- import checkPlan from "./components/checkPlan.vue";
- import situationPreview from "./components/situationPreview.vue";
- import {
- themeList,
- normalBtnGroup,
- btnGroupPlan1,
- btnGroupPlan2,
- btnGroupSituationPreview,
- optionsHandle,
- checkDep,
- checkGroup,
- editCondition,
- editCheckRent,
- editCheckMap,
- editCheckPlan,
- editSituationPreview
- } from "./components/utils.js";
- import {dateHandle} from "../../utils/dateHandle.js";
-
- export default {
- data() {
- return {
- saveType: 'POST',
- editID: '',
- options: [
- {id: 'theme', title: '主题', component: theme},
- {id: 'condition', title: '条件', component: condition, hint: '追踪条件'},
- {id: 'checkRent', title: '查核组', component: checkRent, hint: '查核组'},
- {id: 'checkMap', title: '地图', component: checkMap, hint: '地图'},
- {id: 'checkPlan', title: '计划', component: checkPlan, hint: '制定计划'},
- {id: 'situationPreview', title: '预览', component: situationPreview},
- ]
- }
- },
- computed: {
- ...mapState({
- showCheckMapDetail: state => state.creatingSituations.showCheckMapDetail,
- showCheckMapAdd: state => state.creatingSituations.showCheckMapAdd,
- showCheckPlan1: state => state.creatingSituations.showCheckPlan1,
- stepActive: state => state.creatingSituations.stepActive,
- theme: state => state.creatingSituations.theme,
- condition: state => state.creatingSituations.condition,
- checkRent: state => state.creatingSituations.checkRent,
- checkMap: state => state.creatingSituations.checkMap,
- checkPlan: state => state.creatingSituations.checkPlan,
- situationPreview: state => state.creatingSituations.situationPreview,
- }),
- botmBtnGroup: function() {
- if(this.stepActive === 4) {
- if(this.showCheckPlan1) {
- return btnGroupPlan1;
- } else {
- return btnGroupPlan2;
- }
- } else if(this.stepActive === 5) {
- return btnGroupSituationPreview;
- } else {
- return normalBtnGroup;
- }
- },
- dataIsNull() {
- let data = this.checkMap.list.filter((item)=> item.status !== 'disable');
- return data.length === 0;
- }
- },
- onLoad:function({id,type}){
- this.saveType = type ? type : 'POST';
- if(id) {
- this.editID = id;
- this.dispatch('detialConfig',{id}).then((data)=>{
- if(data) {
- const {topic} = data;
- let theme = themeList[Number(topic)],
- condition = editCondition(data),
- editConfig = {};
- this.myCommit('theme', theme); // 主题
- if(type === 'PUT') { // 编辑
- let checkRent = editCheckRent(data),
- checkMap = editCheckMap(data),
- checkPlan = editCheckPlan(data),
- situationPreview = editSituationPreview(data);
- this.myCommit('checkPlan', checkPlan); // 查核计划
- this.myCommit('situationPreview', situationPreview); // 预览
- editConfig = {
- theme,
- condition,
- checkRent,
- checkMap,
- checkPlan,
- situationPreview
- };
- } else { // 复制创建
- this.myCommit('condition', condition); // 条件
- editConfig = {
- theme,
- condition,
- };
- }
- this.myCommit('editConfig', editConfig);
- // 回到第一步或者第三步
- this.myCommit('stepActive', type === 'PUT' ? 0 : 2);
- }
- });
- }
- },
- methods: {
- save: function() {
- const {sitName,preDay,preH,startDay, description} = this.situationPreview;
- const {dateObj,checkedItem,checkList} = this.checkPlan;
- const {depType, options, conditionIds} = this.condition;
- if(!sitName || sitName.length < 2) {
- uni.showModal({
- title: '温馨提示',
- content: `情境名称不能为空也不能少于2个字!`,
- showCancel: false
- });
- return;
- }
- let data = {
- description,
- name: sitName,
- topic: this.theme.id,
- checkPlanStartDate: dateObj.start,
- checkPlanEndDate: dateObj.end,
- remindPlanDay: preDay,
- remindPlanHour: preH,
- remindCheckDay: startDay,
- depType,
- filterCondition: optionsHandle(options, conditionIds),
- checkGroup: checkGroup(this.checkRent),
- checkDep: checkDep(this.checkMap.list),
- planConfig: {
- frequency: checkedItem.value,
- day: checkedItem.model,
- startDate: dateObj.start,
- endDate: dateObj.end,
- num: checkList.length
- },
- planList: [...checkList].map((date, i)=>{
- return {
- startDate: date,
- endDate: dateHandle.getNewData(date, checkedItem.model - 1)
- }
- })
- };
- if(this.saveType === 'PUT') {
- data.id = this.editID;
- }
- this.dispatch(`save${this.saveType}`, data).then((data)=>{
- if(data) {
- // 保存成功先清空数据
- this.myCommit('stepActive', 0);
- this.myCommit('theme', {id: null, title: null, des: null});
- this.myCommit('editConfig', null);
- uni.navigateTo({
- url: '/pages/situationsCenter/situationsCenter'
- });
- }
- });
- },
- changeStep: function(id) {
- switch(id) {
- case 'pre': // 上一步
- if(this.stepActive > 0)
- this.myCommit('needReload', false);
- this.myCommit('stepActive', this.stepActive - 1);
- break;
- case 'next': // 下一步
- if(this.stepActive < this.options.length)
- this.nextHandle(this.stepActive);
- break;
- case 'checkPlanCreate': // 生成查核计划
- if(this.checkPlan.checkList.length === 0) {
- uni.showModal({
- title: '错误提示',
- content: '查核频次必须大于或等于1!',
- showCancel: false
- });
- } else {
- this.myCommit('showCheckPlan1', false);
- }
- break;
- case 'checkPlanCallback': // 生成查核计划-返回
- this.myCommit('showCheckPlan1', true);
- break;
- case 'situationPreviewOK': // 完成
- this.save();
- break;
- }
- },
- /**
- * 处理【下一步】逻辑
- */
- nextHandle: function(stepActive) {
- let flage = false;
- switch(stepActive) {
- case 1:
- flage = this.errorHandle(this.condition.conditionIds.length > 0, 1);
- break;
- case 2:
- const {points} = this.checkRent.checkedItem;
- let condition = this.checkRent.checkedItem.id !== null && points;
- flage = this.errorHandle(condition, 2);
- break;
- case 3: flage = this.errorHandle(!this.dataIsNull, 3);
- break;
- case 4:
- const {checkList} = this.checkPlan;
- flage = this.errorHandle(checkList.length > 0, 4);
- break;
- default:
- flage = true;
- break;
- }
- if(flage) {
- this.myCommit('needReload', true);
- this.myCommit('stepActive', stepActive + 1);
- }
- },
- /**
- * 错误处理,满足条件返回true
- * @param {Object} condition 条件
- * @param {Object} index 当前下标
- */
- errorHandle: function(condition, index) {
- if(condition) {
- return true;
- } else {
- uni.showModal({
- title: '温馨提示',
- content: index === 3 ? '查核地图不能为空' :`请先选择${this.options[index].hint}!`,
- showCancel: false
- });
- return false;
- }
- },
- myCommit: function(key, data) {
- this.$store.commit({type: 'creatingSituations/comChangeState',key,data});
- },
- dispatch: function(key, data) {
- return this.$store.dispatch({type: 'creatingSituations/commActions', key, data});
- },
- },
- components: {
- checkMapDetail,
- checkMapAdd
- }
- }
- </script>
- <style lang="less">
- .creatingSituations {
- width: 100%;
- height: 100%;
- background-color: #F5F6FA;
- .page-wrap {
- padding-bottom: 75rpx;
- width: 100%;
- height: 100%;
- }
- }
- </style>
|