|
@@ -145,6 +145,85 @@
|
|
|
<view class="app-button">
|
|
|
<u-button type="primary" @click="handleSubmit('提交')" shape="circle"> 提交 </u-button>
|
|
|
</view>
|
|
|
+ <view class="menu-list m0" style="margin-bottom:50px;">
|
|
|
+ <view class="list-cell" style="color: #666666; line-height: 25px; width: auto;margin-top:10px;flex:none">
|
|
|
+ <view class="content-area-top">
|
|
|
+ <view style="width:100%;font-weight:bold;color:#333333;font-size:16px;">流程</view>
|
|
|
+ <!-- <view class="stepBar">
|
|
|
+ <view class="item">
|
|
|
+ <view class="left">
|
|
|
+ <image class="icon" src="@/static/images/oa/user.png"></image>
|
|
|
+ <image class="status" src="@/static/images/oa/pass2.png"></image>
|
|
|
+ <div>
|
|
|
+ <view class="title">
|
|
|
+ 发起申请
|
|
|
+ </view>
|
|
|
+ <view class="name">
|
|
|
+ {{ state.detail.createBy }}
|
|
|
+ </view>
|
|
|
+ </div>
|
|
|
+ </view>
|
|
|
+ <view class="right">
|
|
|
+ {{ state.detail.createTime?.split("T")[0] + " " + state.detail.createTime?.split("T")[1]}}
|
|
|
+ </view>
|
|
|
+ <view class="line sucess">
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <view class="item" v-for="(item, index) in nodeList" :key="index">
|
|
|
+ <view class="left">
|
|
|
+ <image class="icon" src="@/static/images/oa/user.png" v-if="item.nodeType == 1"></image>
|
|
|
+ <image class="icon" src="@/static/images/oa/Ccto.png" v-if="item.nodeType == 2"></image>
|
|
|
+ <div>
|
|
|
+ <view class="title">
|
|
|
+ {{ item.nodeType == 1 ? '审批人' : item.nodeType == 2 ? `抄送${item.appointApprover.indexOf(",") && item.appointApprover.split(",").length>1 ? `(${item.appointApprover.split(",").length}人)` : "人"}` : "" }}
|
|
|
+ </view>
|
|
|
+ <view class="name" v-if="item.nodeType == 1">
|
|
|
+ {{ proxy.$common.mapping("nickName", "userId", item.appointApprover, state.userData) }}
|
|
|
+ </view>
|
|
|
+ <view class="name" v-if="item.nodeType == 2 && item.appointApprover.indexOf(',') && item.appointApprover.split(',').length == 1">
|
|
|
+ {{ proxy.$common.mapping("nickName", "userId", item.appointApprover, state.userData) }}
|
|
|
+ </view>
|
|
|
+ <view class="name" v-if="item.nodeType == 2 && item.appointApprover.indexOf(',') && item.appointApprover.split(',').length > 1">
|
|
|
+ 抄送人
|
|
|
+ </view>
|
|
|
+ </div>
|
|
|
+ </view>
|
|
|
+ <view class="right">
|
|
|
+ </view>
|
|
|
+ <view class="center" v-if="item.nodeType == 2 && item.appointApprover.indexOf(',') && item.appointApprover.split(',').length > 1">
|
|
|
+ <view class="content-area-header mb10 text-center" style="display: inline-block" v-for="(approver, index2) in item.appointApprover.split(',')" :key="index2">
|
|
|
+ <img v-if='proxy.$common.mapping("avatar", "userId", approver, state.userData)' class="content-area-header-avatarImg mlr5" :src='proxy.$common.mapping("avatar", "userId", approver, state.userData)' style="display: block; width: 40px; height: 40px" />
|
|
|
+ <u-avatar
|
|
|
+ class="content-area-header-avatar mlr5"
|
|
|
+ :text='proxy.$common.mapping("nickName", "userId", approver, state.userData).length > 2 ? proxy.$common.mapping("nickName", "userId", approver, state.userData).slice(1, 3) : proxy.$common.mapping("nickName", "userId", approver, state.userData)'
|
|
|
+ shape="square"
|
|
|
+ size="40"
|
|
|
+ fontSize="12"
|
|
|
+ color="#ffffff"
|
|
|
+ :bgColor="proxy.$settingStore.themeColor.color"
|
|
|
+ ></u-avatar>
|
|
|
+ <u-text :text='proxy.$common.mapping("nickName", "userId", approver, state.userData)' color="#000000" size="14" align="center"></u-text>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <view class="line gray" v-if="item.nodeType == 1">
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </view> -->
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <!-- <view class="fixedBottom" v-if="state.queryType == 2">
|
|
|
+ <img src="@/static/images/oa/loading.png" alt="">
|
|
|
+ <span>再次提交</span>
|
|
|
+ </view>
|
|
|
+ <view class="fixedBottom" v-if="state.detail.docStatus === '2' || state.detail.docStatus === '3' ">
|
|
|
+ <img src="@/static/images/oa/loading.png" alt="">
|
|
|
+ <span>再次提交</span>
|
|
|
+ </view>
|
|
|
+ <view class="approval" v-if="state.queryType == 1">
|
|
|
+ <button class="refuse" @click="handle('refuse',2)">拒绝</button>
|
|
|
+ <button class="pass" @click="handle('pass',2)">同意</button>
|
|
|
+ </view> -->
|
|
|
+ </view>
|
|
|
</template>
|
|
|
</oa-scroll>
|
|
|
</template>
|
|
@@ -208,7 +287,7 @@ const state = reactive({
|
|
|
endTime: "",
|
|
|
endTime1: "",
|
|
|
formSign: undefined,
|
|
|
- id: undefined,
|
|
|
+ formId: undefined,
|
|
|
},
|
|
|
rules: {
|
|
|
type: [{ required: true, message: "请选择请假类型", trigger: "change" }],
|
|
@@ -228,7 +307,7 @@ const state = reactive({
|
|
|
const { form, rules } = toRefs(state);
|
|
|
|
|
|
form.value.formSign = props.data.form.formSign
|
|
|
-form.value.id = props.data.form.id
|
|
|
+form.value.formId = props.data.form.id
|
|
|
/**
|
|
|
* @图片上传成功回调
|
|
|
*/
|
|
@@ -253,7 +332,7 @@ function handleSubmit(value) {
|
|
|
.then((res) => {
|
|
|
// proxy.$modal.msg("校验通过");
|
|
|
addQjDocument({
|
|
|
- id: form.value.id,
|
|
|
+ formId: form.value.formId,
|
|
|
formSign: form.value.formSign,
|
|
|
type: form.value.type,
|
|
|
startTime: form.value.startTime,
|