123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434 |
- <template>
- <view>
- <u-navbar title="详情查看">
- </u-navbar>
-
- <approve-info v-if="viewApproveBl"
- :fieldInfo="fieldInfo" :formData="formData" :fileList="fileList" ></approve-info>
-
- <view class="submitBtn" v-if="0">
- <u-button type="info" class="submitBtn30">保存</u-button>
- <u-button type="primary" class="submitBtn60" >提交</u-button>
- </view>
- <approve-view :activityList="activityList"></approve-view>
- </view>
- </template>
- <script>
- import {
- dataJsGetInfo
- } from '../data.js'
- import * as API from '@/apis/pagejs/oa.js'
- import approveView from '@/components/ApproveView.vue'
- import approveInfo from '@/components/ApproveInfo.vue'
-
- import {
- currentTimeStamp,
- parseUnixTime,
- } from '@/apis/utils'
- export default {
- components: {
- approveView,approveInfo
- },
- data() {
- return {
- //editor
- readOnly: false,
- formats: {},
- //editor
- oatype: "",
- showCalendar: false,
- keyCalendar: {},
- placeholderStyle: "font-size: 24rpx",
- radioListDefault: [{
- name: '是',
- value: '1'
- }, {
- name: '否',
- value: '0'
- }, ],
- fieldInfo: {},
- fieldList: [],
- formData: {},
- activityList: [
- ],
- action: "",
-
- personInfo: {},
- createTime: "",
- createTime2: "",
- uploadData: {},
- fileList: [],
- header: {
- },
- viewApproveBl:false,
- id: "",
- placeholder: '开始输入...'
- }
- },
- onLoad(op) {
- this.oatype = op.oatype
- if (op.id) {
- this.id = op.id
- }
- this.fieldInfo = dataJsGetInfo(op.oatype)
-
- this.fieldList = this.fieldInfo.list;
- this.getProcessDetails();
- },
- methods: {
- submit(draftStatus) {
-
- },
- getProcessDetails() {
- uni.showLoading({
- title: "加载中",
- mask: true,
- })
- API.processDetails({
- formId: this.oatype,
- id: this.id
- }).then((res) => {
- uni.hideLoading();
- this.activityList = res.data.activityList
- var applyContent = res.data.applyContent
- this.init()
- if(applyContent){
- this.formData={
- ...applyContent,
- ...this.formData
- }
- for (var i in this.fieldList) {
- var obj = this.fieldList[i];
- //(this.formData[obj.key], applyContent[obj.key])
- var data=applyContent[obj.key];
- if(data==null){
- continue
- }
- if (obj.type.indexOf("upload") > -1) {
- if(data){
-
- var sz=JSON.parse(data).map(str=>{
- var item=JSON.parse(str)
- return {
- url:item.url,name:item.name,view:1
- }
- })
-
- this.fileList=sz//data.split(",").map(item=>{return {url:item,item.name=,view:1}})
- }
-
- }
- this.formData[obj.key] = applyContent[obj.key]
-
- }
- }
- this.viewApproveBl=true
- //("formData",this.formData)
- }).catch(error => {
- uni.showToast({
- title: error,
- icon: "none"
- })
- })
- },
- saveStorage() {
- },
- gotoSelectPerson(item) {
- this.saveStorage();
- uni.navigateTo({
- url: "/pages/oawork/business/select"
- })
- },
- changeCalendar(e) {
- this.formData[this.keyCalendar.key] = e.result;
- },
- changeCalendar2(e) {
- this.formData[this.keyCalendar.key] = e.startDate;
- this.formData[this.keyCalendar.key2] = e.endDate;
- },
- init() {
- this.personInfo = this.carhelp.getPersonInfo()
- this.createTime = parseUnixTime(currentTimeStamp(), '{y}-{m}-{d}');
- this.createTime2 = parseUnixTime(currentTimeStamp());
- for (var i in this.fieldList) {
- var obj = this.fieldList[i];
- this.formData[obj.key] = ""
- }
- this.action = process.car.BASE_URL + "uploadPicture"
- this.uploadData.subFolder = "oawork11" + this.oatype;
- //接口应该免登陆
- var token = this.carhelp.getToken()
- this.header = {
- 'Authorization': token
- }
- },
- getViewItem(item) {
- //(item)
- if (item.sql) {
- var obj = this;
- for (var i in item.sql) {
- var k = item.sql[i];
- obj = obj[k]
- }
- return obj;
- }
- },
- getClass(item) {
- if (item) {
- var list = item.type.map(it => {
- return 'oawork-' + it
- })
- return list.join(' ')
- }
- },
- //editor
- readOnlyChange() {
- this.readOnly = !this.readOnly
- },
- onEditorReady() {
- // #ifdef MP-BAIDU
- this.editorCtx = requireDynamicLib('editorLib').createEditorContext('editor');
- // #endif
- // #ifdef APP-PLUS || MP-WEIXIN || H5
- uni.createSelectorQuery().select('#editor').context((res) => {
- this.editorCtx = res.context
- }).exec()
- // #endif
- },
- undo() {
- this.editorCtx.undo()
- },
- redo() {
- this.editorCtx.redo()
- },
- format(e) {
- let {
- name,
- value
- } = e.target.dataset
- if (!name) return
- // //('format', name, value)
- this.editorCtx.format(name, value)
- },
- onStatusChange(e) {
- const formats = e.detail
- this.formats = formats
- },
- insertDivider() {
- this.editorCtx.insertDivider({
- success: function() {
- //('insert divider success')
- }
- })
- },
- clear() {
- uni.showModal({
- title: '清空编辑器',
- content: '确定清空编辑器全部内容?',
- success: res => {
- if (res.confirm) {
- this.editorCtx.clear({
- success: function(res) {
- //("clear success")
- }
- })
- }
- }
- })
- },
- removeFormat() {
- this.editorCtx.removeFormat()
- },
- insertDate() {
- const date = new Date()
- const formatDate = `${date.getFullYear()}/${date.getMonth() + 1}/${date.getDate()}`
- this.editorCtx.insertText({
- text: formatDate
- })
- },
- insertImage() {
- uni.chooseImage({
- count: 1,
- success: (res) => {
- this.editorCtx.insertImage({
- src: res.tempFilePaths[0],
- alt: '图像',
- success: function() {
- //('insert image success')
- }
- })
- }
- })
- },
- //editor
- }
- }
- </script>
- <style scoped lang="scss">
- .oawork-line {
- border-bottom: 1px solid #c8c8c8;
- }
- .oawork-paddingTop {
- padding-top: 40rpx;
- }
- .businessMain {
- /deep/.uni-input-input {
- font-size: 24rpx;
- }
- font-size: 32rpx;
- background: #fff;
- padding-top: 10rpx;
- padding-bottom: 50rpx;
- margin-bottom: 40rpx;
- display: flex;
- flex-wrap: wrap;
- .oawork-item {
- padding: 4rpx 16rpx 4rpx 16rpx;
- width: 100%;
- .oawork-item1 {
- display: flex;
- align-items: center;
- .oawork-item1_a {
- min-width: 160rpx;
- font-weight: bold;
- }
- .oawork-item1_b {
- color: #777777;
- width: 100%;
- text-align: right;
- }
- .oawork-item1_c {
- padding-left: 16rpx;
- }
- }
- }
- .oawork-selecttime,
- .oawork-selecttime2 {
- margin: 10rpx 0;
- display: flex;
- .oawork-item1 {
- width: 100%;
- }
- .oawork-item1_b {
- display: flex;
- align-items: center;
- justify-content: flex-end;
- height: 100%;
- border-bottom: 1px solid #c8c8c8;
- }
- }
- .oawork-itemrow {
- .oawork-item1_a {
- font-weight: 400 !important;
- width: 200%;
- }
- }
- .oawork-textlong {
- .oawork-item1_a {
- width: 100%;
- }
- }
- .oawork-title {
- padding: 20rpx 0px 4rpx 20rpx;
- .oawork-item1_a {
- width: 100%;
- font-size: 32rpx;
- }
- }
- .width200 {
- // padding:20rpx 0px 4rpx 20rpx;
- .oawork-item1_a {}
- }
- /deep/.oawork-width49 {
- padding: 4rpx 0px 4rpx 20rpx;
- width: 49%;
- .oawork-item1_a {
- min-width: 140rpx !important;
- }
- }
- }
- .submitBtn {
- bottom: 0;
- position: fixed;
- width: 100%;
- padding: 20rpx 40rpx;
- background-color: #fff;
- border-top: 3px solid #f3f4f4;
- z-index: 9999;
- display: flex;
- .submitBtn30 {
- width: 30%;
- }
- .submitBtn60 {
- width: 60%;
- }
- }
- .head-approve{
- padding: 2px 8px;
- background: #ffffff;
- margin-bottom: 8px;
- display: flex;
- flex-wrap: wrap;
- justify-content: space-between;
- font-size: 32px;
- }
- @import "../data/editor-icon.css";
- </style>
|